summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2019-04-25 14:43:52 +0200
committerJustin Worthe <justin@worthe-it.co.za>2019-04-25 14:43:52 +0200
commit5c957c0c8e928cbe64eb8a84733d649fd32642ef (patch)
tree21cdf9912cb83f6243006cf9b466e91fb196a711
parent6a5cc64a1778fab68ab02a9f3314f62471c8d35c (diff)
Arranged the types to start writing the replay based property test
-rw-r--r--src/game.rs59
-rw-r--r--tests/official-runner-matching.rs13
-rw-r--r--tests/replays/2019.04.20.09.47.04/A-init.json1
-rw-r--r--tests/replays/2019.04.20.09.47.04/A-log.csv401
-rw-r--r--tests/replays/2019.04.20.09.47.04/B-init.json1
-rw-r--r--tests/replays/2019.04.20.09.47.04/B-log.csv401
-rwxr-xr-xtests/replays/import-replay.sh12
7 files changed, 865 insertions, 23 deletions
diff --git a/src/game.rs b/src/game.rs
index a42f1e6..626a377 100644
--- a/src/game.rs
+++ b/src/game.rs
@@ -1,9 +1,9 @@
use crate::geometry::*;
+use crate::command::Command;
use crate::json;
pub struct GameBoard {
- player: Player,
- opponent: Player,
+ players: [Player; 2],
powerups: Vec<Powerup>,
map: Map,
}
@@ -38,32 +38,41 @@ enum CellType {
}
+enum SimulationOutcome {
+ PlayerWon(usize),
+ Draw,
+ Continue,
+}
+
impl GameBoard {
pub fn new(json: json::State) -> GameBoard {
let commando_damage = json.my_player.worms[0].weapon.damage;
let commando_range = json.my_player.worms[0].weapon.range;
+
+ let player = Player {
+ active_worm: json.active_worm_index().unwrap(),
+ worms: json.my_player.worms.iter().map(|w| Worm {
+ id: w.id,
+ health: w.health,
+ position: Point2d::new(w.position.x, w.position.y),
+ weapon_damage: commando_damage,
+ weapon_range: commando_range
+ }).collect()
+ };
+
+ let opponent = Player {
+ active_worm: 0,
+ worms: json.opponents.iter().flat_map(|o| &o.worms).map(|w| Worm {
+ id: w.id,
+ health: w.health,
+ position: Point2d::new(w.position.x, w.position.y),
+ weapon_damage: commando_damage,
+ weapon_range: commando_range
+ }).collect()
+ };
GameBoard {
- player: Player {
- active_worm: json.active_worm_index().unwrap(),
- worms: json.my_player.worms.iter().map(|w| Worm {
- id: w.id,
- health: w.health,
- position: Point2d::new(w.position.x, w.position.y),
- weapon_damage: commando_damage,
- weapon_range: commando_range
- }).collect()
- },
- opponent: Player {
- active_worm: 0,
- worms: json.opponents.iter().flat_map(|o| &o.worms).map(|w| Worm {
- id: w.id,
- health: w.health,
- position: Point2d::new(w.position.x, w.position.y),
- weapon_damage: commando_damage,
- weapon_range: commando_range
- }).collect()
- },
+ players: [player, opponent],
powerups: json.map.iter().flatten().filter_map(|c| {
c.powerup.clone().map(|p| Powerup::Health(Point2d::new(c.x, c.y), p.value))
}).collect(),
@@ -78,7 +87,7 @@ impl GameBoard {
}
}
- pub fn update(&mut self, json: json::State) {
+ pub fn update(&mut self, _json: json::State) {
// TODO
// What can change?
// - Worm health (and dead worms die)
@@ -87,4 +96,8 @@ impl GameBoard {
// - The powerups may be taken
// - The map cells may change from dirt to not dirt
}
+
+ pub fn simulate(&mut self, moves: [Command; 2]) -> SimulationOutcome {
+ SimulationOutcome::Continue
+ }
}
diff --git a/tests/official-runner-matching.rs b/tests/official-runner-matching.rs
new file mode 100644
index 0000000..7ef12b8
--- /dev/null
+++ b/tests/official-runner-matching.rs
@@ -0,0 +1,13 @@
+
+
+#[test]
+fn simulates_the_same_match() {
+ //TODO
+ //iterate over list of replays (FS?)
+
+ //read initial state.json
+ //iterate over moves
+ //simulate move (both sides)
+ //assert state is as expected
+ //repeat with players swapped?
+}
diff --git a/tests/replays/2019.04.20.09.47.04/A-init.json b/tests/replays/2019.04.20.09.47.04/A-init.json
new file mode 100644
index 0000000..5bc7217
--- /dev/null
+++ b/tests/replays/2019.04.20.09.47.04/A-init.json
@@ -0,0 +1 @@
+{"currentRound":1,"maxRounds":400,"mapSize":33,"currentWormId":1,"consecutiveDoNothingCount":0,"myPlayer":{"id":1,"score":150,"health":450,"worms":[{"id":1,"health":150,"position":{"x":24,"y":29},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1},{"id":2,"health":150,"position":{"x":1,"y":16},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1},{"id":3,"health":150,"position":{"x":24,"y":3},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1}]},"opponents":[{"id":2,"score":150,"worms":[{"id":1,"health":150,"position":{"x":31,"y":16},"diggingRange":1,"movementRange":1},{"id":2,"health":150,"position":{"x":9,"y":29},"diggingRange":1,"movementRange":1},{"id":3,"health":150,"position":{"x":8,"y":3},"diggingRange":1,"movementRange":1}]}],"map":[[{"x":0,"y":0,"type":"DEEP_SPACE"},{"x":1,"y":0,"type":"DEEP_SPACE"},{"x":2,"y":0,"type":"DEEP_SPACE"},{"x":3,"y":0,"type":"DEEP_SPACE"},{"x":4,"y":0,"type":"DEEP_SPACE"},{"x":5,"y":0,"type":"DEEP_SPACE"},{"x":6,"y":0,"type":"DEEP_SPACE"},{"x":7,"y":0,"type":"DEEP_SPACE"},{"x":8,"y":0,"type":"DEEP_SPACE"},{"x":9,"y":0,"type":"DEEP_SPACE"},{"x":10,"y":0,"type":"DEEP_SPACE"},{"x":11,"y":0,"type":"AIR"},{"x":12,"y":0,"type":"DIRT"},{"x":13,"y":0,"type":"DIRT"},{"x":14,"y":0,"type":"AIR"},{"x":15,"y":0,"type":"AIR"},{"x":16,"y":0,"type":"DIRT"},{"x":17,"y":0,"type":"AIR"},{"x":18,"y":0,"type":"AIR"},{"x":19,"y":0,"type":"DIRT"},{"x":20,"y":0,"type":"DIRT"},{"x":21,"y":0,"type":"AIR"},{"x":22,"y":0,"type":"DEEP_SPACE"},{"x":23,"y":0,"type":"DEEP_SPACE"},{"x":24,"y":0,"type":"DEEP_SPACE"},{"x":25,"y":0,"type":"DEEP_SPACE"},{"x":26,"y":0,"type":"DEEP_SPACE"},{"x":27,"y":0,"type":"DEEP_SPACE"},{"x":28,"y":0,"type":"DEEP_SPACE"},{"x":29,"y":0,"type":"DEEP_SPACE"},{"x":30,"y":0,"type":"DEEP_SPACE"},{"x":31,"y":0,"type":"DEEP_SPACE"},{"x":32,"y":0,"type":"DEEP_SPACE"}],[{"x":0,"y":1,"type":"DEEP_SPACE"},{"x":1,"y":1,"type":"DEEP_SPACE"},{"x":2,"y":1,"type":"DEEP_SPACE"},{"x":3,"y":1,"type":"DEEP_SPACE"},{"x":4,"y":1,"type":"DEEP_SPACE"},{"x":5,"y":1,"type":"DEEP_SPACE"},{"x":6,"y":1,"type":"DEEP_SPACE"},{"x":7,"y":1,"type":"DEEP_SPACE"},{"x":8,"y":1,"type":"DIRT"},{"x":9,"y":1,"type":"DIRT"},{"x":10,"y":1,"type":"DIRT"},{"x":11,"y":1,"type":"DIRT"},{"x":12,"y":1,"type":"DIRT"},{"x":13,"y":1,"type":"DIRT"},{"x":14,"y":1,"type":"AIR"},{"x":15,"y":1,"type":"AIR"},{"x":16,"y":1,"type":"DIRT"},{"x":17,"y":1,"type":"AIR"},{"x":18,"y":1,"type":"AIR"},{"x":19,"y":1,"type":"DIRT"},{"x":20,"y":1,"type":"DIRT"},{"x":21,"y":1,"type":"DIRT"},{"x":22,"y":1,"type":"DIRT"},{"x":23,"y":1,"type":"DIRT"},{"x":24,"y":1,"type":"DIRT"},{"x":25,"y":1,"type":"DEEP_SPACE"},{"x":26,"y":1,"type":"DEEP_SPACE"},{"x":27,"y":1,"type":"DEEP_SPACE"},{"x":28,"y":1,"type":"DEEP_SPACE"},{"x":29,"y":1,"type":"DEEP_SPACE"},{"x":30,"y":1,"type":"DEEP_SPACE"},{"x":31,"y":1,"type":"DEEP_SPACE"},{"x":32,"y":1,"type":"DEEP_SPACE"}],[{"x":0,"y":2,"type":"DEEP_SPACE"},{"x":1,"y":2,"type":"DEEP_SPACE"},{"x":2,"y":2,"type":"DEEP_SPACE"},{"x":3,"y":2,"type":"DEEP_SPACE"},{"x":4,"y":2,"type":"DEEP_SPACE"},{"x":5,"y":2,"type":"DEEP_SPACE"},{"x":6,"y":2,"type":"DEEP_SPACE"},{"x":7,"y":2,"type":"AIR"},{"x":8,"y":2,"type":"AIR"},{"x":9,"y":2,"type":"AIR"},{"x":10,"y":2,"type":"DIRT"},{"x":11,"y":2,"type":"DIRT"},{"x":12,"y":2,"type":"DIRT"},{"x":13,"y":2,"type":"AIR"},{"x":14,"y":2,"type":"AIR"},{"x":15,"y":2,"type":"DIRT"},{"x":16,"y":2,"type":"DIRT"},{"x":17,"y":2,"type":"DIRT"},{"x":18,"y":2,"type":"AIR"},{"x":19,"y":2,"type":"AIR"},{"x":20,"y":2,"type":"DIRT"},{"x":21,"y":2,"type":"DIRT"},{"x":22,"y":2,"type":"DIRT"},{"x":23,"y":2,"type":"AIR"},{"x":24,"y":2,"type":"AIR"},{"x":25,"y":2,"type":"AIR"},{"x":26,"y":2,"type":"DEEP_SPACE"},{"x":27,"y":2,"type":"DEEP_SPACE"},{"x":28,"y":2,"type":"DEEP_SPACE"},{"x":29,"y":2,"type":"DEEP_SPACE"},{"x":30,"y":2,"type":"DEEP_SPACE"},{"x":31,"y":2,"type":"DEEP_SPACE"},{"x":32,"y":2,"type":"DEEP_SPACE"}],[{"x":0,"y":3,"type":"DEEP_SPACE"},{"x":1,"y":3,"type":"DEEP_SPACE"},{"x":2,"y":3,"type":"DEEP_SPACE"},{"x":3,"y":3,"type":"DEEP_SPACE"},{"x":4,"y":3,"type":"DEEP_SPACE"},{"x":5,"y":3,"type":"DEEP_SPACE"},{"x":6,"y":3,"type":"DIRT"},{"x":7,"y":3,"type":"AIR"},{"x":8,"y":3,"type":"AIR","occupier":{"id":3,"playerId":2,"health":150,"position":{"x":8,"y":3},"diggingRange":1,"movementRange":1}},{"x":9,"y":3,"type":"AIR"},{"x":10,"y":3,"type":"DIRT"},{"x":11,"y":3,"type":"DIRT"},{"x":12,"y":3,"type":"DIRT"},{"x":13,"y":3,"type":"AIR"},{"x":14,"y":3,"type":"AIR"},{"x":15,"y":3,"type":"DIRT"},{"x":16,"y":3,"type":"DIRT"},{"x":17,"y":3,"type":"DIRT"},{"x":18,"y":3,"type":"AIR"},{"x":19,"y":3,"type":"AIR"},{"x":20,"y":3,"type":"DIRT"},{"x":21,"y":3,"type":"DIRT"},{"x":22,"y":3,"type":"DIRT"},{"x":23,"y":3,"type":"AIR"},{"x":24,"y":3,"type":"AIR","occupier":{"id":3,"playerId":1,"health":150,"position":{"x":24,"y":3},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1}},{"x":25,"y":3,"type":"AIR"},{"x":26,"y":3,"type":"DIRT"},{"x":27,"y":3,"type":"DEEP_SPACE"},{"x":28,"y":3,"type":"DEEP_SPACE"},{"x":29,"y":3,"type":"DEEP_SPACE"},{"x":30,"y":3,"type":"DEEP_SPACE"},{"x":31,"y":3,"type":"DEEP_SPACE"},{"x":32,"y":3,"type":"DEEP_SPACE"}],[{"x":0,"y":4,"type":"DEEP_SPACE"},{"x":1,"y":4,"type":"DEEP_SPACE"},{"x":2,"y":4,"type":"DEEP_SPACE"},{"x":3,"y":4,"type":"DEEP_SPACE"},{"x":4,"y":4,"type":"DIRT"},{"x":5,"y":4,"type":"AIR"},{"x":6,"y":4,"type":"DIRT"},{"x":7,"y":4,"type":"AIR"},{"x":8,"y":4,"type":"AIR"},{"x":9,"y":4,"type":"AIR"},{"x":10,"y":4,"type":"DIRT"},{"x":11,"y":4,"type":"DIRT"},{"x":12,"y":4,"type":"AIR"},{"x":13,"y":4,"type":"AIR"},{"x":14,"y":4,"type":"AIR"},{"x":15,"y":4,"type":"AIR"},{"x":16,"y":4,"type":"DIRT"},{"x":17,"y":4,"type":"AIR"},{"x":18,"y":4,"type":"AIR"},{"x":19,"y":4,"type":"AIR"},{"x":20,"y":4,"type":"AIR"},{"x":21,"y":4,"type":"DIRT"},{"x":22,"y":4,"type":"DIRT"},{"x":23,"y":4,"type":"AIR"},{"x":24,"y":4,"type":"AIR"},{"x":25,"y":4,"type":"AIR"},{"x":26,"y":4,"type":"DIRT"},{"x":27,"y":4,"type":"AIR"},{"x":28,"y":4,"type":"DIRT"},{"x":29,"y":4,"type":"DEEP_SPACE"},{"x":30,"y":4,"type":"DEEP_SPACE"},{"x":31,"y":4,"type":"DEEP_SPACE"},{"x":32,"y":4,"type":"DEEP_SPACE"}],[{"x":0,"y":5,"type":"DEEP_SPACE"},{"x":1,"y":5,"type":"DEEP_SPACE"},{"x":2,"y":5,"type":"DEEP_SPACE"},{"x":3,"y":5,"type":"DEEP_SPACE"},{"x":4,"y":5,"type":"DIRT"},{"x":5,"y":5,"type":"DIRT"},{"x":6,"y":5,"type":"DIRT"},{"x":7,"y":5,"type":"DIRT"},{"x":8,"y":5,"type":"DIRT"},{"x":9,"y":5,"type":"DIRT"},{"x":10,"y":5,"type":"DIRT"},{"x":11,"y":5,"type":"DIRT"},{"x":12,"y":5,"type":"AIR"},{"x":13,"y":5,"type":"AIR"},{"x":14,"y":5,"type":"AIR"},{"x":15,"y":5,"type":"AIR"},{"x":16,"y":5,"type":"DIRT"},{"x":17,"y":5,"type":"AIR"},{"x":18,"y":5,"type":"AIR"},{"x":19,"y":5,"type":"AIR"},{"x":20,"y":5,"type":"AIR"},{"x":21,"y":5,"type":"DIRT"},{"x":22,"y":5,"type":"DIRT"},{"x":23,"y":5,"type":"DIRT"},{"x":24,"y":5,"type":"DIRT"},{"x":25,"y":5,"type":"DIRT"},{"x":26,"y":5,"type":"DIRT"},{"x":27,"y":5,"type":"DIRT"},{"x":28,"y":5,"type":"DIRT"},{"x":29,"y":5,"type":"DEEP_SPACE"},{"x":30,"y":5,"type":"DEEP_SPACE"},{"x":31,"y":5,"type":"DEEP_SPACE"},{"x":32,"y":5,"type":"DEEP_SPACE"}],[{"x":0,"y":6,"type":"DEEP_SPACE"},{"x":1,"y":6,"type":"DEEP_SPACE"},{"x":2,"y":6,"type":"DEEP_SPACE"},{"x":3,"y":6,"type":"AIR"},{"x":4,"y":6,"type":"AIR"},{"x":5,"y":6,"type":"AIR"},{"x":6,"y":6,"type":"AIR"},{"x":7,"y":6,"type":"AIR"},{"x":8,"y":6,"type":"AIR"},{"x":9,"y":6,"type":"AIR"},{"x":10,"y":6,"type":"DIRT"},{"x":11,"y":6,"type":"DIRT"},{"x":12,"y":6,"type":"DIRT"},{"x":13,"y":6,"type":"DIRT"},{"x":14,"y":6,"type":"DIRT"},{"x":15,"y":6,"type":"DIRT"},{"x":16,"y":6,"type":"AIR"},{"x":17,"y":6,"type":"DIRT"},{"x":18,"y":6,"type":"DIRT"},{"x":19,"y":6,"type":"DIRT"},{"x":20,"y":6,"type":"DIRT"},{"x":21,"y":6,"type":"DIRT"},{"x":22,"y":6,"type":"DIRT"},{"x":23,"y":6,"type":"AIR"},{"x":24,"y":6,"type":"AIR"},{"x":25,"y":6,"type":"AIR"},{"x":26,"y":6,"type":"AIR"},{"x":27,"y":6,"type":"AIR"},{"x":28,"y":6,"type":"AIR"},{"x":29,"y":6,"type":"AIR"},{"x":30,"y":6,"type":"DEEP_SPACE"},{"x":31,"y":6,"type":"DEEP_SPACE"},{"x":32,"y":6,"type":"DEEP_SPACE"}],[{"x":0,"y":7,"type":"DEEP_SPACE"},{"x":1,"y":7,"type":"DEEP_SPACE"},{"x":2,"y":7,"type":"AIR"},{"x":3,"y":7,"type":"AIR"},{"x":4,"y":7,"type":"AIR"},{"x":5,"y":7,"type":"AIR"},{"x":6,"y":7,"type":"AIR"},{"x":7,"y":7,"type":"DIRT"},{"x":8,"y":7,"type":"DIRT"},{"x":9,"y":7,"type":"AIR"},{"x":10,"y":7,"type":"AIR"},{"x":11,"y":7,"type":"AIR"},{"x":12,"y":7,"type":"AIR"},{"x":13,"y":7,"type":"DIRT"},{"x":14,"y":7,"type":"DIRT"},{"x":15,"y":7,"type":"AIR"},{"x":16,"y":7,"type":"DIRT"},{"x":17,"y":7,"type":"AIR"},{"x":18,"y":7,"type":"DIRT"},{"x":19,"y":7,"type":"DIRT"},{"x":20,"y":7,"type":"AIR"},{"x":21,"y":7,"type":"AIR"},{"x":22,"y":7,"type":"AIR"},{"x":23,"y":7,"type":"AIR"},{"x":24,"y":7,"type":"DIRT"},{"x":25,"y":7,"type":"DIRT"},{"x":26,"y":7,"type":"AIR"},{"x":27,"y":7,"type":"AIR"},{"x":28,"y":7,"type":"AIR"},{"x":29,"y":7,"type":"AIR"},{"x":30,"y":7,"type":"AIR"},{"x":31,"y":7,"type":"DEEP_SPACE"},{"x":32,"y":7,"type":"DEEP_SPACE"}],[{"x":0,"y":8,"type":"DEEP_SPACE"},{"x":1,"y":8,"type":"DIRT"},{"x":2,"y":8,"type":"DIRT"},{"x":3,"y":8,"type":"DIRT"},{"x":4,"y":8,"type":"DIRT"},{"x":5,"y":8,"type":"DIRT"},{"x":6,"y":8,"type":"AIR"},{"x":7,"y":8,"type":"DIRT"},{"x":8,"y":8,"type":"AIR"},{"x":9,"y":8,"type":"DIRT"},{"x":10,"y":8,"type":"DIRT"},{"x":11,"y":8,"type":"DIRT"},{"x":12,"y":8,"type":"AIR"},{"x":13,"y":8,"type":"DIRT"},{"x":14,"y":8,"type":"AIR"},{"x":15,"y":8,"type":"AIR"},{"x":16,"y":8,"type":"DIRT"},{"x":17,"y":8,"type":"AIR"},{"x":18,"y":8,"type":"AIR"},{"x":19,"y":8,"type":"DIRT"},{"x":20,"y":8,"type":"AIR"},{"x":21,"y":8,"type":"DIRT"},{"x":22,"y":8,"type":"DIRT"},{"x":23,"y":8,"type":"DIRT"},{"x":24,"y":8,"type":"AIR"},{"x":25,"y":8,"type":"DIRT"},{"x":26,"y":8,"type":"AIR"},{"x":27,"y":8,"type":"DIRT"},{"x":28,"y":8,"type":"DIRT"},{"x":29,"y":8,"type":"DIRT"},{"x":30,"y":8,"type":"DIRT"},{"x":31,"y":8,"type":"DIRT"},{"x":32,"y":8,"type":"DEEP_SPACE"}],[{"x":0,"y":9,"type":"DEEP_SPACE"},{"x":1,"y":9,"type":"DIRT"},{"x":2,"y":9,"type":"AIR"},{"x":3,"y":9,"type":"AIR"},{"x":4,"y":9,"type":"AIR"},{"x":5,"y":9,"type":"DIRT"},{"x":6,"y":9,"type":"DIRT"},{"x":7,"y":9,"type":"DIRT"},{"x":8,"y":9,"type":"AIR"},{"x":9,"y":9,"type":"DIRT"},{"x":10,"y":9,"type":"DIRT"},{"x":11,"y":9,"type":"DIRT"},{"x":12,"y":9,"type":"DIRT"},{"x":13,"y":9,"type":"DIRT"},{"x":14,"y":9,"type":"DIRT"},{"x":15,"y":9,"type":"AIR"},{"x":16,"y":9,"type":"AIR"},{"x":17,"y":9,"type":"AIR"},{"x":18,"y":9,"type":"DIRT"},{"x":19,"y":9,"type":"DIRT"},{"x":20,"y":9,"type":"DIRT"},{"x":21,"y":9,"type":"DIRT"},{"x":22,"y":9,"type":"DIRT"},{"x":23,"y":9,"type":"DIRT"},{"x":24,"y":9,"type":"AIR"},{"x":25,"y":9,"type":"DIRT"},{"x":26,"y":9,"type":"DIRT"},{"x":27,"y":9,"type":"DIRT"},{"x":28,"y":9,"type":"AIR"},{"x":29,"y":9,"type":"AIR"},{"x":30,"y":9,"type":"AIR"},{"x":31,"y":9,"type":"DIRT"},{"x":32,"y":9,"type":"DEEP_SPACE"}],[{"x":0,"y":10,"type":"DEEP_SPACE"},{"x":1,"y":10,"type":"DIRT"},{"x":2,"y":10,"type":"DIRT"},{"x":3,"y":10,"type":"DIRT"},{"x":4,"y":10,"type":"DIRT"},{"x":5,"y":10,"type":"DIRT"},{"x":6,"y":10,"type":"DIRT"},{"x":7,"y":10,"type":"DIRT"},{"x":8,"y":10,"type":"DIRT"},{"x":9,"y":10,"type":"DIRT"},{"x":10,"y":10,"type":"AIR"},{"x":11,"y":10,"type":"AIR"},{"x":12,"y":10,"type":"DIRT"},{"x":13,"y":10,"type":"DIRT"},{"x":14,"y":10,"type":"AIR"},{"x":15,"y":10,"type":"AIR"},{"x":16,"y":10,"type":"AIR"},{"x":17,"y":10,"type":"AIR"},{"x":18,"y":10,"type":"AIR"},{"x":19,"y":10,"type":"DIRT"},{"x":20,"y":10,"type":"DIRT"},{"x":21,"y":10,"type":"AIR"},{"x":22,"y":10,"type":"AIR"},{"x":23,"y":10,"type":"DIRT"},{"x":24,"y":10,"type":"DIRT"},{"x":25,"y":10,"type":"DIRT"},{"x":26,"y":10,"type":"DIRT"},{"x":27,"y":10,"type":"DIRT"},{"x":28,"y":10,"type":"DIRT"},{"x":29,"y":10,"type":"DIRT"},{"x":30,"y":10,"type":"DIRT"},{"x":31,"y":10,"type":"DIRT"},{"x":32,"y":10,"type":"DEEP_SPACE"}],[{"x":0,"y":11,"type":"DIRT"},{"x":1,"y":11,"type":"DIRT"},{"x":2,"y":11,"type":"DIRT"},{"x":3,"y":11,"type":"DIRT"},{"x":4,"y":11,"type":"DIRT"},{"x":5,"y":11,"type":"DIRT"},{"x":6,"y":11,"type":"DIRT"},{"x":7,"y":11,"type":"DIRT"},{"x":8,"y":11,"type":"DIRT"},{"x":9,"y":11,"type":"DIRT"},{"x":10,"y":11,"type":"AIR"},{"x":11,"y":11,"type":"AIR"},{"x":12,"y":11,"type":"DIRT"},{"x":13,"y":11,"type":"AIR"},{"x":14,"y":11,"type":"AIR"},{"x":15,"y":11,"type":"AIR"},{"x":16,"y":11,"type":"AIR"},{"x":17,"y":11,"type":"AIR"},{"x":18,"y":11,"type":"AIR"},{"x":19,"y":11,"type":"AIR"},{"x":20,"y":11,"type":"DIRT"},{"x":21,"y":11,"type":"AIR"},{"x":22,"y":11,"type":"AIR"},{"x":23,"y":11,"type":"DIRT"},{"x":24,"y":11,"type":"DIRT"},{"x":25,"y":11,"type":"DIRT"},{"x":26,"y":11,"type":"DIRT"},{"x":27,"y":11,"type":"DIRT"},{"x":28,"y":11,"type":"DIRT"},{"x":29,"y":11,"type":"DIRT"},{"x":30,"y":11,"type":"DIRT"},{"x":31,"y":11,"type":"DIRT"},{"x":32,"y":11,"type":"DIRT"}],[{"x":0,"y":12,"type":"DIRT"},{"x":1,"y":12,"type":"DIRT"},{"x":2,"y":12,"type":"DIRT"},{"x":3,"y":12,"type":"DIRT"},{"x":4,"y":12,"type":"DIRT"},{"x":5,"y":12,"type":"DIRT"},{"x":6,"y":12,"type":"DIRT"},{"x":7,"y":12,"type":"DIRT"},{"x":8,"y":12,"type":"DIRT"},{"x":9,"y":12,"type":"DIRT"},{"x":10,"y":12,"type":"AIR"},{"x":11,"y":12,"type":"AIR"},{"x":12,"y":12,"type":"DIRT"},{"x":13,"y":12,"type":"DIRT"},{"x":14,"y":12,"type":"AIR"},{"x":15,"y":12,"type":"DIRT"},{"x":16,"y":12,"type":"DIRT"},{"x":17,"y":12,"type":"DIRT"},{"x":18,"y":12,"type":"AIR"},{"x":19,"y":12,"type":"DIRT"},{"x":20,"y":12,"type":"DIRT"},{"x":21,"y":12,"type":"AIR"},{"x":22,"y":12,"type":"AIR"},{"x":23,"y":12,"type":"DIRT"},{"x":24,"y":12,"type":"DIRT"},{"x":25,"y":12,"type":"DIRT"},{"x":26,"y":12,"type":"DIRT"},{"x":27,"y":12,"type":"DIRT"},{"x":28,"y":12,"type":"DIRT"},{"x":29,"y":12,"type":"DIRT"},{"x":30,"y":12,"type":"DIRT"},{"x":31,"y":12,"type":"DIRT"},{"x":32,"y":12,"type":"DIRT"}],[{"x":0,"y":13,"type":"DIRT"},{"x":1,"y":13,"type":"DIRT"},{"x":2,"y":13,"type":"DIRT"},{"x":3,"y":13,"type":"AIR"},{"x":4,"y":13,"type":"AIR"},{"x":5,"y":13,"type":"DIRT"},{"x":6,"y":13,"type":"DIRT"},{"x":7,"y":13,"type":"DIRT"},{"x":8,"y":13,"type":"DIRT"},{"x":9,"y":13,"type":"AIR"},{"x":10,"y":13,"type":"AIR"},{"x":11,"y":13,"type":"AIR"},{"x":12,"y":13,"type":"DIRT"},{"x":13,"y":13,"type":"DIRT"},{"x":14,"y":13,"type":"AIR"},{"x":15,"y":13,"type":"DIRT"},{"x":16,"y":13,"type":"DIRT"},{"x":17,"y":13,"type":"DIRT"},{"x":18,"y":13,"type":"AIR"},{"x":19,"y":13,"type":"DIRT"},{"x":20,"y":13,"type":"DIRT"},{"x":21,"y":13,"type":"AIR"},{"x":22,"y":13,"type":"AIR"},{"x":23,"y":13,"type":"AIR"},{"x":24,"y":13,"type":"DIRT"},{"x":25,"y":13,"type":"DIRT"},{"x":26,"y":13,"type":"DIRT"},{"x":27,"y":13,"type":"DIRT"},{"x":28,"y":13,"type":"AIR"},{"x":29,"y":13,"type":"AIR"},{"x":30,"y":13,"type":"DIRT"},{"x":31,"y":13,"type":"DIRT"},{"x":32,"y":13,"type":"DIRT"}],[{"x":0,"y":14,"type":"DIRT"},{"x":1,"y":14,"type":"DIRT"},{"x":2,"y":14,"type":"DIRT"},{"x":3,"y":14,"type":"DIRT"},{"x":4,"y":14,"type":"DIRT"},{"x":5,"y":14,"type":"DIRT"},{"x":6,"y":14,"type":"AIR"},{"x":7,"y":14,"type":"AIR"},{"x":8,"y":14,"type":"DIRT"},{"x":9,"y":14,"type":"DIRT"},{"x":10,"y":14,"type":"DIRT"},{"x":11,"y":14,"type":"DIRT"},{"x":12,"y":14,"type":"DIRT"},{"x":13,"y":14,"type":"DIRT"},{"x":14,"y":14,"type":"AIR"},{"x":15,"y":14,"type":"DIRT"},{"x":16,"y":14,"type":"AIR"},{"x":17,"y":14,"type":"DIRT"},{"x":18,"y":14,"type":"AIR"},{"x":19,"y":14,"type":"DIRT"},{"x":20,"y":14,"type":"DIRT"},{"x":21,"y":14,"type":"DIRT"},{"x":22,"y":14,"type":"DIRT"},{"x":23,"y":14,"type":"DIRT"},{"x":24,"y":14,"type":"DIRT"},{"x":25,"y":14,"type":"AIR"},{"x":26,"y":14,"type":"AIR"},{"x":27,"y":14,"type":"DIRT"},{"x":28,"y":14,"type":"DIRT"},{"x":29,"y":14,"type":"DIRT"},{"x":30,"y":14,"type":"DIRT"},{"x":31,"y":14,"type":"DIRT"},{"x":32,"y":14,"type":"DIRT"}],[{"x":0,"y":15,"type":"AIR"},{"x":1,"y":15,"type":"AIR"},{"x":2,"y":15,"type":"AIR"},{"x":3,"y":15,"type":"DIRT"},{"x":4,"y":15,"type":"DIRT"},{"x":5,"y":15,"type":"DIRT"},{"x":6,"y":15,"type":"AIR"},{"x":7,"y":15,"type":"AIR"},{"x":8,"y":15,"type":"AIR"},{"x":9,"y":15,"type":"AIR"},{"x":10,"y":15,"type":"DIRT"},{"x":11,"y":15,"type":"DIRT"},{"x":12,"y":15,"type":"DIRT"},{"x":13,"y":15,"type":"DIRT"},{"x":14,"y":15,"type":"AIR","powerup":{"type":"HEALTH_PACK","value":10}},{"x":15,"y":15,"type":"DIRT"},{"x":16,"y":15,"type":"DIRT"},{"x":17,"y":15,"type":"DIRT"},{"x":18,"y":15,"type":"AIR"},{"x":19,"y":15,"type":"DIRT"},{"x":20,"y":15,"type":"DIRT"},{"x":21,"y":15,"type":"DIRT"},{"x":22,"y":15,"type":"DIRT"},{"x":23,"y":15,"type":"AIR"},{"x":24,"y":15,"type":"AIR"},{"x":25,"y":15,"type":"AIR"},{"x":26,"y":15,"type":"AIR"},{"x":27,"y":15,"type":"DIRT"},{"x":28,"y":15,"type":"DIRT"},{"x":29,"y":15,"type":"DIRT"},{"x":30,"y":15,"type":"AIR"},{"x":31,"y":15,"type":"AIR"},{"x":32,"y":15,"type":"AIR"}],[{"x":0,"y":16,"type":"AIR"},{"x":1,"y":16,"type":"AIR","occupier":{"id":2,"playerId":1,"health":150,"position":{"x":1,"y":16},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1}},{"x":2,"y":16,"type":"AIR"},{"x":3,"y":16,"type":"DIRT"},{"x":4,"y":16,"type":"AIR"},{"x":5,"y":16,"type":"AIR"},{"x":6,"y":16,"type":"AIR"},{"x":7,"y":16,"type":"DIRT"},{"x":8,"y":16,"type":"DIRT"},{"x":9,"y":16,"type":"DIRT"},{"x":10,"y":16,"type":"DIRT"},{"x":11,"y":16,"type":"DIRT"},{"x":12,"y":16,"type":"DIRT"},{"x":13,"y":16,"type":"DIRT"},{"x":14,"y":16,"type":"DIRT"},{"x":15,"y":16,"type":"DIRT"},{"x":16,"y":16,"type":"DIRT"},{"x":17,"y":16,"type":"DIRT"},{"x":18,"y":16,"type":"DIRT"},{"x":19,"y":16,"type":"DIRT"},{"x":20,"y":16,"type":"DIRT"},{"x":21,"y":16,"type":"DIRT"},{"x":22,"y":16,"type":"DIRT"},{"x":23,"y":16,"type":"DIRT"},{"x":24,"y":16,"type":"DIRT"},{"x":25,"y":16,"type":"DIRT"},{"x":26,"y":16,"type":"AIR"},{"x":27,"y":16,"type":"AIR"},{"x":28,"y":16,"type":"AIR"},{"x":29,"y":16,"type":"DIRT"},{"x":30,"y":16,"type":"AIR"},{"x":31,"y":16,"type":"AIR","occupier":{"id":1,"playerId":2,"health":150,"position":{"x":31,"y":16},"diggingRange":1,"movementRange":1}},{"x":32,"y":16,"type":"AIR"}],[{"x":0,"y":17,"type":"AIR"},{"x":1,"y":17,"type":"AIR"},{"x":2,"y":17,"type":"AIR"},{"x":3,"y":17,"type":"DIRT"},{"x":4,"y":17,"type":"DIRT"},{"x":5,"y":17,"type":"AIR"},{"x":6,"y":17,"type":"AIR"},{"x":7,"y":17,"type":"DIRT"},{"x":8,"y":17,"type":"DIRT"},{"x":9,"y":17,"type":"DIRT"},{"x":10,"y":17,"type":"DIRT"},{"x":11,"y":17,"type":"AIR"},{"x":12,"y":17,"type":"DIRT"},{"x":13,"y":17,"type":"AIR"},{"x":14,"y":17,"type":"AIR"},{"x":15,"y":17,"type":"DIRT"},{"x":16,"y":17,"type":"DIRT"},{"x":17,"y":17,"type":"DIRT"},{"x":18,"y":17,"type":"AIR","powerup":{"type":"HEALTH_PACK","value":10}},{"x":19,"y":17,"type":"AIR"},{"x":20,"y":17,"type":"DIRT"},{"x":21,"y":17,"type":"AIR"},{"x":22,"y":17,"type":"DIRT"},{"x":23,"y":17,"type":"DIRT"},{"x":24,"y":17,"type":"DIRT"},{"x":25,"y":17,"type":"DIRT"},{"x":26,"y":17,"type":"AIR"},{"x":27,"y":17,"type":"AIR"},{"x":28,"y":17,"type":"DIRT"},{"x":29,"y":17,"type":"DIRT"},{"x":30,"y":17,"type":"AIR"},{"x":31,"y":17,"type":"AIR"},{"x":32,"y":17,"type":"AIR"}],[{"x":0,"y":18,"type":"DIRT"},{"x":1,"y":18,"type":"DIRT"},{"x":2,"y":18,"type":"DIRT"},{"x":3,"y":18,"type":"DIRT"},{"x":4,"y":18,"type":"DIRT"},{"x":5,"y":18,"type":"DIRT"},{"x":6,"y":18,"type":"AIR"},{"x":7,"y":18,"type":"DIRT"},{"x":8,"y":18,"type":"DIRT"},{"x":9,"y":18,"type":"AIR"},{"x":10,"y":18,"type":"AIR"},{"x":11,"y":18,"type":"AIR"},{"x":12,"y":18,"type":"AIR"},{"x":13,"y":18,"type":"AIR"},{"x":14,"y":18,"type":"AIR"},{"x":15,"y":18,"type":"AIR"},{"x":16,"y":18,"type":"DIRT"},{"x":17,"y":18,"type":"AIR"},{"x":18,"y":18,"type":"AIR"},{"x":19,"y":18,"type":"AIR"},{"x":20,"y":18,"type":"AIR"},{"x":21,"y":18,"type":"AIR"},{"x":22,"y":18,"type":"AIR"},{"x":23,"y":18,"type":"AIR"},{"x":24,"y":18,"type":"DIRT"},{"x":25,"y":18,"type":"DIRT"},{"x":26,"y":18,"type":"AIR"},{"x":27,"y":18,"type":"DIRT"},{"x":28,"y":18,"type":"DIRT"},{"x":29,"y":18,"type":"DIRT"},{"x":30,"y":18,"type":"DIRT"},{"x":31,"y":18,"type":"DIRT"},{"x":32,"y":18,"type":"DIRT"}],[{"x":0,"y":19,"type":"AIR"},{"x":1,"y":19,"type":"DIRT"},{"x":2,"y":19,"type":"DIRT"},{"x":3,"y":19,"type":"DIRT"},{"x":4,"y":19,"type":"DIRT"},{"x":5,"y":19,"type":"AIR"},{"x":6,"y":19,"type":"AIR"},{"x":7,"y":19,"type":"DIRT"},{"x":8,"y":19,"type":"DIRT"},{"x":9,"y":19,"type":"DIRT"},{"x":10,"y":19,"type":"AIR"},{"x":11,"y":19,"type":"AIR"},{"x":12,"y":19,"type":"AIR"},{"x":13,"y":19,"type":"AIR"},{"x":14,"y":19,"type":"AIR"},{"x":15,"y":19,"type":"DIRT"},{"x":16,"y":19,"type":"DIRT"},{"x":17,"y":19,"type":"DIRT"},{"x":18,"y":19,"type":"AIR"},{"x":19,"y":19,"type":"AIR"},{"x":20,"y":19,"type":"AIR"},{"x":21,"y":19,"type":"AIR"},{"x":22,"y":19,"type":"AIR"},{"x":23,"y":19,"type":"DIRT"},{"x":24,"y":19,"type":"DIRT"},{"x":25,"y":19,"type":"DIRT"},{"x":26,"y":19,"type":"AIR"},{"x":27,"y":19,"type":"AIR"},{"x":28,"y":19,"type":"DIRT"},{"x":29,"y":19,"type":"DIRT"},{"x":30,"y":19,"type":"DIRT"},{"x":31,"y":19,"type":"DIRT"},{"x":32,"y":19,"type":"AIR"}],[{"x":0,"y":20,"type":"DIRT"},{"x":1,"y":20,"type":"DIRT"},{"x":2,"y":20,"type":"DIRT"},{"x":3,"y":20,"type":"DIRT"},{"x":4,"y":20,"type":"AIR"},{"x":5,"y":20,"type":"AIR"},{"x":6,"y":20,"type":"DIRT"},{"x":7,"y":20,"type":"DIRT"},{"x":8,"y":20,"type":"DIRT"},{"x":9,"y":20,"type":"DIRT"},{"x":10,"y":20,"type":"DIRT"},{"x":11,"y":20,"type":"DIRT"},{"x":12,"y":20,"type":"AIR"},{"x":13,"y":20,"type":"AIR"},{"x":14,"y":20,"type":"DIRT"},{"x":15,"y":20,"type":"DIRT"},{"x":16,"y":20,"type":"DIRT"},{"x":17,"y":20,"type":"DIRT"},{"x":18,"y":20,"type":"DIRT"},{"x":19,"y":20,"type":"AIR"},{"x":20,"y":20,"type":"AIR"},{"x":21,"y":20,"type":"DIRT"},{"x":22,"y":20,"type":"DIRT"},{"x":23,"y":20,"type":"DIRT"},{"x":24,"y":20,"type":"DIRT"},{"x":25,"y":20,"type":"DIRT"},{"x":26,"y":20,"type":"DIRT"},{"x":27,"y":20,"type":"AIR"},{"x":28,"y":20,"type":"AIR"},{"x":29,"y":20,"type":"DIRT"},{"x":30,"y":20,"type":"DIRT"},{"x":31,"y":20,"type":"DIRT"},{"x":32,"y":20,"type":"DIRT"}],[{"x":0,"y":21,"type":"DIRT"},{"x":1,"y":21,"type":"DIRT"},{"x":2,"y":21,"type":"AIR"},{"x":3,"y":21,"type":"AIR"},{"x":4,"y":21,"type":"AIR"},{"x":5,"y":21,"type":"AIR"},{"x":6,"y":21,"type":"DIRT"},{"x":7,"y":21,"type":"DIRT"},{"x":8,"y":21,"type":"DIRT"},{"x":9,"y":21,"type":"DIRT"},{"x":10,"y":21,"type":"DIRT"},{"x":11,"y":21,"type":"DIRT"},{"x":12,"y":21,"type":"AIR"},{"x":13,"y":21,"type":"DIRT"},{"x":14,"y":21,"type":"DIRT"},{"x":15,"y":21,"type":"DIRT"},{"x":16,"y":21,"type":"DIRT"},{"x":17,"y":21,"type":"DIRT"},{"x":18,"y":21,"type":"DIRT"},{"x":19,"y":21,"type":"DIRT"},{"x":20,"y":21,"type":"AIR"},{"x":21,"y":21,"type":"DIRT"},{"x":22,"y":21,"type":"DIRT"},{"x":23,"y":21,"type":"DIRT"},{"x":24,"y":21,"type":"DIRT"},{"x":25,"y":21,"type":"DIRT"},{"x":26,"y":21,"type":"DIRT"},{"x":27,"y":21,"type":"AIR"},{"x":28,"y":21,"type":"AIR"},{"x":29,"y":21,"type":"AIR"},{"x":30,"y":21,"type":"AIR"},{"x":31,"y":21,"type":"DIRT"},{"x":32,"y":21,"type":"DIRT"}],[{"x":0,"y":22,"type":"DEEP_SPACE"},{"x":1,"y":22,"type":"AIR"},{"x":2,"y":22,"type":"AIR"},{"x":3,"y":22,"type":"AIR"},{"x":4,"y":22,"type":"AIR"},{"x":5,"y":22,"type":"DIRT"},{"x":6,"y":22,"type":"DIRT"},{"x":7,"y":22,"type":"DIRT"},{"x":8,"y":22,"type":"DIRT"},{"x":9,"y":22,"type":"DIRT"},{"x":10,"y":22,"type":"DIRT"},{"x":11,"y":22,"type":"DIRT"},{"x":12,"y":22,"type":"AIR"},{"x":13,"y":22,"type":"DIRT"},{"x":14,"y":22,"type":"DIRT"},{"x":15,"y":22,"type":"AIR"},{"x":16,"y":22,"type":"AIR"},{"x":17,"y":22,"type":"AIR"},{"x":18,"y":22,"type":"DIRT"},{"x":19,"y":22,"type":"DIRT"},{"x":20,"y":22,"type":"AIR"},{"x":21,"y":22,"type":"DIRT"},{"x":22,"y":22,"type":"DIRT"},{"x":23,"y":22,"type":"DIRT"},{"x":24,"y":22,"type":"DIRT"},{"x":25,"y":22,"type":"DIRT"},{"x":26,"y":22,"type":"DIRT"},{"x":27,"y":22,"type":"DIRT"},{"x":28,"y":22,"type":"AIR"},{"x":29,"y":22,"type":"AIR"},{"x":30,"y":22,"type":"AIR"},{"x":31,"y":22,"type":"AIR"},{"x":32,"y":22,"type":"DEEP_SPACE"}],[{"x":0,"y":23,"type":"DEEP_SPACE"},{"x":1,"y":23,"type":"DIRT"},{"x":2,"y":23,"type":"DIRT"},{"x":3,"y":23,"type":"DIRT"},{"x":4,"y":23,"type":"DIRT"},{"x":5,"y":23,"type":"DIRT"},{"x":6,"y":23,"type":"DIRT"},{"x":7,"y":23,"type":"AIR"},{"x":8,"y":23,"type":"DIRT"},{"x":9,"y":23,"type":"DIRT"},{"x":10,"y":23,"type":"DIRT"},{"x":11,"y":23,"type":"DIRT"},{"x":12,"y":23,"type":"AIR"},{"x":13,"y":23,"type":"DIRT"},{"x":14,"y":23,"type":"DIRT"},{"x":15,"y":23,"type":"AIR"},{"x":16,"y":23,"type":"AIR"},{"x":17,"y":23,"type":"AIR"},{"x":18,"y":23,"type":"DIRT"},{"x":19,"y":23,"type":"DIRT"},{"x":20,"y":23,"type":"AIR"},{"x":21,"y":23,"type":"DIRT"},{"x":22,"y":23,"type":"DIRT"},{"x":23,"y":23,"type":"DIRT"},{"x":24,"y":23,"type":"DIRT"},{"x":25,"y":23,"type":"AIR"},{"x":26,"y":23,"type":"DIRT"},{"x":27,"y":23,"type":"DIRT"},{"x":28,"y":23,"type":"DIRT"},{"x":29,"y":23,"type":"DIRT"},{"x":30,"y":23,"type":"DIRT"},{"x":31,"y":23,"type":"DIRT"},{"x":32,"y":23,"type":"DEEP_SPACE"}],[{"x":0,"y":24,"type":"DEEP_SPACE"},{"x":1,"y":24,"type":"DIRT"},{"x":2,"y":24,"type":"DIRT"},{"x":3,"y":24,"type":"DIRT"},{"x":4,"y":24,"type":"AIR"},{"x":5,"y":24,"type":"AIR"},{"x":6,"y":24,"type":"AIR"},{"x":7,"y":24,"type":"AIR"},{"x":8,"y":24,"type":"DIRT"},{"x":9,"y":24,"type":"AIR"},{"x":10,"y":24,"type":"AIR"},{"x":11,"y":24,"type":"AIR"},{"x":12,"y":24,"type":"AIR"},{"x":13,"y":24,"type":"AIR"},{"x":14,"y":24,"type":"DIRT"},{"x":15,"y":24,"type":"DIRT"},{"x":16,"y":24,"type":"DIRT"},{"x":17,"y":24,"type":"DIRT"},{"x":18,"y":24,"type":"DIRT"},{"x":19,"y":24,"type":"AIR"},{"x":20,"y":24,"type":"AIR"},{"x":21,"y":24,"type":"AIR"},{"x":22,"y":24,"type":"AIR"},{"x":23,"y":24,"type":"AIR"},{"x":24,"y":24,"type":"DIRT"},{"x":25,"y":24,"type":"AIR"},{"x":26,"y":24,"type":"AIR"},{"x":27,"y":24,"type":"AIR"},{"x":28,"y":24,"type":"AIR"},{"x":29,"y":24,"type":"DIRT"},{"x":30,"y":24,"type":"DIRT"},{"x":31,"y":24,"type":"DIRT"},{"x":32,"y":24,"type":"DEEP_SPACE"}],[{"x":0,"y":25,"type":"DEEP_SPACE"},{"x":1,"y":25,"type":"DEEP_SPACE"},{"x":2,"y":25,"type":"AIR"},{"x":3,"y":25,"type":"AIR"},{"x":4,"y":25,"type":"AIR"},{"x":5,"y":25,"type":"AIR"},{"x":6,"y":25,"type":"DIRT"},{"x":7,"y":25,"type":"DIRT"},{"x":8,"y":25,"type":"DIRT"},{"x":9,"y":25,"type":"AIR"},{"x":10,"y":25,"type":"AIR"},{"x":11,"y":25,"type":"DIRT"},{"x":12,"y":25,"type":"DIRT"},{"x":13,"y":25,"type":"DIRT"},{"x":14,"y":25,"type":"DIRT"},{"x":15,"y":25,"type":"DIRT"},{"x":16,"y":25,"type":"DIRT"},{"x":17,"y":25,"type":"DIRT"},{"x":18,"y":25,"type":"DIRT"},{"x":19,"y":25,"type":"DIRT"},{"x":20,"y":25,"type":"DIRT"},{"x":21,"y":25,"type":"DIRT"},{"x":22,"y":25,"type":"AIR"},{"x":23,"y":25,"type":"AIR"},{"x":24,"y":25,"type":"DIRT"},{"x":25,"y":25,"type":"DIRT"},{"x":26,"y":25,"type":"DIRT"},{"x":27,"y":25,"type":"AIR"},{"x":28,"y":25,"type":"AIR"},{"x":29,"y":25,"type":"AIR"},{"x":30,"y":25,"type":"AIR"},{"x":31,"y":25,"type":"DEEP_SPACE"},{"x":32,"y":25,"type":"DEEP_SPACE"}],[{"x":0,"y":26,"type":"DEEP_SPACE"},{"x":1,"y":26,"type":"DEEP_SPACE"},{"x":2,"y":26,"type":"DEEP_SPACE"},{"x":3,"y":26,"type":"AIR"},{"x":4,"y":26,"type":"AIR"},{"x":5,"y":26,"type":"AIR"},{"x":6,"y":26,"type":"DIRT"},{"x":7,"y":26,"type":"DIRT"},{"x":8,"y":26,"type":"DIRT"},{"x":9,"y":26,"type":"DIRT"},{"x":10,"y":26,"type":"AIR"},{"x":11,"y":26,"type":"AIR"},{"x":12,"y":26,"type":"AIR"},{"x":13,"y":26,"type":"AIR"},{"x":14,"y":26,"type":"AIR"},{"x":15,"y":26,"type":"DIRT"},{"x":16,"y":26,"type":"DIRT"},{"x":17,"y":26,"type":"DIRT"},{"x":18,"y":26,"type":"AIR"},{"x":19,"y":26,"type":"AIR"},{"x":20,"y":26,"type":"AIR"},{"x":21,"y":26,"type":"AIR"},{"x":22,"y":26,"type":"AIR"},{"x":23,"y":26,"type":"DIRT"},{"x":24,"y":26,"type":"DIRT"},{"x":25,"y":26,"type":"DIRT"},{"x":26,"y":26,"type":"DIRT"},{"x":27,"y":26,"type":"AIR"},{"x":28,"y":26,"type":"AIR"},{"x":29,"y":26,"type":"AIR"},{"x":30,"y":26,"type":"DEEP_SPACE"},{"x":31,"y":26,"type":"DEEP_SPACE"},{"x":32,"y":26,"type":"DEEP_SPACE"}],[{"x":0,"y":27,"type":"DEEP_SPACE"},{"x":1,"y":27,"type":"DEEP_SPACE"},{"x":2,"y":27,"type":"DEEP_SPACE"},{"x":3,"y":27,"type":"DEEP_SPACE"},{"x":4,"y":27,"type":"AIR"},{"x":5,"y":27,"type":"DIRT"},{"x":6,"y":27,"type":"AIR"},{"x":7,"y":27,"type":"DIRT"},{"x":8,"y":27,"type":"DIRT"},{"x":9,"y":27,"type":"DIRT"},{"x":10,"y":27,"type":"DIRT"},{"x":11,"y":27,"type":"DIRT"},{"x":12,"y":27,"type":"DIRT"},{"x":13,"y":27,"type":"AIR"},{"x":14,"y":27,"type":"AIR"},{"x":15,"y":27,"type":"DIRT"},{"x":16,"y":27,"type":"AIR"},{"x":17,"y":27,"type":"DIRT"},{"x":18,"y":27,"type":"AIR"},{"x":19,"y":27,"type":"AIR"},{"x":20,"y":27,"type":"DIRT"},{"x":21,"y":27,"type":"DIRT"},{"x":22,"y":27,"type":"DIRT"},{"x":23,"y":27,"type":"DIRT"},{"x":24,"y":27,"type":"DIRT"},{"x":25,"y":27,"type":"DIRT"},{"x":26,"y":27,"type":"DIRT"},{"x":27,"y":27,"type":"DIRT"},{"x":28,"y":27,"type":"AIR"},{"x":29,"y":27,"type":"DEEP_SPACE"},{"x":30,"y":27,"type":"DEEP_SPACE"},{"x":31,"y":27,"type":"DEEP_SPACE"},{"x":32,"y":27,"type":"DEEP_SPACE"}],[{"x":0,"y":28,"type":"DEEP_SPACE"},{"x":1,"y":28,"type":"DEEP_SPACE"},{"x":2,"y":28,"type":"DEEP_SPACE"},{"x":3,"y":28,"type":"DEEP_SPACE"},{"x":4,"y":28,"type":"DIRT"},{"x":5,"y":28,"type":"DIRT"},{"x":6,"y":28,"type":"AIR"},{"x":7,"y":28,"type":"DIRT"},{"x":8,"y":28,"type":"AIR"},{"x":9,"y":28,"type":"AIR"},{"x":10,"y":28,"type":"AIR"},{"x":11,"y":28,"type":"DIRT"},{"x":12,"y":28,"type":"AIR"},{"x":13,"y":28,"type":"AIR"},{"x":14,"y":28,"type":"AIR"},{"x":15,"y":28,"type":"DIRT"},{"x":16,"y":28,"type":"DIRT"},{"x":17,"y":28,"type":"DIRT"},{"x":18,"y":28,"type":"AIR"},{"x":19,"y":28,"type":"AIR"},{"x":20,"y":28,"type":"AIR"},{"x":21,"y":28,"type":"AIR"},{"x":22,"y":28,"type":"DIRT"},{"x":23,"y":28,"type":"AIR"},{"x":24,"y":28,"type":"AIR"},{"x":25,"y":28,"type":"AIR"},{"x":26,"y":28,"type":"DIRT"},{"x":27,"y":28,"type":"DIRT"},{"x":28,"y":28,"type":"DIRT"},{"x":29,"y":28,"type":"DEEP_SPACE"},{"x":30,"y":28,"type":"DEEP_SPACE"},{"x":31,"y":28,"type":"DEEP_SPACE"},{"x":32,"y":28,"type":"DEEP_SPACE"}],[{"x":0,"y":29,"type":"DEEP_SPACE"},{"x":1,"y":29,"type":"DEEP_SPACE"},{"x":2,"y":29,"type":"DEEP_SPACE"},{"x":3,"y":29,"type":"DEEP_SPACE"},{"x":4,"y":29,"type":"DEEP_SPACE"},{"x":5,"y":29,"type":"DEEP_SPACE"},{"x":6,"y":29,"type":"DIRT"},{"x":7,"y":29,"type":"DIRT"},{"x":8,"y":29,"type":"AIR"},{"x":9,"y":29,"type":"AIR","occupier":{"id":2,"playerId":2,"health":150,"position":{"x":9,"y":29},"diggingRange":1,"movementRange":1}},{"x":10,"y":29,"type":"AIR"},{"x":11,"y":29,"type":"DIRT"},{"x":12,"y":29,"type":"DIRT"},{"x":13,"y":29,"type":"DIRT"},{"x":14,"y":29,"type":"DIRT"},{"x":15,"y":29,"type":"DIRT"},{"x":16,"y":29,"type":"DIRT"},{"x":17,"y":29,"type":"DIRT"},{"x":18,"y":29,"type":"DIRT"},{"x":19,"y":29,"type":"DIRT"},{"x":20,"y":29,"type":"DIRT"},{"x":21,"y":29,"type":"AIR"},{"x":22,"y":29,"type":"DIRT"},{"x":23,"y":29,"type":"AIR"},{"x":24,"y":29,"type":"AIR","occupier":{"id":1,"playerId":1,"health":150,"position":{"x":24,"y":29},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1}},{"x":25,"y":29,"type":"AIR"},{"x":26,"y":29,"type":"DIRT"},{"x":27,"y":29,"type":"DEEP_SPACE"},{"x":28,"y":29,"type":"DEEP_SPACE"},{"x":29,"y":29,"type":"DEEP_SPACE"},{"x":30,"y":29,"type":"DEEP_SPACE"},{"x":31,"y":29,"type":"DEEP_SPACE"},{"x":32,"y":29,"type":"DEEP_SPACE"}],[{"x":0,"y":30,"type":"DEEP_SPACE"},{"x":1,"y":30,"type":"DEEP_SPACE"},{"x":2,"y":30,"type":"DEEP_SPACE"},{"x":3,"y":30,"type":"DEEP_SPACE"},{"x":4,"y":30,"type":"DEEP_SPACE"},{"x":5,"y":30,"type":"DEEP_SPACE"},{"x":6,"y":30,"type":"DEEP_SPACE"},{"x":7,"y":30,"type":"DIRT"},{"x":8,"y":30,"type":"AIR"},{"x":9,"y":30,"type":"AIR"},{"x":10,"y":30,"type":"AIR"},{"x":11,"y":30,"type":"DIRT"},{"x":12,"y":30,"type":"DIRT"},{"x":13,"y":30,"type":"DIRT"},{"x":14,"y":30,"type":"AIR"},{"x":15,"y":30,"type":"AIR"},{"x":16,"y":30,"type":"DIRT"},{"x":17,"y":30,"type":"AIR"},{"x":18,"y":30,"type":"AIR"},{"x":19,"y":30,"type":"DIRT"},{"x":20,"y":30,"type":"DIRT"},{"x":21,"y":30,"type":"DIRT"},{"x":22,"y":30,"type":"DIRT"},{"x":23,"y":30,"type":"AIR"},{"x":24,"y":30,"type":"AIR"},{"x":25,"y":30,"type":"AIR"},{"x":26,"y":30,"type":"DEEP_SPACE"},{"x":27,"y":30,"type":"DEEP_SPACE"},{"x":28,"y":30,"type":"DEEP_SPACE"},{"x":29,"y":30,"type":"DEEP_SPACE"},{"x":30,"y":30,"type":"DEEP_SPACE"},{"x":31,"y":30,"type":"DEEP_SPACE"},{"x":32,"y":30,"type":"DEEP_SPACE"}],[{"x":0,"y":31,"type":"DEEP_SPACE"},{"x":1,"y":31,"type":"DEEP_SPACE"},{"x":2,"y":31,"type":"DEEP_SPACE"},{"x":3,"y":31,"type":"DEEP_SPACE"},{"x":4,"y":31,"type":"DEEP_SPACE"},{"x":5,"y":31,"type":"DEEP_SPACE"},{"x":6,"y":31,"type":"DEEP_SPACE"},{"x":7,"y":31,"type":"DEEP_SPACE"},{"x":8,"y":31,"type":"DIRT"},{"x":9,"y":31,"type":"DIRT"},{"x":10,"y":31,"type":"DIRT"},{"x":11,"y":31,"type":"DIRT"},{"x":12,"y":31,"type":"DIRT"},{"x":13,"y":31,"type":"AIR"},{"x":14,"y":31,"type":"AIR"},{"x":15,"y":31,"type":"AIR"},{"x":16,"y":31,"type":"AIR"},{"x":17,"y":31,"type":"AIR"},{"x":18,"y":31,"type":"AIR"},{"x":19,"y":31,"type":"AIR"},{"x":20,"y":31,"type":"DIRT"},{"x":21,"y":31,"type":"AIR"},{"x":22,"y":31,"type":"DIRT"},{"x":23,"y":31,"type":"DIRT"},{"x":24,"y":31,"type":"DIRT"},{"x":25,"y":31,"type":"DEEP_SPACE"},{"x":26,"y":31,"type":"DEEP_SPACE"},{"x":27,"y":31,"type":"DEEP_SPACE"},{"x":28,"y":31,"type":"DEEP_SPACE"},{"x":29,"y":31,"type":"DEEP_SPACE"},{"x":30,"y":31,"type":"DEEP_SPACE"},{"x":31,"y":31,"type":"DEEP_SPACE"},{"x":32,"y":31,"type":"DEEP_SPACE"}],[{"x":0,"y":32,"type":"DEEP_SPACE"},{"x":1,"y":32,"type":"DEEP_SPACE"},{"x":2,"y":32,"type":"DEEP_SPACE"},{"x":3,"y":32,"type":"DEEP_SPACE"},{"x":4,"y":32,"type":"DEEP_SPACE"},{"x":5,"y":32,"type":"DEEP_SPACE"},{"x":6,"y":32,"type":"DEEP_SPACE"},{"x":7,"y":32,"type":"DEEP_SPACE"},{"x":8,"y":32,"type":"DEEP_SPACE"},{"x":9,"y":32,"type":"DEEP_SPACE"},{"x":10,"y":32,"type":"DEEP_SPACE"},{"x":11,"y":32,"type":"AIR"},{"x":12,"y":32,"type":"AIR"},{"x":13,"y":32,"type":"DIRT"},{"x":14,"y":32,"type":"DIRT"},{"x":15,"y":32,"type":"AIR"},{"x":16,"y":32,"type":"DIRT"},{"x":17,"y":32,"type":"AIR"},{"x":18,"y":32,"type":"DIRT"},{"x":19,"y":32,"type":"DIRT"},{"x":20,"y":32,"type":"AIR"},{"x":21,"y":32,"type":"AIR"},{"x":22,"y":32,"type":"DEEP_SPACE"},{"x":23,"y":32,"type":"DEEP_SPACE"},{"x":24,"y":32,"type":"DEEP_SPACE"},{"x":25,"y":32,"type":"DEEP_SPACE"},{"x":26,"y":32,"type":"DEEP_SPACE"},{"x":27,"y":32,"type":"DEEP_SPACE"},{"x":28,"y":32,"type":"DEEP_SPACE"},{"x":29,"y":32,"type":"DEEP_SPACE"},{"x":30,"y":32,"type":"DEEP_SPACE"},{"x":31,"y":32,"type":"DEEP_SPACE"},{"x":32,"y":32,"type":"DEEP_SPACE"}]]} \ No newline at end of file
diff --git a/tests/replays/2019.04.20.09.47.04/A-log.csv b/tests/replays/2019.04.20.09.47.04/A-log.csv
new file mode 100644
index 0000000..8d80da3
--- /dev/null
+++ b/tests/replays/2019.04.20.09.47.04/A-log.csv
@@ -0,0 +1,401 @@
+Round,CommandType,Command,ActiveWorm,Score,Health,Worm1 Health,Worm1 x,Worm1 y,Worm2 Health,Worm2 x,Worm2 y,Worm3 Health,Worm3 x,Worm3 y
+1,null,"null",1,150,450,150,24,29,150,1,16,150,24,3
+2,move,"move (23, 28)",1,155,450,150,23,28,150,1,16,150,24,3
+3,move,"move (0, 17)",2,160,450,150,23,28,150,0,17,150,24,3
+4,move,"move (25, 3)",3,165,450,150,23,28,150,0,17,150,25,3
+5,dig,"dig (22, 28)",1,172,450,150,23,28,150,0,17,150,25,3
+6,move,"move (0, 16)",2,177,450,150,23,28,150,0,16,150,25,3
+7,move,"move (24, 4)",3,182,450,150,23,28,150,0,16,150,24,4
+8,move,"move (24, 28)",1,187,450,150,24,28,150,0,16,150,24,4
+9,move,"move (0, 17)",2,192,450,150,24,28,150,0,17,150,24,4
+10,dig,"dig (23, 5)",3,199,450,150,24,28,150,0,17,150,24,4
+11,dig,"dig (25, 27)",1,206,450,150,24,28,150,0,17,150,24,4
+12,move,"move (1, 16)",2,211,450,150,24,28,150,1,16,150,24,4
+13,move,"move (25, 4)",3,216,450,150,24,28,150,1,16,150,25,4
+14,move,"move (24, 29)",1,221,450,150,24,29,150,1,16,150,25,4
+15,move,"move (0, 16)",2,226,450,150,24,29,150,0,16,150,25,4
+16,dig,"dig (26, 5)",3,233,450,150,24,29,150,0,16,150,25,4
+17,move,"move (25, 28)",1,238,450,150,25,28,150,0,16,150,25,4
+18,move,"move (0, 15)",2,243,450,150,25,28,150,0,15,150,25,4
+19,dig,"dig (26, 4)",3,250,450,150,25,28,150,0,15,150,25,4
+20,dig,"dig (26, 27)",1,257,450,150,25,28,150,0,15,150,25,4
+21,move,"move (1, 15)",2,262,450,150,25,28,150,1,15,150,25,4
+22,dig,"dig (24, 5)",3,269,450,150,25,28,150,1,15,150,25,4
+23,move,"move (24, 28)",1,274,450,150,24,28,150,1,15,150,25,4
+24,dig,"dig (2, 14)",2,281,450,150,24,28,150,1,15,150,25,4
+25,move,"move (24, 4)",3,286,450,150,24,28,150,1,15,150,24,4
+26,move,"move (23, 28)",1,291,450,150,23,28,150,1,15,150,24,4
+27,move,"move (0, 15)",2,296,450,150,23,28,150,0,15,150,24,4
+28,move,"move (25, 3)",3,301,450,150,23,28,150,0,15,150,25,3
+29,move,"move (24, 28)",1,306,450,150,24,28,150,0,15,150,25,3
+30,dig,"dig (1, 14)",2,313,450,150,24,28,150,0,15,150,25,3
+31,move,"move (25, 4)",3,318,450,150,24,28,150,0,15,150,25,4
+32,move,"move (25, 28)",1,323,450,150,25,28,150,0,15,150,25,4
+33,move,"move (1, 14)",2,328,450,150,25,28,150,1,14,150,25,4
+34,dig,"dig (25, 5)",3,335,450,150,25,28,150,1,14,150,25,4
+35,dig,"dig (24, 27)",1,342,450,150,25,28,150,1,14,150,25,4
+36,move,"move (2, 15)",2,347,450,150,25,28,150,2,15,150,25,4
+37,move,"move (26, 5)",3,352,450,150,25,28,150,2,15,150,26,5
+38,move,"move (25, 29)",1,357,450,150,25,29,150,2,15,150,26,5
+39,move,"move (1, 15)",2,362,450,150,25,29,150,1,15,150,26,5
+40,dig,"dig (27, 5)",3,369,450,150,25,29,150,1,15,150,26,5
+41,dig,"dig (26, 29)",1,376,450,150,25,29,150,1,15,150,26,5
+42,move,"move (2, 15)",2,381,450,150,25,29,150,2,15,150,26,5
+43,move,"move (27, 6)",3,386,450,150,25,29,150,2,15,150,27,6
+44,move,"move (24, 28)",1,391,450,150,24,28,150,2,15,150,27,6
+45,move,"move (1, 15)",2,396,450,150,24,28,150,1,15,150,27,6
+46,move,"move (26, 6)",3,401,450,150,24,28,150,1,15,150,26,6
+47,move,"move (25, 27)",1,406,450,150,25,27,150,1,15,150,26,6
+48,move,"move (1, 14)",2,411,450,150,25,27,150,1,14,150,26,6
+49,dig,"dig (25, 7)",3,418,450,150,25,27,150,1,14,150,26,6
+50,move,"move (26, 27)",1,423,450,150,26,27,150,1,14,150,26,6
+51,dig,"dig (0, 13)",2,430,450,150,26,27,150,1,14,150,26,6
+52,move,"move (25, 6)",3,435,450,150,26,27,150,1,14,150,25,6
+53,move,"move (27, 26)",1,440,450,150,27,26,150,1,14,150,25,6
+54,dig,"dig (1, 13)",2,447,450,150,27,26,150,1,14,150,25,6
+55,move,"move (26, 5)",3,452,450,150,27,26,150,1,14,150,26,5
+56,move,"move (28, 26)",1,457,450,150,28,26,150,1,14,150,26,5
+57,move,"move (2, 14)",2,462,450,150,28,26,150,2,14,150,26,5
+58,move,"move (25, 5)",3,467,450,150,28,26,150,2,14,150,25,5
+59,move,"move (28, 27)",1,472,450,150,28,27,150,2,14,150,25,5
+60,dig,"dig (2, 13)",2,479,450,150,28,27,150,2,14,150,25,5
+61,move,"move (26, 6)",3,484,450,150,28,27,150,2,14,150,26,6
+62,move,"move (27, 26)",1,489,450,150,27,26,150,2,14,150,26,6
+63,move,"move (1, 14)",2,494,450,150,27,26,150,1,14,150,26,6
+64,move,"move (26, 7)",3,499,450,150,27,26,150,1,14,150,26,7
+65,move,"move (28, 25)",1,504,450,150,28,25,150,1,14,150,26,7
+66,move,"move (1, 15)",2,509,450,150,28,25,150,1,15,150,26,7
+67,dig,"dig (25, 8)",3,516,450,150,28,25,150,1,15,150,26,7
+68,move,"move (27, 25)",1,521,450,150,27,25,150,1,15,150,26,7
+69,move,"move (2, 14)",2,526,450,150,27,25,150,2,14,150,26,7
+70,move,"move (26, 6)",3,531,450,150,27,25,150,2,14,150,26,6
+71,move,"move (26, 24)",1,536,450,150,26,24,150,2,14,150,26,6
+72,move,"move (1, 14)",2,541,450,150,26,24,150,1,14,150,26,6
+73,move,"move (25, 6)",3,546,450,150,26,24,150,1,14,150,25,6
+74,move,"move (27, 25)",1,551,450,150,27,25,150,1,14,150,25,6
+75,move,"move (2, 14)",2,556,450,150,27,25,150,2,14,150,25,6
+76,move,"move (25, 7)",3,561,450,150,27,25,150,2,14,150,25,7
+77,dig,"dig (26, 25)",1,568,450,150,27,25,150,2,14,150,25,7
+78,move,"move (1, 13)",2,573,450,150,27,25,150,1,13,150,25,7
+79,move,"move (24, 6)",3,578,450,150,27,25,150,1,13,150,24,6
+80,move,"move (28, 26)",1,583,450,150,28,26,150,1,13,150,24,6
+81,dig,"dig (1, 12)",2,590,450,150,28,26,150,1,13,150,24,6
+82,dig,"dig (24, 7)",3,597,450,150,28,26,150,1,13,150,24,6
+83,move,"move (28, 27)",1,602,450,150,28,27,150,1,13,150,24,6
+84,move,"move (1, 14)",2,607,450,150,28,27,150,1,14,150,24,6
+85,move,"move (24, 5)",3,612,450,150,28,27,150,1,14,150,24,5
+86,move,"move (29, 26)",1,617,450,150,29,26,150,1,14,150,24,5
+87,move,"move (2, 15)",2,622,450,150,29,26,150,2,15,150,24,5
+88,move,"move (25, 6)",3,627,450,150,29,26,150,2,15,150,25,6
+89,move,"move (28, 26)",1,632,450,150,28,26,150,2,15,150,25,6
+90,move,"move (1, 15)",2,637,450,150,28,26,150,1,15,150,25,6
+91,move,"move (24, 6)",3,642,450,150,28,26,150,1,15,150,24,6
+92,move,"move (29, 26)",1,647,450,150,29,26,150,1,15,150,24,6
+93,move,"move (1, 16)",2,652,450,150,29,26,150,1,16,150,24,6
+94,move,"move (25, 7)",3,657,450,150,29,26,150,1,16,150,25,7
+95,move,"move (28, 27)",1,662,450,150,28,27,150,1,16,150,25,7
+96,move,"move (1, 15)",2,667,450,150,28,27,150,1,15,150,25,7
+97,move,"move (24, 6)",3,672,450,150,28,27,150,1,15,150,24,6
+98,move,"move (27, 26)",1,677,450,150,27,26,150,1,15,150,24,6
+99,move,"move (2, 15)",2,682,450,150,27,26,150,2,15,150,24,6
+100,move,"move (24, 5)",3,687,450,150,27,26,150,2,15,150,24,5
+101,dig,"dig (27, 27)",1,694,450,150,27,26,150,2,15,150,24,5
+102,dig,"dig (3, 14)",2,701,450,150,27,26,150,2,15,150,24,5
+103,move,"move (25, 4)",3,706,450,150,27,26,150,2,15,150,25,4
+104,move,"move (28, 26)",1,711,450,150,28,26,150,2,15,150,25,4
+105,dig,"dig (3, 15)",2,718,450,150,28,26,150,2,15,150,25,4
+106,move,"move (26, 4)",3,723,450,150,28,26,150,2,15,150,26,4
+107,nothing,"nothing",1,723,450,150,28,26,150,2,15,150,26,4
+108,move,"move (2, 16)",2,728,450,150,28,26,150,2,16,150,26,4
+109,move,"move (25, 5)",3,733,450,150,28,26,150,2,16,150,25,5
+110,move,"move (29, 25)",1,738,450,150,29,25,150,2,16,150,25,5
+111,move,"move (2, 15)",2,743,450,150,29,25,150,2,15,150,25,5
+112,move,"move (24, 4)",3,748,450,150,29,25,150,2,15,150,24,4
+113,dig,"dig (29, 24)",1,755,450,150,29,25,150,2,15,150,24,4
+114,move,"move (3, 14)",2,760,450,150,29,25,150,3,14,150,24,4
+115,move,"move (23, 5)",3,765,450,150,29,25,150,3,14,150,23,5
+116,move,"move (29, 26)",1,770,450,150,29,26,150,3,14,150,23,5
+117,move,"move (3, 13)",2,775,450,150,29,26,150,3,13,150,23,5
+118,dig,"dig (22, 4)",3,782,450,150,29,26,150,3,13,150,23,5
+119,move,"move (28, 26)",1,787,450,150,28,26,150,3,13,150,23,5
+120,move,"move (2, 14)",2,792,450,150,28,26,150,2,14,150,23,5
+121,move,"move (24, 4)",3,797,450,150,28,26,150,2,14,150,24,4
+122,move,"move (28, 27)",1,802,450,150,28,27,150,2,14,150,24,4
+123,move,"move (2, 15)",2,807,450,150,28,27,150,2,15,150,24,4
+124,move,"move (23, 4)",3,812,450,150,28,27,150,2,15,150,23,4
+125,move,"move (29, 26)",1,817,450,150,29,26,150,2,15,150,23,4
+126,move,"move (2, 16)",2,822,450,150,29,26,150,2,16,150,23,4
+127,move,"move (24, 5)",3,827,450,150,29,26,150,2,16,150,24,5
+128,move,"move (30, 25)",1,832,450,150,30,25,150,2,16,150,24,5
+129,move,"move (2, 17)",2,837,450,150,30,25,150,2,17,150,24,5
+130,move,"move (23, 4)",3,842,450,150,30,25,150,2,17,150,23,4
+131,move,"move (29, 24)",1,847,450,150,29,24,150,2,17,150,23,4
+132,dig,"dig (3, 16)",2,854,450,150,29,24,150,2,17,150,23,4
+133,move,"move (24, 3)",3,859,450,150,29,24,150,2,17,150,24,3
+134,move,"move (28, 24)",1,864,450,150,28,24,150,2,17,150,24,3
+135,dig,"dig (2, 18)",2,871,450,150,28,24,150,2,17,150,24,3
+136,move,"move (23, 2)",3,876,450,150,28,24,150,2,17,150,23,2
+137,dig,"dig (29, 23)",1,883,450,150,28,24,150,2,17,150,23,2
+138,move,"move (2, 16)",2,888,450,150,28,24,150,2,16,150,23,2
+139,move,"move (24, 3)",3,893,450,150,28,24,150,2,16,150,24,3
+140,dig,"dig (28, 23)",1,900,450,150,28,24,150,2,16,150,24,3
+141,move,"move (1, 17)",2,905,450,150,28,24,150,1,17,150,24,3
+142,move,"move (24, 2)",3,910,450,150,28,24,150,1,17,150,24,2
+143,move,"move (27, 24)",1,915,450,150,27,24,150,1,17,150,24,2
+144,dig,"dig (1, 18)",2,922,450,150,27,24,150,1,17,150,24,2
+145,dig,"dig (24, 1)",3,929,450,150,27,24,150,1,17,150,24,2
+146,move,"move (28, 23)",1,934,450,150,28,23,150,1,17,150,24,2
+147,move,"move (2, 18)",2,939,450,150,28,23,150,2,18,150,24,2
+148,nothing,"nothing",3,939,450,150,28,23,150,2,18,150,24,2
+149,move,"move (29, 24)",1,944,450,150,29,24,150,2,18,150,24,2
+150,dig,"dig (3, 18)",2,951,450,150,29,24,150,2,18,150,24,2
+151,move,"move (25, 2)",3,956,450,150,29,24,150,2,18,150,25,2
+152,move,"move (28, 23)",1,961,450,150,28,23,150,2,18,150,25,2
+153,move,"move (1, 17)",2,966,450,150,28,23,150,1,17,150,25,2
+154,nothing,"nothing",3,966,450,150,28,23,150,1,17,150,25,2
+155,move,"move (27, 24)",1,971,450,150,27,24,150,1,17,150,25,2
+156,move,"move (2, 17)",2,976,450,150,27,24,150,2,17,150,25,2
+157,dig,"dig (26, 3)",3,983,450,150,27,24,150,2,17,150,25,2
+158,move,"move (28, 23)",1,988,450,150,28,23,150,2,17,150,25,2
+159,move,"move (1, 16)",2,993,450,150,28,23,150,1,16,150,25,2
+160,nothing,"nothing",3,993,450,150,28,23,150,1,16,150,25,2
+161,move,"move (29, 24)",1,998,450,150,29,24,150,1,16,150,25,2
+162,move,"move (2, 16)",2,1003,450,150,29,24,150,2,16,150,25,2
+163,move,"move (24, 2)",3,1008,450,150,29,24,150,2,16,150,24,2
+164,dig,"dig (30, 23)",1,1015,450,150,29,24,150,2,16,150,24,2
+165,move,"move (3, 16)",2,1020,450,150,29,24,150,3,16,150,24,2
+166,move,"move (23, 2)",3,1025,450,150,29,24,150,3,16,150,23,2
+167,move,"move (30, 23)",1,1030,450,150,30,23,150,3,16,150,23,2
+168,move,"move (2, 17)",2,1035,450,150,30,23,150,2,17,150,23,2
+169,dig,"dig (22, 1)",3,1042,450,150,30,23,150,2,17,150,23,2
+170,move,"move (29, 23)",1,1047,450,150,29,23,150,2,17,150,23,2
+171,move,"move (1, 17)",2,1052,450,150,29,23,150,1,17,150,23,2
+172,move,"move (24, 1)",3,1057,450,150,29,23,150,1,17,150,24,1
+173,move,"move (30, 22)",1,1062,450,150,30,22,150,1,17,150,24,1
+174,move,"move (2, 18)",2,1067,450,150,30,22,150,2,18,150,24,1
+175,nothing,"nothing",3,1067,450,150,30,22,150,2,18,150,24,1
+176,dig,"dig (31, 21)",1,1074,450,150,30,22,150,2,18,150,24,1
+177,move,"move (1, 18)",2,1079,450,150,30,22,150,1,18,150,24,1
+178,nothing,"nothing",3,1079,450,150,30,22,150,1,18,150,24,1
+179,move,"move (30, 21)",1,1084,450,150,30,21,150,1,18,150,24,1
+180,move,"move (1, 17)",2,1089,450,150,30,21,150,1,17,150,24,1
+181,dig,"dig (23, 1)",3,1096,450,150,30,21,150,1,17,150,24,1
+182,dig,"dig (31, 20)",1,1103,450,150,30,21,150,1,17,150,24,1
+183,move,"move (1, 16)",2,1108,450,150,30,21,150,1,16,150,24,1
+184,move,"move (23, 1)",3,1113,450,150,30,21,150,1,16,150,23,1
+185,move,"move (29, 21)",1,1118,450,150,29,21,150,1,16,150,23,1
+186,move,"move (0, 16)",2,1123,450,150,29,21,150,0,16,150,23,1
+187,nothing,"nothing",3,1123,450,150,29,21,150,0,16,150,23,1
+188,move,"move (28, 21)",1,1128,450,150,28,21,150,0,16,150,23,1
+189,move,"move (1, 16)",2,1133,450,150,28,21,150,1,16,150,23,1
+190,move,"move (24, 1)",3,1138,450,150,28,21,150,1,16,150,24,1
+191,move,"move (29, 21)",1,1143,450,150,29,21,150,1,16,150,24,1
+192,move,"move (2, 17)",2,1148,450,150,29,21,150,2,17,150,24,1
+193,move,"move (23, 1)",3,1153,450,150,29,21,150,2,17,150,23,1
+194,dig,"dig (30, 20)",1,1160,450,150,29,21,150,2,17,150,23,1
+195,move,"move (1, 16)",2,1165,450,150,29,21,150,1,16,150,23,1
+196,move,"move (24, 1)",3,1170,450,150,29,21,150,1,16,150,24,1
+197,move,"move (30, 22)",1,1175,450,150,30,22,150,1,16,150,24,1
+198,move,"move (1, 15)",2,1180,450,150,30,22,150,1,15,150,24,1
+199,nothing,"nothing",3,1180,450,150,30,22,150,1,15,150,24,1
+200,move,"move (30, 23)",1,1185,450,150,30,23,150,1,15,150,24,1
+201,move,"move (0, 16)",2,1190,450,150,30,23,150,0,16,150,24,1
+202,move,"move (23, 1)",3,1195,450,150,30,23,150,0,16,150,23,1
+203,move,"move (29, 24)",1,1200,450,150,29,24,150,0,16,150,23,1
+204,move,"move (1, 17)",2,1205,450,150,29,24,150,1,17,150,23,1
+205,nothing,"nothing",3,1205,450,150,29,24,150,1,17,150,23,1
+206,move,"move (28, 24)",1,1210,450,150,28,24,150,1,17,150,23,1
+207,move,"move (0, 17)",2,1215,450,150,28,24,150,0,17,150,23,1
+208,nothing,"nothing",3,1215,450,150,28,24,150,0,17,150,23,1
+209,move,"move (28, 23)",1,1220,450,150,28,23,150,0,17,150,23,1
+210,move,"move (1, 18)",2,1225,450,150,28,23,150,1,18,150,23,1
+211,nothing,"nothing",3,1225,450,150,28,23,150,1,18,150,23,1
+212,dig,"dig (27, 22)",1,1232,450,150,28,23,150,1,18,150,23,1
+213,move,"move (0, 17)",2,1237,450,150,28,23,150,0,17,150,23,1
+214,move,"move (22, 1)",3,1242,450,150,28,23,150,0,17,150,22,1
+215,dig,"dig (27, 23)",1,1249,450,150,28,23,150,0,17,150,22,1
+216,move,"move (1, 17)",2,1254,450,150,28,23,150,1,17,150,22,1
+217,dig,"dig (21, 1)",3,1261,450,150,28,23,150,1,17,150,22,1
+218,move,"move (28, 22)",1,1266,450,150,28,22,150,1,17,150,22,1
+219,move,"move (1, 18)",2,1271,450,150,28,22,150,1,18,150,22,1
+220,shoot,"shoot W",3,1288,442,150,28,22,150,1,18,142,22,1
+221,move,"move (28, 21)",1,1293,442,150,28,21,150,1,18,142,22,1
+222,dig,"dig (2, 19)",2,1300,442,150,28,21,150,1,18,142,22,1
+223,shoot,"shoot W",3,1317,434,150,28,21,150,1,18,134,22,1
+224,move,"move (28, 22)",1,1322,434,150,28,22,150,1,18,134,22,1
+225,move,"move (2, 17)",2,1327,434,150,28,22,150,2,17,134,22,1
+226,shoot,"shoot W",3,1345,426,150,28,22,150,2,17,126,22,1
+227,move,"move (29, 23)",1,1350,426,150,29,23,150,2,17,126,22,1
+228,move,"move (2, 18)",2,1355,426,150,29,23,150,2,18,126,22,1
+229,shoot,"shoot W",3,1372,418,150,29,23,150,2,18,118,22,1
+230,move,"move (28, 23)",1,1377,418,150,28,23,150,2,18,118,22,1
+231,move,"move (1, 18)",2,1382,418,150,28,23,150,1,18,118,22,1
+232,shoot,"shoot W",3,1399,410,150,28,23,150,1,18,110,22,1
+233,move,"move (27, 22)",1,1404,410,150,27,22,150,1,18,110,22,1
+234,move,"move (2, 17)",2,1409,410,150,27,22,150,2,17,110,22,1
+235,shoot,"shoot W",3,1427,402,150,27,22,150,2,17,102,22,1
+236,move,"move (27, 21)",1,1432,402,150,27,21,150,2,17,102,22,1
+237,dig,"dig (3, 17)",2,1439,402,150,27,21,150,2,17,102,22,1
+238,shoot,"shoot W",3,1456,394,150,27,21,150,2,17,94,22,1
+239,move,"move (28, 20)",1,1461,394,150,28,20,150,2,17,94,22,1
+240,move,"move (2, 16)",2,1466,394,150,28,20,150,2,16,94,22,1
+241,shoot,"shoot W",3,1483,386,150,28,20,150,2,16,86,22,1
+242,dig,"dig (29, 20)",1,1490,386,150,28,20,150,2,16,86,22,1
+243,move,"move (1, 16)",2,1495,386,150,28,20,150,1,16,86,22,1
+244,shoot,"shoot W",3,1513,378,150,28,20,150,1,16,78,22,1
+245,move,"move (29, 20)",1,1518,378,150,29,20,150,1,16,78,22,1
+246,move,"move (1, 17)",2,1523,378,150,29,20,150,1,17,78,22,1
+247,shoot,"shoot W",3,1540,370,150,29,20,150,1,17,70,22,1
+248,move,"move (28, 20)",1,1545,370,150,28,20,150,1,17,70,22,1
+249,dig,"dig (0, 18)",2,1552,370,150,28,20,150,1,17,70,22,1
+250,shoot,"shoot W",3,1569,362,150,28,20,150,1,17,62,22,1
+251,dig,"dig (29, 19)",1,1576,362,150,28,20,150,1,17,62,22,1
+252,move,"move (2, 18)",2,1581,362,150,28,20,150,2,18,62,22,1
+253,shoot,"shoot W",3,1599,354,150,28,20,150,2,18,54,22,1
+254,move,"move (28, 21)",1,1604,354,150,28,21,150,2,18,54,22,1
+255,dig,"dig (3, 19)",2,1611,354,150,28,21,150,2,18,54,22,1
+256,shoot,"shoot W",3,1628,346,150,28,21,150,2,18,46,22,1
+257,move,"move (29, 22)",1,1633,346,150,29,22,150,2,18,46,22,1
+258,move,"move (3, 18)",2,1638,346,150,29,22,150,3,18,46,22,1
+259,shoot,"shoot W",3,1655,338,150,29,22,150,3,18,38,22,1
+260,move,"move (30, 21)",1,1660,338,150,30,21,150,3,18,38,22,1
+261,move,"move (2, 19)",2,1665,338,150,30,21,150,2,19,38,22,1
+262,shoot,"shoot W",3,1683,330,150,30,21,150,2,19,30,22,1
+263,move,"move (30, 20)",1,1688,330,150,30,20,150,2,19,30,22,1
+264,move,"move (3, 18)",2,1693,330,150,30,20,150,3,18,30,22,1
+265,shoot,"shoot W",3,1710,322,150,30,20,150,3,18,22,22,1
+266,move,"move (29, 21)",1,1715,322,150,29,21,150,3,18,22,22,1
+267,move,"move (3, 19)",2,1720,322,150,29,21,150,3,19,22,22,1
+268,shoot,"shoot W",3,1737,314,150,29,21,150,3,19,14,22,1
+269,move,"move (30, 20)",1,1742,314,150,30,20,150,3,19,14,22,1
+270,move,"move (3, 18)",2,1747,314,150,30,20,150,3,18,14,22,1
+271,shoot,"shoot W",3,1765,306,150,30,20,150,3,18,6,22,1
+272,move,"move (30, 21)",1,1770,306,150,30,21,150,3,18,6,22,1
+273,move,"move (3, 19)",2,1775,306,150,30,21,150,3,19,6,22,1
+274,shoot,"shoot W",3,1813,300,150,30,21,150,3,19,-2,22,1
+275,move,"move (31, 20)",1,1818,300,150,31,20,150,3,19,-2,22,1
+276,move,"move (3, 18)",2,1823,300,150,31,20,150,3,18,-2,22,1
+277,dig,"dig (30, 19)",1,1830,300,150,31,20,150,3,18,-2,22,1
+278,move,"move (2, 19)",2,1835,300,150,31,20,150,2,19,-2,22,1
+279,move,"move (30, 20)",1,1840,300,150,30,20,150,2,19,-2,22,1
+280,move,"move (1, 18)",2,1845,300,150,30,20,150,1,18,-2,22,1
+281,shoot,"shoot NW",1,1862,292,142,30,20,150,1,18,-2,22,1
+282,move,"move (0, 17)",2,1867,292,142,30,20,150,0,17,-2,22,1
+283,shoot,"shoot NW",1,1884,284,134,30,20,150,0,17,-2,22,1
+284,move,"move (0, 16)",2,1889,284,134,30,20,150,0,16,-2,22,1
+285,shoot,"shoot NW",1,1907,276,126,30,20,150,0,16,-2,22,1
+286,move,"move (0, 17)",2,1912,276,126,30,20,150,0,17,-2,22,1
+287,shoot,"shoot NW",1,1929,268,118,30,20,150,0,17,-2,22,1
+288,move,"move (1, 16)",2,1934,268,118,30,20,150,1,16,-2,22,1
+289,shoot,"shoot NW",1,1951,260,110,30,20,150,1,16,-2,22,1
+290,move,"move (2, 16)",2,1956,260,110,30,20,150,2,16,-2,22,1
+291,shoot,"shoot NW",1,1974,252,102,30,20,150,2,16,-2,22,1
+292,move,"move (2, 15)",2,1979,252,102,30,20,150,2,15,-2,22,1
+293,shoot,"shoot NW",1,1996,244,94,30,20,150,2,15,-2,22,1
+294,move,"move (2, 14)",2,2001,244,94,30,20,150,2,14,-2,22,1
+295,shoot,"shoot NW",1,2018,236,86,30,20,150,2,14,-2,22,1
+296,move,"move (2, 15)",2,2023,236,86,30,20,150,2,15,-2,22,1
+297,shoot,"shoot NW",1,2041,228,78,30,20,150,2,15,-2,22,1
+298,move,"move (1, 14)",2,2046,228,78,30,20,150,1,14,-2,22,1
+299,shoot,"shoot NW",1,2063,220,70,30,20,150,1,14,-2,22,1
+300,dig,"dig (0, 14)",2,2070,220,70,30,20,150,1,14,-2,22,1
+301,shoot,"shoot NW",1,2087,212,62,30,20,150,1,14,-2,22,1
+302,move,"move (0, 14)",2,2092,212,62,30,20,150,0,14,-2,22,1
+303,shoot,"shoot NW",1,2110,204,54,30,20,150,0,14,-2,22,1
+304,move,"move (1, 13)",2,2115,204,54,30,20,150,1,13,-2,22,1
+305,shoot,"shoot NW",1,2132,196,46,30,20,150,1,13,-2,22,1
+306,move,"move (1, 12)",2,2137,196,46,30,20,150,1,12,-2,22,1
+307,shoot,"shoot NW",1,2154,188,38,30,20,150,1,12,-2,22,1
+308,move,"move (1, 13)",2,2159,188,38,30,20,150,1,13,-2,22,1
+309,shoot,"shoot NW",1,2177,180,30,30,20,150,1,13,-2,22,1
+310,dig,"dig (2, 12)",2,2184,180,30,30,20,150,1,13,-2,22,1
+311,shoot,"shoot NW",1,2201,172,22,30,20,150,1,13,-2,22,1
+312,move,"move (0, 13)",2,2206,172,22,30,20,150,0,13,-2,22,1
+313,shoot,"shoot NW",1,2223,164,14,30,20,150,0,13,-2,22,1
+314,dig,"dig (0, 12)",2,2230,164,14,30,20,150,0,13,-2,22,1
+315,shoot,"shoot NW",1,2248,156,6,30,20,150,0,13,-2,22,1
+316,move,"move (1, 12)",2,2253,156,6,30,20,150,1,12,-2,22,1
+317,shoot,"shoot NW",1,2291,150,-2,30,20,150,1,12,-2,22,1
+318,dig,"dig (0, 11)",2,2298,150,-2,30,20,150,1,12,-2,22,1
+319,dig,"dig (2, 11)",2,2305,150,-2,30,20,150,1,12,-2,22,1
+320,move,"move (2, 13)",2,2310,150,-2,30,20,150,2,13,-2,22,1
+321,move,"move (2, 12)",2,2315,150,-2,30,20,150,2,12,-2,22,1
+322,dig,"dig (3, 11)",2,2322,150,-2,30,20,150,2,12,-2,22,1
+323,move,"move (2, 13)",2,2327,150,-2,30,20,150,2,13,-2,22,1
+324,move,"move (1, 13)",2,2332,150,-2,30,20,150,1,13,-2,22,1
+325,move,"move (1, 12)",2,2337,150,-2,30,20,150,1,12,-2,22,1
+326,move,"move (2, 12)",2,2342,150,-2,30,20,150,2,12,-2,22,1
+327,move,"move (2, 11)",2,2347,150,-2,30,20,150,2,11,-2,22,1
+328,dig,"dig (1, 10)",2,2354,150,-2,30,20,150,2,11,-2,22,1
+329,move,"move (3, 11)",2,2359,150,-2,30,20,150,3,11,-2,22,1
+330,dig,"dig (4, 12)",2,2366,150,-2,30,20,150,3,11,-2,22,1
+331,dig,"dig (2, 10)",2,2373,150,-2,30,20,150,3,11,-2,22,1
+332,dig,"dig (4, 10)",2,2380,150,-2,30,20,150,3,11,-2,22,1
+333,move,"move (4, 12)",2,2385,150,-2,30,20,150,4,12,-2,22,1
+334,dig,"dig (4, 11)",2,2392,150,-2,30,20,150,4,12,-2,22,1
+335,dig,"dig (5, 13)",2,2399,150,-2,30,20,150,4,12,-2,22,1
+336,move,"move (3, 11)",2,2404,150,-2,30,20,150,3,11,-2,22,1
+337,move,"move (4, 10)",2,2409,150,-2,30,20,150,4,10,-2,22,1
+338,move,"move (4, 9)",2,2414,150,-2,30,20,150,4,9,-2,22,1
+339,dig,"dig (4, 8)",2,2421,150,-2,30,20,150,4,9,-2,22,1
+340,dig,"dig (5, 9)",2,2428,150,-2,30,20,150,4,9,-2,22,1
+341,dig,"dig (3, 10)",2,2435,150,-2,30,20,150,4,9,-2,22,1
+342,move,"move (3, 10)",2,2440,150,-2,30,20,150,3,10,-2,22,1
+343,move,"move (3, 9)",2,2445,150,-2,30,20,150,3,9,-2,22,1
+344,move,"move (4, 10)",2,2450,150,-2,30,20,150,4,10,-2,22,1
+345,dig,"dig (5, 10)",2,2457,150,-2,30,20,150,4,10,-2,22,1
+346,move,"move (4, 11)",2,2462,150,-2,30,20,150,4,11,-2,22,1
+347,dig,"dig (5, 11)",2,2469,150,-2,30,20,150,4,11,-2,22,1
+348,move,"move (3, 10)",2,2474,150,-2,30,20,150,3,10,-2,22,1
+349,move,"move (4, 10)",2,2479,150,-2,30,20,150,4,10,-2,22,1
+350,move,"move (3, 10)",2,2484,150,-2,30,20,150,3,10,-2,22,1
+351,move,"move (4, 11)",2,2489,150,-2,30,20,150,4,11,-2,22,1
+352,move,"move (4, 12)",2,2494,150,-2,30,20,150,4,12,-2,22,1
+353,move,"move (3, 11)",2,2499,150,-2,30,20,150,3,11,-2,22,1
+354,move,"move (2, 10)",2,2504,150,-2,30,20,150,2,10,-2,22,1
+355,dig,"dig (1, 11)",2,2511,150,-2,30,20,150,2,10,-2,22,1
+356,move,"move (3, 10)",2,2516,150,-2,30,20,150,3,10,-2,22,1
+357,move,"move (2, 10)",2,2521,150,-2,30,20,150,2,10,-2,22,1
+358,move,"move (2, 9)",2,2526,150,-2,30,20,150,2,9,-2,22,1
+359,dig,"dig (1, 9)",2,2533,150,-2,30,20,150,2,9,-2,22,1
+360,move,"move (2, 10)",2,2538,150,-2,30,20,150,2,10,-2,22,1
+361,move,"move (3, 10)",2,2543,150,-2,30,20,150,3,10,-2,22,1
+362,move,"move (4, 11)",2,2548,150,-2,30,20,150,4,11,-2,22,1
+363,move,"move (3, 11)",2,2553,150,-2,30,20,150,3,11,-2,22,1
+364,move,"move (4, 11)",2,2558,150,-2,30,20,150,4,11,-2,22,1
+365,dig,"dig (3, 12)",2,2565,150,-2,30,20,150,4,11,-2,22,1
+366,move,"move (5, 10)",2,2570,150,-2,30,20,150,5,10,-2,22,1
+367,dig,"dig (6, 11)",2,2577,150,-2,30,20,150,5,10,-2,22,1
+368,move,"move (5, 9)",2,2582,150,-2,30,20,150,5,9,-2,22,1
+369,move,"move (4, 8)",2,2587,150,-2,30,20,150,4,8,-2,22,1
+370,move,"move (5, 7)",2,2592,150,-2,30,20,150,5,7,-2,22,1
+371,move,"move (5, 6)",2,2597,150,-2,30,20,150,5,6,-2,22,1
+372,move,"move (6, 7)",2,2602,150,-2,30,20,150,6,7,-2,22,1
+373,dig,"dig (7, 7)",2,2609,150,-2,30,20,150,6,7,-2,22,1
+374,move,"move (5, 7)",2,2614,150,-2,30,20,150,5,7,-2,22,1
+375,move,"move (6, 6)",2,2619,150,-2,30,20,150,6,6,-2,22,1
+376,dig,"dig (6, 5)",2,2626,150,-2,30,20,150,6,6,-2,22,1
+377,move,"move (7, 7)",2,2631,150,-2,30,20,150,7,7,-2,22,1
+378,dig,"dig (8, 7)",2,2638,150,-2,30,20,150,7,7,-2,22,1
+379,move,"move (6, 7)",2,2643,150,-2,30,20,150,6,7,-2,22,1
+380,move,"move (6, 6)",2,2648,150,-2,30,20,150,6,6,-2,22,1
+381,move,"move (6, 5)",2,2653,150,-2,30,20,150,6,5,-2,22,1
+382,move,"move (5, 6)",2,2658,150,-2,30,20,150,5,6,-2,22,1
+383,move,"move (5, 7)",2,2663,150,-2,30,20,150,5,7,-2,22,1
+384,move,"move (6, 7)",2,2668,150,-2,30,20,150,6,7,-2,22,1
+385,dig,"dig (7, 8)",2,2675,150,-2,30,20,150,6,7,-2,22,1
+386,move,"move (7, 8)",2,2680,150,-2,30,20,150,7,8,-2,22,1
+387,dig,"dig (7, 9)",2,2687,150,-2,30,20,150,7,8,-2,22,1
+388,move,"move (6, 8)",2,2692,150,-2,30,20,150,6,8,-2,22,1
+389,move,"move (5, 9)",2,2697,150,-2,30,20,150,5,9,-2,22,1
+390,dig,"dig (5, 8)",2,2704,150,-2,30,20,150,5,9,-2,22,1
+391,move,"move (6, 8)",2,2709,150,-2,30,20,150,6,8,-2,22,1
+392,move,"move (7, 8)",2,2714,150,-2,30,20,150,7,8,-2,22,1
+393,move,"move (7, 9)",2,2719,150,-2,30,20,150,7,9,-2,22,1
+394,move,"move (8, 9)",2,2724,150,-2,30,20,150,8,9,-2,22,1
+395,move,"move (7, 8)",2,2729,150,-2,30,20,150,7,8,-2,22,1
+396,move,"move (6, 7)",2,2734,150,-2,30,20,150,6,7,-2,22,1
+397,move,"move (5, 7)",2,2739,150,-2,30,20,150,5,7,-2,22,1
+398,move,"move (6, 6)",2,2744,150,-2,30,20,150,6,6,-2,22,1
+399,move,"move (6, 7)",2,2749,150,-2,30,20,150,6,7,-2,22,1
+400,move,"move (7, 6)",2,2754,150,-2,30,20,150,7,6,-2,22,1
diff --git a/tests/replays/2019.04.20.09.47.04/B-init.json b/tests/replays/2019.04.20.09.47.04/B-init.json
new file mode 100644
index 0000000..91b93bd
--- /dev/null
+++ b/tests/replays/2019.04.20.09.47.04/B-init.json
@@ -0,0 +1 @@
+{"currentRound":1,"maxRounds":400,"mapSize":33,"currentWormId":1,"consecutiveDoNothingCount":0,"myPlayer":{"id":2,"score":150,"health":450,"worms":[{"id":1,"health":150,"position":{"x":31,"y":16},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1},{"id":2,"health":150,"position":{"x":9,"y":29},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1},{"id":3,"health":150,"position":{"x":8,"y":3},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1}]},"opponents":[{"id":1,"score":150,"worms":[{"id":1,"health":150,"position":{"x":24,"y":29},"diggingRange":1,"movementRange":1},{"id":2,"health":150,"position":{"x":1,"y":16},"diggingRange":1,"movementRange":1},{"id":3,"health":150,"position":{"x":24,"y":3},"diggingRange":1,"movementRange":1}]}],"map":[[{"x":0,"y":0,"type":"DEEP_SPACE"},{"x":1,"y":0,"type":"DEEP_SPACE"},{"x":2,"y":0,"type":"DEEP_SPACE"},{"x":3,"y":0,"type":"DEEP_SPACE"},{"x":4,"y":0,"type":"DEEP_SPACE"},{"x":5,"y":0,"type":"DEEP_SPACE"},{"x":6,"y":0,"type":"DEEP_SPACE"},{"x":7,"y":0,"type":"DEEP_SPACE"},{"x":8,"y":0,"type":"DEEP_SPACE"},{"x":9,"y":0,"type":"DEEP_SPACE"},{"x":10,"y":0,"type":"DEEP_SPACE"},{"x":11,"y":0,"type":"AIR"},{"x":12,"y":0,"type":"DIRT"},{"x":13,"y":0,"type":"DIRT"},{"x":14,"y":0,"type":"AIR"},{"x":15,"y":0,"type":"AIR"},{"x":16,"y":0,"type":"DIRT"},{"x":17,"y":0,"type":"AIR"},{"x":18,"y":0,"type":"AIR"},{"x":19,"y":0,"type":"DIRT"},{"x":20,"y":0,"type":"DIRT"},{"x":21,"y":0,"type":"AIR"},{"x":22,"y":0,"type":"DEEP_SPACE"},{"x":23,"y":0,"type":"DEEP_SPACE"},{"x":24,"y":0,"type":"DEEP_SPACE"},{"x":25,"y":0,"type":"DEEP_SPACE"},{"x":26,"y":0,"type":"DEEP_SPACE"},{"x":27,"y":0,"type":"DEEP_SPACE"},{"x":28,"y":0,"type":"DEEP_SPACE"},{"x":29,"y":0,"type":"DEEP_SPACE"},{"x":30,"y":0,"type":"DEEP_SPACE"},{"x":31,"y":0,"type":"DEEP_SPACE"},{"x":32,"y":0,"type":"DEEP_SPACE"}],[{"x":0,"y":1,"type":"DEEP_SPACE"},{"x":1,"y":1,"type":"DEEP_SPACE"},{"x":2,"y":1,"type":"DEEP_SPACE"},{"x":3,"y":1,"type":"DEEP_SPACE"},{"x":4,"y":1,"type":"DEEP_SPACE"},{"x":5,"y":1,"type":"DEEP_SPACE"},{"x":6,"y":1,"type":"DEEP_SPACE"},{"x":7,"y":1,"type":"DEEP_SPACE"},{"x":8,"y":1,"type":"DIRT"},{"x":9,"y":1,"type":"DIRT"},{"x":10,"y":1,"type":"DIRT"},{"x":11,"y":1,"type":"DIRT"},{"x":12,"y":1,"type":"DIRT"},{"x":13,"y":1,"type":"DIRT"},{"x":14,"y":1,"type":"AIR"},{"x":15,"y":1,"type":"AIR"},{"x":16,"y":1,"type":"DIRT"},{"x":17,"y":1,"type":"AIR"},{"x":18,"y":1,"type":"AIR"},{"x":19,"y":1,"type":"DIRT"},{"x":20,"y":1,"type":"DIRT"},{"x":21,"y":1,"type":"DIRT"},{"x":22,"y":1,"type":"DIRT"},{"x":23,"y":1,"type":"DIRT"},{"x":24,"y":1,"type":"DIRT"},{"x":25,"y":1,"type":"DEEP_SPACE"},{"x":26,"y":1,"type":"DEEP_SPACE"},{"x":27,"y":1,"type":"DEEP_SPACE"},{"x":28,"y":1,"type":"DEEP_SPACE"},{"x":29,"y":1,"type":"DEEP_SPACE"},{"x":30,"y":1,"type":"DEEP_SPACE"},{"x":31,"y":1,"type":"DEEP_SPACE"},{"x":32,"y":1,"type":"DEEP_SPACE"}],[{"x":0,"y":2,"type":"DEEP_SPACE"},{"x":1,"y":2,"type":"DEEP_SPACE"},{"x":2,"y":2,"type":"DEEP_SPACE"},{"x":3,"y":2,"type":"DEEP_SPACE"},{"x":4,"y":2,"type":"DEEP_SPACE"},{"x":5,"y":2,"type":"DEEP_SPACE"},{"x":6,"y":2,"type":"DEEP_SPACE"},{"x":7,"y":2,"type":"AIR"},{"x":8,"y":2,"type":"AIR"},{"x":9,"y":2,"type":"AIR"},{"x":10,"y":2,"type":"DIRT"},{"x":11,"y":2,"type":"DIRT"},{"x":12,"y":2,"type":"DIRT"},{"x":13,"y":2,"type":"AIR"},{"x":14,"y":2,"type":"AIR"},{"x":15,"y":2,"type":"DIRT"},{"x":16,"y":2,"type":"DIRT"},{"x":17,"y":2,"type":"DIRT"},{"x":18,"y":2,"type":"AIR"},{"x":19,"y":2,"type":"AIR"},{"x":20,"y":2,"type":"DIRT"},{"x":21,"y":2,"type":"DIRT"},{"x":22,"y":2,"type":"DIRT"},{"x":23,"y":2,"type":"AIR"},{"x":24,"y":2,"type":"AIR"},{"x":25,"y":2,"type":"AIR"},{"x":26,"y":2,"type":"DEEP_SPACE"},{"x":27,"y":2,"type":"DEEP_SPACE"},{"x":28,"y":2,"type":"DEEP_SPACE"},{"x":29,"y":2,"type":"DEEP_SPACE"},{"x":30,"y":2,"type":"DEEP_SPACE"},{"x":31,"y":2,"type":"DEEP_SPACE"},{"x":32,"y":2,"type":"DEEP_SPACE"}],[{"x":0,"y":3,"type":"DEEP_SPACE"},{"x":1,"y":3,"type":"DEEP_SPACE"},{"x":2,"y":3,"type":"DEEP_SPACE"},{"x":3,"y":3,"type":"DEEP_SPACE"},{"x":4,"y":3,"type":"DEEP_SPACE"},{"x":5,"y":3,"type":"DEEP_SPACE"},{"x":6,"y":3,"type":"DIRT"},{"x":7,"y":3,"type":"AIR"},{"x":8,"y":3,"type":"AIR","occupier":{"id":3,"playerId":2,"health":150,"position":{"x":8,"y":3},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1}},{"x":9,"y":3,"type":"AIR"},{"x":10,"y":3,"type":"DIRT"},{"x":11,"y":3,"type":"DIRT"},{"x":12,"y":3,"type":"DIRT"},{"x":13,"y":3,"type":"AIR"},{"x":14,"y":3,"type":"AIR"},{"x":15,"y":3,"type":"DIRT"},{"x":16,"y":3,"type":"DIRT"},{"x":17,"y":3,"type":"DIRT"},{"x":18,"y":3,"type":"AIR"},{"x":19,"y":3,"type":"AIR"},{"x":20,"y":3,"type":"DIRT"},{"x":21,"y":3,"type":"DIRT"},{"x":22,"y":3,"type":"DIRT"},{"x":23,"y":3,"type":"AIR"},{"x":24,"y":3,"type":"AIR","occupier":{"id":3,"playerId":1,"health":150,"position":{"x":24,"y":3},"diggingRange":1,"movementRange":1}},{"x":25,"y":3,"type":"AIR"},{"x":26,"y":3,"type":"DIRT"},{"x":27,"y":3,"type":"DEEP_SPACE"},{"x":28,"y":3,"type":"DEEP_SPACE"},{"x":29,"y":3,"type":"DEEP_SPACE"},{"x":30,"y":3,"type":"DEEP_SPACE"},{"x":31,"y":3,"type":"DEEP_SPACE"},{"x":32,"y":3,"type":"DEEP_SPACE"}],[{"x":0,"y":4,"type":"DEEP_SPACE"},{"x":1,"y":4,"type":"DEEP_SPACE"},{"x":2,"y":4,"type":"DEEP_SPACE"},{"x":3,"y":4,"type":"DEEP_SPACE"},{"x":4,"y":4,"type":"DIRT"},{"x":5,"y":4,"type":"AIR"},{"x":6,"y":4,"type":"DIRT"},{"x":7,"y":4,"type":"AIR"},{"x":8,"y":4,"type":"AIR"},{"x":9,"y":4,"type":"AIR"},{"x":10,"y":4,"type":"DIRT"},{"x":11,"y":4,"type":"DIRT"},{"x":12,"y":4,"type":"AIR"},{"x":13,"y":4,"type":"AIR"},{"x":14,"y":4,"type":"AIR"},{"x":15,"y":4,"type":"AIR"},{"x":16,"y":4,"type":"DIRT"},{"x":17,"y":4,"type":"AIR"},{"x":18,"y":4,"type":"AIR"},{"x":19,"y":4,"type":"AIR"},{"x":20,"y":4,"type":"AIR"},{"x":21,"y":4,"type":"DIRT"},{"x":22,"y":4,"type":"DIRT"},{"x":23,"y":4,"type":"AIR"},{"x":24,"y":4,"type":"AIR"},{"x":25,"y":4,"type":"AIR"},{"x":26,"y":4,"type":"DIRT"},{"x":27,"y":4,"type":"AIR"},{"x":28,"y":4,"type":"DIRT"},{"x":29,"y":4,"type":"DEEP_SPACE"},{"x":30,"y":4,"type":"DEEP_SPACE"},{"x":31,"y":4,"type":"DEEP_SPACE"},{"x":32,"y":4,"type":"DEEP_SPACE"}],[{"x":0,"y":5,"type":"DEEP_SPACE"},{"x":1,"y":5,"type":"DEEP_SPACE"},{"x":2,"y":5,"type":"DEEP_SPACE"},{"x":3,"y":5,"type":"DEEP_SPACE"},{"x":4,"y":5,"type":"DIRT"},{"x":5,"y":5,"type":"DIRT"},{"x":6,"y":5,"type":"DIRT"},{"x":7,"y":5,"type":"DIRT"},{"x":8,"y":5,"type":"DIRT"},{"x":9,"y":5,"type":"DIRT"},{"x":10,"y":5,"type":"DIRT"},{"x":11,"y":5,"type":"DIRT"},{"x":12,"y":5,"type":"AIR"},{"x":13,"y":5,"type":"AIR"},{"x":14,"y":5,"type":"AIR"},{"x":15,"y":5,"type":"AIR"},{"x":16,"y":5,"type":"DIRT"},{"x":17,"y":5,"type":"AIR"},{"x":18,"y":5,"type":"AIR"},{"x":19,"y":5,"type":"AIR"},{"x":20,"y":5,"type":"AIR"},{"x":21,"y":5,"type":"DIRT"},{"x":22,"y":5,"type":"DIRT"},{"x":23,"y":5,"type":"DIRT"},{"x":24,"y":5,"type":"DIRT"},{"x":25,"y":5,"type":"DIRT"},{"x":26,"y":5,"type":"DIRT"},{"x":27,"y":5,"type":"DIRT"},{"x":28,"y":5,"type":"DIRT"},{"x":29,"y":5,"type":"DEEP_SPACE"},{"x":30,"y":5,"type":"DEEP_SPACE"},{"x":31,"y":5,"type":"DEEP_SPACE"},{"x":32,"y":5,"type":"DEEP_SPACE"}],[{"x":0,"y":6,"type":"DEEP_SPACE"},{"x":1,"y":6,"type":"DEEP_SPACE"},{"x":2,"y":6,"type":"DEEP_SPACE"},{"x":3,"y":6,"type":"AIR"},{"x":4,"y":6,"type":"AIR"},{"x":5,"y":6,"type":"AIR"},{"x":6,"y":6,"type":"AIR"},{"x":7,"y":6,"type":"AIR"},{"x":8,"y":6,"type":"AIR"},{"x":9,"y":6,"type":"AIR"},{"x":10,"y":6,"type":"DIRT"},{"x":11,"y":6,"type":"DIRT"},{"x":12,"y":6,"type":"DIRT"},{"x":13,"y":6,"type":"DIRT"},{"x":14,"y":6,"type":"DIRT"},{"x":15,"y":6,"type":"DIRT"},{"x":16,"y":6,"type":"AIR"},{"x":17,"y":6,"type":"DIRT"},{"x":18,"y":6,"type":"DIRT"},{"x":19,"y":6,"type":"DIRT"},{"x":20,"y":6,"type":"DIRT"},{"x":21,"y":6,"type":"DIRT"},{"x":22,"y":6,"type":"DIRT"},{"x":23,"y":6,"type":"AIR"},{"x":24,"y":6,"type":"AIR"},{"x":25,"y":6,"type":"AIR"},{"x":26,"y":6,"type":"AIR"},{"x":27,"y":6,"type":"AIR"},{"x":28,"y":6,"type":"AIR"},{"x":29,"y":6,"type":"AIR"},{"x":30,"y":6,"type":"DEEP_SPACE"},{"x":31,"y":6,"type":"DEEP_SPACE"},{"x":32,"y":6,"type":"DEEP_SPACE"}],[{"x":0,"y":7,"type":"DEEP_SPACE"},{"x":1,"y":7,"type":"DEEP_SPACE"},{"x":2,"y":7,"type":"AIR"},{"x":3,"y":7,"type":"AIR"},{"x":4,"y":7,"type":"AIR"},{"x":5,"y":7,"type":"AIR"},{"x":6,"y":7,"type":"AIR"},{"x":7,"y":7,"type":"DIRT"},{"x":8,"y":7,"type":"DIRT"},{"x":9,"y":7,"type":"AIR"},{"x":10,"y":7,"type":"AIR"},{"x":11,"y":7,"type":"AIR"},{"x":12,"y":7,"type":"AIR"},{"x":13,"y":7,"type":"DIRT"},{"x":14,"y":7,"type":"DIRT"},{"x":15,"y":7,"type":"AIR"},{"x":16,"y":7,"type":"DIRT"},{"x":17,"y":7,"type":"AIR"},{"x":18,"y":7,"type":"DIRT"},{"x":19,"y":7,"type":"DIRT"},{"x":20,"y":7,"type":"AIR"},{"x":21,"y":7,"type":"AIR"},{"x":22,"y":7,"type":"AIR"},{"x":23,"y":7,"type":"AIR"},{"x":24,"y":7,"type":"DIRT"},{"x":25,"y":7,"type":"DIRT"},{"x":26,"y":7,"type":"AIR"},{"x":27,"y":7,"type":"AIR"},{"x":28,"y":7,"type":"AIR"},{"x":29,"y":7,"type":"AIR"},{"x":30,"y":7,"type":"AIR"},{"x":31,"y":7,"type":"DEEP_SPACE"},{"x":32,"y":7,"type":"DEEP_SPACE"}],[{"x":0,"y":8,"type":"DEEP_SPACE"},{"x":1,"y":8,"type":"DIRT"},{"x":2,"y":8,"type":"DIRT"},{"x":3,"y":8,"type":"DIRT"},{"x":4,"y":8,"type":"DIRT"},{"x":5,"y":8,"type":"DIRT"},{"x":6,"y":8,"type":"AIR"},{"x":7,"y":8,"type":"DIRT"},{"x":8,"y":8,"type":"AIR"},{"x":9,"y":8,"type":"DIRT"},{"x":10,"y":8,"type":"DIRT"},{"x":11,"y":8,"type":"DIRT"},{"x":12,"y":8,"type":"AIR"},{"x":13,"y":8,"type":"DIRT"},{"x":14,"y":8,"type":"AIR"},{"x":15,"y":8,"type":"AIR"},{"x":16,"y":8,"type":"DIRT"},{"x":17,"y":8,"type":"AIR"},{"x":18,"y":8,"type":"AIR"},{"x":19,"y":8,"type":"DIRT"},{"x":20,"y":8,"type":"AIR"},{"x":21,"y":8,"type":"DIRT"},{"x":22,"y":8,"type":"DIRT"},{"x":23,"y":8,"type":"DIRT"},{"x":24,"y":8,"type":"AIR"},{"x":25,"y":8,"type":"DIRT"},{"x":26,"y":8,"type":"AIR"},{"x":27,"y":8,"type":"DIRT"},{"x":28,"y":8,"type":"DIRT"},{"x":29,"y":8,"type":"DIRT"},{"x":30,"y":8,"type":"DIRT"},{"x":31,"y":8,"type":"DIRT"},{"x":32,"y":8,"type":"DEEP_SPACE"}],[{"x":0,"y":9,"type":"DEEP_SPACE"},{"x":1,"y":9,"type":"DIRT"},{"x":2,"y":9,"type":"AIR"},{"x":3,"y":9,"type":"AIR"},{"x":4,"y":9,"type":"AIR"},{"x":5,"y":9,"type":"DIRT"},{"x":6,"y":9,"type":"DIRT"},{"x":7,"y":9,"type":"DIRT"},{"x":8,"y":9,"type":"AIR"},{"x":9,"y":9,"type":"DIRT"},{"x":10,"y":9,"type":"DIRT"},{"x":11,"y":9,"type":"DIRT"},{"x":12,"y":9,"type":"DIRT"},{"x":13,"y":9,"type":"DIRT"},{"x":14,"y":9,"type":"DIRT"},{"x":15,"y":9,"type":"AIR"},{"x":16,"y":9,"type":"AIR"},{"x":17,"y":9,"type":"AIR"},{"x":18,"y":9,"type":"DIRT"},{"x":19,"y":9,"type":"DIRT"},{"x":20,"y":9,"type":"DIRT"},{"x":21,"y":9,"type":"DIRT"},{"x":22,"y":9,"type":"DIRT"},{"x":23,"y":9,"type":"DIRT"},{"x":24,"y":9,"type":"AIR"},{"x":25,"y":9,"type":"DIRT"},{"x":26,"y":9,"type":"DIRT"},{"x":27,"y":9,"type":"DIRT"},{"x":28,"y":9,"type":"AIR"},{"x":29,"y":9,"type":"AIR"},{"x":30,"y":9,"type":"AIR"},{"x":31,"y":9,"type":"DIRT"},{"x":32,"y":9,"type":"DEEP_SPACE"}],[{"x":0,"y":10,"type":"DEEP_SPACE"},{"x":1,"y":10,"type":"DIRT"},{"x":2,"y":10,"type":"DIRT"},{"x":3,"y":10,"type":"DIRT"},{"x":4,"y":10,"type":"DIRT"},{"x":5,"y":10,"type":"DIRT"},{"x":6,"y":10,"type":"DIRT"},{"x":7,"y":10,"type":"DIRT"},{"x":8,"y":10,"type":"DIRT"},{"x":9,"y":10,"type":"DIRT"},{"x":10,"y":10,"type":"AIR"},{"x":11,"y":10,"type":"AIR"},{"x":12,"y":10,"type":"DIRT"},{"x":13,"y":10,"type":"DIRT"},{"x":14,"y":10,"type":"AIR"},{"x":15,"y":10,"type":"AIR"},{"x":16,"y":10,"type":"AIR"},{"x":17,"y":10,"type":"AIR"},{"x":18,"y":10,"type":"AIR"},{"x":19,"y":10,"type":"DIRT"},{"x":20,"y":10,"type":"DIRT"},{"x":21,"y":10,"type":"AIR"},{"x":22,"y":10,"type":"AIR"},{"x":23,"y":10,"type":"DIRT"},{"x":24,"y":10,"type":"DIRT"},{"x":25,"y":10,"type":"DIRT"},{"x":26,"y":10,"type":"DIRT"},{"x":27,"y":10,"type":"DIRT"},{"x":28,"y":10,"type":"DIRT"},{"x":29,"y":10,"type":"DIRT"},{"x":30,"y":10,"type":"DIRT"},{"x":31,"y":10,"type":"DIRT"},{"x":32,"y":10,"type":"DEEP_SPACE"}],[{"x":0,"y":11,"type":"DIRT"},{"x":1,"y":11,"type":"DIRT"},{"x":2,"y":11,"type":"DIRT"},{"x":3,"y":11,"type":"DIRT"},{"x":4,"y":11,"type":"DIRT"},{"x":5,"y":11,"type":"DIRT"},{"x":6,"y":11,"type":"DIRT"},{"x":7,"y":11,"type":"DIRT"},{"x":8,"y":11,"type":"DIRT"},{"x":9,"y":11,"type":"DIRT"},{"x":10,"y":11,"type":"AIR"},{"x":11,"y":11,"type":"AIR"},{"x":12,"y":11,"type":"DIRT"},{"x":13,"y":11,"type":"AIR"},{"x":14,"y":11,"type":"AIR"},{"x":15,"y":11,"type":"AIR"},{"x":16,"y":11,"type":"AIR"},{"x":17,"y":11,"type":"AIR"},{"x":18,"y":11,"type":"AIR"},{"x":19,"y":11,"type":"AIR"},{"x":20,"y":11,"type":"DIRT"},{"x":21,"y":11,"type":"AIR"},{"x":22,"y":11,"type":"AIR"},{"x":23,"y":11,"type":"DIRT"},{"x":24,"y":11,"type":"DIRT"},{"x":25,"y":11,"type":"DIRT"},{"x":26,"y":11,"type":"DIRT"},{"x":27,"y":11,"type":"DIRT"},{"x":28,"y":11,"type":"DIRT"},{"x":29,"y":11,"type":"DIRT"},{"x":30,"y":11,"type":"DIRT"},{"x":31,"y":11,"type":"DIRT"},{"x":32,"y":11,"type":"DIRT"}],[{"x":0,"y":12,"type":"DIRT"},{"x":1,"y":12,"type":"DIRT"},{"x":2,"y":12,"type":"DIRT"},{"x":3,"y":12,"type":"DIRT"},{"x":4,"y":12,"type":"DIRT"},{"x":5,"y":12,"type":"DIRT"},{"x":6,"y":12,"type":"DIRT"},{"x":7,"y":12,"type":"DIRT"},{"x":8,"y":12,"type":"DIRT"},{"x":9,"y":12,"type":"DIRT"},{"x":10,"y":12,"type":"AIR"},{"x":11,"y":12,"type":"AIR"},{"x":12,"y":12,"type":"DIRT"},{"x":13,"y":12,"type":"DIRT"},{"x":14,"y":12,"type":"AIR"},{"x":15,"y":12,"type":"DIRT"},{"x":16,"y":12,"type":"DIRT"},{"x":17,"y":12,"type":"DIRT"},{"x":18,"y":12,"type":"AIR"},{"x":19,"y":12,"type":"DIRT"},{"x":20,"y":12,"type":"DIRT"},{"x":21,"y":12,"type":"AIR"},{"x":22,"y":12,"type":"AIR"},{"x":23,"y":12,"type":"DIRT"},{"x":24,"y":12,"type":"DIRT"},{"x":25,"y":12,"type":"DIRT"},{"x":26,"y":12,"type":"DIRT"},{"x":27,"y":12,"type":"DIRT"},{"x":28,"y":12,"type":"DIRT"},{"x":29,"y":12,"type":"DIRT"},{"x":30,"y":12,"type":"DIRT"},{"x":31,"y":12,"type":"DIRT"},{"x":32,"y":12,"type":"DIRT"}],[{"x":0,"y":13,"type":"DIRT"},{"x":1,"y":13,"type":"DIRT"},{"x":2,"y":13,"type":"DIRT"},{"x":3,"y":13,"type":"AIR"},{"x":4,"y":13,"type":"AIR"},{"x":5,"y":13,"type":"DIRT"},{"x":6,"y":13,"type":"DIRT"},{"x":7,"y":13,"type":"DIRT"},{"x":8,"y":13,"type":"DIRT"},{"x":9,"y":13,"type":"AIR"},{"x":10,"y":13,"type":"AIR"},{"x":11,"y":13,"type":"AIR"},{"x":12,"y":13,"type":"DIRT"},{"x":13,"y":13,"type":"DIRT"},{"x":14,"y":13,"type":"AIR"},{"x":15,"y":13,"type":"DIRT"},{"x":16,"y":13,"type":"DIRT"},{"x":17,"y":13,"type":"DIRT"},{"x":18,"y":13,"type":"AIR"},{"x":19,"y":13,"type":"DIRT"},{"x":20,"y":13,"type":"DIRT"},{"x":21,"y":13,"type":"AIR"},{"x":22,"y":13,"type":"AIR"},{"x":23,"y":13,"type":"AIR"},{"x":24,"y":13,"type":"DIRT"},{"x":25,"y":13,"type":"DIRT"},{"x":26,"y":13,"type":"DIRT"},{"x":27,"y":13,"type":"DIRT"},{"x":28,"y":13,"type":"AIR"},{"x":29,"y":13,"type":"AIR"},{"x":30,"y":13,"type":"DIRT"},{"x":31,"y":13,"type":"DIRT"},{"x":32,"y":13,"type":"DIRT"}],[{"x":0,"y":14,"type":"DIRT"},{"x":1,"y":14,"type":"DIRT"},{"x":2,"y":14,"type":"DIRT"},{"x":3,"y":14,"type":"DIRT"},{"x":4,"y":14,"type":"DIRT"},{"x":5,"y":14,"type":"DIRT"},{"x":6,"y":14,"type":"AIR"},{"x":7,"y":14,"type":"AIR"},{"x":8,"y":14,"type":"DIRT"},{"x":9,"y":14,"type":"DIRT"},{"x":10,"y":14,"type":"DIRT"},{"x":11,"y":14,"type":"DIRT"},{"x":12,"y":14,"type":"DIRT"},{"x":13,"y":14,"type":"DIRT"},{"x":14,"y":14,"type":"AIR"},{"x":15,"y":14,"type":"DIRT"},{"x":16,"y":14,"type":"AIR"},{"x":17,"y":14,"type":"DIRT"},{"x":18,"y":14,"type":"AIR"},{"x":19,"y":14,"type":"DIRT"},{"x":20,"y":14,"type":"DIRT"},{"x":21,"y":14,"type":"DIRT"},{"x":22,"y":14,"type":"DIRT"},{"x":23,"y":14,"type":"DIRT"},{"x":24,"y":14,"type":"DIRT"},{"x":25,"y":14,"type":"AIR"},{"x":26,"y":14,"type":"AIR"},{"x":27,"y":14,"type":"DIRT"},{"x":28,"y":14,"type":"DIRT"},{"x":29,"y":14,"type":"DIRT"},{"x":30,"y":14,"type":"DIRT"},{"x":31,"y":14,"type":"DIRT"},{"x":32,"y":14,"type":"DIRT"}],[{"x":0,"y":15,"type":"AIR"},{"x":1,"y":15,"type":"AIR"},{"x":2,"y":15,"type":"AIR"},{"x":3,"y":15,"type":"DIRT"},{"x":4,"y":15,"type":"DIRT"},{"x":5,"y":15,"type":"DIRT"},{"x":6,"y":15,"type":"AIR"},{"x":7,"y":15,"type":"AIR"},{"x":8,"y":15,"type":"AIR"},{"x":9,"y":15,"type":"AIR"},{"x":10,"y":15,"type":"DIRT"},{"x":11,"y":15,"type":"DIRT"},{"x":12,"y":15,"type":"DIRT"},{"x":13,"y":15,"type":"DIRT"},{"x":14,"y":15,"type":"AIR","powerup":{"type":"HEALTH_PACK","value":10}},{"x":15,"y":15,"type":"DIRT"},{"x":16,"y":15,"type":"DIRT"},{"x":17,"y":15,"type":"DIRT"},{"x":18,"y":15,"type":"AIR"},{"x":19,"y":15,"type":"DIRT"},{"x":20,"y":15,"type":"DIRT"},{"x":21,"y":15,"type":"DIRT"},{"x":22,"y":15,"type":"DIRT"},{"x":23,"y":15,"type":"AIR"},{"x":24,"y":15,"type":"AIR"},{"x":25,"y":15,"type":"AIR"},{"x":26,"y":15,"type":"AIR"},{"x":27,"y":15,"type":"DIRT"},{"x":28,"y":15,"type":"DIRT"},{"x":29,"y":15,"type":"DIRT"},{"x":30,"y":15,"type":"AIR"},{"x":31,"y":15,"type":"AIR"},{"x":32,"y":15,"type":"AIR"}],[{"x":0,"y":16,"type":"AIR"},{"x":1,"y":16,"type":"AIR","occupier":{"id":2,"playerId":1,"health":150,"position":{"x":1,"y":16},"diggingRange":1,"movementRange":1}},{"x":2,"y":16,"type":"AIR"},{"x":3,"y":16,"type":"DIRT"},{"x":4,"y":16,"type":"AIR"},{"x":5,"y":16,"type":"AIR"},{"x":6,"y":16,"type":"AIR"},{"x":7,"y":16,"type":"DIRT"},{"x":8,"y":16,"type":"DIRT"},{"x":9,"y":16,"type":"DIRT"},{"x":10,"y":16,"type":"DIRT"},{"x":11,"y":16,"type":"DIRT"},{"x":12,"y":16,"type":"DIRT"},{"x":13,"y":16,"type":"DIRT"},{"x":14,"y":16,"type":"DIRT"},{"x":15,"y":16,"type":"DIRT"},{"x":16,"y":16,"type":"DIRT"},{"x":17,"y":16,"type":"DIRT"},{"x":18,"y":16,"type":"DIRT"},{"x":19,"y":16,"type":"DIRT"},{"x":20,"y":16,"type":"DIRT"},{"x":21,"y":16,"type":"DIRT"},{"x":22,"y":16,"type":"DIRT"},{"x":23,"y":16,"type":"DIRT"},{"x":24,"y":16,"type":"DIRT"},{"x":25,"y":16,"type":"DIRT"},{"x":26,"y":16,"type":"AIR"},{"x":27,"y":16,"type":"AIR"},{"x":28,"y":16,"type":"AIR"},{"x":29,"y":16,"type":"DIRT"},{"x":30,"y":16,"type":"AIR"},{"x":31,"y":16,"type":"AIR","occupier":{"id":1,"playerId":2,"health":150,"position":{"x":31,"y":16},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1}},{"x":32,"y":16,"type":"AIR"}],[{"x":0,"y":17,"type":"AIR"},{"x":1,"y":17,"type":"AIR"},{"x":2,"y":17,"type":"AIR"},{"x":3,"y":17,"type":"DIRT"},{"x":4,"y":17,"type":"DIRT"},{"x":5,"y":17,"type":"AIR"},{"x":6,"y":17,"type":"AIR"},{"x":7,"y":17,"type":"DIRT"},{"x":8,"y":17,"type":"DIRT"},{"x":9,"y":17,"type":"DIRT"},{"x":10,"y":17,"type":"DIRT"},{"x":11,"y":17,"type":"AIR"},{"x":12,"y":17,"type":"DIRT"},{"x":13,"y":17,"type":"AIR"},{"x":14,"y":17,"type":"AIR"},{"x":15,"y":17,"type":"DIRT"},{"x":16,"y":17,"type":"DIRT"},{"x":17,"y":17,"type":"DIRT"},{"x":18,"y":17,"type":"AIR","powerup":{"type":"HEALTH_PACK","value":10}},{"x":19,"y":17,"type":"AIR"},{"x":20,"y":17,"type":"DIRT"},{"x":21,"y":17,"type":"AIR"},{"x":22,"y":17,"type":"DIRT"},{"x":23,"y":17,"type":"DIRT"},{"x":24,"y":17,"type":"DIRT"},{"x":25,"y":17,"type":"DIRT"},{"x":26,"y":17,"type":"AIR"},{"x":27,"y":17,"type":"AIR"},{"x":28,"y":17,"type":"DIRT"},{"x":29,"y":17,"type":"DIRT"},{"x":30,"y":17,"type":"AIR"},{"x":31,"y":17,"type":"AIR"},{"x":32,"y":17,"type":"AIR"}],[{"x":0,"y":18,"type":"DIRT"},{"x":1,"y":18,"type":"DIRT"},{"x":2,"y":18,"type":"DIRT"},{"x":3,"y":18,"type":"DIRT"},{"x":4,"y":18,"type":"DIRT"},{"x":5,"y":18,"type":"DIRT"},{"x":6,"y":18,"type":"AIR"},{"x":7,"y":18,"type":"DIRT"},{"x":8,"y":18,"type":"DIRT"},{"x":9,"y":18,"type":"AIR"},{"x":10,"y":18,"type":"AIR"},{"x":11,"y":18,"type":"AIR"},{"x":12,"y":18,"type":"AIR"},{"x":13,"y":18,"type":"AIR"},{"x":14,"y":18,"type":"AIR"},{"x":15,"y":18,"type":"AIR"},{"x":16,"y":18,"type":"DIRT"},{"x":17,"y":18,"type":"AIR"},{"x":18,"y":18,"type":"AIR"},{"x":19,"y":18,"type":"AIR"},{"x":20,"y":18,"type":"AIR"},{"x":21,"y":18,"type":"AIR"},{"x":22,"y":18,"type":"AIR"},{"x":23,"y":18,"type":"AIR"},{"x":24,"y":18,"type":"DIRT"},{"x":25,"y":18,"type":"DIRT"},{"x":26,"y":18,"type":"AIR"},{"x":27,"y":18,"type":"DIRT"},{"x":28,"y":18,"type":"DIRT"},{"x":29,"y":18,"type":"DIRT"},{"x":30,"y":18,"type":"DIRT"},{"x":31,"y":18,"type":"DIRT"},{"x":32,"y":18,"type":"DIRT"}],[{"x":0,"y":19,"type":"AIR"},{"x":1,"y":19,"type":"DIRT"},{"x":2,"y":19,"type":"DIRT"},{"x":3,"y":19,"type":"DIRT"},{"x":4,"y":19,"type":"DIRT"},{"x":5,"y":19,"type":"AIR"},{"x":6,"y":19,"type":"AIR"},{"x":7,"y":19,"type":"DIRT"},{"x":8,"y":19,"type":"DIRT"},{"x":9,"y":19,"type":"DIRT"},{"x":10,"y":19,"type":"AIR"},{"x":11,"y":19,"type":"AIR"},{"x":12,"y":19,"type":"AIR"},{"x":13,"y":19,"type":"AIR"},{"x":14,"y":19,"type":"AIR"},{"x":15,"y":19,"type":"DIRT"},{"x":16,"y":19,"type":"DIRT"},{"x":17,"y":19,"type":"DIRT"},{"x":18,"y":19,"type":"AIR"},{"x":19,"y":19,"type":"AIR"},{"x":20,"y":19,"type":"AIR"},{"x":21,"y":19,"type":"AIR"},{"x":22,"y":19,"type":"AIR"},{"x":23,"y":19,"type":"DIRT"},{"x":24,"y":19,"type":"DIRT"},{"x":25,"y":19,"type":"DIRT"},{"x":26,"y":19,"type":"AIR"},{"x":27,"y":19,"type":"AIR"},{"x":28,"y":19,"type":"DIRT"},{"x":29,"y":19,"type":"DIRT"},{"x":30,"y":19,"type":"DIRT"},{"x":31,"y":19,"type":"DIRT"},{"x":32,"y":19,"type":"AIR"}],[{"x":0,"y":20,"type":"DIRT"},{"x":1,"y":20,"type":"DIRT"},{"x":2,"y":20,"type":"DIRT"},{"x":3,"y":20,"type":"DIRT"},{"x":4,"y":20,"type":"AIR"},{"x":5,"y":20,"type":"AIR"},{"x":6,"y":20,"type":"DIRT"},{"x":7,"y":20,"type":"DIRT"},{"x":8,"y":20,"type":"DIRT"},{"x":9,"y":20,"type":"DIRT"},{"x":10,"y":20,"type":"DIRT"},{"x":11,"y":20,"type":"DIRT"},{"x":12,"y":20,"type":"AIR"},{"x":13,"y":20,"type":"AIR"},{"x":14,"y":20,"type":"DIRT"},{"x":15,"y":20,"type":"DIRT"},{"x":16,"y":20,"type":"DIRT"},{"x":17,"y":20,"type":"DIRT"},{"x":18,"y":20,"type":"DIRT"},{"x":19,"y":20,"type":"AIR"},{"x":20,"y":20,"type":"AIR"},{"x":21,"y":20,"type":"DIRT"},{"x":22,"y":20,"type":"DIRT"},{"x":23,"y":20,"type":"DIRT"},{"x":24,"y":20,"type":"DIRT"},{"x":25,"y":20,"type":"DIRT"},{"x":26,"y":20,"type":"DIRT"},{"x":27,"y":20,"type":"AIR"},{"x":28,"y":20,"type":"AIR"},{"x":29,"y":20,"type":"DIRT"},{"x":30,"y":20,"type":"DIRT"},{"x":31,"y":20,"type":"DIRT"},{"x":32,"y":20,"type":"DIRT"}],[{"x":0,"y":21,"type":"DIRT"},{"x":1,"y":21,"type":"DIRT"},{"x":2,"y":21,"type":"AIR"},{"x":3,"y":21,"type":"AIR"},{"x":4,"y":21,"type":"AIR"},{"x":5,"y":21,"type":"AIR"},{"x":6,"y":21,"type":"DIRT"},{"x":7,"y":21,"type":"DIRT"},{"x":8,"y":21,"type":"DIRT"},{"x":9,"y":21,"type":"DIRT"},{"x":10,"y":21,"type":"DIRT"},{"x":11,"y":21,"type":"DIRT"},{"x":12,"y":21,"type":"AIR"},{"x":13,"y":21,"type":"DIRT"},{"x":14,"y":21,"type":"DIRT"},{"x":15,"y":21,"type":"DIRT"},{"x":16,"y":21,"type":"DIRT"},{"x":17,"y":21,"type":"DIRT"},{"x":18,"y":21,"type":"DIRT"},{"x":19,"y":21,"type":"DIRT"},{"x":20,"y":21,"type":"AIR"},{"x":21,"y":21,"type":"DIRT"},{"x":22,"y":21,"type":"DIRT"},{"x":23,"y":21,"type":"DIRT"},{"x":24,"y":21,"type":"DIRT"},{"x":25,"y":21,"type":"DIRT"},{"x":26,"y":21,"type":"DIRT"},{"x":27,"y":21,"type":"AIR"},{"x":28,"y":21,"type":"AIR"},{"x":29,"y":21,"type":"AIR"},{"x":30,"y":21,"type":"AIR"},{"x":31,"y":21,"type":"DIRT"},{"x":32,"y":21,"type":"DIRT"}],[{"x":0,"y":22,"type":"DEEP_SPACE"},{"x":1,"y":22,"type":"AIR"},{"x":2,"y":22,"type":"AIR"},{"x":3,"y":22,"type":"AIR"},{"x":4,"y":22,"type":"AIR"},{"x":5,"y":22,"type":"DIRT"},{"x":6,"y":22,"type":"DIRT"},{"x":7,"y":22,"type":"DIRT"},{"x":8,"y":22,"type":"DIRT"},{"x":9,"y":22,"type":"DIRT"},{"x":10,"y":22,"type":"DIRT"},{"x":11,"y":22,"type":"DIRT"},{"x":12,"y":22,"type":"AIR"},{"x":13,"y":22,"type":"DIRT"},{"x":14,"y":22,"type":"DIRT"},{"x":15,"y":22,"type":"AIR"},{"x":16,"y":22,"type":"AIR"},{"x":17,"y":22,"type":"AIR"},{"x":18,"y":22,"type":"DIRT"},{"x":19,"y":22,"type":"DIRT"},{"x":20,"y":22,"type":"AIR"},{"x":21,"y":22,"type":"DIRT"},{"x":22,"y":22,"type":"DIRT"},{"x":23,"y":22,"type":"DIRT"},{"x":24,"y":22,"type":"DIRT"},{"x":25,"y":22,"type":"DIRT"},{"x":26,"y":22,"type":"DIRT"},{"x":27,"y":22,"type":"DIRT"},{"x":28,"y":22,"type":"AIR"},{"x":29,"y":22,"type":"AIR"},{"x":30,"y":22,"type":"AIR"},{"x":31,"y":22,"type":"AIR"},{"x":32,"y":22,"type":"DEEP_SPACE"}],[{"x":0,"y":23,"type":"DEEP_SPACE"},{"x":1,"y":23,"type":"DIRT"},{"x":2,"y":23,"type":"DIRT"},{"x":3,"y":23,"type":"DIRT"},{"x":4,"y":23,"type":"DIRT"},{"x":5,"y":23,"type":"DIRT"},{"x":6,"y":23,"type":"DIRT"},{"x":7,"y":23,"type":"AIR"},{"x":8,"y":23,"type":"DIRT"},{"x":9,"y":23,"type":"DIRT"},{"x":10,"y":23,"type":"DIRT"},{"x":11,"y":23,"type":"DIRT"},{"x":12,"y":23,"type":"AIR"},{"x":13,"y":23,"type":"DIRT"},{"x":14,"y":23,"type":"DIRT"},{"x":15,"y":23,"type":"AIR"},{"x":16,"y":23,"type":"AIR"},{"x":17,"y":23,"type":"AIR"},{"x":18,"y":23,"type":"DIRT"},{"x":19,"y":23,"type":"DIRT"},{"x":20,"y":23,"type":"AIR"},{"x":21,"y":23,"type":"DIRT"},{"x":22,"y":23,"type":"DIRT"},{"x":23,"y":23,"type":"DIRT"},{"x":24,"y":23,"type":"DIRT"},{"x":25,"y":23,"type":"AIR"},{"x":26,"y":23,"type":"DIRT"},{"x":27,"y":23,"type":"DIRT"},{"x":28,"y":23,"type":"DIRT"},{"x":29,"y":23,"type":"DIRT"},{"x":30,"y":23,"type":"DIRT"},{"x":31,"y":23,"type":"DIRT"},{"x":32,"y":23,"type":"DEEP_SPACE"}],[{"x":0,"y":24,"type":"DEEP_SPACE"},{"x":1,"y":24,"type":"DIRT"},{"x":2,"y":24,"type":"DIRT"},{"x":3,"y":24,"type":"DIRT"},{"x":4,"y":24,"type":"AIR"},{"x":5,"y":24,"type":"AIR"},{"x":6,"y":24,"type":"AIR"},{"x":7,"y":24,"type":"AIR"},{"x":8,"y":24,"type":"DIRT"},{"x":9,"y":24,"type":"AIR"},{"x":10,"y":24,"type":"AIR"},{"x":11,"y":24,"type":"AIR"},{"x":12,"y":24,"type":"AIR"},{"x":13,"y":24,"type":"AIR"},{"x":14,"y":24,"type":"DIRT"},{"x":15,"y":24,"type":"DIRT"},{"x":16,"y":24,"type":"DIRT"},{"x":17,"y":24,"type":"DIRT"},{"x":18,"y":24,"type":"DIRT"},{"x":19,"y":24,"type":"AIR"},{"x":20,"y":24,"type":"AIR"},{"x":21,"y":24,"type":"AIR"},{"x":22,"y":24,"type":"AIR"},{"x":23,"y":24,"type":"AIR"},{"x":24,"y":24,"type":"DIRT"},{"x":25,"y":24,"type":"AIR"},{"x":26,"y":24,"type":"AIR"},{"x":27,"y":24,"type":"AIR"},{"x":28,"y":24,"type":"AIR"},{"x":29,"y":24,"type":"DIRT"},{"x":30,"y":24,"type":"DIRT"},{"x":31,"y":24,"type":"DIRT"},{"x":32,"y":24,"type":"DEEP_SPACE"}],[{"x":0,"y":25,"type":"DEEP_SPACE"},{"x":1,"y":25,"type":"DEEP_SPACE"},{"x":2,"y":25,"type":"AIR"},{"x":3,"y":25,"type":"AIR"},{"x":4,"y":25,"type":"AIR"},{"x":5,"y":25,"type":"AIR"},{"x":6,"y":25,"type":"DIRT"},{"x":7,"y":25,"type":"DIRT"},{"x":8,"y":25,"type":"DIRT"},{"x":9,"y":25,"type":"AIR"},{"x":10,"y":25,"type":"AIR"},{"x":11,"y":25,"type":"DIRT"},{"x":12,"y":25,"type":"DIRT"},{"x":13,"y":25,"type":"DIRT"},{"x":14,"y":25,"type":"DIRT"},{"x":15,"y":25,"type":"DIRT"},{"x":16,"y":25,"type":"DIRT"},{"x":17,"y":25,"type":"DIRT"},{"x":18,"y":25,"type":"DIRT"},{"x":19,"y":25,"type":"DIRT"},{"x":20,"y":25,"type":"DIRT"},{"x":21,"y":25,"type":"DIRT"},{"x":22,"y":25,"type":"AIR"},{"x":23,"y":25,"type":"AIR"},{"x":24,"y":25,"type":"DIRT"},{"x":25,"y":25,"type":"DIRT"},{"x":26,"y":25,"type":"DIRT"},{"x":27,"y":25,"type":"AIR"},{"x":28,"y":25,"type":"AIR"},{"x":29,"y":25,"type":"AIR"},{"x":30,"y":25,"type":"AIR"},{"x":31,"y":25,"type":"DEEP_SPACE"},{"x":32,"y":25,"type":"DEEP_SPACE"}],[{"x":0,"y":26,"type":"DEEP_SPACE"},{"x":1,"y":26,"type":"DEEP_SPACE"},{"x":2,"y":26,"type":"DEEP_SPACE"},{"x":3,"y":26,"type":"AIR"},{"x":4,"y":26,"type":"AIR"},{"x":5,"y":26,"type":"AIR"},{"x":6,"y":26,"type":"DIRT"},{"x":7,"y":26,"type":"DIRT"},{"x":8,"y":26,"type":"DIRT"},{"x":9,"y":26,"type":"DIRT"},{"x":10,"y":26,"type":"AIR"},{"x":11,"y":26,"type":"AIR"},{"x":12,"y":26,"type":"AIR"},{"x":13,"y":26,"type":"AIR"},{"x":14,"y":26,"type":"AIR"},{"x":15,"y":26,"type":"DIRT"},{"x":16,"y":26,"type":"DIRT"},{"x":17,"y":26,"type":"DIRT"},{"x":18,"y":26,"type":"AIR"},{"x":19,"y":26,"type":"AIR"},{"x":20,"y":26,"type":"AIR"},{"x":21,"y":26,"type":"AIR"},{"x":22,"y":26,"type":"AIR"},{"x":23,"y":26,"type":"DIRT"},{"x":24,"y":26,"type":"DIRT"},{"x":25,"y":26,"type":"DIRT"},{"x":26,"y":26,"type":"DIRT"},{"x":27,"y":26,"type":"AIR"},{"x":28,"y":26,"type":"AIR"},{"x":29,"y":26,"type":"AIR"},{"x":30,"y":26,"type":"DEEP_SPACE"},{"x":31,"y":26,"type":"DEEP_SPACE"},{"x":32,"y":26,"type":"DEEP_SPACE"}],[{"x":0,"y":27,"type":"DEEP_SPACE"},{"x":1,"y":27,"type":"DEEP_SPACE"},{"x":2,"y":27,"type":"DEEP_SPACE"},{"x":3,"y":27,"type":"DEEP_SPACE"},{"x":4,"y":27,"type":"AIR"},{"x":5,"y":27,"type":"DIRT"},{"x":6,"y":27,"type":"AIR"},{"x":7,"y":27,"type":"DIRT"},{"x":8,"y":27,"type":"DIRT"},{"x":9,"y":27,"type":"DIRT"},{"x":10,"y":27,"type":"DIRT"},{"x":11,"y":27,"type":"DIRT"},{"x":12,"y":27,"type":"DIRT"},{"x":13,"y":27,"type":"AIR"},{"x":14,"y":27,"type":"AIR"},{"x":15,"y":27,"type":"DIRT"},{"x":16,"y":27,"type":"AIR"},{"x":17,"y":27,"type":"DIRT"},{"x":18,"y":27,"type":"AIR"},{"x":19,"y":27,"type":"AIR"},{"x":20,"y":27,"type":"DIRT"},{"x":21,"y":27,"type":"DIRT"},{"x":22,"y":27,"type":"DIRT"},{"x":23,"y":27,"type":"DIRT"},{"x":24,"y":27,"type":"DIRT"},{"x":25,"y":27,"type":"DIRT"},{"x":26,"y":27,"type":"DIRT"},{"x":27,"y":27,"type":"DIRT"},{"x":28,"y":27,"type":"AIR"},{"x":29,"y":27,"type":"DEEP_SPACE"},{"x":30,"y":27,"type":"DEEP_SPACE"},{"x":31,"y":27,"type":"DEEP_SPACE"},{"x":32,"y":27,"type":"DEEP_SPACE"}],[{"x":0,"y":28,"type":"DEEP_SPACE"},{"x":1,"y":28,"type":"DEEP_SPACE"},{"x":2,"y":28,"type":"DEEP_SPACE"},{"x":3,"y":28,"type":"DEEP_SPACE"},{"x":4,"y":28,"type":"DIRT"},{"x":5,"y":28,"type":"DIRT"},{"x":6,"y":28,"type":"AIR"},{"x":7,"y":28,"type":"DIRT"},{"x":8,"y":28,"type":"AIR"},{"x":9,"y":28,"type":"AIR"},{"x":10,"y":28,"type":"AIR"},{"x":11,"y":28,"type":"DIRT"},{"x":12,"y":28,"type":"AIR"},{"x":13,"y":28,"type":"AIR"},{"x":14,"y":28,"type":"AIR"},{"x":15,"y":28,"type":"DIRT"},{"x":16,"y":28,"type":"DIRT"},{"x":17,"y":28,"type":"DIRT"},{"x":18,"y":28,"type":"AIR"},{"x":19,"y":28,"type":"AIR"},{"x":20,"y":28,"type":"AIR"},{"x":21,"y":28,"type":"AIR"},{"x":22,"y":28,"type":"DIRT"},{"x":23,"y":28,"type":"AIR"},{"x":24,"y":28,"type":"AIR"},{"x":25,"y":28,"type":"AIR"},{"x":26,"y":28,"type":"DIRT"},{"x":27,"y":28,"type":"DIRT"},{"x":28,"y":28,"type":"DIRT"},{"x":29,"y":28,"type":"DEEP_SPACE"},{"x":30,"y":28,"type":"DEEP_SPACE"},{"x":31,"y":28,"type":"DEEP_SPACE"},{"x":32,"y":28,"type":"DEEP_SPACE"}],[{"x":0,"y":29,"type":"DEEP_SPACE"},{"x":1,"y":29,"type":"DEEP_SPACE"},{"x":2,"y":29,"type":"DEEP_SPACE"},{"x":3,"y":29,"type":"DEEP_SPACE"},{"x":4,"y":29,"type":"DEEP_SPACE"},{"x":5,"y":29,"type":"DEEP_SPACE"},{"x":6,"y":29,"type":"DIRT"},{"x":7,"y":29,"type":"DIRT"},{"x":8,"y":29,"type":"AIR"},{"x":9,"y":29,"type":"AIR","occupier":{"id":2,"playerId":2,"health":150,"position":{"x":9,"y":29},"weapon":{"damage":8,"range":4},"diggingRange":1,"movementRange":1}},{"x":10,"y":29,"type":"AIR"},{"x":11,"y":29,"type":"DIRT"},{"x":12,"y":29,"type":"DIRT"},{"x":13,"y":29,"type":"DIRT"},{"x":14,"y":29,"type":"DIRT"},{"x":15,"y":29,"type":"DIRT"},{"x":16,"y":29,"type":"DIRT"},{"x":17,"y":29,"type":"DIRT"},{"x":18,"y":29,"type":"DIRT"},{"x":19,"y":29,"type":"DIRT"},{"x":20,"y":29,"type":"DIRT"},{"x":21,"y":29,"type":"AIR"},{"x":22,"y":29,"type":"DIRT"},{"x":23,"y":29,"type":"AIR"},{"x":24,"y":29,"type":"AIR","occupier":{"id":1,"playerId":1,"health":150,"position":{"x":24,"y":29},"diggingRange":1,"movementRange":1}},{"x":25,"y":29,"type":"AIR"},{"x":26,"y":29,"type":"DIRT"},{"x":27,"y":29,"type":"DEEP_SPACE"},{"x":28,"y":29,"type":"DEEP_SPACE"},{"x":29,"y":29,"type":"DEEP_SPACE"},{"x":30,"y":29,"type":"DEEP_SPACE"},{"x":31,"y":29,"type":"DEEP_SPACE"},{"x":32,"y":29,"type":"DEEP_SPACE"}],[{"x":0,"y":30,"type":"DEEP_SPACE"},{"x":1,"y":30,"type":"DEEP_SPACE"},{"x":2,"y":30,"type":"DEEP_SPACE"},{"x":3,"y":30,"type":"DEEP_SPACE"},{"x":4,"y":30,"type":"DEEP_SPACE"},{"x":5,"y":30,"type":"DEEP_SPACE"},{"x":6,"y":30,"type":"DEEP_SPACE"},{"x":7,"y":30,"type":"DIRT"},{"x":8,"y":30,"type":"AIR"},{"x":9,"y":30,"type":"AIR"},{"x":10,"y":30,"type":"AIR"},{"x":11,"y":30,"type":"DIRT"},{"x":12,"y":30,"type":"DIRT"},{"x":13,"y":30,"type":"DIRT"},{"x":14,"y":30,"type":"AIR"},{"x":15,"y":30,"type":"AIR"},{"x":16,"y":30,"type":"DIRT"},{"x":17,"y":30,"type":"AIR"},{"x":18,"y":30,"type":"AIR"},{"x":19,"y":30,"type":"DIRT"},{"x":20,"y":30,"type":"DIRT"},{"x":21,"y":30,"type":"DIRT"},{"x":22,"y":30,"type":"DIRT"},{"x":23,"y":30,"type":"AIR"},{"x":24,"y":30,"type":"AIR"},{"x":25,"y":30,"type":"AIR"},{"x":26,"y":30,"type":"DEEP_SPACE"},{"x":27,"y":30,"type":"DEEP_SPACE"},{"x":28,"y":30,"type":"DEEP_SPACE"},{"x":29,"y":30,"type":"DEEP_SPACE"},{"x":30,"y":30,"type":"DEEP_SPACE"},{"x":31,"y":30,"type":"DEEP_SPACE"},{"x":32,"y":30,"type":"DEEP_SPACE"}],[{"x":0,"y":31,"type":"DEEP_SPACE"},{"x":1,"y":31,"type":"DEEP_SPACE"},{"x":2,"y":31,"type":"DEEP_SPACE"},{"x":3,"y":31,"type":"DEEP_SPACE"},{"x":4,"y":31,"type":"DEEP_SPACE"},{"x":5,"y":31,"type":"DEEP_SPACE"},{"x":6,"y":31,"type":"DEEP_SPACE"},{"x":7,"y":31,"type":"DEEP_SPACE"},{"x":8,"y":31,"type":"DIRT"},{"x":9,"y":31,"type":"DIRT"},{"x":10,"y":31,"type":"DIRT"},{"x":11,"y":31,"type":"DIRT"},{"x":12,"y":31,"type":"DIRT"},{"x":13,"y":31,"type":"AIR"},{"x":14,"y":31,"type":"AIR"},{"x":15,"y":31,"type":"AIR"},{"x":16,"y":31,"type":"AIR"},{"x":17,"y":31,"type":"AIR"},{"x":18,"y":31,"type":"AIR"},{"x":19,"y":31,"type":"AIR"},{"x":20,"y":31,"type":"DIRT"},{"x":21,"y":31,"type":"AIR"},{"x":22,"y":31,"type":"DIRT"},{"x":23,"y":31,"type":"DIRT"},{"x":24,"y":31,"type":"DIRT"},{"x":25,"y":31,"type":"DEEP_SPACE"},{"x":26,"y":31,"type":"DEEP_SPACE"},{"x":27,"y":31,"type":"DEEP_SPACE"},{"x":28,"y":31,"type":"DEEP_SPACE"},{"x":29,"y":31,"type":"DEEP_SPACE"},{"x":30,"y":31,"type":"DEEP_SPACE"},{"x":31,"y":31,"type":"DEEP_SPACE"},{"x":32,"y":31,"type":"DEEP_SPACE"}],[{"x":0,"y":32,"type":"DEEP_SPACE"},{"x":1,"y":32,"type":"DEEP_SPACE"},{"x":2,"y":32,"type":"DEEP_SPACE"},{"x":3,"y":32,"type":"DEEP_SPACE"},{"x":4,"y":32,"type":"DEEP_SPACE"},{"x":5,"y":32,"type":"DEEP_SPACE"},{"x":6,"y":32,"type":"DEEP_SPACE"},{"x":7,"y":32,"type":"DEEP_SPACE"},{"x":8,"y":32,"type":"DEEP_SPACE"},{"x":9,"y":32,"type":"DEEP_SPACE"},{"x":10,"y":32,"type":"DEEP_SPACE"},{"x":11,"y":32,"type":"AIR"},{"x":12,"y":32,"type":"AIR"},{"x":13,"y":32,"type":"DIRT"},{"x":14,"y":32,"type":"DIRT"},{"x":15,"y":32,"type":"AIR"},{"x":16,"y":32,"type":"DIRT"},{"x":17,"y":32,"type":"AIR"},{"x":18,"y":32,"type":"DIRT"},{"x":19,"y":32,"type":"DIRT"},{"x":20,"y":32,"type":"AIR"},{"x":21,"y":32,"type":"AIR"},{"x":22,"y":32,"type":"DEEP_SPACE"},{"x":23,"y":32,"type":"DEEP_SPACE"},{"x":24,"y":32,"type":"DEEP_SPACE"},{"x":25,"y":32,"type":"DEEP_SPACE"},{"x":26,"y":32,"type":"DEEP_SPACE"},{"x":27,"y":32,"type":"DEEP_SPACE"},{"x":28,"y":32,"type":"DEEP_SPACE"},{"x":29,"y":32,"type":"DEEP_SPACE"},{"x":30,"y":32,"type":"DEEP_SPACE"},{"x":31,"y":32,"type":"DEEP_SPACE"},{"x":32,"y":32,"type":"DEEP_SPACE"}]]} \ No newline at end of file
diff --git a/tests/replays/2019.04.20.09.47.04/B-log.csv b/tests/replays/2019.04.20.09.47.04/B-log.csv
new file mode 100644
index 0000000..d340d5a
--- /dev/null
+++ b/tests/replays/2019.04.20.09.47.04/B-log.csv
@@ -0,0 +1,401 @@
+Round,CommandType,Command,ActiveWorm,Score,Health,Worm1 Health,Worm1 x,Worm1 y,Worm2 Health,Worm2 x,Worm2 y,Worm3 Health,Worm3 x,Worm3 y
+1,null,"null",1,150,450,150,31,16,150,9,29,150,8,3
+2,move,"move (30, 15)",1,155,450,150,30,15,150,9,29,150,8,3
+3,move,"move (9, 30)",2,160,450,150,30,15,150,9,30,150,8,3
+4,move,"move (9, 2)",3,165,450,150,30,15,150,9,30,150,9,2
+5,dig,"dig (29, 14)",1,172,450,150,30,15,150,9,30,150,9,2
+6,move,"move (10, 30)",2,177,450,150,30,15,150,10,30,150,9,2
+7,dig,"dig (10, 1)",3,184,450,150,30,15,150,10,30,150,9,2
+8,dig,"dig (31, 14)",1,191,450,150,30,15,150,10,30,150,9,2
+9,dig,"dig (9, 31)",2,198,450,150,30,15,150,10,30,150,9,2
+10,dig,"dig (8, 1)",3,205,450,150,30,15,150,10,30,150,9,2
+11,move,"move (31, 15)",1,210,450,150,31,15,150,10,30,150,9,2
+12,move,"move (9, 31)",2,215,450,150,31,15,150,9,31,150,9,2
+13,move,"move (10, 1)",3,220,450,150,31,15,150,9,31,150,10,1
+14,move,"move (30, 16)",1,225,450,150,30,16,150,9,31,150,10,1
+15,nothing,"nothing",2,225,450,150,30,16,150,9,31,150,10,1
+16,nothing,"nothing",3,225,450,150,30,16,150,9,31,150,10,1
+17,dig,"dig (29, 17)",1,232,450,150,30,16,150,9,31,150,10,1
+18,nothing,"nothing",2,232,450,150,30,16,150,9,31,150,10,1
+19,dig,"dig (9, 1)",3,239,450,150,30,16,150,9,31,150,10,1
+20,move,"move (30, 17)",1,244,450,150,30,17,150,9,31,150,10,1
+21,nothing,"nothing",2,244,450,150,30,17,150,9,31,150,10,1
+22,move,"move (11, 0)",3,249,450,150,30,17,150,9,31,150,11,0
+23,dig,"dig (31, 18)",1,256,450,150,30,17,150,9,31,150,11,0
+24,move,"move (10, 30)",2,261,450,150,30,17,150,10,30,150,11,0
+25,dig,"dig (11, 1)",3,268,450,150,30,17,150,10,30,150,11,0
+26,dig,"dig (29, 18)",1,275,450,150,30,17,150,10,30,150,11,0
+27,move,"move (9, 29)",2,280,450,150,30,17,150,9,29,150,11,0
+28,nothing,"nothing",3,280,450,150,30,17,150,9,29,150,11,0
+29,move,"move (31, 16)",1,285,450,150,31,16,150,9,29,150,11,0
+30,move,"move (8, 29)",2,290,450,150,31,16,150,8,29,150,11,0
+31,nothing,"nothing",3,290,450,150,31,16,150,8,29,150,11,0
+32,move,"move (32, 16)",1,295,450,150,32,16,150,8,29,150,11,0
+33,move,"move (9, 29)",2,300,450,150,32,16,150,9,29,150,11,0
+34,nothing,"nothing",3,300,450,150,32,16,150,9,29,150,11,0
+35,move,"move (31, 15)",1,305,450,150,31,15,150,9,29,150,11,0
+36,move,"move (10, 28)",2,310,450,150,31,15,150,10,28,150,11,0
+37,nothing,"nothing",3,310,450,150,31,15,150,10,28,150,11,0
+38,move,"move (30, 15)",1,315,450,150,30,15,150,10,28,150,11,0
+39,move,"move (9, 28)",2,320,450,150,30,15,150,9,28,150,11,0
+40,move,"move (11, 1)",3,325,450,150,30,15,150,9,28,150,11,1
+41,move,"move (31, 15)",1,330,450,150,31,15,150,9,28,150,11,1
+42,move,"move (8, 28)",2,335,450,150,31,15,150,8,28,150,11,1
+43,dig,"dig (11, 2)",3,342,450,150,31,15,150,8,28,150,11,1
+44,move,"move (32, 15)",1,347,450,150,32,15,150,8,28,150,11,1
+45,dig,"dig (7, 27)",2,354,450,150,32,15,150,8,28,150,11,1
+46,move,"move (11, 2)",3,359,450,150,32,15,150,8,28,150,11,2
+47,move,"move (32, 16)",1,364,450,150,32,16,150,8,28,150,11,2
+48,dig,"dig (8, 27)",2,371,450,150,32,16,150,8,28,150,11,2
+49,dig,"dig (10, 2)",3,378,450,150,32,16,150,8,28,150,11,2
+50,move,"move (32, 17)",1,383,450,150,32,17,150,8,28,150,11,2
+51,dig,"dig (7, 29)",2,390,450,150,32,17,150,8,28,150,11,2
+52,dig,"dig (12, 2)",3,397,450,150,32,17,150,8,28,150,11,2
+53,move,"move (31, 17)",1,402,450,150,31,17,150,8,28,150,11,2
+54,move,"move (9, 28)",2,407,450,150,31,17,150,9,28,150,11,2
+55,dig,"dig (12, 1)",3,414,450,150,31,17,150,9,28,150,11,2
+56,move,"move (32, 17)",1,419,450,150,32,17,150,9,28,150,11,2
+57,move,"move (8, 29)",2,424,450,150,32,17,150,8,29,150,11,2
+58,dig,"dig (10, 3)",3,431,450,150,32,17,150,8,29,150,11,2
+59,move,"move (31, 17)",1,436,450,150,31,17,150,8,29,150,11,2
+60,move,"move (8, 30)",2,441,450,150,31,17,150,8,30,150,11,2
+61,move,"move (11, 1)",3,446,450,150,31,17,150,8,30,150,11,1
+62,move,"move (32, 16)",1,451,450,150,32,16,150,8,30,150,11,1
+63,move,"move (8, 29)",2,456,450,150,32,16,150,8,29,150,11,1
+64,move,"move (12, 2)",3,461,450,150,32,16,150,8,29,150,12,2
+65,move,"move (32, 15)",1,466,450,150,32,15,150,8,29,150,12,2
+66,move,"move (8, 28)",2,471,450,150,32,15,150,8,28,150,12,2
+67,move,"move (12, 1)",3,476,450,150,32,15,150,8,28,150,12,1
+68,move,"move (31, 16)",1,481,450,150,31,16,150,8,28,150,12,1
+69,dig,"dig (7, 28)",2,488,450,150,31,16,150,8,28,150,12,1
+70,move,"move (11, 1)",3,493,450,150,31,16,150,8,28,150,11,1
+71,move,"move (31, 17)",1,498,450,150,31,17,150,8,28,150,11,1
+72,move,"move (8, 27)",2,503,450,150,31,17,150,8,27,150,11,1
+73,move,"move (12, 2)",3,508,450,150,31,17,150,8,27,150,12,2
+74,move,"move (32, 16)",1,513,450,150,32,16,150,8,27,150,12,2
+75,move,"move (8, 28)",2,518,450,150,32,16,150,8,28,150,12,2
+76,dig,"dig (12, 3)",3,525,450,150,32,16,150,8,28,150,12,2
+77,move,"move (32, 15)",1,530,450,150,32,15,150,8,28,150,12,2
+78,move,"move (7, 29)",2,535,450,150,32,15,150,7,29,150,12,2
+79,move,"move (12, 1)",3,540,450,150,32,15,150,7,29,150,12,1
+80,move,"move (31, 15)",1,545,450,150,31,15,150,7,29,150,12,1
+81,move,"move (8, 29)",2,550,450,150,31,15,150,8,29,150,12,1
+82,move,"move (12, 2)",3,555,450,150,31,15,150,8,29,150,12,2
+83,move,"move (30, 16)",1,560,450,150,30,16,150,8,29,150,12,2
+84,move,"move (7, 28)",2,565,450,150,30,16,150,7,28,150,12,2
+85,move,"move (12, 3)",3,570,450,150,30,16,150,7,28,150,12,3
+86,dig,"dig (29, 15)",1,577,450,150,30,16,150,7,28,150,12,3
+87,move,"move (8, 27)",2,582,450,150,30,16,150,8,27,150,12,3
+88,move,"move (13, 2)",3,587,450,150,30,16,150,8,27,150,13,2
+89,move,"move (31, 17)",1,592,450,150,31,17,150,8,27,150,13,2
+90,move,"move (9, 28)",2,597,450,150,31,17,150,9,28,150,13,2
+91,move,"move (14, 1)",3,602,450,150,31,17,150,9,28,150,14,1
+92,move,"move (31, 18)",1,607,450,150,31,18,150,9,28,150,14,1
+93,move,"move (9, 29)",2,612,450,150,31,18,150,9,29,150,14,1
+94,move,"move (14, 0)",3,617,450,150,31,18,150,9,29,150,14,0
+95,dig,"dig (32, 18)",1,624,450,150,31,18,150,9,29,150,14,0
+96,move,"move (10, 30)",2,629,450,150,31,18,150,10,30,150,14,0
+97,dig,"dig (13, 1)",3,636,450,150,31,18,150,10,30,150,14,0
+98,move,"move (30, 17)",1,641,450,150,30,17,150,10,30,150,14,0
+99,move,"move (9, 31)",2,646,450,150,30,17,150,9,31,150,14,0
+100,dig,"dig (13, 0)",3,653,450,150,30,17,150,9,31,150,14,0
+101,dig,"dig (29, 16)",1,660,450,150,30,17,150,9,31,150,14,0
+102,move,"move (9, 30)",2,665,450,150,30,17,150,9,30,150,14,0
+103,move,"move (14, 1)",3,670,450,150,30,17,150,9,30,150,14,1
+104,move,"move (29, 18)",1,675,450,150,29,18,150,9,30,150,14,1
+105,move,"move (9, 29)",2,680,450,150,29,18,150,9,29,150,14,1
+106,move,"move (14, 0)",3,685,450,150,29,18,150,9,29,150,14,0
+107,dig,"dig (28, 18)",1,692,450,150,29,18,150,9,29,150,14,0
+108,move,"move (9, 30)",2,697,450,150,29,18,150,9,30,150,14,0
+109,move,"move (15, 0)",3,702,450,150,29,18,150,9,30,150,15,0
+110,move,"move (29, 17)",1,707,450,150,29,17,150,9,30,150,15,0
+111,dig,"dig (10, 31)",2,714,450,150,29,17,150,9,30,150,15,0
+112,dig,"dig (16, 1)",3,721,450,150,29,17,150,9,30,150,15,0
+113,move,"move (30, 17)",1,726,450,150,30,17,150,9,30,150,15,0
+114,move,"move (9, 29)",2,731,450,150,30,17,150,9,29,150,15,0
+115,move,"move (15, 1)",3,736,450,150,30,17,150,9,29,150,15,1
+116,move,"move (31, 16)",1,741,450,150,31,16,150,9,29,150,15,1
+117,move,"move (9, 30)",2,746,450,150,31,16,150,9,30,150,15,1
+118,move,"move (14, 0)",3,751,450,150,31,16,150,9,30,150,14,0
+119,move,"move (30, 15)",1,756,450,150,30,15,150,9,30,150,14,0
+120,move,"move (9, 29)",2,761,450,150,30,15,150,9,29,150,14,0
+121,move,"move (13, 0)",3,766,450,150,30,15,150,9,29,150,13,0
+122,dig,"dig (30, 14)",1,773,450,150,30,15,150,9,29,150,13,0
+123,move,"move (9, 28)",2,778,450,150,30,15,150,9,28,150,13,0
+124,move,"move (14, 1)",3,783,450,150,30,15,150,9,28,150,14,1
+125,move,"move (29, 15)",1,788,450,150,29,15,150,9,28,150,14,1
+126,dig,"dig (9, 27)",2,795,450,150,29,15,150,9,28,150,14,1
+127,dig,"dig (15, 2)",3,802,450,150,29,15,150,9,28,150,14,1
+128,dig,"dig (28, 15)",1,809,450,150,29,15,150,9,28,150,14,1
+129,move,"move (8, 29)",2,814,450,150,29,15,150,8,29,150,14,1
+130,move,"move (15, 2)",3,819,450,150,29,15,150,8,29,150,15,2
+131,move,"move (29, 14)",1,824,450,150,29,14,150,8,29,150,15,2
+132,move,"move (9, 29)",2,829,450,150,29,14,150,9,29,150,15,2
+133,move,"move (14, 1)",3,834,450,150,29,14,150,9,29,150,14,1
+134,move,"move (28, 13)",1,839,450,150,28,13,150,9,29,150,14,1
+135,move,"move (9, 28)",2,844,450,150,28,13,150,9,28,150,14,1
+136,move,"move (15, 0)",3,849,450,150,28,13,150,9,28,150,15,0
+137,dig,"dig (27, 13)",1,856,450,150,28,13,150,9,28,150,15,0
+138,move,"move (10, 28)",2,861,450,150,28,13,150,10,28,150,15,0
+139,move,"move (16, 1)",3,866,450,150,28,13,150,10,28,150,16,1
+140,dig,"dig (29, 12)",1,873,450,150,28,13,150,10,28,150,16,1
+141,move,"move (9, 27)",2,878,450,150,28,13,150,9,27,150,16,1
+142,move,"move (17, 0)",3,883,450,150,28,13,150,9,27,150,17,0
+143,move,"move (27, 13)",1,888,450,150,27,13,150,9,27,150,17,0
+144,dig,"dig (10, 27)",2,895,450,150,27,13,150,9,27,150,17,0
+145,move,"move (16, 1)",3,900,450,150,27,13,150,9,27,150,16,1
+146,move,"move (26, 14)",1,905,450,150,26,14,150,9,27,150,16,1
+147,move,"move (8, 27)",2,910,450,150,26,14,150,8,27,150,16,1
+148,dig,"dig (17, 2)",3,917,450,150,26,14,150,8,27,150,16,1
+149,dig,"dig (27, 14)",1,924,450,150,26,14,150,8,27,150,16,1
+150,move,"move (7, 27)",2,929,450,150,26,14,150,7,27,150,16,1
+151,move,"move (15, 1)",3,934,450,150,26,14,150,7,27,150,15,1
+152,move,"move (25, 15)",1,939,450,150,25,15,150,7,27,150,15,1
+153,move,"move (8, 27)",2,944,450,150,25,15,150,8,27,150,15,1
+154,move,"move (16, 1)",3,949,450,150,25,15,150,8,27,150,16,1
+155,dig,"dig (24, 16)",1,956,450,150,25,15,150,8,27,150,16,1
+156,move,"move (9, 28)",2,961,450,150,25,15,150,9,28,150,16,1
+157,dig,"dig (16, 0)",3,968,450,150,25,15,150,9,28,150,16,1
+158,move,"move (24, 15)",1,973,450,150,24,15,150,9,28,150,16,1
+159,move,"move (10, 28)",2,978,450,150,24,15,150,10,28,150,16,1
+160,move,"move (17, 2)",3,983,450,150,24,15,150,10,28,150,17,2
+161,dig,"dig (25, 16)",1,990,450,150,24,15,150,10,28,150,17,2
+162,dig,"dig (11, 29)",2,997,450,150,24,15,150,10,28,150,17,2
+163,move,"move (18, 1)",3,1002,450,150,24,15,150,10,28,150,18,1
+164,move,"move (24, 16)",1,1007,450,150,24,16,150,10,28,150,18,1
+165,move,"move (10, 29)",2,1012,450,150,24,16,150,10,29,150,18,1
+166,move,"move (18, 0)",3,1017,450,150,24,16,150,10,29,150,18,0
+167,move,"move (25, 16)",1,1022,450,150,25,16,150,10,29,150,18,0
+168,move,"move (10, 30)",2,1027,450,150,25,16,150,10,30,150,18,0
+169,dig,"dig (19, 0)",3,1034,450,150,25,16,150,10,30,150,18,0
+170,move,"move (26, 17)",1,1039,450,150,26,17,150,10,30,150,18,0
+171,move,"move (9, 30)",2,1044,450,150,26,17,150,9,30,150,18,0
+172,move,"move (19, 0)",3,1049,450,150,26,17,150,9,30,150,19,0
+173,move,"move (26, 16)",1,1054,450,150,26,16,150,9,30,150,19,0
+174,move,"move (9, 29)",2,1059,450,150,26,16,150,9,29,150,19,0
+175,dig,"dig (19, 1)",3,1066,450,150,26,16,150,9,29,150,19,0
+176,move,"move (26, 15)",1,1071,450,150,26,15,150,9,29,150,19,0
+177,move,"move (8, 30)",2,1076,450,150,26,15,150,8,30,150,19,0
+178,dig,"dig (20, 1)",3,1083,450,150,26,15,150,8,30,150,19,0
+179,move,"move (27, 14)",1,1088,450,150,27,14,150,8,30,150,19,0
+180,move,"move (8, 29)",2,1093,450,150,27,14,150,8,29,150,19,0
+181,move,"move (20, 1)",3,1098,450,150,27,14,150,8,29,150,20,1
+182,move,"move (27, 13)",1,1103,450,150,27,13,150,8,29,150,20,1
+183,move,"move (7, 28)",2,1108,450,150,27,13,150,7,28,150,20,1
+184,move,"move (19, 1)",3,1113,450,150,27,13,150,7,28,150,19,1
+185,dig,"dig (27, 12)",1,1120,450,150,27,13,150,7,28,150,19,1
+186,move,"move (6, 28)",2,1125,450,150,27,13,150,6,28,150,19,1
+187,move,"move (19, 0)",3,1130,450,150,27,13,150,6,28,150,19,0
+188,move,"move (28, 13)",1,1135,450,150,28,13,150,6,28,150,19,0
+189,nothing,"nothing",2,1135,450,150,28,13,150,6,28,150,19,0
+190,move,"move (18, 0)",3,1140,450,150,28,13,150,6,28,150,18,0
+191,move,"move (29, 14)",1,1145,450,150,29,14,150,6,28,150,18,0
+192,move,"move (7, 29)",2,1150,450,150,29,14,150,7,29,150,18,0
+193,move,"move (17, 0)",3,1155,450,150,29,14,150,7,29,150,17,0
+194,move,"move (30, 15)",1,1160,450,150,30,15,150,7,29,150,17,0
+195,dig,"dig (7, 30)",2,1167,450,150,30,15,150,7,29,150,17,0
+196,move,"move (16, 0)",3,1172,450,150,30,15,150,7,29,150,16,0
+197,move,"move (31, 14)",1,1177,450,150,31,14,150,7,29,150,16,0
+198,dig,"dig (6, 29)",2,1184,450,150,31,14,150,7,29,150,16,0
+199,move,"move (17, 0)",3,1189,450,150,31,14,150,7,29,150,17,0
+200,move,"move (30, 14)",1,1194,450,150,30,14,150,7,29,150,17,0
+201,move,"move (7, 28)",2,1199,450,150,30,14,150,7,28,150,17,0
+202,move,"move (18, 1)",3,1204,450,150,30,14,150,7,28,150,18,1
+203,dig,"dig (30, 13)",1,1211,450,150,30,14,150,7,28,150,18,1
+204,move,"move (8, 27)",2,1216,450,150,30,14,150,8,27,150,18,1
+205,move,"move (19, 0)",3,1221,450,150,30,14,150,8,27,150,19,0
+206,move,"move (29, 14)",1,1226,450,150,29,14,150,8,27,150,19,0
+207,move,"move (9, 28)",2,1231,450,150,29,14,150,9,28,150,19,0
+208,move,"move (20, 1)",3,1236,450,150,29,14,150,9,28,150,20,1
+209,move,"move (30, 13)",1,1241,450,150,30,13,150,9,28,150,20,1
+210,move,"move (9, 29)",2,1246,450,150,30,13,150,9,29,150,20,1
+211,move,"move (19, 0)",3,1251,450,150,30,13,150,9,29,150,19,0
+212,dig,"dig (30, 12)",1,1258,450,150,30,13,150,9,29,150,19,0
+213,move,"move (10, 29)",2,1263,450,150,30,13,150,10,29,150,19,0
+214,move,"move (20, 1)",3,1268,450,150,30,13,150,10,29,150,20,1
+215,move,"move (29, 12)",1,1273,450,150,29,12,150,10,29,150,20,1
+216,move,"move (9, 28)",2,1278,450,150,29,12,150,9,28,150,20,1
+217,dig,"dig (21, 1)",3,1285,450,150,29,12,150,9,28,150,20,1
+218,move,"move (29, 13)",1,1290,450,150,29,13,150,9,28,150,20,1
+219,move,"move (10, 27)",2,1295,450,150,29,13,150,10,27,150,20,1
+220,shoot,"shoot E",3,1312,442,150,29,13,150,10,27,142,20,1
+221,move,"move (30, 14)",1,1317,442,150,30,14,150,10,27,142,20,1
+222,dig,"dig (11, 28)",2,1324,442,150,30,14,150,10,27,142,20,1
+223,shoot,"shoot E",3,1341,434,150,30,14,150,10,27,134,20,1
+224,move,"move (31, 14)",1,1346,434,150,31,14,150,10,27,134,20,1
+225,dig,"dig (11, 27)",2,1353,434,150,31,14,150,10,27,134,20,1
+226,shoot,"shoot E",3,1371,426,150,31,14,150,10,27,126,20,1
+227,dig,"dig (31, 13)",1,1378,426,150,31,14,150,10,27,126,20,1
+228,move,"move (9, 28)",2,1383,426,150,31,14,150,9,28,126,20,1
+229,shoot,"shoot E",3,1400,418,150,31,14,150,9,28,118,20,1
+230,move,"move (31, 13)",1,1405,418,150,31,13,150,9,28,118,20,1
+231,move,"move (10, 29)",2,1410,418,150,31,13,150,10,29,118,20,1
+232,shoot,"shoot E",3,1427,410,150,31,13,150,10,29,110,20,1
+233,dig,"dig (32, 13)",1,1434,410,150,31,13,150,10,29,110,20,1
+234,move,"move (10, 30)",2,1439,410,150,31,13,150,10,30,110,20,1
+235,shoot,"shoot E",3,1457,402,150,31,13,150,10,30,102,20,1
+236,move,"move (30, 13)",1,1462,402,150,30,13,150,10,30,102,20,1
+237,move,"move (9, 29)",2,1467,402,150,30,13,150,9,29,102,20,1
+238,shoot,"shoot E",3,1484,394,150,30,13,150,9,29,94,20,1
+239,dig,"dig (31, 12)",1,1491,394,150,30,13,150,9,29,94,20,1
+240,move,"move (10, 29)",2,1496,394,150,30,13,150,10,29,94,20,1
+241,shoot,"shoot E",3,1513,386,150,30,13,150,10,29,86,20,1
+242,move,"move (31, 12)",1,1518,386,150,31,12,150,10,29,86,20,1
+243,move,"move (11, 28)",2,1523,386,150,31,12,150,11,28,86,20,1
+244,shoot,"shoot E",3,1541,378,150,31,12,150,11,28,78,20,1
+245,move,"move (30, 13)",1,1546,378,150,30,13,150,11,28,78,20,1
+246,dig,"dig (12, 29)",2,1553,378,150,30,13,150,11,28,78,20,1
+247,shoot,"shoot E",3,1570,370,150,30,13,150,11,28,70,20,1
+248,move,"move (30, 14)",1,1575,370,150,30,14,150,11,28,70,20,1
+249,move,"move (10, 27)",2,1580,370,150,30,14,150,10,27,70,20,1
+250,shoot,"shoot E",3,1597,362,150,30,14,150,10,27,62,20,1
+251,move,"move (29, 15)",1,1602,362,150,29,15,150,10,27,62,20,1
+252,move,"move (10, 26)",2,1607,362,150,29,15,150,10,26,62,20,1
+253,shoot,"shoot E",3,1625,354,150,29,15,150,10,26,54,20,1
+254,move,"move (30, 16)",1,1630,354,150,30,16,150,10,26,54,20,1
+255,dig,"dig (9, 26)",2,1637,354,150,30,16,150,10,26,54,20,1
+256,shoot,"shoot E",3,1654,346,150,30,16,150,10,26,46,20,1
+257,move,"move (29, 16)",1,1659,346,150,29,16,150,10,26,46,20,1
+258,move,"move (9, 27)",2,1664,346,150,29,16,150,9,27,46,20,1
+259,shoot,"shoot E",3,1681,338,150,29,16,150,9,27,38,20,1
+260,move,"move (30, 17)",1,1686,338,150,30,17,150,9,27,38,20,1
+261,move,"move (9, 26)",2,1691,338,150,30,17,150,9,26,38,20,1
+262,shoot,"shoot E",3,1709,330,150,30,17,150,9,26,30,20,1
+263,move,"move (31, 18)",1,1714,330,150,31,18,150,9,26,30,20,1
+264,dig,"dig (8, 25)",2,1721,330,150,31,18,150,9,26,30,20,1
+265,shoot,"shoot E",3,1738,322,150,31,18,150,9,26,22,20,1
+266,move,"move (32, 18)",1,1743,322,150,32,18,150,9,26,22,20,1
+267,move,"move (8, 27)",2,1748,322,150,32,18,150,8,27,22,20,1
+268,shoot,"shoot E",3,1765,314,150,32,18,150,8,27,14,20,1
+269,move,"move (31, 18)",1,1770,314,150,31,18,150,8,27,14,20,1
+270,move,"move (7, 28)",2,1775,314,150,31,18,150,7,28,14,20,1
+271,shoot,"shoot E",3,1793,306,150,31,18,150,7,28,6,20,1
+272,move,"move (30, 17)",1,1798,306,150,30,17,150,7,28,6,20,1
+273,move,"move (6, 27)",2,1803,306,150,30,17,150,6,27,6,20,1
+274,shoot,"shoot E",3,1841,300,150,30,17,150,6,27,-2,20,1
+275,move,"move (29, 18)",1,1846,300,150,29,18,150,6,27,-2,20,1
+276,dig,"dig (5, 28)",2,1853,300,150,29,18,150,6,27,-2,20,1
+277,move,"move (29, 19)",1,1858,300,150,29,19,150,6,27,-2,20,1
+278,move,"move (7, 27)",2,1863,300,150,29,19,150,7,27,-2,20,1
+279,dig,"dig (30, 18)",1,1870,300,150,29,19,150,7,27,-2,20,1
+280,move,"move (6, 27)",2,1875,300,150,29,19,150,6,27,-2,20,1
+281,shoot,"shoot SE",1,1892,292,142,29,19,150,6,27,-2,20,1
+282,move,"move (7, 27)",2,1897,292,142,29,19,150,7,27,-2,20,1
+283,shoot,"shoot SE",1,1914,284,134,29,19,150,7,27,-2,20,1
+284,move,"move (8, 27)",2,1919,284,134,29,19,150,8,27,-2,20,1
+285,shoot,"shoot SE",1,1937,276,126,29,19,150,8,27,-2,20,1
+286,dig,"dig (8, 26)",2,1944,276,126,29,19,150,8,27,-2,20,1
+287,shoot,"shoot SE",1,1961,268,118,29,19,150,8,27,-2,20,1
+288,move,"move (7, 27)",2,1966,268,118,29,19,150,7,27,-2,20,1
+289,shoot,"shoot SE",1,1983,260,110,29,19,150,7,27,-2,20,1
+290,dig,"dig (7, 26)",2,1990,260,110,29,19,150,7,27,-2,20,1
+291,shoot,"shoot SE",1,2008,252,102,29,19,150,7,27,-2,20,1
+292,move,"move (8, 26)",2,2013,252,102,29,19,150,8,26,-2,20,1
+293,shoot,"shoot SE",1,2030,244,94,29,19,150,8,26,-2,20,1
+294,move,"move (8, 27)",2,2035,244,94,29,19,150,8,27,-2,20,1
+295,shoot,"shoot SE",1,2052,236,86,29,19,150,8,27,-2,20,1
+296,move,"move (7, 28)",2,2057,236,86,29,19,150,7,28,-2,20,1
+297,shoot,"shoot SE",1,2075,228,78,29,19,150,7,28,-2,20,1
+298,move,"move (6, 27)",2,2080,228,78,29,19,150,6,27,-2,20,1
+299,shoot,"shoot SE",1,2097,220,70,29,19,150,6,27,-2,20,1
+300,move,"move (5, 28)",2,2102,220,70,29,19,150,5,28,-2,20,1
+301,shoot,"shoot SE",1,2119,212,62,29,19,150,5,28,-2,20,1
+302,nothing,"nothing",2,2119,212,62,29,19,150,5,28,-2,20,1
+303,shoot,"shoot SE",1,2137,204,54,29,19,150,5,28,-2,20,1
+304,nothing,"nothing",2,2137,204,54,29,19,150,5,28,-2,20,1
+305,shoot,"shoot SE",1,2154,196,46,29,19,150,5,28,-2,20,1
+306,move,"move (6, 27)",2,2159,196,46,29,19,150,6,27,-2,20,1
+307,shoot,"shoot SE",1,2176,188,38,29,19,150,6,27,-2,20,1
+308,move,"move (7, 27)",2,2181,188,38,29,19,150,7,27,-2,20,1
+309,shoot,"shoot SE",1,2199,180,30,29,19,150,7,27,-2,20,1
+310,move,"move (8, 28)",2,2204,180,30,29,19,150,8,28,-2,20,1
+311,shoot,"shoot SE",1,2221,172,22,29,19,150,8,28,-2,20,1
+312,move,"move (8, 29)",2,2226,172,22,29,19,150,8,29,-2,20,1
+313,shoot,"shoot SE",1,2243,164,14,29,19,150,8,29,-2,20,1
+314,move,"move (7, 28)",2,2248,164,14,29,19,150,7,28,-2,20,1
+315,shoot,"shoot SE",1,2266,156,6,29,19,150,7,28,-2,20,1
+316,move,"move (7, 29)",2,2271,156,6,29,19,150,7,29,-2,20,1
+317,shoot,"shoot SE",1,2309,150,-2,29,19,150,7,29,-2,20,1
+318,move,"move (8, 30)",2,2314,150,-2,29,19,150,8,30,-2,20,1
+319,move,"move (9, 31)",2,2319,150,-2,29,19,150,9,31,-2,20,1
+320,move,"move (10, 30)",2,2324,150,-2,29,19,150,10,30,-2,20,1
+321,move,"move (10, 29)",2,2329,150,-2,29,19,150,10,29,-2,20,1
+322,move,"move (11, 28)",2,2334,150,-2,29,19,150,11,28,-2,20,1
+323,dig,"dig (12, 27)",2,2341,150,-2,29,19,150,11,28,-2,20,1
+324,move,"move (12, 29)",2,2346,150,-2,29,19,150,12,29,-2,20,1
+325,move,"move (11, 29)",2,2351,150,-2,29,19,150,11,29,-2,20,1
+326,move,"move (10, 30)",2,2356,150,-2,29,19,150,10,30,-2,20,1
+327,move,"move (9, 31)",2,2361,150,-2,29,19,150,9,31,-2,20,1
+328,move,"move (10, 31)",2,2366,150,-2,29,19,150,10,31,-2,20,1
+329,move,"move (10, 30)",2,2371,150,-2,29,19,150,10,30,-2,20,1
+330,move,"move (9, 31)",2,2376,150,-2,29,19,150,9,31,-2,20,1
+331,move,"move (10, 31)",2,2381,150,-2,29,19,150,10,31,-2,20,1
+332,move,"move (9, 30)",2,2386,150,-2,29,19,150,9,30,-2,20,1
+333,move,"move (10, 30)",2,2391,150,-2,29,19,150,10,30,-2,20,1
+334,move,"move (11, 29)",2,2396,150,-2,29,19,150,11,29,-2,20,1
+335,move,"move (10, 29)",2,2401,150,-2,29,19,150,10,29,-2,20,1
+336,move,"move (10, 30)",2,2406,150,-2,29,19,150,10,30,-2,20,1
+337,move,"move (9, 30)",2,2411,150,-2,29,19,150,9,30,-2,20,1
+338,dig,"dig (8, 31)",2,2418,150,-2,29,19,150,9,30,-2,20,1
+339,move,"move (10, 30)",2,2423,150,-2,29,19,150,10,30,-2,20,1
+340,move,"move (9, 30)",2,2428,150,-2,29,19,150,9,30,-2,20,1
+341,move,"move (10, 30)",2,2433,150,-2,29,19,150,10,30,-2,20,1
+342,move,"move (11, 29)",2,2438,150,-2,29,19,150,11,29,-2,20,1
+343,move,"move (11, 28)",2,2443,150,-2,29,19,150,11,28,-2,20,1
+344,move,"move (12, 29)",2,2448,150,-2,29,19,150,12,29,-2,20,1
+345,dig,"dig (12, 30)",2,2455,150,-2,29,19,150,12,29,-2,20,1
+346,move,"move (12, 30)",2,2460,150,-2,29,19,150,12,30,-2,20,1
+347,move,"move (13, 31)",2,2465,150,-2,29,19,150,13,31,-2,20,1
+348,dig,"dig (13, 30)",2,2472,150,-2,29,19,150,13,31,-2,20,1
+349,dig,"dig (13, 32)",2,2479,150,-2,29,19,150,13,31,-2,20,1
+350,move,"move (12, 32)",2,2484,150,-2,29,19,150,12,32,-2,20,1
+351,dig,"dig (11, 31)",2,2491,150,-2,29,19,150,12,32,-2,20,1
+352,move,"move (13, 32)",2,2496,150,-2,29,19,150,13,32,-2,20,1
+353,move,"move (13, 31)",2,2501,150,-2,29,19,150,13,31,-2,20,1
+354,move,"move (12, 30)",2,2506,150,-2,29,19,150,12,30,-2,20,1
+355,dig,"dig (11, 30)",2,2513,150,-2,29,19,150,12,30,-2,20,1
+356,move,"move (11, 31)",2,2518,150,-2,29,19,150,11,31,-2,20,1
+357,dig,"dig (12, 31)",2,2525,150,-2,29,19,150,11,31,-2,20,1
+358,move,"move (12, 30)",2,2530,150,-2,29,19,150,12,30,-2,20,1
+359,dig,"dig (13, 29)",2,2537,150,-2,29,19,150,12,30,-2,20,1
+360,move,"move (11, 30)",2,2542,150,-2,29,19,150,11,30,-2,20,1
+361,move,"move (10, 30)",2,2547,150,-2,29,19,150,10,30,-2,20,1
+362,move,"move (9, 29)",2,2552,150,-2,29,19,150,9,29,-2,20,1
+363,move,"move (8, 28)",2,2557,150,-2,29,19,150,8,28,-2,20,1
+364,move,"move (9, 28)",2,2562,150,-2,29,19,150,9,28,-2,20,1
+365,move,"move (8, 29)",2,2567,150,-2,29,19,150,8,29,-2,20,1
+366,move,"move (7, 30)",2,2572,150,-2,29,19,150,7,30,-2,20,1
+367,move,"move (6, 29)",2,2577,150,-2,29,19,150,6,29,-2,20,1
+368,move,"move (5, 28)",2,2582,150,-2,29,19,150,5,28,-2,20,1
+369,move,"move (6, 27)",2,2587,150,-2,29,19,150,6,27,-2,20,1
+370,move,"move (7, 26)",2,2592,150,-2,29,19,150,7,26,-2,20,1
+371,move,"move (6, 27)",2,2597,150,-2,29,19,150,6,27,-2,20,1
+372,move,"move (7, 28)",2,2602,150,-2,29,19,150,7,28,-2,20,1
+373,move,"move (7, 29)",2,2607,150,-2,29,19,150,7,29,-2,20,1
+374,move,"move (6, 29)",2,2612,150,-2,29,19,150,6,29,-2,20,1
+375,move,"move (7, 30)",2,2617,150,-2,29,19,150,7,30,-2,20,1
+376,nothing,"nothing",2,2617,150,-2,29,19,150,7,30,-2,20,1
+377,move,"move (8, 29)",2,2622,150,-2,29,19,150,8,29,-2,20,1
+378,move,"move (9, 29)",2,2627,150,-2,29,19,150,9,29,-2,20,1
+379,move,"move (8, 29)",2,2632,150,-2,29,19,150,8,29,-2,20,1
+380,move,"move (8, 30)",2,2637,150,-2,29,19,150,8,30,-2,20,1
+381,move,"move (9, 31)",2,2642,150,-2,29,19,150,9,31,-2,20,1
+382,move,"move (8, 30)",2,2647,150,-2,29,19,150,8,30,-2,20,1
+383,move,"move (7, 30)",2,2652,150,-2,29,19,150,7,30,-2,20,1
+384,move,"move (8, 30)",2,2657,150,-2,29,19,150,8,30,-2,20,1
+385,move,"move (7, 30)",2,2662,150,-2,29,19,150,7,30,-2,20,1
+386,move,"move (8, 30)",2,2667,150,-2,29,19,150,8,30,-2,20,1
+387,move,"move (9, 29)",2,2672,150,-2,29,19,150,9,29,-2,20,1
+388,move,"move (8, 29)",2,2677,150,-2,29,19,150,8,29,-2,20,1
+389,move,"move (7, 28)",2,2682,150,-2,29,19,150,7,28,-2,20,1
+390,move,"move (6, 29)",2,2687,150,-2,29,19,150,6,29,-2,20,1
+391,move,"move (7, 28)",2,2692,150,-2,29,19,150,7,28,-2,20,1
+392,move,"move (6, 29)",2,2697,150,-2,29,19,150,6,29,-2,20,1
+393,nothing,"nothing",2,2697,150,-2,29,19,150,6,29,-2,20,1
+394,nothing,"nothing",2,2697,150,-2,29,19,150,6,29,-2,20,1
+395,nothing,"nothing",2,2697,150,-2,29,19,150,6,29,-2,20,1
+396,move,"move (5, 28)",2,2702,150,-2,29,19,150,5,28,-2,20,1
+397,move,"move (6, 29)",2,2707,150,-2,29,19,150,6,29,-2,20,1
+398,move,"move (7, 28)",2,2712,150,-2,29,19,150,7,28,-2,20,1
+399,move,"move (6, 27)",2,2717,150,-2,29,19,150,6,27,-2,20,1
+400,move,"move (5, 28)",2,2722,150,-2,29,19,150,5,28,-2,20,1
diff --git a/tests/replays/import-replay.sh b/tests/replays/import-replay.sh
new file mode 100755
index 0000000..034efed
--- /dev/null
+++ b/tests/replays/import-replay.sh
@@ -0,0 +1,12 @@
+#/bin/sh
+
+# $1: The match-log directory
+# Should be run from the target directory
+
+logname=$(basename $1)
+
+mkdir $logname
+cp $1/A*.csv $logname/A-log.csv
+cp $1/B*.csv $logname/B-log.csv
+cp $1/Round\ 001/A*/JsonMap.json $logname/A-init.json
+cp $1/Round\ 001/B*/JsonMap.json $logname/B-init.json