diff --git a/pufferlib/ocean/drive/visualize.c b/pufferlib/ocean/drive/visualize.c index a0132e7eb0..4ebddb8ddd 100644 --- a/pufferlib/ocean/drive/visualize.c +++ b/pufferlib/ocean/drive/visualize.c @@ -281,6 +281,21 @@ int eval_gif(const char *map_name, const char *policy_name, int show_grid, int o int img_width = (int)roundf(map_width * scale / 2.0f) * 2; int img_height = (int)roundf(map_height * scale / 2.0f) * 2; + const int MAX_WIDTH = 4096; + const int MAX_HEIGHT = 4096; + if (img_width > MAX_WIDTH || img_height > MAX_HEIGHT) { + + printf("WARNING: Calculated window size (%dx%d) exceeds maximum (%dx%d)\n", img_width, img_height, MAX_WIDTH, + MAX_HEIGHT); + // Scale down proportionally to fit within max dimensions + float width_ratio = (float)MAX_WIDTH / img_width; + float height_ratio = (float)MAX_HEIGHT / img_height; + float min_ratio = (width_ratio < height_ratio) ? width_ratio : height_ratio; + img_width = (int)roundf(img_width * min_ratio / 2.0f) * 2; + img_height = (int)roundf(img_height * min_ratio / 2.0f) * 2; + printf("Resized window to: %dx%d\n", img_width, img_height); + } + InitWindow(img_width, img_height, "Puffer Drive"); SetConfigFlags(FLAG_MSAA_4X_HINT); diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_000.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_000.bin new file mode 100644 index 0000000000..300d066bb0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_000.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_001.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_001.bin new file mode 100644 index 0000000000..e816c3b44e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_001.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_002.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_002.bin new file mode 100644 index 0000000000..133ad8e1b3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_002.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_003.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_003.bin new file mode 100644 index 0000000000..4214886dcd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_003.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_004.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_004.bin new file mode 100644 index 0000000000..26a848fdba Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_004.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_005.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_005.bin new file mode 100644 index 0000000000..6038528e8a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_005.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_006.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_006.bin new file mode 100644 index 0000000000..40274737da Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_006.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_007.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_007.bin new file mode 100644 index 0000000000..a3303123b1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_007.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_008.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_008.bin new file mode 100644 index 0000000000..1cc68dcc48 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_008.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_009.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_009.bin new file mode 100644 index 0000000000..88a42ed9a6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_009.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_010.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_010.bin new file mode 100644 index 0000000000..e1b27fc260 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_010.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_011.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_011.bin new file mode 100644 index 0000000000..b2a1ff0788 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_011.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_012.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_012.bin new file mode 100644 index 0000000000..8e7e28f411 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_012.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_013.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_013.bin new file mode 100644 index 0000000000..aeef86b1fc Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_013.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_014.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_014.bin new file mode 100644 index 0000000000..6085479e62 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_014.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_015.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_015.bin new file mode 100644 index 0000000000..d1586033fd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_015.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_016.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_016.bin new file mode 100644 index 0000000000..e8acbed860 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_016.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_017.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_017.bin new file mode 100644 index 0000000000..8b692d1373 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_017.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_018.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_018.bin new file mode 100644 index 0000000000..e97b0967bf Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_018.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_019.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_019.bin new file mode 100644 index 0000000000..bc3fdd9540 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_019.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_020.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_020.bin new file mode 100644 index 0000000000..c37b1505cd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_020.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_021.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_021.bin new file mode 100644 index 0000000000..691ec7b780 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_021.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_022.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_022.bin new file mode 100644 index 0000000000..240fd34e16 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_022.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_023.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_023.bin new file mode 100644 index 0000000000..9440312bf3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_023.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_024.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_024.bin new file mode 100644 index 0000000000..8585a6fb08 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_024.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_025.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_025.bin new file mode 100644 index 0000000000..0485139ff4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_025.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_026.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_026.bin new file mode 100644 index 0000000000..7aec29835f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_026.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_027.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_027.bin new file mode 100644 index 0000000000..d805d19da3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_027.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_028.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_028.bin new file mode 100644 index 0000000000..36802a6dc0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_028.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_029.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_029.bin new file mode 100644 index 0000000000..2cdc5cb52c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_029.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_030.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_030.bin new file mode 100644 index 0000000000..81d9f1d017 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_030.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_031.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_031.bin new file mode 100644 index 0000000000..9dd1d6b40b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_031.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_032.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_032.bin new file mode 100644 index 0000000000..e0356cc387 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_032.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_033.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_033.bin new file mode 100644 index 0000000000..68055a1f8a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_033.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_034.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_034.bin new file mode 100644 index 0000000000..dd4efeda2b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_034.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_035.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_035.bin new file mode 100644 index 0000000000..5049aaaff3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_035.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_036.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_036.bin new file mode 100644 index 0000000000..eaceb44681 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_036.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_037.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_037.bin new file mode 100644 index 0000000000..acc7e8849b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_037.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_038.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_038.bin new file mode 100644 index 0000000000..8bf9ccfa46 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_038.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_039.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_039.bin new file mode 100644 index 0000000000..7ce331a451 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_039.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_040.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_040.bin new file mode 100644 index 0000000000..1883eaca48 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_040.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_041.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_041.bin new file mode 100644 index 0000000000..5f40e19ddf Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_041.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_042.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_042.bin new file mode 100644 index 0000000000..5bcc4ff554 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_042.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_043.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_043.bin new file mode 100644 index 0000000000..e9ad4afb59 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_043.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_044.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_044.bin new file mode 100644 index 0000000000..8ce2b6a0d6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_044.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_045.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_045.bin new file mode 100644 index 0000000000..b661eab08e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_045.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_046.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_046.bin new file mode 100644 index 0000000000..c9a1ea12ba Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_046.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_047.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_047.bin new file mode 100644 index 0000000000..d71e9bc514 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_047.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_048.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_048.bin new file mode 100644 index 0000000000..89d814de8a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_048.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_049.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_049.bin new file mode 100644 index 0000000000..9693996097 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_049.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_050.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_050.bin new file mode 100644 index 0000000000..1e439ddf8c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_050.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_051.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_051.bin new file mode 100644 index 0000000000..849656bb1f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_051.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_052.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_052.bin new file mode 100644 index 0000000000..1b604ad8d1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_052.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_053.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_053.bin new file mode 100644 index 0000000000..bcb880567a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_053.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_054.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_054.bin new file mode 100644 index 0000000000..c295348c6d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_054.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_055.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_055.bin new file mode 100644 index 0000000000..d340430cba Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_055.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_056.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_056.bin new file mode 100644 index 0000000000..7d5828169f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_056.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_057.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_057.bin new file mode 100644 index 0000000000..cd3f8c863b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_057.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_058.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_058.bin new file mode 100644 index 0000000000..a0d8a5430e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_058.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_059.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_059.bin new file mode 100644 index 0000000000..438af42929 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_059.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_060.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_060.bin new file mode 100644 index 0000000000..b549d3f263 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_060.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_061.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_061.bin new file mode 100644 index 0000000000..48e423daea Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_061.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_062.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_062.bin new file mode 100644 index 0000000000..f487112bea Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_062.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_063.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_063.bin new file mode 100644 index 0000000000..2f7fc0e222 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_063.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_064.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_064.bin new file mode 100644 index 0000000000..e0da95c00a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_064.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_065.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_065.bin new file mode 100644 index 0000000000..dae6fdd9e0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_065.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_066.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_066.bin new file mode 100644 index 0000000000..85d215ae13 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_066.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_067.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_067.bin new file mode 100644 index 0000000000..ac86c5066c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_067.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_068.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_068.bin new file mode 100644 index 0000000000..a95e5610ac Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_068.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_069.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_069.bin new file mode 100644 index 0000000000..c6abac44e8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_069.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_070.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_070.bin new file mode 100644 index 0000000000..a618504582 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_070.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_071.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_071.bin new file mode 100644 index 0000000000..ed136f95b6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_071.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_072.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_072.bin new file mode 100644 index 0000000000..8193463bce Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_072.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_073.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_073.bin new file mode 100644 index 0000000000..8b6d893551 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_073.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_074.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_074.bin new file mode 100644 index 0000000000..a2330ad2d3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_074.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_075.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_075.bin new file mode 100644 index 0000000000..96cb32f386 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_075.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_076.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_076.bin new file mode 100644 index 0000000000..3e77c5b93c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_076.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_077.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_077.bin new file mode 100644 index 0000000000..aec6558e30 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_077.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_078.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_078.bin new file mode 100644 index 0000000000..744ae06bff Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_078.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_079.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_079.bin new file mode 100644 index 0000000000..81ec2a73d7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_079.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_080.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_080.bin new file mode 100644 index 0000000000..ac385dcd5e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_080.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_081.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_081.bin new file mode 100644 index 0000000000..379f4e8b0d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_081.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_082.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_082.bin new file mode 100644 index 0000000000..7e40cce5a6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_082.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_083.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_083.bin new file mode 100644 index 0000000000..c37a5f8992 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_083.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_084.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_084.bin new file mode 100644 index 0000000000..392763cfb7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_084.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_085.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_085.bin new file mode 100644 index 0000000000..1c62099f9f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_085.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_086.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_086.bin new file mode 100644 index 0000000000..3f79e685e5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_086.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_087.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_087.bin new file mode 100644 index 0000000000..582ab501c2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_087.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_088.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_088.bin new file mode 100644 index 0000000000..05ce8e0e83 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_088.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_089.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_089.bin new file mode 100644 index 0000000000..63400b42fa Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_089.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_090.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_090.bin new file mode 100644 index 0000000000..f8c86267c4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_090.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_091.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_091.bin new file mode 100644 index 0000000000..08e134763b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_091.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_092.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_092.bin new file mode 100644 index 0000000000..b552e88a80 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_092.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_093.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_093.bin new file mode 100644 index 0000000000..4d8e22cd7d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_093.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_094.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_094.bin new file mode 100644 index 0000000000..ca8bb90812 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_094.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_095.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_095.bin new file mode 100644 index 0000000000..07a8a616a2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_095.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_096.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_096.bin new file mode 100644 index 0000000000..83b4ec1817 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_096.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_097.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_097.bin new file mode 100644 index 0000000000..8d9a8c37fd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_097.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_098.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_098.bin new file mode 100644 index 0000000000..5d2fb84506 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_098.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_099.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_099.bin new file mode 100644 index 0000000000..58bef141c1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_099.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_100.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_100.bin new file mode 100644 index 0000000000..78de9df14c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_100.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_101.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_101.bin new file mode 100644 index 0000000000..321baeafbf Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_101.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_102.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_102.bin new file mode 100644 index 0000000000..7c791e06a6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_102.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_103.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_103.bin new file mode 100644 index 0000000000..c7b16dd639 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_103.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_104.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_104.bin new file mode 100644 index 0000000000..23a45c8b2b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_104.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_105.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_105.bin new file mode 100644 index 0000000000..0ae50983b0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_105.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_106.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_106.bin new file mode 100644 index 0000000000..c6f652ddfd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_106.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_107.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_107.bin new file mode 100644 index 0000000000..ed73208a0f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_107.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_108.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_108.bin new file mode 100644 index 0000000000..991699907a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_108.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_109.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_109.bin new file mode 100644 index 0000000000..acde085821 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_109.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_110.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_110.bin new file mode 100644 index 0000000000..a2b67567ac Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_110.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_111.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_111.bin new file mode 100644 index 0000000000..2d9c38e3b3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_111.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_112.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_112.bin new file mode 100644 index 0000000000..82300fa334 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_112.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_113.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_113.bin new file mode 100644 index 0000000000..d9d813da26 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_113.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_114.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_114.bin new file mode 100644 index 0000000000..638220528c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_114.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_115.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_115.bin new file mode 100644 index 0000000000..00364fcb80 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_115.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_116.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_116.bin new file mode 100644 index 0000000000..f7909ea4bd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_116.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_117.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_117.bin new file mode 100644 index 0000000000..d82e4e1886 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_117.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_118.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_118.bin new file mode 100644 index 0000000000..ff139a1c08 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_118.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_119.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_119.bin new file mode 100644 index 0000000000..f1b6c2eb29 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_119.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_120.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_120.bin new file mode 100644 index 0000000000..22b36ae7fe Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_120.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_121.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_121.bin new file mode 100644 index 0000000000..93945b89ea Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_121.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_122.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_122.bin new file mode 100644 index 0000000000..c97fc1cbed Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_122.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_123.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_123.bin new file mode 100644 index 0000000000..5d41f9ea2e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_123.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_124.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_124.bin new file mode 100644 index 0000000000..c1914b5500 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_124.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_125.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_125.bin new file mode 100644 index 0000000000..654939175a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_125.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_126.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_126.bin new file mode 100644 index 0000000000..47ebda0fe9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_126.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_127.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_127.bin new file mode 100644 index 0000000000..66428d0aaa Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_127.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_128.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_128.bin new file mode 100644 index 0000000000..df1fee8c47 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_128.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_129.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_129.bin new file mode 100644 index 0000000000..08ad887b10 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_129.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_130.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_130.bin new file mode 100644 index 0000000000..4d54e5ba9d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_130.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_131.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_131.bin new file mode 100644 index 0000000000..abec9cc94d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_131.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_132.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_132.bin new file mode 100644 index 0000000000..42ab8d3f9c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_132.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_133.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_133.bin new file mode 100644 index 0000000000..9db470e45f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_133.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_134.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_134.bin new file mode 100644 index 0000000000..5e0d860fe2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_134.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_135.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_135.bin new file mode 100644 index 0000000000..25e6ede0f7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_135.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_136.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_136.bin new file mode 100644 index 0000000000..8e23c6248d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_136.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_137.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_137.bin new file mode 100644 index 0000000000..2e1d279e0e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_137.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_138.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_138.bin new file mode 100644 index 0000000000..ddf8845c51 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_138.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_139.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_139.bin new file mode 100644 index 0000000000..d4bc6aa695 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_139.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_140.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_140.bin new file mode 100644 index 0000000000..98cb789bf6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_140.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_141.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_141.bin new file mode 100644 index 0000000000..4098d8a7fa Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_141.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_142.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_142.bin new file mode 100644 index 0000000000..be6dd5963f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_142.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_143.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_143.bin new file mode 100644 index 0000000000..c8112fd436 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_143.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_144.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_144.bin new file mode 100644 index 0000000000..6ff20624ea Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_144.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_145.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_145.bin new file mode 100644 index 0000000000..af665816e7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_145.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_146.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_146.bin new file mode 100644 index 0000000000..281be6ef10 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_146.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_147.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_147.bin new file mode 100644 index 0000000000..123b2f4ddf Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_147.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_148.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_148.bin new file mode 100644 index 0000000000..9795c02f8c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_148.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_149.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_149.bin new file mode 100644 index 0000000000..da21539a2e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_149.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_150.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_150.bin new file mode 100644 index 0000000000..dfaad51af2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_150.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_151.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_151.bin new file mode 100644 index 0000000000..c17acf9310 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_151.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_152.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_152.bin new file mode 100644 index 0000000000..f3d79904ae Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_152.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_153.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_153.bin new file mode 100644 index 0000000000..79bc75beef Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_153.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_154.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_154.bin new file mode 100644 index 0000000000..42e88296d2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_154.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_155.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_155.bin new file mode 100644 index 0000000000..baa774c23d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_155.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_156.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_156.bin new file mode 100644 index 0000000000..ee710fd5f7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_156.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_157.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_157.bin new file mode 100644 index 0000000000..96ab5d636c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_157.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_158.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_158.bin new file mode 100644 index 0000000000..ea2c19f740 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_158.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_159.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_159.bin new file mode 100644 index 0000000000..e95fdaff74 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_159.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_160.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_160.bin new file mode 100644 index 0000000000..7bfe21c399 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_160.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_161.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_161.bin new file mode 100644 index 0000000000..a61e1b4194 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_161.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_162.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_162.bin new file mode 100644 index 0000000000..90e60bafa7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_162.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_163.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_163.bin new file mode 100644 index 0000000000..08808cc22c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_163.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_164.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_164.bin new file mode 100644 index 0000000000..94fc2e6a33 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_164.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_165.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_165.bin new file mode 100644 index 0000000000..f173587352 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_165.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_166.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_166.bin new file mode 100644 index 0000000000..dc37c003a1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_166.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_167.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_167.bin new file mode 100644 index 0000000000..feffcc03ca Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_167.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_168.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_168.bin new file mode 100644 index 0000000000..9bdd44d184 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_168.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_169.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_169.bin new file mode 100644 index 0000000000..ab9c864353 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_169.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_170.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_170.bin new file mode 100644 index 0000000000..4688723861 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_170.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_171.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_171.bin new file mode 100644 index 0000000000..da3e80cd0c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_171.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_172.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_172.bin new file mode 100644 index 0000000000..491a8d8034 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_172.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_173.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_173.bin new file mode 100644 index 0000000000..f637c4849e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_173.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_174.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_174.bin new file mode 100644 index 0000000000..54c1aff00c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_174.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_175.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_175.bin new file mode 100644 index 0000000000..2fdcb5c928 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_175.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_176.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_176.bin new file mode 100644 index 0000000000..b916342278 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_176.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_177.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_177.bin new file mode 100644 index 0000000000..8e0e621738 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_177.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_178.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_178.bin new file mode 100644 index 0000000000..cc446bd111 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_178.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_179.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_179.bin new file mode 100644 index 0000000000..3ee2f1696b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_179.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_180.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_180.bin new file mode 100644 index 0000000000..54b48bd9dd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_180.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_181.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_181.bin new file mode 100644 index 0000000000..a5d08a89a7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_181.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_182.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_182.bin new file mode 100644 index 0000000000..a60354630f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_182.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_183.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_183.bin new file mode 100644 index 0000000000..20c58e4605 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_183.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_184.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_184.bin new file mode 100644 index 0000000000..d8ab76b078 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_184.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_185.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_185.bin new file mode 100644 index 0000000000..aa89f8188a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_185.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_186.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_186.bin new file mode 100644 index 0000000000..115a624537 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_186.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_187.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_187.bin new file mode 100644 index 0000000000..848813a829 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_187.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_188.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_188.bin new file mode 100644 index 0000000000..023462161a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_188.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_189.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_189.bin new file mode 100644 index 0000000000..25ff707e85 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_189.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_190.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_190.bin new file mode 100644 index 0000000000..56c888cbed Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_190.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_191.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_191.bin new file mode 100644 index 0000000000..5cfadadd6b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_191.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_192.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_192.bin new file mode 100644 index 0000000000..5211293456 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_192.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_193.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_193.bin new file mode 100644 index 0000000000..f1ce219f90 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_193.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_194.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_194.bin new file mode 100644 index 0000000000..f62bb2eb5d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_194.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_195.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_195.bin new file mode 100644 index 0000000000..8f55702bcc Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_195.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_196.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_196.bin new file mode 100644 index 0000000000..ddacb5770e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_196.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_197.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_197.bin new file mode 100644 index 0000000000..f007647a82 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_197.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_198.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_198.bin new file mode 100644 index 0000000000..227a933eae Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_198.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_199.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_199.bin new file mode 100644 index 0000000000..0782464b1e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_199.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_200.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_200.bin new file mode 100644 index 0000000000..628f24f260 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_200.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_201.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_201.bin new file mode 100644 index 0000000000..00b3ac9240 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_201.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_202.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_202.bin new file mode 100644 index 0000000000..4baab6eda2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_202.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_203.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_203.bin new file mode 100644 index 0000000000..541a674d51 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_203.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_204.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_204.bin new file mode 100644 index 0000000000..8fcb2a9683 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_204.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_205.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_205.bin new file mode 100644 index 0000000000..f1e3dea4f8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_205.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_206.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_206.bin new file mode 100644 index 0000000000..41ee629000 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_206.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_207.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_207.bin new file mode 100644 index 0000000000..360ed96a1d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_207.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_208.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_208.bin new file mode 100644 index 0000000000..fc2cce1e30 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_208.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_209.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_209.bin new file mode 100644 index 0000000000..6e1269569f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_209.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_210.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_210.bin new file mode 100644 index 0000000000..7373d0bb65 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_210.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_211.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_211.bin new file mode 100644 index 0000000000..af65754ee5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_211.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_212.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_212.bin new file mode 100644 index 0000000000..778c299b3e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_212.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_213.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_213.bin new file mode 100644 index 0000000000..ba65714432 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_213.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_214.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_214.bin new file mode 100644 index 0000000000..85c9b308b4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_214.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_215.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_215.bin new file mode 100644 index 0000000000..e339ffdde3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_215.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_216.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_216.bin new file mode 100644 index 0000000000..ba27c7e314 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_216.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_217.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_217.bin new file mode 100644 index 0000000000..33c0d18bbb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_217.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_218.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_218.bin new file mode 100644 index 0000000000..a150901eb3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_218.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_219.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_219.bin new file mode 100644 index 0000000000..443680acb6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_219.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_220.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_220.bin new file mode 100644 index 0000000000..0a31a99847 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_220.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_221.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_221.bin new file mode 100644 index 0000000000..f1f6c4099b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_221.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_222.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_222.bin new file mode 100644 index 0000000000..5dc330d585 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_222.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_223.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_223.bin new file mode 100644 index 0000000000..0b2f83ce74 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_223.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_224.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_224.bin new file mode 100644 index 0000000000..397ddc885a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_224.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_225.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_225.bin new file mode 100644 index 0000000000..239e27019b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_225.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_226.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_226.bin new file mode 100644 index 0000000000..4622849e98 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_226.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_227.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_227.bin new file mode 100644 index 0000000000..f52449b154 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_227.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_228.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_228.bin new file mode 100644 index 0000000000..43cd476bb3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_228.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_229.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_229.bin new file mode 100644 index 0000000000..5ec2fcd1ae Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_229.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_230.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_230.bin new file mode 100644 index 0000000000..4d8c6756b9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_230.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_231.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_231.bin new file mode 100644 index 0000000000..ddcd69ffb2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_231.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_232.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_232.bin new file mode 100644 index 0000000000..dec6b4dfb7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_232.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_233.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_233.bin new file mode 100644 index 0000000000..888ce2e572 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_233.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_234.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_234.bin new file mode 100644 index 0000000000..b326d3d91b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_234.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_235.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_235.bin new file mode 100644 index 0000000000..34787c976c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_235.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_236.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_236.bin new file mode 100644 index 0000000000..22c26cf6d3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_236.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_237.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_237.bin new file mode 100644 index 0000000000..5bbf247e45 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_237.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_238.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_238.bin new file mode 100644 index 0000000000..993395b4e7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_238.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_239.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_239.bin new file mode 100644 index 0000000000..c289300f3a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_239.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_240.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_240.bin new file mode 100644 index 0000000000..950d97a8bd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_240.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_241.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_241.bin new file mode 100644 index 0000000000..8df26fb71d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_241.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_242.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_242.bin new file mode 100644 index 0000000000..bf132adf52 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_242.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_243.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_243.bin new file mode 100644 index 0000000000..33050f5905 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_243.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_244.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_244.bin new file mode 100644 index 0000000000..e89d237539 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_244.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_245.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_245.bin new file mode 100644 index 0000000000..037ea6204b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_245.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_246.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_246.bin new file mode 100644 index 0000000000..fbaee412b6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_246.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_247.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_247.bin new file mode 100644 index 0000000000..1692746c73 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_247.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_248.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_248.bin new file mode 100644 index 0000000000..c041ae3e25 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_248.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_249.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_249.bin new file mode 100644 index 0000000000..3592e4fcc7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_249.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_250.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_250.bin new file mode 100644 index 0000000000..3a12482f46 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_250.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_251.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_251.bin new file mode 100644 index 0000000000..84fe2213cb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_251.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_252.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_252.bin new file mode 100644 index 0000000000..1a28a71cef Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_252.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_253.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_253.bin new file mode 100644 index 0000000000..557658462b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_253.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_254.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_254.bin new file mode 100644 index 0000000000..631e1aac05 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_254.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_255.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_255.bin new file mode 100644 index 0000000000..a0c4859791 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_255.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_256.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_256.bin new file mode 100644 index 0000000000..eea6e1866c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_256.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_257.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_257.bin new file mode 100644 index 0000000000..2d47ac2245 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_257.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_258.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_258.bin new file mode 100644 index 0000000000..b9f58898f3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_258.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_259.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_259.bin new file mode 100644 index 0000000000..3254e1506e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_259.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_260.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_260.bin new file mode 100644 index 0000000000..ed10106e45 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_260.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_261.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_261.bin new file mode 100644 index 0000000000..e91f087723 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_261.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_262.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_262.bin new file mode 100644 index 0000000000..3cef56e898 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_262.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_263.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_263.bin new file mode 100644 index 0000000000..2f0532daab Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_263.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_264.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_264.bin new file mode 100644 index 0000000000..6b27452f0c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_264.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_265.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_265.bin new file mode 100644 index 0000000000..00de664b4b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_265.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_266.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_266.bin new file mode 100644 index 0000000000..92cc02c8ff Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_266.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_267.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_267.bin new file mode 100644 index 0000000000..46e8f9e585 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_267.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_268.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_268.bin new file mode 100644 index 0000000000..4615481785 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_268.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_269.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_269.bin new file mode 100644 index 0000000000..c8453aba52 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_269.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_270.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_270.bin new file mode 100644 index 0000000000..81d0369225 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_270.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_271.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_271.bin new file mode 100644 index 0000000000..cfa3ae5f66 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_271.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_272.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_272.bin new file mode 100644 index 0000000000..86893224fb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_272.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_273.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_273.bin new file mode 100644 index 0000000000..90f33517d8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_273.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_274.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_274.bin new file mode 100644 index 0000000000..fe516f0d8d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_274.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_275.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_275.bin new file mode 100644 index 0000000000..7b64eb9a41 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_275.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_276.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_276.bin new file mode 100644 index 0000000000..0f29301c23 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_276.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_277.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_277.bin new file mode 100644 index 0000000000..f5ec0192f0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_277.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_278.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_278.bin new file mode 100644 index 0000000000..776db2af9b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_278.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_279.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_279.bin new file mode 100644 index 0000000000..e9854b8136 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_279.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_280.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_280.bin new file mode 100644 index 0000000000..99378f6089 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_280.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_281.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_281.bin new file mode 100644 index 0000000000..48b880280a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_281.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_282.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_282.bin new file mode 100644 index 0000000000..93ca7f21e1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_282.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_283.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_283.bin new file mode 100644 index 0000000000..54180c1e54 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_283.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_284.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_284.bin new file mode 100644 index 0000000000..07987cc93f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_284.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_285.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_285.bin new file mode 100644 index 0000000000..8d709a83af Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_285.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_286.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_286.bin new file mode 100644 index 0000000000..93d72f8c68 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_286.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_287.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_287.bin new file mode 100644 index 0000000000..e86e8c17d5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_287.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_288.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_288.bin new file mode 100644 index 0000000000..344d3da66e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_288.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_289.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_289.bin new file mode 100644 index 0000000000..bf53b73809 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_289.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_290.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_290.bin new file mode 100644 index 0000000000..aa1ce6dd9a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_290.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_291.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_291.bin new file mode 100644 index 0000000000..b35bc9ef0e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_291.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_292.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_292.bin new file mode 100644 index 0000000000..93872c0bcb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_292.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_293.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_293.bin new file mode 100644 index 0000000000..20b80d7372 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_293.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_294.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_294.bin new file mode 100644 index 0000000000..d004081ef0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_294.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_295.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_295.bin new file mode 100644 index 0000000000..77a8261f1d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_295.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_296.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_296.bin new file mode 100644 index 0000000000..233538c751 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_296.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_297.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_297.bin new file mode 100644 index 0000000000..ba00f3baa6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_297.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_298.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_298.bin new file mode 100644 index 0000000000..355bdce98c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_298.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_299.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_299.bin new file mode 100644 index 0000000000..0207b69721 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_299.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_300.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_300.bin new file mode 100644 index 0000000000..a8e411a9bd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_300.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_301.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_301.bin new file mode 100644 index 0000000000..3559d54995 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_301.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_302.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_302.bin new file mode 100644 index 0000000000..9e5ea18e23 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_302.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_303.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_303.bin new file mode 100644 index 0000000000..2c0f7bf461 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_303.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_304.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_304.bin new file mode 100644 index 0000000000..cb176882ff Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_304.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_305.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_305.bin new file mode 100644 index 0000000000..04dc0ec386 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_305.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_306.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_306.bin new file mode 100644 index 0000000000..a6aa6bef02 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_306.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_307.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_307.bin new file mode 100644 index 0000000000..f0d005331c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_307.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_308.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_308.bin new file mode 100644 index 0000000000..93c7518f05 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_308.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_309.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_309.bin new file mode 100644 index 0000000000..e887fd9ef3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_309.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_310.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_310.bin new file mode 100644 index 0000000000..ad85de4c2b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_310.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_311.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_311.bin new file mode 100644 index 0000000000..a3d27db1ef Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_311.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_312.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_312.bin new file mode 100644 index 0000000000..4b2474b84c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_312.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_313.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_313.bin new file mode 100644 index 0000000000..b002233e66 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_313.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_314.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_314.bin new file mode 100644 index 0000000000..b4aababe22 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_314.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_315.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_315.bin new file mode 100644 index 0000000000..c44970a10f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_315.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_316.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_316.bin new file mode 100644 index 0000000000..83052c6154 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_316.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_317.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_317.bin new file mode 100644 index 0000000000..0a65e3efd0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_317.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_318.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_318.bin new file mode 100644 index 0000000000..bf80c13613 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_318.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_319.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_319.bin new file mode 100644 index 0000000000..75cb604d2c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_319.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_320.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_320.bin new file mode 100644 index 0000000000..834be0aa59 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_320.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_321.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_321.bin new file mode 100644 index 0000000000..790d08e374 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_321.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_322.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_322.bin new file mode 100644 index 0000000000..3f2622251d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_322.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_323.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_323.bin new file mode 100644 index 0000000000..469dfb3575 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_323.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_324.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_324.bin new file mode 100644 index 0000000000..14d9d84eaa Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_324.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_325.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_325.bin new file mode 100644 index 0000000000..fbe5f9cb97 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_325.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_326.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_326.bin new file mode 100644 index 0000000000..5215d38914 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_326.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_327.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_327.bin new file mode 100644 index 0000000000..0d648b048e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_327.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_328.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_328.bin new file mode 100644 index 0000000000..9cc2803fce Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_328.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_329.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_329.bin new file mode 100644 index 0000000000..d94de04fc0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_329.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_330.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_330.bin new file mode 100644 index 0000000000..a642478600 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_330.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_331.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_331.bin new file mode 100644 index 0000000000..2cc69c76f1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_331.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_332.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_332.bin new file mode 100644 index 0000000000..7c08eea555 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_332.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_333.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_333.bin new file mode 100644 index 0000000000..ca47ba3274 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_333.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_334.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_334.bin new file mode 100644 index 0000000000..b5180864a2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_334.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_335.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_335.bin new file mode 100644 index 0000000000..aa9bfb1b50 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_335.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_336.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_336.bin new file mode 100644 index 0000000000..cfe0fd8e30 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_336.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_337.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_337.bin new file mode 100644 index 0000000000..bf882177ad Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_337.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_338.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_338.bin new file mode 100644 index 0000000000..d842de01b5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_338.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_339.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_339.bin new file mode 100644 index 0000000000..cf030e8deb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_339.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_340.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_340.bin new file mode 100644 index 0000000000..d82116fec5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_340.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_341.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_341.bin new file mode 100644 index 0000000000..c383843797 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_341.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_342.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_342.bin new file mode 100644 index 0000000000..b7a73853fb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_342.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_343.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_343.bin new file mode 100644 index 0000000000..736e244471 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_343.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_344.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_344.bin new file mode 100644 index 0000000000..ed78471745 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_344.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_345.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_345.bin new file mode 100644 index 0000000000..12e5e6bd2b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_345.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_346.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_346.bin new file mode 100644 index 0000000000..92c40e66f8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_346.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_347.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_347.bin new file mode 100644 index 0000000000..82a2a2d6b4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_347.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_348.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_348.bin new file mode 100644 index 0000000000..ba5242951a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_348.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_349.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_349.bin new file mode 100644 index 0000000000..101d2284e8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_349.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_350.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_350.bin new file mode 100644 index 0000000000..354802c4fd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_350.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_351.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_351.bin new file mode 100644 index 0000000000..b274bb3e29 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_351.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_352.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_352.bin new file mode 100644 index 0000000000..58adaf0db5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_352.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_353.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_353.bin new file mode 100644 index 0000000000..21f9737ad0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_353.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_354.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_354.bin new file mode 100644 index 0000000000..19b9e3c6e3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_354.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_355.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_355.bin new file mode 100644 index 0000000000..8e23eb6051 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_355.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_356.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_356.bin new file mode 100644 index 0000000000..1069cc3008 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_356.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_357.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_357.bin new file mode 100644 index 0000000000..b97556be0d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_357.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_358.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_358.bin new file mode 100644 index 0000000000..b3283bf9ee Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_358.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_359.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_359.bin new file mode 100644 index 0000000000..1f6fdc3257 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_359.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_360.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_360.bin new file mode 100644 index 0000000000..5f486ffddb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_360.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_361.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_361.bin new file mode 100644 index 0000000000..596030afe5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_361.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_362.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_362.bin new file mode 100644 index 0000000000..be6c78589c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_362.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_363.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_363.bin new file mode 100644 index 0000000000..47e00ee77b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_363.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_364.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_364.bin new file mode 100644 index 0000000000..b0e43bb2bf Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_364.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_365.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_365.bin new file mode 100644 index 0000000000..b77e0beb52 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_365.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_366.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_366.bin new file mode 100644 index 0000000000..f4931aaac4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_366.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_367.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_367.bin new file mode 100644 index 0000000000..f9bcce5e69 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_367.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_368.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_368.bin new file mode 100644 index 0000000000..eb3d0b200a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_368.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_369.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_369.bin new file mode 100644 index 0000000000..cdb8149446 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_369.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_370.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_370.bin new file mode 100644 index 0000000000..e0ad1cd108 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_370.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_371.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_371.bin new file mode 100644 index 0000000000..ce7acf7987 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_371.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_372.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_372.bin new file mode 100644 index 0000000000..c957ba6a7b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_372.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_373.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_373.bin new file mode 100644 index 0000000000..2325e982ec Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_373.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_374.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_374.bin new file mode 100644 index 0000000000..b523676a26 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_374.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_375.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_375.bin new file mode 100644 index 0000000000..944ee27c1f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_375.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_376.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_376.bin new file mode 100644 index 0000000000..5f808ce1df Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_376.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_377.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_377.bin new file mode 100644 index 0000000000..51b2a98b86 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_377.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_378.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_378.bin new file mode 100644 index 0000000000..90a88e7af8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_378.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_379.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_379.bin new file mode 100644 index 0000000000..500cadb689 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_379.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_380.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_380.bin new file mode 100644 index 0000000000..5833bd7c91 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_380.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_381.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_381.bin new file mode 100644 index 0000000000..619039590c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_381.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_382.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_382.bin new file mode 100644 index 0000000000..db7eaabc86 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_382.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_383.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_383.bin new file mode 100644 index 0000000000..d0ddf3551c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_383.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_384.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_384.bin new file mode 100644 index 0000000000..b4c4b43732 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_384.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_385.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_385.bin new file mode 100644 index 0000000000..d319753e63 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_385.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_386.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_386.bin new file mode 100644 index 0000000000..4f5eb097d1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_386.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_387.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_387.bin new file mode 100644 index 0000000000..f2a0c4abf3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_387.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_388.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_388.bin new file mode 100644 index 0000000000..67a3114a16 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_388.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_389.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_389.bin new file mode 100644 index 0000000000..cc88ec214f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_389.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_390.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_390.bin new file mode 100644 index 0000000000..9a48311da9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_390.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_391.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_391.bin new file mode 100644 index 0000000000..0f0e9a7cd9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_391.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_392.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_392.bin new file mode 100644 index 0000000000..f224f195e6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_392.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_393.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_393.bin new file mode 100644 index 0000000000..a9198da652 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_393.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_394.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_394.bin new file mode 100644 index 0000000000..2b6c7b8d88 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_394.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_395.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_395.bin new file mode 100644 index 0000000000..61d9e0c907 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_395.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_396.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_396.bin new file mode 100644 index 0000000000..8da22da864 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_396.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_397.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_397.bin new file mode 100644 index 0000000000..5e4190b719 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_397.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_398.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_398.bin new file mode 100644 index 0000000000..8934c03de2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_398.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_399.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_399.bin new file mode 100644 index 0000000000..2bde63495f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_399.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_400.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_400.bin new file mode 100644 index 0000000000..fe9d50b3a1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_400.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_401.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_401.bin new file mode 100644 index 0000000000..059ed93a90 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_401.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_402.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_402.bin new file mode 100644 index 0000000000..e230d595d5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_402.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_403.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_403.bin new file mode 100644 index 0000000000..3527e1bc2c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_403.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_404.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_404.bin new file mode 100644 index 0000000000..6a99e38f48 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_404.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_405.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_405.bin new file mode 100644 index 0000000000..b2b43d0a31 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_405.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_406.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_406.bin new file mode 100644 index 0000000000..737ebca100 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_406.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_407.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_407.bin new file mode 100644 index 0000000000..83cac4f5a5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_407.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_408.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_408.bin new file mode 100644 index 0000000000..38553e9be6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_408.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_409.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_409.bin new file mode 100644 index 0000000000..12e381c5b3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_409.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_410.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_410.bin new file mode 100644 index 0000000000..4580eb8bd3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_410.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_411.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_411.bin new file mode 100644 index 0000000000..e7fbd8cbe4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_411.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_412.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_412.bin new file mode 100644 index 0000000000..11743fbe9d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_412.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_413.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_413.bin new file mode 100644 index 0000000000..3c779dc87b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_413.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_414.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_414.bin new file mode 100644 index 0000000000..a2b36968a6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_414.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_415.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_415.bin new file mode 100644 index 0000000000..a56db7bfe0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_415.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_416.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_416.bin new file mode 100644 index 0000000000..7874859bf5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_416.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_417.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_417.bin new file mode 100644 index 0000000000..0fa99d94cc Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_417.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_418.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_418.bin new file mode 100644 index 0000000000..2122e60bb3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_418.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_419.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_419.bin new file mode 100644 index 0000000000..74d1e67224 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_419.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_420.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_420.bin new file mode 100644 index 0000000000..549368cd27 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_420.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_421.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_421.bin new file mode 100644 index 0000000000..997248c97f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_421.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_422.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_422.bin new file mode 100644 index 0000000000..2a2f560cb5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_422.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_423.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_423.bin new file mode 100644 index 0000000000..51b5bef6ad Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_423.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_424.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_424.bin new file mode 100644 index 0000000000..dd70f1cc31 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_424.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_425.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_425.bin new file mode 100644 index 0000000000..101489314d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_425.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_426.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_426.bin new file mode 100644 index 0000000000..761b2d939e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_426.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_427.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_427.bin new file mode 100644 index 0000000000..a0664e0ba2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_427.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_428.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_428.bin new file mode 100644 index 0000000000..9b48a3607e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_428.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_429.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_429.bin new file mode 100644 index 0000000000..ca1987969b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_429.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_430.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_430.bin new file mode 100644 index 0000000000..d1c93a31ab Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_430.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_431.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_431.bin new file mode 100644 index 0000000000..884ac885c9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_431.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_432.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_432.bin new file mode 100644 index 0000000000..7c81c18524 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_432.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_433.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_433.bin new file mode 100644 index 0000000000..39590ebfca Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_433.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_434.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_434.bin new file mode 100644 index 0000000000..17d1f6f5cc Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_434.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_435.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_435.bin new file mode 100644 index 0000000000..38de17c9e3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_435.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_436.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_436.bin new file mode 100644 index 0000000000..e8e7971d7c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_436.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_437.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_437.bin new file mode 100644 index 0000000000..613a740927 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_437.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_438.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_438.bin new file mode 100644 index 0000000000..4d2d27af44 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_438.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_439.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_439.bin new file mode 100644 index 0000000000..a50be42a6d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_439.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_440.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_440.bin new file mode 100644 index 0000000000..a8dc3ef95b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_440.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_441.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_441.bin new file mode 100644 index 0000000000..c9cc13fe6e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_441.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_442.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_442.bin new file mode 100644 index 0000000000..99cdd80fba Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_442.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_443.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_443.bin new file mode 100644 index 0000000000..3e0f0e8a20 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_443.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_444.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_444.bin new file mode 100644 index 0000000000..80729ec37b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_444.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_445.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_445.bin new file mode 100644 index 0000000000..3923dbf954 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_445.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_446.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_446.bin new file mode 100644 index 0000000000..a21f9b1960 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_446.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_447.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_447.bin new file mode 100644 index 0000000000..f3c980c2ca Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_447.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_448.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_448.bin new file mode 100644 index 0000000000..5ddb242257 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_448.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_449.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_449.bin new file mode 100644 index 0000000000..669e5ddb6f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_449.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_450.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_450.bin new file mode 100644 index 0000000000..50f70056c3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_450.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_451.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_451.bin new file mode 100644 index 0000000000..4f682aea67 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_451.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_452.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_452.bin new file mode 100644 index 0000000000..9adaf2f556 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_452.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_453.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_453.bin new file mode 100644 index 0000000000..01d56efbfc Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_453.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_454.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_454.bin new file mode 100644 index 0000000000..99154963a3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_454.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_455.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_455.bin new file mode 100644 index 0000000000..c4192c9c27 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_455.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_456.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_456.bin new file mode 100644 index 0000000000..c96820627b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_456.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_457.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_457.bin new file mode 100644 index 0000000000..35781edb33 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_457.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_458.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_458.bin new file mode 100644 index 0000000000..bfc7f3a0ba Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_458.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_459.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_459.bin new file mode 100644 index 0000000000..fe1d4e8840 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_459.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_460.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_460.bin new file mode 100644 index 0000000000..6989bc0bfb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_460.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_461.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_461.bin new file mode 100644 index 0000000000..84f5dcebd3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_461.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_462.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_462.bin new file mode 100644 index 0000000000..f034914794 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_462.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_463.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_463.bin new file mode 100644 index 0000000000..0d300aa30b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_463.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_464.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_464.bin new file mode 100644 index 0000000000..217ab210eb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_464.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_465.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_465.bin new file mode 100644 index 0000000000..b2a6ee7bc3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_465.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_466.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_466.bin new file mode 100644 index 0000000000..d7965b9c79 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_466.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_467.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_467.bin new file mode 100644 index 0000000000..81de7fab88 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_467.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_468.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_468.bin new file mode 100644 index 0000000000..9df184ad9e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_468.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_469.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_469.bin new file mode 100644 index 0000000000..f13baf377f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_469.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_470.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_470.bin new file mode 100644 index 0000000000..97c7d0db42 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_470.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_471.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_471.bin new file mode 100644 index 0000000000..5de57691ef Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_471.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_472.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_472.bin new file mode 100644 index 0000000000..8bfe217f7a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_472.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_473.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_473.bin new file mode 100644 index 0000000000..0db601097b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_473.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_474.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_474.bin new file mode 100644 index 0000000000..fdaa375311 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_474.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_475.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_475.bin new file mode 100644 index 0000000000..53b11db5f2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_475.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_476.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_476.bin new file mode 100644 index 0000000000..83256e68c7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_476.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_477.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_477.bin new file mode 100644 index 0000000000..ffb3bb645c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_477.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_478.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_478.bin new file mode 100644 index 0000000000..4782a8607b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_478.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_479.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_479.bin new file mode 100644 index 0000000000..dd9bb076d5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_479.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_480.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_480.bin new file mode 100644 index 0000000000..36227e0012 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_480.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_481.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_481.bin new file mode 100644 index 0000000000..9c1172a2cf Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_481.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_482.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_482.bin new file mode 100644 index 0000000000..14dc97c72a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_482.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_483.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_483.bin new file mode 100644 index 0000000000..cb6bad8ce1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_483.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_484.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_484.bin new file mode 100644 index 0000000000..77001232c2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_484.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_485.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_485.bin new file mode 100644 index 0000000000..c44536129c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_485.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_486.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_486.bin new file mode 100644 index 0000000000..7d6e8ef424 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_486.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_487.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_487.bin new file mode 100644 index 0000000000..13e2f2a7d8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_487.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_488.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_488.bin new file mode 100644 index 0000000000..f04ec5d718 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_488.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_489.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_489.bin new file mode 100644 index 0000000000..df7004ae24 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_489.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_490.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_490.bin new file mode 100644 index 0000000000..97ad4ff637 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_490.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_491.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_491.bin new file mode 100644 index 0000000000..8d1b90ebb3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_491.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_492.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_492.bin new file mode 100644 index 0000000000..865da1fa80 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_492.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_493.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_493.bin new file mode 100644 index 0000000000..966035297b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_493.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_494.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_494.bin new file mode 100644 index 0000000000..f368ec0f04 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_494.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_495.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_495.bin new file mode 100644 index 0000000000..86877981a0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_495.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_496.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_496.bin new file mode 100644 index 0000000000..eef7f59bcd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_496.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_497.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_497.bin new file mode 100644 index 0000000000..0588af148c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_497.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_498.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_498.bin new file mode 100644 index 0000000000..47deace049 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_498.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_499.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_499.bin new file mode 100644 index 0000000000..094cf04841 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_499.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_500.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_500.bin new file mode 100644 index 0000000000..b9c284968a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_500.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_501.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_501.bin new file mode 100644 index 0000000000..3e24040be5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_501.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_502.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_502.bin new file mode 100644 index 0000000000..a96b133f7c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_502.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_503.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_503.bin new file mode 100644 index 0000000000..56db9f3735 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_503.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_504.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_504.bin new file mode 100644 index 0000000000..bf1f4f9839 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_504.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_505.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_505.bin new file mode 100644 index 0000000000..02614eb3b8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_505.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_506.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_506.bin new file mode 100644 index 0000000000..fd6e32d7a9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_506.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_507.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_507.bin new file mode 100644 index 0000000000..73e58bd5d9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_507.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_508.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_508.bin new file mode 100644 index 0000000000..edff50b585 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_508.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_509.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_509.bin new file mode 100644 index 0000000000..826a47256d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_509.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_510.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_510.bin new file mode 100644 index 0000000000..3076f3e3ed Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_510.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_511.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_511.bin new file mode 100644 index 0000000000..04b104d2e0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_511.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_512.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_512.bin new file mode 100644 index 0000000000..41d857dd59 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_512.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_513.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_513.bin new file mode 100644 index 0000000000..7d90a9cc72 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_513.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_514.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_514.bin new file mode 100644 index 0000000000..2d83814726 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_514.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_515.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_515.bin new file mode 100644 index 0000000000..f5326d4ee1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_515.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_516.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_516.bin new file mode 100644 index 0000000000..9fcb7a140d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_516.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_517.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_517.bin new file mode 100644 index 0000000000..d56c427ce3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_517.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_518.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_518.bin new file mode 100644 index 0000000000..12e4105bd9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_518.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_519.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_519.bin new file mode 100644 index 0000000000..23ed57aae3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_519.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_520.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_520.bin new file mode 100644 index 0000000000..3c71956132 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_520.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_521.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_521.bin new file mode 100644 index 0000000000..643706428a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_521.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_522.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_522.bin new file mode 100644 index 0000000000..3b5ce6ae8e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_522.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_523.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_523.bin new file mode 100644 index 0000000000..e2f0231feb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_523.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_524.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_524.bin new file mode 100644 index 0000000000..3159ff991f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_524.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_525.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_525.bin new file mode 100644 index 0000000000..5bb0480625 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_525.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_526.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_526.bin new file mode 100644 index 0000000000..961b5f6612 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_526.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_527.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_527.bin new file mode 100644 index 0000000000..24bef993aa Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_527.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_528.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_528.bin new file mode 100644 index 0000000000..939c7f9fb9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_528.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_529.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_529.bin new file mode 100644 index 0000000000..00e8fd9c47 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_529.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_530.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_530.bin new file mode 100644 index 0000000000..2c3257ca5e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_530.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_531.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_531.bin new file mode 100644 index 0000000000..c8780e8684 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_531.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_532.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_532.bin new file mode 100644 index 0000000000..6415a2e0e6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_532.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_533.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_533.bin new file mode 100644 index 0000000000..3fd7e71c05 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_533.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_534.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_534.bin new file mode 100644 index 0000000000..3568871911 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_534.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_535.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_535.bin new file mode 100644 index 0000000000..ecb5bd1109 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_535.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_536.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_536.bin new file mode 100644 index 0000000000..06ea4cf3dd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_536.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_537.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_537.bin new file mode 100644 index 0000000000..d46ad9d63b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_537.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_538.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_538.bin new file mode 100644 index 0000000000..741029fe44 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_538.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_539.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_539.bin new file mode 100644 index 0000000000..fee805f13c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_539.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_540.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_540.bin new file mode 100644 index 0000000000..ec04910d03 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_540.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_541.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_541.bin new file mode 100644 index 0000000000..62461318d6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_541.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_542.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_542.bin new file mode 100644 index 0000000000..8460f59408 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_542.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_543.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_543.bin new file mode 100644 index 0000000000..6144765c8c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_543.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_544.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_544.bin new file mode 100644 index 0000000000..c39b25a8c4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_544.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_545.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_545.bin new file mode 100644 index 0000000000..9d91e0208c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_545.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_546.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_546.bin new file mode 100644 index 0000000000..be08a1412a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_546.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_547.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_547.bin new file mode 100644 index 0000000000..fd4a6d88c6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_547.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_548.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_548.bin new file mode 100644 index 0000000000..438d993ea7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_548.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_549.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_549.bin new file mode 100644 index 0000000000..4afa73f0b9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_549.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_550.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_550.bin new file mode 100644 index 0000000000..7d138cf928 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_550.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_551.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_551.bin new file mode 100644 index 0000000000..bd89d6b1ef Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_551.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_552.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_552.bin new file mode 100644 index 0000000000..1c1b117886 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_552.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_553.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_553.bin new file mode 100644 index 0000000000..abe66887f4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_553.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_554.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_554.bin new file mode 100644 index 0000000000..d2897717fa Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_554.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_555.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_555.bin new file mode 100644 index 0000000000..c3a5055326 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_555.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_556.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_556.bin new file mode 100644 index 0000000000..809ae56e8e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_556.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_557.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_557.bin new file mode 100644 index 0000000000..beb902d03f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_557.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_558.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_558.bin new file mode 100644 index 0000000000..e317aaaba6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_558.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_559.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_559.bin new file mode 100644 index 0000000000..8334786ce9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_559.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_560.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_560.bin new file mode 100644 index 0000000000..60b6ec9e0b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_560.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_561.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_561.bin new file mode 100644 index 0000000000..6cf7c05952 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_561.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_562.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_562.bin new file mode 100644 index 0000000000..25d14bc6e4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_562.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_563.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_563.bin new file mode 100644 index 0000000000..f0921c0784 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_563.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_564.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_564.bin new file mode 100644 index 0000000000..b13ddb40f5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_564.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_565.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_565.bin new file mode 100644 index 0000000000..ae3d8de574 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_565.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_566.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_566.bin new file mode 100644 index 0000000000..d432c1fa04 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_566.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_567.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_567.bin new file mode 100644 index 0000000000..23bee0a708 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_567.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_568.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_568.bin new file mode 100644 index 0000000000..72056efb38 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_568.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_569.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_569.bin new file mode 100644 index 0000000000..3db1a3b136 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_569.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_570.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_570.bin new file mode 100644 index 0000000000..6e41a77821 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_570.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_571.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_571.bin new file mode 100644 index 0000000000..da1440f817 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_571.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_572.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_572.bin new file mode 100644 index 0000000000..9ef4fae99c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_572.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_573.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_573.bin new file mode 100644 index 0000000000..fe5cdfdc66 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_573.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_574.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_574.bin new file mode 100644 index 0000000000..3696f0497a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_574.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_575.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_575.bin new file mode 100644 index 0000000000..ead76c2a73 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_575.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_576.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_576.bin new file mode 100644 index 0000000000..b27ea2068d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_576.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_577.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_577.bin new file mode 100644 index 0000000000..b2ef48ed26 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_577.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_578.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_578.bin new file mode 100644 index 0000000000..23e68cc8a6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_578.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_579.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_579.bin new file mode 100644 index 0000000000..d37907f86b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_579.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_580.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_580.bin new file mode 100644 index 0000000000..9313fd8f4d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_580.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_581.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_581.bin new file mode 100644 index 0000000000..551b39ed26 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_581.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_582.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_582.bin new file mode 100644 index 0000000000..43123fd086 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_582.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_583.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_583.bin new file mode 100644 index 0000000000..db2fe9e5f7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_583.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_584.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_584.bin new file mode 100644 index 0000000000..0ccfd6d777 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_584.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_585.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_585.bin new file mode 100644 index 0000000000..2b8ff4587f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_585.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_586.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_586.bin new file mode 100644 index 0000000000..932c197e7f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_586.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_587.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_587.bin new file mode 100644 index 0000000000..d17c035b42 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_587.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_588.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_588.bin new file mode 100644 index 0000000000..bcc9c3b1eb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_588.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_589.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_589.bin new file mode 100644 index 0000000000..de0e449060 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_589.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_590.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_590.bin new file mode 100644 index 0000000000..b9399b6e32 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_590.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_591.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_591.bin new file mode 100644 index 0000000000..0938d958c0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_591.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_592.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_592.bin new file mode 100644 index 0000000000..f1565f1782 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_592.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_593.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_593.bin new file mode 100644 index 0000000000..84aa28c8fc Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_593.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_594.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_594.bin new file mode 100644 index 0000000000..b26b0f672d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_594.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_595.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_595.bin new file mode 100644 index 0000000000..cfd8e330f2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_595.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_596.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_596.bin new file mode 100644 index 0000000000..9ba982140b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_596.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_597.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_597.bin new file mode 100644 index 0000000000..fbf537d18b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_597.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_598.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_598.bin new file mode 100644 index 0000000000..26c4eba838 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_598.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_599.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_599.bin new file mode 100644 index 0000000000..1161a62740 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_599.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_600.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_600.bin new file mode 100644 index 0000000000..d3b059b40f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_600.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_601.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_601.bin new file mode 100644 index 0000000000..be25d9c8a1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_601.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_602.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_602.bin new file mode 100644 index 0000000000..406fa1701c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_602.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_603.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_603.bin new file mode 100644 index 0000000000..f84252abd7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_603.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_604.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_604.bin new file mode 100644 index 0000000000..3522f632df Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_604.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_605.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_605.bin new file mode 100644 index 0000000000..aed0695a4b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_605.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_606.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_606.bin new file mode 100644 index 0000000000..685ad858a6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_606.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_607.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_607.bin new file mode 100644 index 0000000000..0761fb03a3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_607.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_608.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_608.bin new file mode 100644 index 0000000000..45307f39ff Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_608.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_609.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_609.bin new file mode 100644 index 0000000000..8fc14f85ad Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_609.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_610.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_610.bin new file mode 100644 index 0000000000..c5f4827f2f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_610.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_611.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_611.bin new file mode 100644 index 0000000000..0229fce4a0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_611.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_612.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_612.bin new file mode 100644 index 0000000000..a91c46f32f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_612.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_613.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_613.bin new file mode 100644 index 0000000000..293071ecca Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_613.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_614.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_614.bin new file mode 100644 index 0000000000..07d439cb49 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_614.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_615.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_615.bin new file mode 100644 index 0000000000..0f6ba468ff Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_615.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_616.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_616.bin new file mode 100644 index 0000000000..ce6a08b3f9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_616.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_617.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_617.bin new file mode 100644 index 0000000000..e65b585bcb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_617.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_618.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_618.bin new file mode 100644 index 0000000000..2ec22df15d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_618.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_619.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_619.bin new file mode 100644 index 0000000000..7d2a922ad2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_619.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_620.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_620.bin new file mode 100644 index 0000000000..62dea1d911 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_620.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_621.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_621.bin new file mode 100644 index 0000000000..2d7a0f637b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_621.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_622.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_622.bin new file mode 100644 index 0000000000..50d806f82e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_622.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_623.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_623.bin new file mode 100644 index 0000000000..17b4ea7c9f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_623.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_624.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_624.bin new file mode 100644 index 0000000000..ffadf3e06c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_624.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_625.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_625.bin new file mode 100644 index 0000000000..a795ec8a27 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_625.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_626.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_626.bin new file mode 100644 index 0000000000..eef15f9b79 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_626.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_627.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_627.bin new file mode 100644 index 0000000000..298a470956 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_627.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_628.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_628.bin new file mode 100644 index 0000000000..59ef3bbeb9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_628.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_629.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_629.bin new file mode 100644 index 0000000000..5d2e1c3a8b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_629.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_630.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_630.bin new file mode 100644 index 0000000000..42e8fea053 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_630.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_631.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_631.bin new file mode 100644 index 0000000000..586352fbf2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_631.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_632.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_632.bin new file mode 100644 index 0000000000..46088a7e41 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_632.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_633.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_633.bin new file mode 100644 index 0000000000..a02953cb74 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_633.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_634.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_634.bin new file mode 100644 index 0000000000..da9c8c234b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_634.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_635.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_635.bin new file mode 100644 index 0000000000..516fd08dbb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_635.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_636.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_636.bin new file mode 100644 index 0000000000..384b172536 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_636.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_637.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_637.bin new file mode 100644 index 0000000000..198e0014b3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_637.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_638.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_638.bin new file mode 100644 index 0000000000..799b50cac9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_638.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_639.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_639.bin new file mode 100644 index 0000000000..4204212978 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_639.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_640.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_640.bin new file mode 100644 index 0000000000..6a3aa3f743 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_640.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_641.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_641.bin new file mode 100644 index 0000000000..a5cdfc6022 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_641.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_642.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_642.bin new file mode 100644 index 0000000000..24318780c8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_642.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_643.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_643.bin new file mode 100644 index 0000000000..9fd127f6b9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_643.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_644.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_644.bin new file mode 100644 index 0000000000..6f642a7a65 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_644.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_645.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_645.bin new file mode 100644 index 0000000000..d2d4b3d0d0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_645.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_646.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_646.bin new file mode 100644 index 0000000000..8525806555 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_646.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_647.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_647.bin new file mode 100644 index 0000000000..57cf427672 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_647.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_648.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_648.bin new file mode 100644 index 0000000000..f40428c9ab Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_648.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_649.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_649.bin new file mode 100644 index 0000000000..45dd6c9510 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_649.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_650.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_650.bin new file mode 100644 index 0000000000..5e123f6af5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_650.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_651.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_651.bin new file mode 100644 index 0000000000..ab2373f822 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_651.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_652.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_652.bin new file mode 100644 index 0000000000..3301f6e618 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_652.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_653.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_653.bin new file mode 100644 index 0000000000..53e72f1a3d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_653.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_654.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_654.bin new file mode 100644 index 0000000000..56c9207946 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_654.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_655.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_655.bin new file mode 100644 index 0000000000..7c39a4ffb7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_655.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_656.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_656.bin new file mode 100644 index 0000000000..b3457dee10 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_656.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_657.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_657.bin new file mode 100644 index 0000000000..c74c50c02f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_657.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_658.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_658.bin new file mode 100644 index 0000000000..f5a385e4c8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_658.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_659.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_659.bin new file mode 100644 index 0000000000..b86a0c5610 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_659.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_660.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_660.bin new file mode 100644 index 0000000000..795b2e88a5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_660.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_661.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_661.bin new file mode 100644 index 0000000000..b688befb3f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_661.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_662.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_662.bin new file mode 100644 index 0000000000..3443ab0f49 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_662.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_663.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_663.bin new file mode 100644 index 0000000000..e781e3127f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_663.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_664.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_664.bin new file mode 100644 index 0000000000..ab9577ffe4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_664.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_665.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_665.bin new file mode 100644 index 0000000000..653ef742f3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_665.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_666.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_666.bin new file mode 100644 index 0000000000..da1100cd5f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_666.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_667.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_667.bin new file mode 100644 index 0000000000..668280ba33 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_667.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_668.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_668.bin new file mode 100644 index 0000000000..50dc8f97fd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_668.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_669.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_669.bin new file mode 100644 index 0000000000..085b8749eb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_669.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_670.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_670.bin new file mode 100644 index 0000000000..3203bb0be7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_670.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_671.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_671.bin new file mode 100644 index 0000000000..f8d1482572 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_671.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_672.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_672.bin new file mode 100644 index 0000000000..33985209ad Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_672.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_673.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_673.bin new file mode 100644 index 0000000000..c75d981096 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_673.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_674.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_674.bin new file mode 100644 index 0000000000..043f0b3ad2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_674.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_675.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_675.bin new file mode 100644 index 0000000000..a3498e9a4e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_675.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_676.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_676.bin new file mode 100644 index 0000000000..80ef3c9740 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_676.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_677.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_677.bin new file mode 100644 index 0000000000..4610a64e7f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_677.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_678.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_678.bin new file mode 100644 index 0000000000..fe65e6207f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_678.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_679.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_679.bin new file mode 100644 index 0000000000..e407867c38 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_679.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_680.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_680.bin new file mode 100644 index 0000000000..8b4750e775 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_680.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_681.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_681.bin new file mode 100644 index 0000000000..cf8266b8bc Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_681.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_682.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_682.bin new file mode 100644 index 0000000000..59b2753a88 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_682.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_683.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_683.bin new file mode 100644 index 0000000000..19cdaa0891 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_683.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_684.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_684.bin new file mode 100644 index 0000000000..c68b61d909 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_684.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_685.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_685.bin new file mode 100644 index 0000000000..b7a2f2df91 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_685.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_686.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_686.bin new file mode 100644 index 0000000000..4a1c944fc8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_686.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_687.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_687.bin new file mode 100644 index 0000000000..1e825ec676 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_687.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_688.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_688.bin new file mode 100644 index 0000000000..98a9f4b4ef Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_688.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_689.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_689.bin new file mode 100644 index 0000000000..9c04d515ef Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_689.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_690.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_690.bin new file mode 100644 index 0000000000..89fbddb6b7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_690.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_691.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_691.bin new file mode 100644 index 0000000000..10df15603f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_691.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_692.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_692.bin new file mode 100644 index 0000000000..261cafa998 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_692.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_693.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_693.bin new file mode 100644 index 0000000000..918e6aceb5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_693.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_694.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_694.bin new file mode 100644 index 0000000000..ea125c2787 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_694.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_695.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_695.bin new file mode 100644 index 0000000000..9208bf269a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_695.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_696.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_696.bin new file mode 100644 index 0000000000..0958103946 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_696.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_697.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_697.bin new file mode 100644 index 0000000000..466cdc901f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_697.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_698.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_698.bin new file mode 100644 index 0000000000..95bee6e435 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_698.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_699.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_699.bin new file mode 100644 index 0000000000..d753904571 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_699.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_700.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_700.bin new file mode 100644 index 0000000000..0d693d3705 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_700.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_701.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_701.bin new file mode 100644 index 0000000000..372252a6fd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_701.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_702.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_702.bin new file mode 100644 index 0000000000..aa3f54b548 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_702.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_703.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_703.bin new file mode 100644 index 0000000000..f2f9024d2f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_703.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_704.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_704.bin new file mode 100644 index 0000000000..007ca7dc66 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_704.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_705.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_705.bin new file mode 100644 index 0000000000..0a78a5070d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_705.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_706.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_706.bin new file mode 100644 index 0000000000..46b01b83e8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_706.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_707.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_707.bin new file mode 100644 index 0000000000..c7d2430742 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_707.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_708.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_708.bin new file mode 100644 index 0000000000..3a183372aa Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_708.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_709.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_709.bin new file mode 100644 index 0000000000..d001c18310 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_709.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_710.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_710.bin new file mode 100644 index 0000000000..37734c1548 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_710.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_711.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_711.bin new file mode 100644 index 0000000000..7bd9823616 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_711.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_712.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_712.bin new file mode 100644 index 0000000000..f78e76ff97 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_712.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_713.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_713.bin new file mode 100644 index 0000000000..9a35336fee Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_713.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_714.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_714.bin new file mode 100644 index 0000000000..6026d8d94e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_714.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_715.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_715.bin new file mode 100644 index 0000000000..87acb1e26b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_715.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_716.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_716.bin new file mode 100644 index 0000000000..0af8086932 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_716.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_717.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_717.bin new file mode 100644 index 0000000000..74e6660809 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_717.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_718.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_718.bin new file mode 100644 index 0000000000..6f513dba1d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_718.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_719.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_719.bin new file mode 100644 index 0000000000..6c126c8f3e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_719.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_720.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_720.bin new file mode 100644 index 0000000000..182e56692b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_720.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_721.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_721.bin new file mode 100644 index 0000000000..a64d62c0a6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_721.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_722.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_722.bin new file mode 100644 index 0000000000..1ae2b63521 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_722.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_723.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_723.bin new file mode 100644 index 0000000000..8b24ffe2ec Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_723.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_724.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_724.bin new file mode 100644 index 0000000000..775c3bd282 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_724.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_725.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_725.bin new file mode 100644 index 0000000000..2e7227734a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_725.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_726.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_726.bin new file mode 100644 index 0000000000..161feb1e66 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_726.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_727.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_727.bin new file mode 100644 index 0000000000..8570cd4931 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_727.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_728.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_728.bin new file mode 100644 index 0000000000..d3ad6f1482 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_728.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_729.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_729.bin new file mode 100644 index 0000000000..15248d4770 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_729.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_730.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_730.bin new file mode 100644 index 0000000000..99b28f1038 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_730.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_731.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_731.bin new file mode 100644 index 0000000000..8bcee6913e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_731.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_732.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_732.bin new file mode 100644 index 0000000000..a3c99204bb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_732.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_733.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_733.bin new file mode 100644 index 0000000000..9905a52e33 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_733.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_734.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_734.bin new file mode 100644 index 0000000000..f3178ca006 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_734.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_735.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_735.bin new file mode 100644 index 0000000000..519f998ddb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_735.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_736.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_736.bin new file mode 100644 index 0000000000..bec23f07e5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_736.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_737.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_737.bin new file mode 100644 index 0000000000..06c7c159be Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_737.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_738.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_738.bin new file mode 100644 index 0000000000..2ef976fb1c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_738.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_739.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_739.bin new file mode 100644 index 0000000000..e6c545c3b6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_739.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_740.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_740.bin new file mode 100644 index 0000000000..8c848390d3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_740.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_741.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_741.bin new file mode 100644 index 0000000000..efc7a49336 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_741.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_742.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_742.bin new file mode 100644 index 0000000000..30043ad916 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_742.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_743.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_743.bin new file mode 100644 index 0000000000..a168ca4f0c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_743.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_744.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_744.bin new file mode 100644 index 0000000000..6fff56f4ae Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_744.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_745.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_745.bin new file mode 100644 index 0000000000..e7d30fcf7e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_745.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_746.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_746.bin new file mode 100644 index 0000000000..b0b39236f6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_746.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_747.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_747.bin new file mode 100644 index 0000000000..252c766fd4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_747.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_748.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_748.bin new file mode 100644 index 0000000000..0b8f4258be Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_748.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_749.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_749.bin new file mode 100644 index 0000000000..350344889b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_749.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_750.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_750.bin new file mode 100644 index 0000000000..98029f4695 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_750.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_751.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_751.bin new file mode 100644 index 0000000000..1d62f49fe1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_751.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_752.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_752.bin new file mode 100644 index 0000000000..ceae3f345e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_752.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_753.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_753.bin new file mode 100644 index 0000000000..4ab5f72d0c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_753.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_754.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_754.bin new file mode 100644 index 0000000000..30d0f20332 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_754.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_755.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_755.bin new file mode 100644 index 0000000000..ddded045b1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_755.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_756.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_756.bin new file mode 100644 index 0000000000..97a30639c3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_756.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_757.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_757.bin new file mode 100644 index 0000000000..3485256c6c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_757.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_758.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_758.bin new file mode 100644 index 0000000000..a92a39b9f5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_758.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_759.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_759.bin new file mode 100644 index 0000000000..940444d995 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_759.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_760.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_760.bin new file mode 100644 index 0000000000..321c419da8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_760.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_761.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_761.bin new file mode 100644 index 0000000000..9f94b8ba79 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_761.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_762.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_762.bin new file mode 100644 index 0000000000..f8682f8533 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_762.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_763.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_763.bin new file mode 100644 index 0000000000..22b82ca8a5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_763.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_764.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_764.bin new file mode 100644 index 0000000000..b4a247c6e3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_764.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_765.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_765.bin new file mode 100644 index 0000000000..48fb46333e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_765.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_766.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_766.bin new file mode 100644 index 0000000000..15344dfe09 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_766.bin differ diff --git a/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_767.bin b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_767.bin new file mode 100644 index 0000000000..b9703405e1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Carla_Big_Towns/map_767.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_000.bin b/pufferlib/resources/drive/binaries/Town11/map_000.bin new file mode 100644 index 0000000000..300d066bb0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_000.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_001.bin b/pufferlib/resources/drive/binaries/Town11/map_001.bin new file mode 100644 index 0000000000..e816c3b44e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_001.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_002.bin b/pufferlib/resources/drive/binaries/Town11/map_002.bin new file mode 100644 index 0000000000..133ad8e1b3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_002.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_003.bin b/pufferlib/resources/drive/binaries/Town11/map_003.bin new file mode 100644 index 0000000000..4214886dcd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_003.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_004.bin b/pufferlib/resources/drive/binaries/Town11/map_004.bin new file mode 100644 index 0000000000..26a848fdba Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_004.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_005.bin b/pufferlib/resources/drive/binaries/Town11/map_005.bin new file mode 100644 index 0000000000..6038528e8a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_005.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_006.bin b/pufferlib/resources/drive/binaries/Town11/map_006.bin new file mode 100644 index 0000000000..40274737da Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_006.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_007.bin b/pufferlib/resources/drive/binaries/Town11/map_007.bin new file mode 100644 index 0000000000..a3303123b1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_007.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_008.bin b/pufferlib/resources/drive/binaries/Town11/map_008.bin new file mode 100644 index 0000000000..1cc68dcc48 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_008.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_009.bin b/pufferlib/resources/drive/binaries/Town11/map_009.bin new file mode 100644 index 0000000000..88a42ed9a6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_009.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_010.bin b/pufferlib/resources/drive/binaries/Town11/map_010.bin new file mode 100644 index 0000000000..e1b27fc260 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_010.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_011.bin b/pufferlib/resources/drive/binaries/Town11/map_011.bin new file mode 100644 index 0000000000..b2a1ff0788 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_011.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_012.bin b/pufferlib/resources/drive/binaries/Town11/map_012.bin new file mode 100644 index 0000000000..8e7e28f411 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_012.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_013.bin b/pufferlib/resources/drive/binaries/Town11/map_013.bin new file mode 100644 index 0000000000..aeef86b1fc Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_013.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_014.bin b/pufferlib/resources/drive/binaries/Town11/map_014.bin new file mode 100644 index 0000000000..6085479e62 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_014.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_015.bin b/pufferlib/resources/drive/binaries/Town11/map_015.bin new file mode 100644 index 0000000000..d1586033fd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_015.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_016.bin b/pufferlib/resources/drive/binaries/Town11/map_016.bin new file mode 100644 index 0000000000..e8acbed860 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_016.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_017.bin b/pufferlib/resources/drive/binaries/Town11/map_017.bin new file mode 100644 index 0000000000..8b692d1373 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_017.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_018.bin b/pufferlib/resources/drive/binaries/Town11/map_018.bin new file mode 100644 index 0000000000..e97b0967bf Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_018.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_019.bin b/pufferlib/resources/drive/binaries/Town11/map_019.bin new file mode 100644 index 0000000000..bc3fdd9540 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_019.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_020.bin b/pufferlib/resources/drive/binaries/Town11/map_020.bin new file mode 100644 index 0000000000..c37b1505cd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_020.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_021.bin b/pufferlib/resources/drive/binaries/Town11/map_021.bin new file mode 100644 index 0000000000..691ec7b780 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_021.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_022.bin b/pufferlib/resources/drive/binaries/Town11/map_022.bin new file mode 100644 index 0000000000..240fd34e16 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_022.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_023.bin b/pufferlib/resources/drive/binaries/Town11/map_023.bin new file mode 100644 index 0000000000..9440312bf3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_023.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_024.bin b/pufferlib/resources/drive/binaries/Town11/map_024.bin new file mode 100644 index 0000000000..8585a6fb08 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_024.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_025.bin b/pufferlib/resources/drive/binaries/Town11/map_025.bin new file mode 100644 index 0000000000..0485139ff4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_025.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_026.bin b/pufferlib/resources/drive/binaries/Town11/map_026.bin new file mode 100644 index 0000000000..7aec29835f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_026.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_027.bin b/pufferlib/resources/drive/binaries/Town11/map_027.bin new file mode 100644 index 0000000000..d805d19da3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_027.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_028.bin b/pufferlib/resources/drive/binaries/Town11/map_028.bin new file mode 100644 index 0000000000..36802a6dc0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_028.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_029.bin b/pufferlib/resources/drive/binaries/Town11/map_029.bin new file mode 100644 index 0000000000..2cdc5cb52c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_029.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_030.bin b/pufferlib/resources/drive/binaries/Town11/map_030.bin new file mode 100644 index 0000000000..81d9f1d017 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_030.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_031.bin b/pufferlib/resources/drive/binaries/Town11/map_031.bin new file mode 100644 index 0000000000..9dd1d6b40b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_031.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_032.bin b/pufferlib/resources/drive/binaries/Town11/map_032.bin new file mode 100644 index 0000000000..e0356cc387 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_032.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_033.bin b/pufferlib/resources/drive/binaries/Town11/map_033.bin new file mode 100644 index 0000000000..68055a1f8a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_033.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_034.bin b/pufferlib/resources/drive/binaries/Town11/map_034.bin new file mode 100644 index 0000000000..dd4efeda2b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_034.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_035.bin b/pufferlib/resources/drive/binaries/Town11/map_035.bin new file mode 100644 index 0000000000..5049aaaff3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_035.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_036.bin b/pufferlib/resources/drive/binaries/Town11/map_036.bin new file mode 100644 index 0000000000..eaceb44681 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_036.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_037.bin b/pufferlib/resources/drive/binaries/Town11/map_037.bin new file mode 100644 index 0000000000..acc7e8849b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_037.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_038.bin b/pufferlib/resources/drive/binaries/Town11/map_038.bin new file mode 100644 index 0000000000..8bf9ccfa46 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_038.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_039.bin b/pufferlib/resources/drive/binaries/Town11/map_039.bin new file mode 100644 index 0000000000..7ce331a451 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_039.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_040.bin b/pufferlib/resources/drive/binaries/Town11/map_040.bin new file mode 100644 index 0000000000..1883eaca48 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_040.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_041.bin b/pufferlib/resources/drive/binaries/Town11/map_041.bin new file mode 100644 index 0000000000..5f40e19ddf Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_041.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_042.bin b/pufferlib/resources/drive/binaries/Town11/map_042.bin new file mode 100644 index 0000000000..5bcc4ff554 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_042.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_043.bin b/pufferlib/resources/drive/binaries/Town11/map_043.bin new file mode 100644 index 0000000000..e9ad4afb59 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_043.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_044.bin b/pufferlib/resources/drive/binaries/Town11/map_044.bin new file mode 100644 index 0000000000..8ce2b6a0d6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_044.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_045.bin b/pufferlib/resources/drive/binaries/Town11/map_045.bin new file mode 100644 index 0000000000..b661eab08e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_045.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_046.bin b/pufferlib/resources/drive/binaries/Town11/map_046.bin new file mode 100644 index 0000000000..c9a1ea12ba Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_046.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_047.bin b/pufferlib/resources/drive/binaries/Town11/map_047.bin new file mode 100644 index 0000000000..d71e9bc514 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_047.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_048.bin b/pufferlib/resources/drive/binaries/Town11/map_048.bin new file mode 100644 index 0000000000..89d814de8a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_048.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_049.bin b/pufferlib/resources/drive/binaries/Town11/map_049.bin new file mode 100644 index 0000000000..9693996097 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_049.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_050.bin b/pufferlib/resources/drive/binaries/Town11/map_050.bin new file mode 100644 index 0000000000..1e439ddf8c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_050.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_051.bin b/pufferlib/resources/drive/binaries/Town11/map_051.bin new file mode 100644 index 0000000000..849656bb1f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_051.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_052.bin b/pufferlib/resources/drive/binaries/Town11/map_052.bin new file mode 100644 index 0000000000..1b604ad8d1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_052.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_053.bin b/pufferlib/resources/drive/binaries/Town11/map_053.bin new file mode 100644 index 0000000000..bcb880567a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_053.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_054.bin b/pufferlib/resources/drive/binaries/Town11/map_054.bin new file mode 100644 index 0000000000..c295348c6d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_054.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_055.bin b/pufferlib/resources/drive/binaries/Town11/map_055.bin new file mode 100644 index 0000000000..d340430cba Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_055.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_056.bin b/pufferlib/resources/drive/binaries/Town11/map_056.bin new file mode 100644 index 0000000000..7d5828169f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_056.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_057.bin b/pufferlib/resources/drive/binaries/Town11/map_057.bin new file mode 100644 index 0000000000..cd3f8c863b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_057.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_058.bin b/pufferlib/resources/drive/binaries/Town11/map_058.bin new file mode 100644 index 0000000000..a0d8a5430e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_058.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_059.bin b/pufferlib/resources/drive/binaries/Town11/map_059.bin new file mode 100644 index 0000000000..438af42929 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_059.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_060.bin b/pufferlib/resources/drive/binaries/Town11/map_060.bin new file mode 100644 index 0000000000..b549d3f263 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_060.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_061.bin b/pufferlib/resources/drive/binaries/Town11/map_061.bin new file mode 100644 index 0000000000..48e423daea Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_061.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_062.bin b/pufferlib/resources/drive/binaries/Town11/map_062.bin new file mode 100644 index 0000000000..f487112bea Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_062.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_063.bin b/pufferlib/resources/drive/binaries/Town11/map_063.bin new file mode 100644 index 0000000000..2f7fc0e222 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_063.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_064.bin b/pufferlib/resources/drive/binaries/Town11/map_064.bin new file mode 100644 index 0000000000..e0da95c00a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_064.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_065.bin b/pufferlib/resources/drive/binaries/Town11/map_065.bin new file mode 100644 index 0000000000..dae6fdd9e0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_065.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_066.bin b/pufferlib/resources/drive/binaries/Town11/map_066.bin new file mode 100644 index 0000000000..85d215ae13 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_066.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_067.bin b/pufferlib/resources/drive/binaries/Town11/map_067.bin new file mode 100644 index 0000000000..ac86c5066c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_067.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_068.bin b/pufferlib/resources/drive/binaries/Town11/map_068.bin new file mode 100644 index 0000000000..a95e5610ac Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_068.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_069.bin b/pufferlib/resources/drive/binaries/Town11/map_069.bin new file mode 100644 index 0000000000..c6abac44e8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_069.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_070.bin b/pufferlib/resources/drive/binaries/Town11/map_070.bin new file mode 100644 index 0000000000..a618504582 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_070.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_071.bin b/pufferlib/resources/drive/binaries/Town11/map_071.bin new file mode 100644 index 0000000000..ed136f95b6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_071.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_072.bin b/pufferlib/resources/drive/binaries/Town11/map_072.bin new file mode 100644 index 0000000000..8193463bce Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_072.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_073.bin b/pufferlib/resources/drive/binaries/Town11/map_073.bin new file mode 100644 index 0000000000..8b6d893551 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_073.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_074.bin b/pufferlib/resources/drive/binaries/Town11/map_074.bin new file mode 100644 index 0000000000..a2330ad2d3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_074.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_075.bin b/pufferlib/resources/drive/binaries/Town11/map_075.bin new file mode 100644 index 0000000000..96cb32f386 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_075.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_076.bin b/pufferlib/resources/drive/binaries/Town11/map_076.bin new file mode 100644 index 0000000000..3e77c5b93c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_076.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_077.bin b/pufferlib/resources/drive/binaries/Town11/map_077.bin new file mode 100644 index 0000000000..aec6558e30 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_077.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_078.bin b/pufferlib/resources/drive/binaries/Town11/map_078.bin new file mode 100644 index 0000000000..744ae06bff Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_078.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_079.bin b/pufferlib/resources/drive/binaries/Town11/map_079.bin new file mode 100644 index 0000000000..81ec2a73d7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_079.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_080.bin b/pufferlib/resources/drive/binaries/Town11/map_080.bin new file mode 100644 index 0000000000..ac385dcd5e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_080.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_081.bin b/pufferlib/resources/drive/binaries/Town11/map_081.bin new file mode 100644 index 0000000000..379f4e8b0d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_081.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_082.bin b/pufferlib/resources/drive/binaries/Town11/map_082.bin new file mode 100644 index 0000000000..7e40cce5a6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_082.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_083.bin b/pufferlib/resources/drive/binaries/Town11/map_083.bin new file mode 100644 index 0000000000..c37a5f8992 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_083.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_084.bin b/pufferlib/resources/drive/binaries/Town11/map_084.bin new file mode 100644 index 0000000000..392763cfb7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_084.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_085.bin b/pufferlib/resources/drive/binaries/Town11/map_085.bin new file mode 100644 index 0000000000..1c62099f9f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_085.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_086.bin b/pufferlib/resources/drive/binaries/Town11/map_086.bin new file mode 100644 index 0000000000..3f79e685e5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_086.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_087.bin b/pufferlib/resources/drive/binaries/Town11/map_087.bin new file mode 100644 index 0000000000..582ab501c2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_087.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_088.bin b/pufferlib/resources/drive/binaries/Town11/map_088.bin new file mode 100644 index 0000000000..05ce8e0e83 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_088.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_089.bin b/pufferlib/resources/drive/binaries/Town11/map_089.bin new file mode 100644 index 0000000000..63400b42fa Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_089.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_090.bin b/pufferlib/resources/drive/binaries/Town11/map_090.bin new file mode 100644 index 0000000000..f8c86267c4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_090.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_091.bin b/pufferlib/resources/drive/binaries/Town11/map_091.bin new file mode 100644 index 0000000000..08e134763b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_091.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_092.bin b/pufferlib/resources/drive/binaries/Town11/map_092.bin new file mode 100644 index 0000000000..b552e88a80 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_092.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_093.bin b/pufferlib/resources/drive/binaries/Town11/map_093.bin new file mode 100644 index 0000000000..4d8e22cd7d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_093.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_094.bin b/pufferlib/resources/drive/binaries/Town11/map_094.bin new file mode 100644 index 0000000000..ca8bb90812 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_094.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_095.bin b/pufferlib/resources/drive/binaries/Town11/map_095.bin new file mode 100644 index 0000000000..07a8a616a2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_095.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_096.bin b/pufferlib/resources/drive/binaries/Town11/map_096.bin new file mode 100644 index 0000000000..83b4ec1817 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_096.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_097.bin b/pufferlib/resources/drive/binaries/Town11/map_097.bin new file mode 100644 index 0000000000..8d9a8c37fd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_097.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_098.bin b/pufferlib/resources/drive/binaries/Town11/map_098.bin new file mode 100644 index 0000000000..5d2fb84506 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_098.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_099.bin b/pufferlib/resources/drive/binaries/Town11/map_099.bin new file mode 100644 index 0000000000..58bef141c1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_099.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_100.bin b/pufferlib/resources/drive/binaries/Town11/map_100.bin new file mode 100644 index 0000000000..78de9df14c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_100.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_101.bin b/pufferlib/resources/drive/binaries/Town11/map_101.bin new file mode 100644 index 0000000000..321baeafbf Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_101.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_102.bin b/pufferlib/resources/drive/binaries/Town11/map_102.bin new file mode 100644 index 0000000000..7c791e06a6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_102.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_103.bin b/pufferlib/resources/drive/binaries/Town11/map_103.bin new file mode 100644 index 0000000000..c7b16dd639 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_103.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_104.bin b/pufferlib/resources/drive/binaries/Town11/map_104.bin new file mode 100644 index 0000000000..23a45c8b2b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_104.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_105.bin b/pufferlib/resources/drive/binaries/Town11/map_105.bin new file mode 100644 index 0000000000..0ae50983b0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_105.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_106.bin b/pufferlib/resources/drive/binaries/Town11/map_106.bin new file mode 100644 index 0000000000..c6f652ddfd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_106.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_107.bin b/pufferlib/resources/drive/binaries/Town11/map_107.bin new file mode 100644 index 0000000000..ed73208a0f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_107.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_108.bin b/pufferlib/resources/drive/binaries/Town11/map_108.bin new file mode 100644 index 0000000000..991699907a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_108.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_109.bin b/pufferlib/resources/drive/binaries/Town11/map_109.bin new file mode 100644 index 0000000000..acde085821 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_109.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_110.bin b/pufferlib/resources/drive/binaries/Town11/map_110.bin new file mode 100644 index 0000000000..a2b67567ac Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_110.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_111.bin b/pufferlib/resources/drive/binaries/Town11/map_111.bin new file mode 100644 index 0000000000..2d9c38e3b3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_111.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_112.bin b/pufferlib/resources/drive/binaries/Town11/map_112.bin new file mode 100644 index 0000000000..82300fa334 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_112.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_113.bin b/pufferlib/resources/drive/binaries/Town11/map_113.bin new file mode 100644 index 0000000000..d9d813da26 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_113.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_114.bin b/pufferlib/resources/drive/binaries/Town11/map_114.bin new file mode 100644 index 0000000000..638220528c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_114.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_115.bin b/pufferlib/resources/drive/binaries/Town11/map_115.bin new file mode 100644 index 0000000000..00364fcb80 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_115.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_116.bin b/pufferlib/resources/drive/binaries/Town11/map_116.bin new file mode 100644 index 0000000000..f7909ea4bd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_116.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_117.bin b/pufferlib/resources/drive/binaries/Town11/map_117.bin new file mode 100644 index 0000000000..d82e4e1886 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_117.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_118.bin b/pufferlib/resources/drive/binaries/Town11/map_118.bin new file mode 100644 index 0000000000..ff139a1c08 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_118.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_119.bin b/pufferlib/resources/drive/binaries/Town11/map_119.bin new file mode 100644 index 0000000000..f1b6c2eb29 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_119.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_120.bin b/pufferlib/resources/drive/binaries/Town11/map_120.bin new file mode 100644 index 0000000000..22b36ae7fe Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_120.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_121.bin b/pufferlib/resources/drive/binaries/Town11/map_121.bin new file mode 100644 index 0000000000..93945b89ea Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_121.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_122.bin b/pufferlib/resources/drive/binaries/Town11/map_122.bin new file mode 100644 index 0000000000..c97fc1cbed Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_122.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_123.bin b/pufferlib/resources/drive/binaries/Town11/map_123.bin new file mode 100644 index 0000000000..5d41f9ea2e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_123.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_124.bin b/pufferlib/resources/drive/binaries/Town11/map_124.bin new file mode 100644 index 0000000000..c1914b5500 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_124.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_125.bin b/pufferlib/resources/drive/binaries/Town11/map_125.bin new file mode 100644 index 0000000000..654939175a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_125.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_126.bin b/pufferlib/resources/drive/binaries/Town11/map_126.bin new file mode 100644 index 0000000000..47ebda0fe9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_126.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_127.bin b/pufferlib/resources/drive/binaries/Town11/map_127.bin new file mode 100644 index 0000000000..66428d0aaa Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_127.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_128.bin b/pufferlib/resources/drive/binaries/Town11/map_128.bin new file mode 100644 index 0000000000..df1fee8c47 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_128.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_129.bin b/pufferlib/resources/drive/binaries/Town11/map_129.bin new file mode 100644 index 0000000000..08ad887b10 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_129.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_130.bin b/pufferlib/resources/drive/binaries/Town11/map_130.bin new file mode 100644 index 0000000000..4d54e5ba9d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_130.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_131.bin b/pufferlib/resources/drive/binaries/Town11/map_131.bin new file mode 100644 index 0000000000..abec9cc94d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_131.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_132.bin b/pufferlib/resources/drive/binaries/Town11/map_132.bin new file mode 100644 index 0000000000..42ab8d3f9c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_132.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_133.bin b/pufferlib/resources/drive/binaries/Town11/map_133.bin new file mode 100644 index 0000000000..9db470e45f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_133.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_134.bin b/pufferlib/resources/drive/binaries/Town11/map_134.bin new file mode 100644 index 0000000000..5e0d860fe2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_134.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_135.bin b/pufferlib/resources/drive/binaries/Town11/map_135.bin new file mode 100644 index 0000000000..25e6ede0f7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_135.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_136.bin b/pufferlib/resources/drive/binaries/Town11/map_136.bin new file mode 100644 index 0000000000..8e23c6248d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_136.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_137.bin b/pufferlib/resources/drive/binaries/Town11/map_137.bin new file mode 100644 index 0000000000..2e1d279e0e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_137.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_138.bin b/pufferlib/resources/drive/binaries/Town11/map_138.bin new file mode 100644 index 0000000000..ddf8845c51 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_138.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_139.bin b/pufferlib/resources/drive/binaries/Town11/map_139.bin new file mode 100644 index 0000000000..d4bc6aa695 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_139.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_140.bin b/pufferlib/resources/drive/binaries/Town11/map_140.bin new file mode 100644 index 0000000000..98cb789bf6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_140.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_141.bin b/pufferlib/resources/drive/binaries/Town11/map_141.bin new file mode 100644 index 0000000000..4098d8a7fa Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_141.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_142.bin b/pufferlib/resources/drive/binaries/Town11/map_142.bin new file mode 100644 index 0000000000..be6dd5963f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_142.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_143.bin b/pufferlib/resources/drive/binaries/Town11/map_143.bin new file mode 100644 index 0000000000..c8112fd436 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_143.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_144.bin b/pufferlib/resources/drive/binaries/Town11/map_144.bin new file mode 100644 index 0000000000..6ff20624ea Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_144.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_145.bin b/pufferlib/resources/drive/binaries/Town11/map_145.bin new file mode 100644 index 0000000000..af665816e7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_145.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_146.bin b/pufferlib/resources/drive/binaries/Town11/map_146.bin new file mode 100644 index 0000000000..281be6ef10 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_146.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_147.bin b/pufferlib/resources/drive/binaries/Town11/map_147.bin new file mode 100644 index 0000000000..123b2f4ddf Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_147.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_148.bin b/pufferlib/resources/drive/binaries/Town11/map_148.bin new file mode 100644 index 0000000000..9795c02f8c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_148.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_149.bin b/pufferlib/resources/drive/binaries/Town11/map_149.bin new file mode 100644 index 0000000000..da21539a2e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_149.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_150.bin b/pufferlib/resources/drive/binaries/Town11/map_150.bin new file mode 100644 index 0000000000..dfaad51af2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_150.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_151.bin b/pufferlib/resources/drive/binaries/Town11/map_151.bin new file mode 100644 index 0000000000..c17acf9310 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_151.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_152.bin b/pufferlib/resources/drive/binaries/Town11/map_152.bin new file mode 100644 index 0000000000..f3d79904ae Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_152.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_153.bin b/pufferlib/resources/drive/binaries/Town11/map_153.bin new file mode 100644 index 0000000000..79bc75beef Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_153.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_154.bin b/pufferlib/resources/drive/binaries/Town11/map_154.bin new file mode 100644 index 0000000000..42e88296d2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_154.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_155.bin b/pufferlib/resources/drive/binaries/Town11/map_155.bin new file mode 100644 index 0000000000..baa774c23d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_155.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_156.bin b/pufferlib/resources/drive/binaries/Town11/map_156.bin new file mode 100644 index 0000000000..ee710fd5f7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_156.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_157.bin b/pufferlib/resources/drive/binaries/Town11/map_157.bin new file mode 100644 index 0000000000..96ab5d636c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_157.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_158.bin b/pufferlib/resources/drive/binaries/Town11/map_158.bin new file mode 100644 index 0000000000..ea2c19f740 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_158.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_159.bin b/pufferlib/resources/drive/binaries/Town11/map_159.bin new file mode 100644 index 0000000000..e95fdaff74 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_159.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_160.bin b/pufferlib/resources/drive/binaries/Town11/map_160.bin new file mode 100644 index 0000000000..7bfe21c399 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_160.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_161.bin b/pufferlib/resources/drive/binaries/Town11/map_161.bin new file mode 100644 index 0000000000..a61e1b4194 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_161.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_162.bin b/pufferlib/resources/drive/binaries/Town11/map_162.bin new file mode 100644 index 0000000000..90e60bafa7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_162.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_163.bin b/pufferlib/resources/drive/binaries/Town11/map_163.bin new file mode 100644 index 0000000000..08808cc22c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_163.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_164.bin b/pufferlib/resources/drive/binaries/Town11/map_164.bin new file mode 100644 index 0000000000..94fc2e6a33 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_164.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_165.bin b/pufferlib/resources/drive/binaries/Town11/map_165.bin new file mode 100644 index 0000000000..f173587352 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_165.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_166.bin b/pufferlib/resources/drive/binaries/Town11/map_166.bin new file mode 100644 index 0000000000..dc37c003a1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_166.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_167.bin b/pufferlib/resources/drive/binaries/Town11/map_167.bin new file mode 100644 index 0000000000..feffcc03ca Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_167.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_168.bin b/pufferlib/resources/drive/binaries/Town11/map_168.bin new file mode 100644 index 0000000000..9bdd44d184 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_168.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_169.bin b/pufferlib/resources/drive/binaries/Town11/map_169.bin new file mode 100644 index 0000000000..ab9c864353 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_169.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_170.bin b/pufferlib/resources/drive/binaries/Town11/map_170.bin new file mode 100644 index 0000000000..4688723861 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_170.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_171.bin b/pufferlib/resources/drive/binaries/Town11/map_171.bin new file mode 100644 index 0000000000..da3e80cd0c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_171.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_172.bin b/pufferlib/resources/drive/binaries/Town11/map_172.bin new file mode 100644 index 0000000000..491a8d8034 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_172.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_173.bin b/pufferlib/resources/drive/binaries/Town11/map_173.bin new file mode 100644 index 0000000000..f637c4849e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_173.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_174.bin b/pufferlib/resources/drive/binaries/Town11/map_174.bin new file mode 100644 index 0000000000..54c1aff00c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_174.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_175.bin b/pufferlib/resources/drive/binaries/Town11/map_175.bin new file mode 100644 index 0000000000..2fdcb5c928 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_175.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_176.bin b/pufferlib/resources/drive/binaries/Town11/map_176.bin new file mode 100644 index 0000000000..b916342278 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_176.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_177.bin b/pufferlib/resources/drive/binaries/Town11/map_177.bin new file mode 100644 index 0000000000..8e0e621738 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_177.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_178.bin b/pufferlib/resources/drive/binaries/Town11/map_178.bin new file mode 100644 index 0000000000..cc446bd111 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_178.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_179.bin b/pufferlib/resources/drive/binaries/Town11/map_179.bin new file mode 100644 index 0000000000..3ee2f1696b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_179.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_180.bin b/pufferlib/resources/drive/binaries/Town11/map_180.bin new file mode 100644 index 0000000000..54b48bd9dd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_180.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_181.bin b/pufferlib/resources/drive/binaries/Town11/map_181.bin new file mode 100644 index 0000000000..a5d08a89a7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_181.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_182.bin b/pufferlib/resources/drive/binaries/Town11/map_182.bin new file mode 100644 index 0000000000..a60354630f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_182.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_183.bin b/pufferlib/resources/drive/binaries/Town11/map_183.bin new file mode 100644 index 0000000000..20c58e4605 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_183.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_184.bin b/pufferlib/resources/drive/binaries/Town11/map_184.bin new file mode 100644 index 0000000000..d8ab76b078 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_184.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_185.bin b/pufferlib/resources/drive/binaries/Town11/map_185.bin new file mode 100644 index 0000000000..aa89f8188a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_185.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_186.bin b/pufferlib/resources/drive/binaries/Town11/map_186.bin new file mode 100644 index 0000000000..115a624537 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_186.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_187.bin b/pufferlib/resources/drive/binaries/Town11/map_187.bin new file mode 100644 index 0000000000..848813a829 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_187.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_188.bin b/pufferlib/resources/drive/binaries/Town11/map_188.bin new file mode 100644 index 0000000000..023462161a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_188.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_189.bin b/pufferlib/resources/drive/binaries/Town11/map_189.bin new file mode 100644 index 0000000000..25ff707e85 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_189.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_190.bin b/pufferlib/resources/drive/binaries/Town11/map_190.bin new file mode 100644 index 0000000000..56c888cbed Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_190.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_191.bin b/pufferlib/resources/drive/binaries/Town11/map_191.bin new file mode 100644 index 0000000000..5cfadadd6b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_191.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_192.bin b/pufferlib/resources/drive/binaries/Town11/map_192.bin new file mode 100644 index 0000000000..5211293456 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_192.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_193.bin b/pufferlib/resources/drive/binaries/Town11/map_193.bin new file mode 100644 index 0000000000..f1ce219f90 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_193.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_194.bin b/pufferlib/resources/drive/binaries/Town11/map_194.bin new file mode 100644 index 0000000000..f62bb2eb5d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_194.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_195.bin b/pufferlib/resources/drive/binaries/Town11/map_195.bin new file mode 100644 index 0000000000..8f55702bcc Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_195.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_196.bin b/pufferlib/resources/drive/binaries/Town11/map_196.bin new file mode 100644 index 0000000000..ddacb5770e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_196.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_197.bin b/pufferlib/resources/drive/binaries/Town11/map_197.bin new file mode 100644 index 0000000000..f007647a82 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_197.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_198.bin b/pufferlib/resources/drive/binaries/Town11/map_198.bin new file mode 100644 index 0000000000..227a933eae Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_198.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_199.bin b/pufferlib/resources/drive/binaries/Town11/map_199.bin new file mode 100644 index 0000000000..0782464b1e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_199.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_200.bin b/pufferlib/resources/drive/binaries/Town11/map_200.bin new file mode 100644 index 0000000000..628f24f260 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_200.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_201.bin b/pufferlib/resources/drive/binaries/Town11/map_201.bin new file mode 100644 index 0000000000..00b3ac9240 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_201.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_202.bin b/pufferlib/resources/drive/binaries/Town11/map_202.bin new file mode 100644 index 0000000000..4baab6eda2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_202.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_203.bin b/pufferlib/resources/drive/binaries/Town11/map_203.bin new file mode 100644 index 0000000000..541a674d51 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_203.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_204.bin b/pufferlib/resources/drive/binaries/Town11/map_204.bin new file mode 100644 index 0000000000..8fcb2a9683 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_204.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_205.bin b/pufferlib/resources/drive/binaries/Town11/map_205.bin new file mode 100644 index 0000000000..f1e3dea4f8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_205.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_206.bin b/pufferlib/resources/drive/binaries/Town11/map_206.bin new file mode 100644 index 0000000000..41ee629000 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_206.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_207.bin b/pufferlib/resources/drive/binaries/Town11/map_207.bin new file mode 100644 index 0000000000..360ed96a1d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_207.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_208.bin b/pufferlib/resources/drive/binaries/Town11/map_208.bin new file mode 100644 index 0000000000..fc2cce1e30 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_208.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_209.bin b/pufferlib/resources/drive/binaries/Town11/map_209.bin new file mode 100644 index 0000000000..6e1269569f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_209.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_210.bin b/pufferlib/resources/drive/binaries/Town11/map_210.bin new file mode 100644 index 0000000000..7373d0bb65 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_210.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_211.bin b/pufferlib/resources/drive/binaries/Town11/map_211.bin new file mode 100644 index 0000000000..af65754ee5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_211.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_212.bin b/pufferlib/resources/drive/binaries/Town11/map_212.bin new file mode 100644 index 0000000000..778c299b3e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_212.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_213.bin b/pufferlib/resources/drive/binaries/Town11/map_213.bin new file mode 100644 index 0000000000..ba65714432 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_213.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_214.bin b/pufferlib/resources/drive/binaries/Town11/map_214.bin new file mode 100644 index 0000000000..85c9b308b4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_214.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_215.bin b/pufferlib/resources/drive/binaries/Town11/map_215.bin new file mode 100644 index 0000000000..e339ffdde3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_215.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_216.bin b/pufferlib/resources/drive/binaries/Town11/map_216.bin new file mode 100644 index 0000000000..ba27c7e314 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_216.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_217.bin b/pufferlib/resources/drive/binaries/Town11/map_217.bin new file mode 100644 index 0000000000..33c0d18bbb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_217.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_218.bin b/pufferlib/resources/drive/binaries/Town11/map_218.bin new file mode 100644 index 0000000000..a150901eb3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_218.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_219.bin b/pufferlib/resources/drive/binaries/Town11/map_219.bin new file mode 100644 index 0000000000..443680acb6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_219.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_220.bin b/pufferlib/resources/drive/binaries/Town11/map_220.bin new file mode 100644 index 0000000000..0a31a99847 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_220.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_221.bin b/pufferlib/resources/drive/binaries/Town11/map_221.bin new file mode 100644 index 0000000000..f1f6c4099b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_221.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_222.bin b/pufferlib/resources/drive/binaries/Town11/map_222.bin new file mode 100644 index 0000000000..5dc330d585 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_222.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_223.bin b/pufferlib/resources/drive/binaries/Town11/map_223.bin new file mode 100644 index 0000000000..0b2f83ce74 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_223.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_224.bin b/pufferlib/resources/drive/binaries/Town11/map_224.bin new file mode 100644 index 0000000000..397ddc885a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_224.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_225.bin b/pufferlib/resources/drive/binaries/Town11/map_225.bin new file mode 100644 index 0000000000..239e27019b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_225.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_226.bin b/pufferlib/resources/drive/binaries/Town11/map_226.bin new file mode 100644 index 0000000000..4622849e98 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_226.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_227.bin b/pufferlib/resources/drive/binaries/Town11/map_227.bin new file mode 100644 index 0000000000..f52449b154 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_227.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_228.bin b/pufferlib/resources/drive/binaries/Town11/map_228.bin new file mode 100644 index 0000000000..43cd476bb3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_228.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_229.bin b/pufferlib/resources/drive/binaries/Town11/map_229.bin new file mode 100644 index 0000000000..5ec2fcd1ae Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_229.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_230.bin b/pufferlib/resources/drive/binaries/Town11/map_230.bin new file mode 100644 index 0000000000..4d8c6756b9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_230.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_231.bin b/pufferlib/resources/drive/binaries/Town11/map_231.bin new file mode 100644 index 0000000000..ddcd69ffb2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_231.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_232.bin b/pufferlib/resources/drive/binaries/Town11/map_232.bin new file mode 100644 index 0000000000..dec6b4dfb7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_232.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_233.bin b/pufferlib/resources/drive/binaries/Town11/map_233.bin new file mode 100644 index 0000000000..888ce2e572 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_233.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_234.bin b/pufferlib/resources/drive/binaries/Town11/map_234.bin new file mode 100644 index 0000000000..b326d3d91b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_234.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_235.bin b/pufferlib/resources/drive/binaries/Town11/map_235.bin new file mode 100644 index 0000000000..34787c976c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_235.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_236.bin b/pufferlib/resources/drive/binaries/Town11/map_236.bin new file mode 100644 index 0000000000..22c26cf6d3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_236.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_237.bin b/pufferlib/resources/drive/binaries/Town11/map_237.bin new file mode 100644 index 0000000000..5bbf247e45 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_237.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_238.bin b/pufferlib/resources/drive/binaries/Town11/map_238.bin new file mode 100644 index 0000000000..993395b4e7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_238.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_239.bin b/pufferlib/resources/drive/binaries/Town11/map_239.bin new file mode 100644 index 0000000000..c289300f3a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_239.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_240.bin b/pufferlib/resources/drive/binaries/Town11/map_240.bin new file mode 100644 index 0000000000..950d97a8bd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_240.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_241.bin b/pufferlib/resources/drive/binaries/Town11/map_241.bin new file mode 100644 index 0000000000..8df26fb71d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_241.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_242.bin b/pufferlib/resources/drive/binaries/Town11/map_242.bin new file mode 100644 index 0000000000..bf132adf52 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_242.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_243.bin b/pufferlib/resources/drive/binaries/Town11/map_243.bin new file mode 100644 index 0000000000..33050f5905 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_243.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_244.bin b/pufferlib/resources/drive/binaries/Town11/map_244.bin new file mode 100644 index 0000000000..e89d237539 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_244.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_245.bin b/pufferlib/resources/drive/binaries/Town11/map_245.bin new file mode 100644 index 0000000000..037ea6204b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_245.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_246.bin b/pufferlib/resources/drive/binaries/Town11/map_246.bin new file mode 100644 index 0000000000..fbaee412b6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_246.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_247.bin b/pufferlib/resources/drive/binaries/Town11/map_247.bin new file mode 100644 index 0000000000..1692746c73 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_247.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_248.bin b/pufferlib/resources/drive/binaries/Town11/map_248.bin new file mode 100644 index 0000000000..c041ae3e25 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_248.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_249.bin b/pufferlib/resources/drive/binaries/Town11/map_249.bin new file mode 100644 index 0000000000..3592e4fcc7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_249.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_250.bin b/pufferlib/resources/drive/binaries/Town11/map_250.bin new file mode 100644 index 0000000000..3a12482f46 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_250.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_251.bin b/pufferlib/resources/drive/binaries/Town11/map_251.bin new file mode 100644 index 0000000000..84fe2213cb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_251.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_252.bin b/pufferlib/resources/drive/binaries/Town11/map_252.bin new file mode 100644 index 0000000000..1a28a71cef Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_252.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_253.bin b/pufferlib/resources/drive/binaries/Town11/map_253.bin new file mode 100644 index 0000000000..557658462b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_253.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_254.bin b/pufferlib/resources/drive/binaries/Town11/map_254.bin new file mode 100644 index 0000000000..631e1aac05 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_254.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_255.bin b/pufferlib/resources/drive/binaries/Town11/map_255.bin new file mode 100644 index 0000000000..a0c4859791 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_255.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_256.bin b/pufferlib/resources/drive/binaries/Town11/map_256.bin new file mode 100644 index 0000000000..eea6e1866c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_256.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_257.bin b/pufferlib/resources/drive/binaries/Town11/map_257.bin new file mode 100644 index 0000000000..2d47ac2245 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_257.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_258.bin b/pufferlib/resources/drive/binaries/Town11/map_258.bin new file mode 100644 index 0000000000..b9f58898f3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_258.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_259.bin b/pufferlib/resources/drive/binaries/Town11/map_259.bin new file mode 100644 index 0000000000..3254e1506e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_259.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_260.bin b/pufferlib/resources/drive/binaries/Town11/map_260.bin new file mode 100644 index 0000000000..ed10106e45 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_260.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_261.bin b/pufferlib/resources/drive/binaries/Town11/map_261.bin new file mode 100644 index 0000000000..e91f087723 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_261.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_262.bin b/pufferlib/resources/drive/binaries/Town11/map_262.bin new file mode 100644 index 0000000000..3cef56e898 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_262.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_263.bin b/pufferlib/resources/drive/binaries/Town11/map_263.bin new file mode 100644 index 0000000000..2f0532daab Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_263.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_264.bin b/pufferlib/resources/drive/binaries/Town11/map_264.bin new file mode 100644 index 0000000000..6b27452f0c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_264.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_265.bin b/pufferlib/resources/drive/binaries/Town11/map_265.bin new file mode 100644 index 0000000000..00de664b4b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_265.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_266.bin b/pufferlib/resources/drive/binaries/Town11/map_266.bin new file mode 100644 index 0000000000..92cc02c8ff Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_266.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_267.bin b/pufferlib/resources/drive/binaries/Town11/map_267.bin new file mode 100644 index 0000000000..46e8f9e585 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_267.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_268.bin b/pufferlib/resources/drive/binaries/Town11/map_268.bin new file mode 100644 index 0000000000..4615481785 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_268.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_269.bin b/pufferlib/resources/drive/binaries/Town11/map_269.bin new file mode 100644 index 0000000000..c8453aba52 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_269.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_270.bin b/pufferlib/resources/drive/binaries/Town11/map_270.bin new file mode 100644 index 0000000000..81d0369225 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_270.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_271.bin b/pufferlib/resources/drive/binaries/Town11/map_271.bin new file mode 100644 index 0000000000..cfa3ae5f66 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_271.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_272.bin b/pufferlib/resources/drive/binaries/Town11/map_272.bin new file mode 100644 index 0000000000..86893224fb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_272.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_273.bin b/pufferlib/resources/drive/binaries/Town11/map_273.bin new file mode 100644 index 0000000000..90f33517d8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_273.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_274.bin b/pufferlib/resources/drive/binaries/Town11/map_274.bin new file mode 100644 index 0000000000..fe516f0d8d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_274.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_275.bin b/pufferlib/resources/drive/binaries/Town11/map_275.bin new file mode 100644 index 0000000000..7b64eb9a41 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_275.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_276.bin b/pufferlib/resources/drive/binaries/Town11/map_276.bin new file mode 100644 index 0000000000..0f29301c23 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_276.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_277.bin b/pufferlib/resources/drive/binaries/Town11/map_277.bin new file mode 100644 index 0000000000..f5ec0192f0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_277.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_278.bin b/pufferlib/resources/drive/binaries/Town11/map_278.bin new file mode 100644 index 0000000000..776db2af9b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_278.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_279.bin b/pufferlib/resources/drive/binaries/Town11/map_279.bin new file mode 100644 index 0000000000..e9854b8136 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_279.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_280.bin b/pufferlib/resources/drive/binaries/Town11/map_280.bin new file mode 100644 index 0000000000..99378f6089 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_280.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_281.bin b/pufferlib/resources/drive/binaries/Town11/map_281.bin new file mode 100644 index 0000000000..48b880280a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_281.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_282.bin b/pufferlib/resources/drive/binaries/Town11/map_282.bin new file mode 100644 index 0000000000..93ca7f21e1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_282.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_283.bin b/pufferlib/resources/drive/binaries/Town11/map_283.bin new file mode 100644 index 0000000000..54180c1e54 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_283.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_284.bin b/pufferlib/resources/drive/binaries/Town11/map_284.bin new file mode 100644 index 0000000000..07987cc93f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_284.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_285.bin b/pufferlib/resources/drive/binaries/Town11/map_285.bin new file mode 100644 index 0000000000..8d709a83af Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_285.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_286.bin b/pufferlib/resources/drive/binaries/Town11/map_286.bin new file mode 100644 index 0000000000..93d72f8c68 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_286.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_287.bin b/pufferlib/resources/drive/binaries/Town11/map_287.bin new file mode 100644 index 0000000000..e86e8c17d5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_287.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_288.bin b/pufferlib/resources/drive/binaries/Town11/map_288.bin new file mode 100644 index 0000000000..344d3da66e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_288.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_289.bin b/pufferlib/resources/drive/binaries/Town11/map_289.bin new file mode 100644 index 0000000000..bf53b73809 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_289.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_290.bin b/pufferlib/resources/drive/binaries/Town11/map_290.bin new file mode 100644 index 0000000000..aa1ce6dd9a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_290.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_291.bin b/pufferlib/resources/drive/binaries/Town11/map_291.bin new file mode 100644 index 0000000000..b35bc9ef0e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_291.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_292.bin b/pufferlib/resources/drive/binaries/Town11/map_292.bin new file mode 100644 index 0000000000..93872c0bcb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_292.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_293.bin b/pufferlib/resources/drive/binaries/Town11/map_293.bin new file mode 100644 index 0000000000..20b80d7372 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_293.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_294.bin b/pufferlib/resources/drive/binaries/Town11/map_294.bin new file mode 100644 index 0000000000..d004081ef0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_294.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_295.bin b/pufferlib/resources/drive/binaries/Town11/map_295.bin new file mode 100644 index 0000000000..77a8261f1d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_295.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_296.bin b/pufferlib/resources/drive/binaries/Town11/map_296.bin new file mode 100644 index 0000000000..233538c751 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_296.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_297.bin b/pufferlib/resources/drive/binaries/Town11/map_297.bin new file mode 100644 index 0000000000..ba00f3baa6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_297.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_298.bin b/pufferlib/resources/drive/binaries/Town11/map_298.bin new file mode 100644 index 0000000000..355bdce98c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_298.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_299.bin b/pufferlib/resources/drive/binaries/Town11/map_299.bin new file mode 100644 index 0000000000..0207b69721 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_299.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_300.bin b/pufferlib/resources/drive/binaries/Town11/map_300.bin new file mode 100644 index 0000000000..a8e411a9bd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_300.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_301.bin b/pufferlib/resources/drive/binaries/Town11/map_301.bin new file mode 100644 index 0000000000..3559d54995 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_301.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_302.bin b/pufferlib/resources/drive/binaries/Town11/map_302.bin new file mode 100644 index 0000000000..9e5ea18e23 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_302.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_303.bin b/pufferlib/resources/drive/binaries/Town11/map_303.bin new file mode 100644 index 0000000000..2c0f7bf461 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_303.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_304.bin b/pufferlib/resources/drive/binaries/Town11/map_304.bin new file mode 100644 index 0000000000..cb176882ff Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_304.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_305.bin b/pufferlib/resources/drive/binaries/Town11/map_305.bin new file mode 100644 index 0000000000..04dc0ec386 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_305.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_306.bin b/pufferlib/resources/drive/binaries/Town11/map_306.bin new file mode 100644 index 0000000000..a6aa6bef02 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_306.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_307.bin b/pufferlib/resources/drive/binaries/Town11/map_307.bin new file mode 100644 index 0000000000..f0d005331c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_307.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_308.bin b/pufferlib/resources/drive/binaries/Town11/map_308.bin new file mode 100644 index 0000000000..93c7518f05 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_308.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_309.bin b/pufferlib/resources/drive/binaries/Town11/map_309.bin new file mode 100644 index 0000000000..e887fd9ef3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_309.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_310.bin b/pufferlib/resources/drive/binaries/Town11/map_310.bin new file mode 100644 index 0000000000..ad85de4c2b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_310.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_311.bin b/pufferlib/resources/drive/binaries/Town11/map_311.bin new file mode 100644 index 0000000000..a3d27db1ef Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_311.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_312.bin b/pufferlib/resources/drive/binaries/Town11/map_312.bin new file mode 100644 index 0000000000..4b2474b84c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_312.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_313.bin b/pufferlib/resources/drive/binaries/Town11/map_313.bin new file mode 100644 index 0000000000..b002233e66 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_313.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_314.bin b/pufferlib/resources/drive/binaries/Town11/map_314.bin new file mode 100644 index 0000000000..b4aababe22 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_314.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_315.bin b/pufferlib/resources/drive/binaries/Town11/map_315.bin new file mode 100644 index 0000000000..c44970a10f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_315.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_316.bin b/pufferlib/resources/drive/binaries/Town11/map_316.bin new file mode 100644 index 0000000000..83052c6154 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_316.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_317.bin b/pufferlib/resources/drive/binaries/Town11/map_317.bin new file mode 100644 index 0000000000..0a65e3efd0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_317.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_318.bin b/pufferlib/resources/drive/binaries/Town11/map_318.bin new file mode 100644 index 0000000000..bf80c13613 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_318.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_319.bin b/pufferlib/resources/drive/binaries/Town11/map_319.bin new file mode 100644 index 0000000000..75cb604d2c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_319.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_320.bin b/pufferlib/resources/drive/binaries/Town11/map_320.bin new file mode 100644 index 0000000000..834be0aa59 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_320.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_321.bin b/pufferlib/resources/drive/binaries/Town11/map_321.bin new file mode 100644 index 0000000000..790d08e374 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_321.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_322.bin b/pufferlib/resources/drive/binaries/Town11/map_322.bin new file mode 100644 index 0000000000..3f2622251d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_322.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_323.bin b/pufferlib/resources/drive/binaries/Town11/map_323.bin new file mode 100644 index 0000000000..469dfb3575 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_323.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_324.bin b/pufferlib/resources/drive/binaries/Town11/map_324.bin new file mode 100644 index 0000000000..14d9d84eaa Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_324.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_325.bin b/pufferlib/resources/drive/binaries/Town11/map_325.bin new file mode 100644 index 0000000000..fbe5f9cb97 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_325.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_326.bin b/pufferlib/resources/drive/binaries/Town11/map_326.bin new file mode 100644 index 0000000000..5215d38914 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_326.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_327.bin b/pufferlib/resources/drive/binaries/Town11/map_327.bin new file mode 100644 index 0000000000..0d648b048e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_327.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_328.bin b/pufferlib/resources/drive/binaries/Town11/map_328.bin new file mode 100644 index 0000000000..9cc2803fce Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_328.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_329.bin b/pufferlib/resources/drive/binaries/Town11/map_329.bin new file mode 100644 index 0000000000..d94de04fc0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_329.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_330.bin b/pufferlib/resources/drive/binaries/Town11/map_330.bin new file mode 100644 index 0000000000..a642478600 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_330.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_331.bin b/pufferlib/resources/drive/binaries/Town11/map_331.bin new file mode 100644 index 0000000000..2cc69c76f1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_331.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_332.bin b/pufferlib/resources/drive/binaries/Town11/map_332.bin new file mode 100644 index 0000000000..7c08eea555 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_332.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_333.bin b/pufferlib/resources/drive/binaries/Town11/map_333.bin new file mode 100644 index 0000000000..ca47ba3274 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_333.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_334.bin b/pufferlib/resources/drive/binaries/Town11/map_334.bin new file mode 100644 index 0000000000..b5180864a2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_334.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_335.bin b/pufferlib/resources/drive/binaries/Town11/map_335.bin new file mode 100644 index 0000000000..aa9bfb1b50 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_335.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_336.bin b/pufferlib/resources/drive/binaries/Town11/map_336.bin new file mode 100644 index 0000000000..cfe0fd8e30 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_336.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_337.bin b/pufferlib/resources/drive/binaries/Town11/map_337.bin new file mode 100644 index 0000000000..bf882177ad Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_337.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_338.bin b/pufferlib/resources/drive/binaries/Town11/map_338.bin new file mode 100644 index 0000000000..d842de01b5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_338.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_339.bin b/pufferlib/resources/drive/binaries/Town11/map_339.bin new file mode 100644 index 0000000000..cf030e8deb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_339.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_340.bin b/pufferlib/resources/drive/binaries/Town11/map_340.bin new file mode 100644 index 0000000000..d82116fec5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_340.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_341.bin b/pufferlib/resources/drive/binaries/Town11/map_341.bin new file mode 100644 index 0000000000..c383843797 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_341.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_342.bin b/pufferlib/resources/drive/binaries/Town11/map_342.bin new file mode 100644 index 0000000000..b7a73853fb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_342.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_343.bin b/pufferlib/resources/drive/binaries/Town11/map_343.bin new file mode 100644 index 0000000000..736e244471 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_343.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_344.bin b/pufferlib/resources/drive/binaries/Town11/map_344.bin new file mode 100644 index 0000000000..ed78471745 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_344.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_345.bin b/pufferlib/resources/drive/binaries/Town11/map_345.bin new file mode 100644 index 0000000000..12e5e6bd2b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_345.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_346.bin b/pufferlib/resources/drive/binaries/Town11/map_346.bin new file mode 100644 index 0000000000..92c40e66f8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_346.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_347.bin b/pufferlib/resources/drive/binaries/Town11/map_347.bin new file mode 100644 index 0000000000..82a2a2d6b4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_347.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_348.bin b/pufferlib/resources/drive/binaries/Town11/map_348.bin new file mode 100644 index 0000000000..ba5242951a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_348.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_349.bin b/pufferlib/resources/drive/binaries/Town11/map_349.bin new file mode 100644 index 0000000000..101d2284e8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_349.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_350.bin b/pufferlib/resources/drive/binaries/Town11/map_350.bin new file mode 100644 index 0000000000..354802c4fd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_350.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_351.bin b/pufferlib/resources/drive/binaries/Town11/map_351.bin new file mode 100644 index 0000000000..b274bb3e29 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_351.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_352.bin b/pufferlib/resources/drive/binaries/Town11/map_352.bin new file mode 100644 index 0000000000..58adaf0db5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_352.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_353.bin b/pufferlib/resources/drive/binaries/Town11/map_353.bin new file mode 100644 index 0000000000..21f9737ad0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_353.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_354.bin b/pufferlib/resources/drive/binaries/Town11/map_354.bin new file mode 100644 index 0000000000..19b9e3c6e3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_354.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_355.bin b/pufferlib/resources/drive/binaries/Town11/map_355.bin new file mode 100644 index 0000000000..8e23eb6051 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_355.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_356.bin b/pufferlib/resources/drive/binaries/Town11/map_356.bin new file mode 100644 index 0000000000..1069cc3008 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_356.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_357.bin b/pufferlib/resources/drive/binaries/Town11/map_357.bin new file mode 100644 index 0000000000..b97556be0d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_357.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_358.bin b/pufferlib/resources/drive/binaries/Town11/map_358.bin new file mode 100644 index 0000000000..b3283bf9ee Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_358.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_359.bin b/pufferlib/resources/drive/binaries/Town11/map_359.bin new file mode 100644 index 0000000000..1f6fdc3257 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_359.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_360.bin b/pufferlib/resources/drive/binaries/Town11/map_360.bin new file mode 100644 index 0000000000..5f486ffddb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_360.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_361.bin b/pufferlib/resources/drive/binaries/Town11/map_361.bin new file mode 100644 index 0000000000..596030afe5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_361.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_362.bin b/pufferlib/resources/drive/binaries/Town11/map_362.bin new file mode 100644 index 0000000000..be6c78589c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_362.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_363.bin b/pufferlib/resources/drive/binaries/Town11/map_363.bin new file mode 100644 index 0000000000..47e00ee77b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_363.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_364.bin b/pufferlib/resources/drive/binaries/Town11/map_364.bin new file mode 100644 index 0000000000..b0e43bb2bf Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_364.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_365.bin b/pufferlib/resources/drive/binaries/Town11/map_365.bin new file mode 100644 index 0000000000..b77e0beb52 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_365.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_366.bin b/pufferlib/resources/drive/binaries/Town11/map_366.bin new file mode 100644 index 0000000000..f4931aaac4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_366.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_367.bin b/pufferlib/resources/drive/binaries/Town11/map_367.bin new file mode 100644 index 0000000000..f9bcce5e69 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_367.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_368.bin b/pufferlib/resources/drive/binaries/Town11/map_368.bin new file mode 100644 index 0000000000..eb3d0b200a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_368.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_369.bin b/pufferlib/resources/drive/binaries/Town11/map_369.bin new file mode 100644 index 0000000000..cdb8149446 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_369.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_370.bin b/pufferlib/resources/drive/binaries/Town11/map_370.bin new file mode 100644 index 0000000000..e0ad1cd108 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_370.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_371.bin b/pufferlib/resources/drive/binaries/Town11/map_371.bin new file mode 100644 index 0000000000..ce7acf7987 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_371.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_372.bin b/pufferlib/resources/drive/binaries/Town11/map_372.bin new file mode 100644 index 0000000000..c957ba6a7b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_372.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_373.bin b/pufferlib/resources/drive/binaries/Town11/map_373.bin new file mode 100644 index 0000000000..2325e982ec Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_373.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_374.bin b/pufferlib/resources/drive/binaries/Town11/map_374.bin new file mode 100644 index 0000000000..b523676a26 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_374.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_375.bin b/pufferlib/resources/drive/binaries/Town11/map_375.bin new file mode 100644 index 0000000000..944ee27c1f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_375.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_376.bin b/pufferlib/resources/drive/binaries/Town11/map_376.bin new file mode 100644 index 0000000000..5f808ce1df Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_376.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_377.bin b/pufferlib/resources/drive/binaries/Town11/map_377.bin new file mode 100644 index 0000000000..51b2a98b86 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_377.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_378.bin b/pufferlib/resources/drive/binaries/Town11/map_378.bin new file mode 100644 index 0000000000..90a88e7af8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_378.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_379.bin b/pufferlib/resources/drive/binaries/Town11/map_379.bin new file mode 100644 index 0000000000..500cadb689 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_379.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_380.bin b/pufferlib/resources/drive/binaries/Town11/map_380.bin new file mode 100644 index 0000000000..5833bd7c91 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_380.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_381.bin b/pufferlib/resources/drive/binaries/Town11/map_381.bin new file mode 100644 index 0000000000..619039590c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_381.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_382.bin b/pufferlib/resources/drive/binaries/Town11/map_382.bin new file mode 100644 index 0000000000..db7eaabc86 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_382.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_383.bin b/pufferlib/resources/drive/binaries/Town11/map_383.bin new file mode 100644 index 0000000000..d0ddf3551c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_383.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_384.bin b/pufferlib/resources/drive/binaries/Town11/map_384.bin new file mode 100644 index 0000000000..b4c4b43732 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_384.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_385.bin b/pufferlib/resources/drive/binaries/Town11/map_385.bin new file mode 100644 index 0000000000..d319753e63 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_385.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_386.bin b/pufferlib/resources/drive/binaries/Town11/map_386.bin new file mode 100644 index 0000000000..4f5eb097d1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_386.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_387.bin b/pufferlib/resources/drive/binaries/Town11/map_387.bin new file mode 100644 index 0000000000..f2a0c4abf3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_387.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_388.bin b/pufferlib/resources/drive/binaries/Town11/map_388.bin new file mode 100644 index 0000000000..67a3114a16 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_388.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_389.bin b/pufferlib/resources/drive/binaries/Town11/map_389.bin new file mode 100644 index 0000000000..cc88ec214f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_389.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_390.bin b/pufferlib/resources/drive/binaries/Town11/map_390.bin new file mode 100644 index 0000000000..9a48311da9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_390.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_391.bin b/pufferlib/resources/drive/binaries/Town11/map_391.bin new file mode 100644 index 0000000000..0f0e9a7cd9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_391.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_392.bin b/pufferlib/resources/drive/binaries/Town11/map_392.bin new file mode 100644 index 0000000000..f224f195e6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_392.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_393.bin b/pufferlib/resources/drive/binaries/Town11/map_393.bin new file mode 100644 index 0000000000..a9198da652 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_393.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_394.bin b/pufferlib/resources/drive/binaries/Town11/map_394.bin new file mode 100644 index 0000000000..2b6c7b8d88 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_394.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_395.bin b/pufferlib/resources/drive/binaries/Town11/map_395.bin new file mode 100644 index 0000000000..61d9e0c907 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_395.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_396.bin b/pufferlib/resources/drive/binaries/Town11/map_396.bin new file mode 100644 index 0000000000..8da22da864 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_396.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_397.bin b/pufferlib/resources/drive/binaries/Town11/map_397.bin new file mode 100644 index 0000000000..5e4190b719 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_397.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_398.bin b/pufferlib/resources/drive/binaries/Town11/map_398.bin new file mode 100644 index 0000000000..8934c03de2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_398.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_399.bin b/pufferlib/resources/drive/binaries/Town11/map_399.bin new file mode 100644 index 0000000000..2bde63495f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_399.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_400.bin b/pufferlib/resources/drive/binaries/Town11/map_400.bin new file mode 100644 index 0000000000..fe9d50b3a1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_400.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_401.bin b/pufferlib/resources/drive/binaries/Town11/map_401.bin new file mode 100644 index 0000000000..059ed93a90 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_401.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_402.bin b/pufferlib/resources/drive/binaries/Town11/map_402.bin new file mode 100644 index 0000000000..e230d595d5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_402.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_403.bin b/pufferlib/resources/drive/binaries/Town11/map_403.bin new file mode 100644 index 0000000000..3527e1bc2c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_403.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_404.bin b/pufferlib/resources/drive/binaries/Town11/map_404.bin new file mode 100644 index 0000000000..6a99e38f48 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_404.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_405.bin b/pufferlib/resources/drive/binaries/Town11/map_405.bin new file mode 100644 index 0000000000..b2b43d0a31 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_405.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_406.bin b/pufferlib/resources/drive/binaries/Town11/map_406.bin new file mode 100644 index 0000000000..737ebca100 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_406.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_407.bin b/pufferlib/resources/drive/binaries/Town11/map_407.bin new file mode 100644 index 0000000000..83cac4f5a5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_407.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_408.bin b/pufferlib/resources/drive/binaries/Town11/map_408.bin new file mode 100644 index 0000000000..38553e9be6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_408.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_409.bin b/pufferlib/resources/drive/binaries/Town11/map_409.bin new file mode 100644 index 0000000000..12e381c5b3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_409.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_410.bin b/pufferlib/resources/drive/binaries/Town11/map_410.bin new file mode 100644 index 0000000000..4580eb8bd3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_410.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_411.bin b/pufferlib/resources/drive/binaries/Town11/map_411.bin new file mode 100644 index 0000000000..e7fbd8cbe4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_411.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_412.bin b/pufferlib/resources/drive/binaries/Town11/map_412.bin new file mode 100644 index 0000000000..11743fbe9d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_412.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_413.bin b/pufferlib/resources/drive/binaries/Town11/map_413.bin new file mode 100644 index 0000000000..3c779dc87b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_413.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_414.bin b/pufferlib/resources/drive/binaries/Town11/map_414.bin new file mode 100644 index 0000000000..a2b36968a6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_414.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_415.bin b/pufferlib/resources/drive/binaries/Town11/map_415.bin new file mode 100644 index 0000000000..a56db7bfe0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_415.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_416.bin b/pufferlib/resources/drive/binaries/Town11/map_416.bin new file mode 100644 index 0000000000..7874859bf5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_416.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_417.bin b/pufferlib/resources/drive/binaries/Town11/map_417.bin new file mode 100644 index 0000000000..0fa99d94cc Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_417.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_418.bin b/pufferlib/resources/drive/binaries/Town11/map_418.bin new file mode 100644 index 0000000000..2122e60bb3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_418.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_419.bin b/pufferlib/resources/drive/binaries/Town11/map_419.bin new file mode 100644 index 0000000000..74d1e67224 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_419.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_420.bin b/pufferlib/resources/drive/binaries/Town11/map_420.bin new file mode 100644 index 0000000000..549368cd27 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_420.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_421.bin b/pufferlib/resources/drive/binaries/Town11/map_421.bin new file mode 100644 index 0000000000..997248c97f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_421.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_422.bin b/pufferlib/resources/drive/binaries/Town11/map_422.bin new file mode 100644 index 0000000000..2a2f560cb5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_422.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_423.bin b/pufferlib/resources/drive/binaries/Town11/map_423.bin new file mode 100644 index 0000000000..51b5bef6ad Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_423.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_424.bin b/pufferlib/resources/drive/binaries/Town11/map_424.bin new file mode 100644 index 0000000000..dd70f1cc31 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_424.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_425.bin b/pufferlib/resources/drive/binaries/Town11/map_425.bin new file mode 100644 index 0000000000..101489314d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_425.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_426.bin b/pufferlib/resources/drive/binaries/Town11/map_426.bin new file mode 100644 index 0000000000..761b2d939e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_426.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_427.bin b/pufferlib/resources/drive/binaries/Town11/map_427.bin new file mode 100644 index 0000000000..a0664e0ba2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_427.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_428.bin b/pufferlib/resources/drive/binaries/Town11/map_428.bin new file mode 100644 index 0000000000..9b48a3607e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_428.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_429.bin b/pufferlib/resources/drive/binaries/Town11/map_429.bin new file mode 100644 index 0000000000..ca1987969b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_429.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_430.bin b/pufferlib/resources/drive/binaries/Town11/map_430.bin new file mode 100644 index 0000000000..d1c93a31ab Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_430.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_431.bin b/pufferlib/resources/drive/binaries/Town11/map_431.bin new file mode 100644 index 0000000000..884ac885c9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_431.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_432.bin b/pufferlib/resources/drive/binaries/Town11/map_432.bin new file mode 100644 index 0000000000..7c81c18524 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_432.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_433.bin b/pufferlib/resources/drive/binaries/Town11/map_433.bin new file mode 100644 index 0000000000..39590ebfca Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_433.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_434.bin b/pufferlib/resources/drive/binaries/Town11/map_434.bin new file mode 100644 index 0000000000..17d1f6f5cc Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_434.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_435.bin b/pufferlib/resources/drive/binaries/Town11/map_435.bin new file mode 100644 index 0000000000..38de17c9e3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_435.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_436.bin b/pufferlib/resources/drive/binaries/Town11/map_436.bin new file mode 100644 index 0000000000..e8e7971d7c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_436.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_437.bin b/pufferlib/resources/drive/binaries/Town11/map_437.bin new file mode 100644 index 0000000000..613a740927 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_437.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_438.bin b/pufferlib/resources/drive/binaries/Town11/map_438.bin new file mode 100644 index 0000000000..4d2d27af44 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_438.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_439.bin b/pufferlib/resources/drive/binaries/Town11/map_439.bin new file mode 100644 index 0000000000..a50be42a6d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_439.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_440.bin b/pufferlib/resources/drive/binaries/Town11/map_440.bin new file mode 100644 index 0000000000..a8dc3ef95b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_440.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_441.bin b/pufferlib/resources/drive/binaries/Town11/map_441.bin new file mode 100644 index 0000000000..c9cc13fe6e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_441.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_442.bin b/pufferlib/resources/drive/binaries/Town11/map_442.bin new file mode 100644 index 0000000000..99cdd80fba Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_442.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_443.bin b/pufferlib/resources/drive/binaries/Town11/map_443.bin new file mode 100644 index 0000000000..3e0f0e8a20 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_443.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_444.bin b/pufferlib/resources/drive/binaries/Town11/map_444.bin new file mode 100644 index 0000000000..80729ec37b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_444.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_445.bin b/pufferlib/resources/drive/binaries/Town11/map_445.bin new file mode 100644 index 0000000000..3923dbf954 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_445.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_446.bin b/pufferlib/resources/drive/binaries/Town11/map_446.bin new file mode 100644 index 0000000000..a21f9b1960 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_446.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_447.bin b/pufferlib/resources/drive/binaries/Town11/map_447.bin new file mode 100644 index 0000000000..f3c980c2ca Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_447.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_448.bin b/pufferlib/resources/drive/binaries/Town11/map_448.bin new file mode 100644 index 0000000000..5ddb242257 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_448.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_449.bin b/pufferlib/resources/drive/binaries/Town11/map_449.bin new file mode 100644 index 0000000000..669e5ddb6f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_449.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_450.bin b/pufferlib/resources/drive/binaries/Town11/map_450.bin new file mode 100644 index 0000000000..50f70056c3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_450.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_451.bin b/pufferlib/resources/drive/binaries/Town11/map_451.bin new file mode 100644 index 0000000000..4f682aea67 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_451.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_452.bin b/pufferlib/resources/drive/binaries/Town11/map_452.bin new file mode 100644 index 0000000000..9adaf2f556 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_452.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_453.bin b/pufferlib/resources/drive/binaries/Town11/map_453.bin new file mode 100644 index 0000000000..01d56efbfc Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_453.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_454.bin b/pufferlib/resources/drive/binaries/Town11/map_454.bin new file mode 100644 index 0000000000..99154963a3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_454.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_455.bin b/pufferlib/resources/drive/binaries/Town11/map_455.bin new file mode 100644 index 0000000000..c4192c9c27 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_455.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_456.bin b/pufferlib/resources/drive/binaries/Town11/map_456.bin new file mode 100644 index 0000000000..c96820627b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_456.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_457.bin b/pufferlib/resources/drive/binaries/Town11/map_457.bin new file mode 100644 index 0000000000..35781edb33 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_457.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_458.bin b/pufferlib/resources/drive/binaries/Town11/map_458.bin new file mode 100644 index 0000000000..bfc7f3a0ba Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_458.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_459.bin b/pufferlib/resources/drive/binaries/Town11/map_459.bin new file mode 100644 index 0000000000..fe1d4e8840 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_459.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_460.bin b/pufferlib/resources/drive/binaries/Town11/map_460.bin new file mode 100644 index 0000000000..6989bc0bfb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_460.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_461.bin b/pufferlib/resources/drive/binaries/Town11/map_461.bin new file mode 100644 index 0000000000..84f5dcebd3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_461.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_462.bin b/pufferlib/resources/drive/binaries/Town11/map_462.bin new file mode 100644 index 0000000000..f034914794 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_462.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_463.bin b/pufferlib/resources/drive/binaries/Town11/map_463.bin new file mode 100644 index 0000000000..0d300aa30b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_463.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_464.bin b/pufferlib/resources/drive/binaries/Town11/map_464.bin new file mode 100644 index 0000000000..217ab210eb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_464.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_465.bin b/pufferlib/resources/drive/binaries/Town11/map_465.bin new file mode 100644 index 0000000000..b2a6ee7bc3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_465.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_466.bin b/pufferlib/resources/drive/binaries/Town11/map_466.bin new file mode 100644 index 0000000000..d7965b9c79 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_466.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_467.bin b/pufferlib/resources/drive/binaries/Town11/map_467.bin new file mode 100644 index 0000000000..81de7fab88 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_467.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_468.bin b/pufferlib/resources/drive/binaries/Town11/map_468.bin new file mode 100644 index 0000000000..9df184ad9e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_468.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_469.bin b/pufferlib/resources/drive/binaries/Town11/map_469.bin new file mode 100644 index 0000000000..f13baf377f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_469.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_470.bin b/pufferlib/resources/drive/binaries/Town11/map_470.bin new file mode 100644 index 0000000000..97c7d0db42 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_470.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_471.bin b/pufferlib/resources/drive/binaries/Town11/map_471.bin new file mode 100644 index 0000000000..5de57691ef Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_471.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_472.bin b/pufferlib/resources/drive/binaries/Town11/map_472.bin new file mode 100644 index 0000000000..8bfe217f7a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_472.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_473.bin b/pufferlib/resources/drive/binaries/Town11/map_473.bin new file mode 100644 index 0000000000..0db601097b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_473.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_474.bin b/pufferlib/resources/drive/binaries/Town11/map_474.bin new file mode 100644 index 0000000000..fdaa375311 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_474.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_475.bin b/pufferlib/resources/drive/binaries/Town11/map_475.bin new file mode 100644 index 0000000000..53b11db5f2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_475.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_476.bin b/pufferlib/resources/drive/binaries/Town11/map_476.bin new file mode 100644 index 0000000000..83256e68c7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_476.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_477.bin b/pufferlib/resources/drive/binaries/Town11/map_477.bin new file mode 100644 index 0000000000..ffb3bb645c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_477.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_478.bin b/pufferlib/resources/drive/binaries/Town11/map_478.bin new file mode 100644 index 0000000000..4782a8607b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_478.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_479.bin b/pufferlib/resources/drive/binaries/Town11/map_479.bin new file mode 100644 index 0000000000..dd9bb076d5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_479.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_480.bin b/pufferlib/resources/drive/binaries/Town11/map_480.bin new file mode 100644 index 0000000000..36227e0012 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_480.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_481.bin b/pufferlib/resources/drive/binaries/Town11/map_481.bin new file mode 100644 index 0000000000..9c1172a2cf Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_481.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_482.bin b/pufferlib/resources/drive/binaries/Town11/map_482.bin new file mode 100644 index 0000000000..14dc97c72a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_482.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_483.bin b/pufferlib/resources/drive/binaries/Town11/map_483.bin new file mode 100644 index 0000000000..cb6bad8ce1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_483.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_484.bin b/pufferlib/resources/drive/binaries/Town11/map_484.bin new file mode 100644 index 0000000000..77001232c2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_484.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_485.bin b/pufferlib/resources/drive/binaries/Town11/map_485.bin new file mode 100644 index 0000000000..c44536129c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_485.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_486.bin b/pufferlib/resources/drive/binaries/Town11/map_486.bin new file mode 100644 index 0000000000..7d6e8ef424 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_486.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_487.bin b/pufferlib/resources/drive/binaries/Town11/map_487.bin new file mode 100644 index 0000000000..13e2f2a7d8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_487.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_488.bin b/pufferlib/resources/drive/binaries/Town11/map_488.bin new file mode 100644 index 0000000000..f04ec5d718 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_488.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_489.bin b/pufferlib/resources/drive/binaries/Town11/map_489.bin new file mode 100644 index 0000000000..df7004ae24 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_489.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_490.bin b/pufferlib/resources/drive/binaries/Town11/map_490.bin new file mode 100644 index 0000000000..97ad4ff637 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_490.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_491.bin b/pufferlib/resources/drive/binaries/Town11/map_491.bin new file mode 100644 index 0000000000..8d1b90ebb3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_491.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_492.bin b/pufferlib/resources/drive/binaries/Town11/map_492.bin new file mode 100644 index 0000000000..865da1fa80 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_492.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_493.bin b/pufferlib/resources/drive/binaries/Town11/map_493.bin new file mode 100644 index 0000000000..966035297b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_493.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_494.bin b/pufferlib/resources/drive/binaries/Town11/map_494.bin new file mode 100644 index 0000000000..f368ec0f04 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_494.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_495.bin b/pufferlib/resources/drive/binaries/Town11/map_495.bin new file mode 100644 index 0000000000..86877981a0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_495.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_496.bin b/pufferlib/resources/drive/binaries/Town11/map_496.bin new file mode 100644 index 0000000000..eef7f59bcd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_496.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_497.bin b/pufferlib/resources/drive/binaries/Town11/map_497.bin new file mode 100644 index 0000000000..0588af148c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_497.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_498.bin b/pufferlib/resources/drive/binaries/Town11/map_498.bin new file mode 100644 index 0000000000..47deace049 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_498.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_499.bin b/pufferlib/resources/drive/binaries/Town11/map_499.bin new file mode 100644 index 0000000000..094cf04841 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_499.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_500.bin b/pufferlib/resources/drive/binaries/Town11/map_500.bin new file mode 100644 index 0000000000..b9c284968a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_500.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_501.bin b/pufferlib/resources/drive/binaries/Town11/map_501.bin new file mode 100644 index 0000000000..3e24040be5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_501.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_502.bin b/pufferlib/resources/drive/binaries/Town11/map_502.bin new file mode 100644 index 0000000000..a96b133f7c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_502.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_503.bin b/pufferlib/resources/drive/binaries/Town11/map_503.bin new file mode 100644 index 0000000000..56db9f3735 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_503.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_504.bin b/pufferlib/resources/drive/binaries/Town11/map_504.bin new file mode 100644 index 0000000000..bf1f4f9839 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_504.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_505.bin b/pufferlib/resources/drive/binaries/Town11/map_505.bin new file mode 100644 index 0000000000..02614eb3b8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_505.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_506.bin b/pufferlib/resources/drive/binaries/Town11/map_506.bin new file mode 100644 index 0000000000..fd6e32d7a9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_506.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_507.bin b/pufferlib/resources/drive/binaries/Town11/map_507.bin new file mode 100644 index 0000000000..73e58bd5d9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_507.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_508.bin b/pufferlib/resources/drive/binaries/Town11/map_508.bin new file mode 100644 index 0000000000..edff50b585 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_508.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_509.bin b/pufferlib/resources/drive/binaries/Town11/map_509.bin new file mode 100644 index 0000000000..826a47256d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_509.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_510.bin b/pufferlib/resources/drive/binaries/Town11/map_510.bin new file mode 100644 index 0000000000..3076f3e3ed Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_510.bin differ diff --git a/pufferlib/resources/drive/binaries/Town11/map_511.bin b/pufferlib/resources/drive/binaries/Town11/map_511.bin new file mode 100644 index 0000000000..04b104d2e0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town11/map_511.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_000.bin b/pufferlib/resources/drive/binaries/Town12/map_000.bin new file mode 100644 index 0000000000..5a28bd1e24 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_000.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_001.bin b/pufferlib/resources/drive/binaries/Town12/map_001.bin new file mode 100644 index 0000000000..43f1c73aa8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_001.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_002.bin b/pufferlib/resources/drive/binaries/Town12/map_002.bin new file mode 100644 index 0000000000..953f2a40df Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_002.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_003.bin b/pufferlib/resources/drive/binaries/Town12/map_003.bin new file mode 100644 index 0000000000..88bc46e3ef Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_003.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_004.bin b/pufferlib/resources/drive/binaries/Town12/map_004.bin new file mode 100644 index 0000000000..0205d820fc Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_004.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_005.bin b/pufferlib/resources/drive/binaries/Town12/map_005.bin new file mode 100644 index 0000000000..4d06cb44f4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_005.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_006.bin b/pufferlib/resources/drive/binaries/Town12/map_006.bin new file mode 100644 index 0000000000..be36f8e092 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_006.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_007.bin b/pufferlib/resources/drive/binaries/Town12/map_007.bin new file mode 100644 index 0000000000..071570344d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_007.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_008.bin b/pufferlib/resources/drive/binaries/Town12/map_008.bin new file mode 100644 index 0000000000..4a489d9bc8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_008.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_009.bin b/pufferlib/resources/drive/binaries/Town12/map_009.bin new file mode 100644 index 0000000000..f22cc7be48 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_009.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_010.bin b/pufferlib/resources/drive/binaries/Town12/map_010.bin new file mode 100644 index 0000000000..34198a9f02 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_010.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_011.bin b/pufferlib/resources/drive/binaries/Town12/map_011.bin new file mode 100644 index 0000000000..a178b3e0cc Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_011.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_012.bin b/pufferlib/resources/drive/binaries/Town12/map_012.bin new file mode 100644 index 0000000000..0330b5d192 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_012.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_013.bin b/pufferlib/resources/drive/binaries/Town12/map_013.bin new file mode 100644 index 0000000000..897ae83309 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_013.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_014.bin b/pufferlib/resources/drive/binaries/Town12/map_014.bin new file mode 100644 index 0000000000..298a1074e7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_014.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_015.bin b/pufferlib/resources/drive/binaries/Town12/map_015.bin new file mode 100644 index 0000000000..f1fae697a3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_015.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_016.bin b/pufferlib/resources/drive/binaries/Town12/map_016.bin new file mode 100644 index 0000000000..388c848eb6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_016.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_017.bin b/pufferlib/resources/drive/binaries/Town12/map_017.bin new file mode 100644 index 0000000000..e4234bb343 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_017.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_018.bin b/pufferlib/resources/drive/binaries/Town12/map_018.bin new file mode 100644 index 0000000000..7ad964a1cd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_018.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_019.bin b/pufferlib/resources/drive/binaries/Town12/map_019.bin new file mode 100644 index 0000000000..90a88a1f88 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_019.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_020.bin b/pufferlib/resources/drive/binaries/Town12/map_020.bin new file mode 100644 index 0000000000..915452e674 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_020.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_021.bin b/pufferlib/resources/drive/binaries/Town12/map_021.bin new file mode 100644 index 0000000000..aacd93fd6c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_021.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_022.bin b/pufferlib/resources/drive/binaries/Town12/map_022.bin new file mode 100644 index 0000000000..f72c5430c3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_022.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_023.bin b/pufferlib/resources/drive/binaries/Town12/map_023.bin new file mode 100644 index 0000000000..4ae38def7e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_023.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_024.bin b/pufferlib/resources/drive/binaries/Town12/map_024.bin new file mode 100644 index 0000000000..7188840522 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_024.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_025.bin b/pufferlib/resources/drive/binaries/Town12/map_025.bin new file mode 100644 index 0000000000..8a2fef4b43 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_025.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_026.bin b/pufferlib/resources/drive/binaries/Town12/map_026.bin new file mode 100644 index 0000000000..24a10c3296 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_026.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_027.bin b/pufferlib/resources/drive/binaries/Town12/map_027.bin new file mode 100644 index 0000000000..9e39f5248a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_027.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_028.bin b/pufferlib/resources/drive/binaries/Town12/map_028.bin new file mode 100644 index 0000000000..5bc2b6d02b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_028.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_029.bin b/pufferlib/resources/drive/binaries/Town12/map_029.bin new file mode 100644 index 0000000000..a4108bfad8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_029.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_030.bin b/pufferlib/resources/drive/binaries/Town12/map_030.bin new file mode 100644 index 0000000000..788e8ae069 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_030.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_031.bin b/pufferlib/resources/drive/binaries/Town12/map_031.bin new file mode 100644 index 0000000000..0420a71f6b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_031.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_032.bin b/pufferlib/resources/drive/binaries/Town12/map_032.bin new file mode 100644 index 0000000000..0b4f201fc4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_032.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_033.bin b/pufferlib/resources/drive/binaries/Town12/map_033.bin new file mode 100644 index 0000000000..44d380c142 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_033.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_034.bin b/pufferlib/resources/drive/binaries/Town12/map_034.bin new file mode 100644 index 0000000000..2bd1b77849 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_034.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_035.bin b/pufferlib/resources/drive/binaries/Town12/map_035.bin new file mode 100644 index 0000000000..7fa05b21ed Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_035.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_036.bin b/pufferlib/resources/drive/binaries/Town12/map_036.bin new file mode 100644 index 0000000000..af3fed3ebc Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_036.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_037.bin b/pufferlib/resources/drive/binaries/Town12/map_037.bin new file mode 100644 index 0000000000..7a363ca97a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_037.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_038.bin b/pufferlib/resources/drive/binaries/Town12/map_038.bin new file mode 100644 index 0000000000..3c7bf330e6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_038.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_039.bin b/pufferlib/resources/drive/binaries/Town12/map_039.bin new file mode 100644 index 0000000000..5454ac0a11 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_039.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_040.bin b/pufferlib/resources/drive/binaries/Town12/map_040.bin new file mode 100644 index 0000000000..ff7214bf15 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_040.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_041.bin b/pufferlib/resources/drive/binaries/Town12/map_041.bin new file mode 100644 index 0000000000..a496579458 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_041.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_042.bin b/pufferlib/resources/drive/binaries/Town12/map_042.bin new file mode 100644 index 0000000000..2c3a68e33c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_042.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_043.bin b/pufferlib/resources/drive/binaries/Town12/map_043.bin new file mode 100644 index 0000000000..932dd8bf6e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_043.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_044.bin b/pufferlib/resources/drive/binaries/Town12/map_044.bin new file mode 100644 index 0000000000..d02a3b5116 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_044.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_045.bin b/pufferlib/resources/drive/binaries/Town12/map_045.bin new file mode 100644 index 0000000000..856763bbb9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_045.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_046.bin b/pufferlib/resources/drive/binaries/Town12/map_046.bin new file mode 100644 index 0000000000..685eb2cc8f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_046.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_047.bin b/pufferlib/resources/drive/binaries/Town12/map_047.bin new file mode 100644 index 0000000000..8f2990c8ad Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_047.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_048.bin b/pufferlib/resources/drive/binaries/Town12/map_048.bin new file mode 100644 index 0000000000..04c39a7436 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_048.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_049.bin b/pufferlib/resources/drive/binaries/Town12/map_049.bin new file mode 100644 index 0000000000..ecd9ba8077 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_049.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_050.bin b/pufferlib/resources/drive/binaries/Town12/map_050.bin new file mode 100644 index 0000000000..64c43d71d1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_050.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_051.bin b/pufferlib/resources/drive/binaries/Town12/map_051.bin new file mode 100644 index 0000000000..0e612348d2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_051.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_052.bin b/pufferlib/resources/drive/binaries/Town12/map_052.bin new file mode 100644 index 0000000000..4f3f9f4dde Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_052.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_053.bin b/pufferlib/resources/drive/binaries/Town12/map_053.bin new file mode 100644 index 0000000000..9d431f91a5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_053.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_054.bin b/pufferlib/resources/drive/binaries/Town12/map_054.bin new file mode 100644 index 0000000000..975f07edad Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_054.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_055.bin b/pufferlib/resources/drive/binaries/Town12/map_055.bin new file mode 100644 index 0000000000..5887cc8a6c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_055.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_056.bin b/pufferlib/resources/drive/binaries/Town12/map_056.bin new file mode 100644 index 0000000000..2cc6be9a56 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_056.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_057.bin b/pufferlib/resources/drive/binaries/Town12/map_057.bin new file mode 100644 index 0000000000..f6cecb4b41 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_057.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_058.bin b/pufferlib/resources/drive/binaries/Town12/map_058.bin new file mode 100644 index 0000000000..05035b5486 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_058.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_059.bin b/pufferlib/resources/drive/binaries/Town12/map_059.bin new file mode 100644 index 0000000000..a9360e8084 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_059.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_060.bin b/pufferlib/resources/drive/binaries/Town12/map_060.bin new file mode 100644 index 0000000000..b69994d95a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_060.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_061.bin b/pufferlib/resources/drive/binaries/Town12/map_061.bin new file mode 100644 index 0000000000..5b9aa80768 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_061.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_062.bin b/pufferlib/resources/drive/binaries/Town12/map_062.bin new file mode 100644 index 0000000000..c7a8f520a0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_062.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_063.bin b/pufferlib/resources/drive/binaries/Town12/map_063.bin new file mode 100644 index 0000000000..7877c4a0b2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_063.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_064.bin b/pufferlib/resources/drive/binaries/Town12/map_064.bin new file mode 100644 index 0000000000..d1050a7037 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_064.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_065.bin b/pufferlib/resources/drive/binaries/Town12/map_065.bin new file mode 100644 index 0000000000..bf7a07a305 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_065.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_066.bin b/pufferlib/resources/drive/binaries/Town12/map_066.bin new file mode 100644 index 0000000000..86c3a031af Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_066.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_067.bin b/pufferlib/resources/drive/binaries/Town12/map_067.bin new file mode 100644 index 0000000000..611218e4d9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_067.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_068.bin b/pufferlib/resources/drive/binaries/Town12/map_068.bin new file mode 100644 index 0000000000..f330d084cb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_068.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_069.bin b/pufferlib/resources/drive/binaries/Town12/map_069.bin new file mode 100644 index 0000000000..856747baf7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_069.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_070.bin b/pufferlib/resources/drive/binaries/Town12/map_070.bin new file mode 100644 index 0000000000..130d3e4321 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_070.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_071.bin b/pufferlib/resources/drive/binaries/Town12/map_071.bin new file mode 100644 index 0000000000..6b7ba68107 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_071.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_072.bin b/pufferlib/resources/drive/binaries/Town12/map_072.bin new file mode 100644 index 0000000000..989a07b23f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_072.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_073.bin b/pufferlib/resources/drive/binaries/Town12/map_073.bin new file mode 100644 index 0000000000..968e0c733c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_073.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_074.bin b/pufferlib/resources/drive/binaries/Town12/map_074.bin new file mode 100644 index 0000000000..b734c10fc0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_074.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_075.bin b/pufferlib/resources/drive/binaries/Town12/map_075.bin new file mode 100644 index 0000000000..fe70d85e17 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_075.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_076.bin b/pufferlib/resources/drive/binaries/Town12/map_076.bin new file mode 100644 index 0000000000..1a2c155b5e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_076.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_077.bin b/pufferlib/resources/drive/binaries/Town12/map_077.bin new file mode 100644 index 0000000000..adf5a84092 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_077.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_078.bin b/pufferlib/resources/drive/binaries/Town12/map_078.bin new file mode 100644 index 0000000000..93f04e635c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_078.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_079.bin b/pufferlib/resources/drive/binaries/Town12/map_079.bin new file mode 100644 index 0000000000..b8a4a5b8b2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_079.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_080.bin b/pufferlib/resources/drive/binaries/Town12/map_080.bin new file mode 100644 index 0000000000..d2bdbd20cf Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_080.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_081.bin b/pufferlib/resources/drive/binaries/Town12/map_081.bin new file mode 100644 index 0000000000..41a32eb61f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_081.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_082.bin b/pufferlib/resources/drive/binaries/Town12/map_082.bin new file mode 100644 index 0000000000..b4d853fdff Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_082.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_083.bin b/pufferlib/resources/drive/binaries/Town12/map_083.bin new file mode 100644 index 0000000000..7eb62e1466 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_083.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_084.bin b/pufferlib/resources/drive/binaries/Town12/map_084.bin new file mode 100644 index 0000000000..44ff30f81a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_084.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_085.bin b/pufferlib/resources/drive/binaries/Town12/map_085.bin new file mode 100644 index 0000000000..2a9b57986b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_085.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_086.bin b/pufferlib/resources/drive/binaries/Town12/map_086.bin new file mode 100644 index 0000000000..f3d41a5a96 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_086.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_087.bin b/pufferlib/resources/drive/binaries/Town12/map_087.bin new file mode 100644 index 0000000000..3d06ad9986 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_087.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_088.bin b/pufferlib/resources/drive/binaries/Town12/map_088.bin new file mode 100644 index 0000000000..c36e6be248 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_088.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_089.bin b/pufferlib/resources/drive/binaries/Town12/map_089.bin new file mode 100644 index 0000000000..37550d59f7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_089.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_090.bin b/pufferlib/resources/drive/binaries/Town12/map_090.bin new file mode 100644 index 0000000000..2404fa4604 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_090.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_091.bin b/pufferlib/resources/drive/binaries/Town12/map_091.bin new file mode 100644 index 0000000000..2d25927761 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_091.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_092.bin b/pufferlib/resources/drive/binaries/Town12/map_092.bin new file mode 100644 index 0000000000..e9d4e3a395 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_092.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_093.bin b/pufferlib/resources/drive/binaries/Town12/map_093.bin new file mode 100644 index 0000000000..bace43aabc Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_093.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_094.bin b/pufferlib/resources/drive/binaries/Town12/map_094.bin new file mode 100644 index 0000000000..99b4a48fe5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_094.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_095.bin b/pufferlib/resources/drive/binaries/Town12/map_095.bin new file mode 100644 index 0000000000..881c61e4c2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_095.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_096.bin b/pufferlib/resources/drive/binaries/Town12/map_096.bin new file mode 100644 index 0000000000..1435b54ee7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_096.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_097.bin b/pufferlib/resources/drive/binaries/Town12/map_097.bin new file mode 100644 index 0000000000..1e2996c17c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_097.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_098.bin b/pufferlib/resources/drive/binaries/Town12/map_098.bin new file mode 100644 index 0000000000..a2cf749818 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_098.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_099.bin b/pufferlib/resources/drive/binaries/Town12/map_099.bin new file mode 100644 index 0000000000..8400bb9579 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_099.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_100.bin b/pufferlib/resources/drive/binaries/Town12/map_100.bin new file mode 100644 index 0000000000..b7f3761ba8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_100.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_101.bin b/pufferlib/resources/drive/binaries/Town12/map_101.bin new file mode 100644 index 0000000000..81d76b610b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_101.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_102.bin b/pufferlib/resources/drive/binaries/Town12/map_102.bin new file mode 100644 index 0000000000..fa1fa81e53 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_102.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_103.bin b/pufferlib/resources/drive/binaries/Town12/map_103.bin new file mode 100644 index 0000000000..f547e24e29 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_103.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_104.bin b/pufferlib/resources/drive/binaries/Town12/map_104.bin new file mode 100644 index 0000000000..7ef2758e07 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_104.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_105.bin b/pufferlib/resources/drive/binaries/Town12/map_105.bin new file mode 100644 index 0000000000..3252b51e5b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_105.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_106.bin b/pufferlib/resources/drive/binaries/Town12/map_106.bin new file mode 100644 index 0000000000..e1b195fc9c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_106.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_107.bin b/pufferlib/resources/drive/binaries/Town12/map_107.bin new file mode 100644 index 0000000000..45c84f46bf Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_107.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_108.bin b/pufferlib/resources/drive/binaries/Town12/map_108.bin new file mode 100644 index 0000000000..91030834fb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_108.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_109.bin b/pufferlib/resources/drive/binaries/Town12/map_109.bin new file mode 100644 index 0000000000..bfaf2ec8e9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_109.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_110.bin b/pufferlib/resources/drive/binaries/Town12/map_110.bin new file mode 100644 index 0000000000..1e94abd106 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_110.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_111.bin b/pufferlib/resources/drive/binaries/Town12/map_111.bin new file mode 100644 index 0000000000..d5e6089c82 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_111.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_112.bin b/pufferlib/resources/drive/binaries/Town12/map_112.bin new file mode 100644 index 0000000000..e8ec3e068d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_112.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_113.bin b/pufferlib/resources/drive/binaries/Town12/map_113.bin new file mode 100644 index 0000000000..7979e0470c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_113.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_114.bin b/pufferlib/resources/drive/binaries/Town12/map_114.bin new file mode 100644 index 0000000000..5aa865400b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_114.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_115.bin b/pufferlib/resources/drive/binaries/Town12/map_115.bin new file mode 100644 index 0000000000..47644a4b6f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_115.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_116.bin b/pufferlib/resources/drive/binaries/Town12/map_116.bin new file mode 100644 index 0000000000..a2e8eb3398 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_116.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_117.bin b/pufferlib/resources/drive/binaries/Town12/map_117.bin new file mode 100644 index 0000000000..314c192f27 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_117.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_118.bin b/pufferlib/resources/drive/binaries/Town12/map_118.bin new file mode 100644 index 0000000000..6c020681ad Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_118.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_119.bin b/pufferlib/resources/drive/binaries/Town12/map_119.bin new file mode 100644 index 0000000000..0288cae5bf Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_119.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_120.bin b/pufferlib/resources/drive/binaries/Town12/map_120.bin new file mode 100644 index 0000000000..055f4838aa Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_120.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_121.bin b/pufferlib/resources/drive/binaries/Town12/map_121.bin new file mode 100644 index 0000000000..c8190843cc Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_121.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_122.bin b/pufferlib/resources/drive/binaries/Town12/map_122.bin new file mode 100644 index 0000000000..8232d47d25 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_122.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_123.bin b/pufferlib/resources/drive/binaries/Town12/map_123.bin new file mode 100644 index 0000000000..afed440ce8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_123.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_124.bin b/pufferlib/resources/drive/binaries/Town12/map_124.bin new file mode 100644 index 0000000000..c4ce19ecdd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_124.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_125.bin b/pufferlib/resources/drive/binaries/Town12/map_125.bin new file mode 100644 index 0000000000..0d7357319b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_125.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_126.bin b/pufferlib/resources/drive/binaries/Town12/map_126.bin new file mode 100644 index 0000000000..46232577e7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_126.bin differ diff --git a/pufferlib/resources/drive/binaries/Town12/map_127.bin b/pufferlib/resources/drive/binaries/Town12/map_127.bin new file mode 100644 index 0000000000..f7fed29186 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town12/map_127.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_000.bin b/pufferlib/resources/drive/binaries/Town13/map_000.bin new file mode 100644 index 0000000000..6669cbb0e9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_000.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_001.bin b/pufferlib/resources/drive/binaries/Town13/map_001.bin new file mode 100644 index 0000000000..6246d39d01 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_001.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_002.bin b/pufferlib/resources/drive/binaries/Town13/map_002.bin new file mode 100644 index 0000000000..f312d76967 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_002.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_003.bin b/pufferlib/resources/drive/binaries/Town13/map_003.bin new file mode 100644 index 0000000000..372756ee50 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_003.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_004.bin b/pufferlib/resources/drive/binaries/Town13/map_004.bin new file mode 100644 index 0000000000..9283f25549 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_004.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_005.bin b/pufferlib/resources/drive/binaries/Town13/map_005.bin new file mode 100644 index 0000000000..171c284e3d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_005.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_006.bin b/pufferlib/resources/drive/binaries/Town13/map_006.bin new file mode 100644 index 0000000000..d4c46ff9e2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_006.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_007.bin b/pufferlib/resources/drive/binaries/Town13/map_007.bin new file mode 100644 index 0000000000..480adfb07d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_007.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_008.bin b/pufferlib/resources/drive/binaries/Town13/map_008.bin new file mode 100644 index 0000000000..6d5b9a8f5c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_008.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_009.bin b/pufferlib/resources/drive/binaries/Town13/map_009.bin new file mode 100644 index 0000000000..8244d20043 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_009.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_010.bin b/pufferlib/resources/drive/binaries/Town13/map_010.bin new file mode 100644 index 0000000000..95f7e65e2e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_010.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_011.bin b/pufferlib/resources/drive/binaries/Town13/map_011.bin new file mode 100644 index 0000000000..790d86a113 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_011.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_012.bin b/pufferlib/resources/drive/binaries/Town13/map_012.bin new file mode 100644 index 0000000000..79e6979772 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_012.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_013.bin b/pufferlib/resources/drive/binaries/Town13/map_013.bin new file mode 100644 index 0000000000..c115691179 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_013.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_014.bin b/pufferlib/resources/drive/binaries/Town13/map_014.bin new file mode 100644 index 0000000000..a19cf29a51 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_014.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_015.bin b/pufferlib/resources/drive/binaries/Town13/map_015.bin new file mode 100644 index 0000000000..f937260892 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_015.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_016.bin b/pufferlib/resources/drive/binaries/Town13/map_016.bin new file mode 100644 index 0000000000..9f3efdcafb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_016.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_017.bin b/pufferlib/resources/drive/binaries/Town13/map_017.bin new file mode 100644 index 0000000000..b0ce538e02 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_017.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_018.bin b/pufferlib/resources/drive/binaries/Town13/map_018.bin new file mode 100644 index 0000000000..bf93996f42 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_018.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_019.bin b/pufferlib/resources/drive/binaries/Town13/map_019.bin new file mode 100644 index 0000000000..c0a8d1b25f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_019.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_020.bin b/pufferlib/resources/drive/binaries/Town13/map_020.bin new file mode 100644 index 0000000000..568a59c672 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_020.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_021.bin b/pufferlib/resources/drive/binaries/Town13/map_021.bin new file mode 100644 index 0000000000..cf11da00be Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_021.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_022.bin b/pufferlib/resources/drive/binaries/Town13/map_022.bin new file mode 100644 index 0000000000..3caff71ac9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_022.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_023.bin b/pufferlib/resources/drive/binaries/Town13/map_023.bin new file mode 100644 index 0000000000..67d2a34bee Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_023.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_024.bin b/pufferlib/resources/drive/binaries/Town13/map_024.bin new file mode 100644 index 0000000000..e11edfc43d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_024.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_025.bin b/pufferlib/resources/drive/binaries/Town13/map_025.bin new file mode 100644 index 0000000000..7c334e462f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_025.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_026.bin b/pufferlib/resources/drive/binaries/Town13/map_026.bin new file mode 100644 index 0000000000..3d1174913b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_026.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_027.bin b/pufferlib/resources/drive/binaries/Town13/map_027.bin new file mode 100644 index 0000000000..7f26146054 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_027.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_028.bin b/pufferlib/resources/drive/binaries/Town13/map_028.bin new file mode 100644 index 0000000000..c0f2942d86 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_028.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_029.bin b/pufferlib/resources/drive/binaries/Town13/map_029.bin new file mode 100644 index 0000000000..d25ce3f164 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_029.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_030.bin b/pufferlib/resources/drive/binaries/Town13/map_030.bin new file mode 100644 index 0000000000..e627518385 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_030.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_031.bin b/pufferlib/resources/drive/binaries/Town13/map_031.bin new file mode 100644 index 0000000000..5b8f259d0b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_031.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_032.bin b/pufferlib/resources/drive/binaries/Town13/map_032.bin new file mode 100644 index 0000000000..4260b55a84 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_032.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_033.bin b/pufferlib/resources/drive/binaries/Town13/map_033.bin new file mode 100644 index 0000000000..50290fe648 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_033.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_034.bin b/pufferlib/resources/drive/binaries/Town13/map_034.bin new file mode 100644 index 0000000000..e679928f18 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_034.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_035.bin b/pufferlib/resources/drive/binaries/Town13/map_035.bin new file mode 100644 index 0000000000..37afc2b64a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_035.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_036.bin b/pufferlib/resources/drive/binaries/Town13/map_036.bin new file mode 100644 index 0000000000..21999743f3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_036.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_037.bin b/pufferlib/resources/drive/binaries/Town13/map_037.bin new file mode 100644 index 0000000000..bd276ab362 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_037.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_038.bin b/pufferlib/resources/drive/binaries/Town13/map_038.bin new file mode 100644 index 0000000000..21daa00601 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_038.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_039.bin b/pufferlib/resources/drive/binaries/Town13/map_039.bin new file mode 100644 index 0000000000..0a2f8204e5 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_039.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_040.bin b/pufferlib/resources/drive/binaries/Town13/map_040.bin new file mode 100644 index 0000000000..3197520f15 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_040.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_041.bin b/pufferlib/resources/drive/binaries/Town13/map_041.bin new file mode 100644 index 0000000000..efee38dae3 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_041.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_042.bin b/pufferlib/resources/drive/binaries/Town13/map_042.bin new file mode 100644 index 0000000000..7ef7adbf2d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_042.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_043.bin b/pufferlib/resources/drive/binaries/Town13/map_043.bin new file mode 100644 index 0000000000..e0c42c7a28 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_043.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_044.bin b/pufferlib/resources/drive/binaries/Town13/map_044.bin new file mode 100644 index 0000000000..76ec614aa8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_044.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_045.bin b/pufferlib/resources/drive/binaries/Town13/map_045.bin new file mode 100644 index 0000000000..a8f726fa84 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_045.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_046.bin b/pufferlib/resources/drive/binaries/Town13/map_046.bin new file mode 100644 index 0000000000..3c9d69baea Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_046.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_047.bin b/pufferlib/resources/drive/binaries/Town13/map_047.bin new file mode 100644 index 0000000000..af72db0d0a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_047.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_048.bin b/pufferlib/resources/drive/binaries/Town13/map_048.bin new file mode 100644 index 0000000000..b36fc5054d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_048.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_049.bin b/pufferlib/resources/drive/binaries/Town13/map_049.bin new file mode 100644 index 0000000000..319a00a699 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_049.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_050.bin b/pufferlib/resources/drive/binaries/Town13/map_050.bin new file mode 100644 index 0000000000..dd9c20012b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_050.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_051.bin b/pufferlib/resources/drive/binaries/Town13/map_051.bin new file mode 100644 index 0000000000..ebabb5c12d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_051.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_052.bin b/pufferlib/resources/drive/binaries/Town13/map_052.bin new file mode 100644 index 0000000000..9fb2d3e933 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_052.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_053.bin b/pufferlib/resources/drive/binaries/Town13/map_053.bin new file mode 100644 index 0000000000..e394a523ec Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_053.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_054.bin b/pufferlib/resources/drive/binaries/Town13/map_054.bin new file mode 100644 index 0000000000..e2f72bd36e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_054.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_055.bin b/pufferlib/resources/drive/binaries/Town13/map_055.bin new file mode 100644 index 0000000000..7ea9b31cdf Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_055.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_056.bin b/pufferlib/resources/drive/binaries/Town13/map_056.bin new file mode 100644 index 0000000000..2137def89c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_056.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_057.bin b/pufferlib/resources/drive/binaries/Town13/map_057.bin new file mode 100644 index 0000000000..cf6fc5eaed Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_057.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_058.bin b/pufferlib/resources/drive/binaries/Town13/map_058.bin new file mode 100644 index 0000000000..300200bab1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_058.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_059.bin b/pufferlib/resources/drive/binaries/Town13/map_059.bin new file mode 100644 index 0000000000..3a65f47c84 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_059.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_060.bin b/pufferlib/resources/drive/binaries/Town13/map_060.bin new file mode 100644 index 0000000000..6eb2dfbd58 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_060.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_061.bin b/pufferlib/resources/drive/binaries/Town13/map_061.bin new file mode 100644 index 0000000000..31d6a62bb4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_061.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_062.bin b/pufferlib/resources/drive/binaries/Town13/map_062.bin new file mode 100644 index 0000000000..dd8280c24d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_062.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_063.bin b/pufferlib/resources/drive/binaries/Town13/map_063.bin new file mode 100644 index 0000000000..54b3b6defc Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_063.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_064.bin b/pufferlib/resources/drive/binaries/Town13/map_064.bin new file mode 100644 index 0000000000..29315a811e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_064.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_065.bin b/pufferlib/resources/drive/binaries/Town13/map_065.bin new file mode 100644 index 0000000000..454d647367 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_065.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_066.bin b/pufferlib/resources/drive/binaries/Town13/map_066.bin new file mode 100644 index 0000000000..3d6c63a955 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_066.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_067.bin b/pufferlib/resources/drive/binaries/Town13/map_067.bin new file mode 100644 index 0000000000..69a60a97e0 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_067.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_068.bin b/pufferlib/resources/drive/binaries/Town13/map_068.bin new file mode 100644 index 0000000000..a61d37c9d2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_068.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_069.bin b/pufferlib/resources/drive/binaries/Town13/map_069.bin new file mode 100644 index 0000000000..67234f8a8c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_069.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_070.bin b/pufferlib/resources/drive/binaries/Town13/map_070.bin new file mode 100644 index 0000000000..75fa3a6374 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_070.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_071.bin b/pufferlib/resources/drive/binaries/Town13/map_071.bin new file mode 100644 index 0000000000..287fea314b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_071.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_072.bin b/pufferlib/resources/drive/binaries/Town13/map_072.bin new file mode 100644 index 0000000000..e90181ad0a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_072.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_073.bin b/pufferlib/resources/drive/binaries/Town13/map_073.bin new file mode 100644 index 0000000000..c0d24900f2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_073.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_074.bin b/pufferlib/resources/drive/binaries/Town13/map_074.bin new file mode 100644 index 0000000000..b0ef9a4bff Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_074.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_075.bin b/pufferlib/resources/drive/binaries/Town13/map_075.bin new file mode 100644 index 0000000000..084521d329 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_075.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_076.bin b/pufferlib/resources/drive/binaries/Town13/map_076.bin new file mode 100644 index 0000000000..126c83b4e7 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_076.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_077.bin b/pufferlib/resources/drive/binaries/Town13/map_077.bin new file mode 100644 index 0000000000..49d841c93e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_077.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_078.bin b/pufferlib/resources/drive/binaries/Town13/map_078.bin new file mode 100644 index 0000000000..33f146d90b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_078.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_079.bin b/pufferlib/resources/drive/binaries/Town13/map_079.bin new file mode 100644 index 0000000000..3e1224f388 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_079.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_080.bin b/pufferlib/resources/drive/binaries/Town13/map_080.bin new file mode 100644 index 0000000000..42c022e950 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_080.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_081.bin b/pufferlib/resources/drive/binaries/Town13/map_081.bin new file mode 100644 index 0000000000..cc9342496f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_081.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_082.bin b/pufferlib/resources/drive/binaries/Town13/map_082.bin new file mode 100644 index 0000000000..562f5f1766 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_082.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_083.bin b/pufferlib/resources/drive/binaries/Town13/map_083.bin new file mode 100644 index 0000000000..1fb8f38e41 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_083.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_084.bin b/pufferlib/resources/drive/binaries/Town13/map_084.bin new file mode 100644 index 0000000000..c647fcc84a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_084.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_085.bin b/pufferlib/resources/drive/binaries/Town13/map_085.bin new file mode 100644 index 0000000000..dae3616324 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_085.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_086.bin b/pufferlib/resources/drive/binaries/Town13/map_086.bin new file mode 100644 index 0000000000..7a6661b4dd Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_086.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_087.bin b/pufferlib/resources/drive/binaries/Town13/map_087.bin new file mode 100644 index 0000000000..4c90d7a589 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_087.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_088.bin b/pufferlib/resources/drive/binaries/Town13/map_088.bin new file mode 100644 index 0000000000..b7f0bc36ff Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_088.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_089.bin b/pufferlib/resources/drive/binaries/Town13/map_089.bin new file mode 100644 index 0000000000..49d20ff5ff Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_089.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_090.bin b/pufferlib/resources/drive/binaries/Town13/map_090.bin new file mode 100644 index 0000000000..a62a00be6b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_090.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_091.bin b/pufferlib/resources/drive/binaries/Town13/map_091.bin new file mode 100644 index 0000000000..25e5cbd6c2 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_091.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_092.bin b/pufferlib/resources/drive/binaries/Town13/map_092.bin new file mode 100644 index 0000000000..ce07854167 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_092.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_093.bin b/pufferlib/resources/drive/binaries/Town13/map_093.bin new file mode 100644 index 0000000000..4d06ed477b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_093.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_094.bin b/pufferlib/resources/drive/binaries/Town13/map_094.bin new file mode 100644 index 0000000000..a60547c5c1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_094.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_095.bin b/pufferlib/resources/drive/binaries/Town13/map_095.bin new file mode 100644 index 0000000000..bfc57829e8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_095.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_096.bin b/pufferlib/resources/drive/binaries/Town13/map_096.bin new file mode 100644 index 0000000000..9c9b123c7d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_096.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_097.bin b/pufferlib/resources/drive/binaries/Town13/map_097.bin new file mode 100644 index 0000000000..be61b02ca8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_097.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_098.bin b/pufferlib/resources/drive/binaries/Town13/map_098.bin new file mode 100644 index 0000000000..1eff7716bb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_098.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_099.bin b/pufferlib/resources/drive/binaries/Town13/map_099.bin new file mode 100644 index 0000000000..d8a35c4f88 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_099.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_100.bin b/pufferlib/resources/drive/binaries/Town13/map_100.bin new file mode 100644 index 0000000000..0839c7a55f Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_100.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_101.bin b/pufferlib/resources/drive/binaries/Town13/map_101.bin new file mode 100644 index 0000000000..c38f4e4df9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_101.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_102.bin b/pufferlib/resources/drive/binaries/Town13/map_102.bin new file mode 100644 index 0000000000..da2afcde75 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_102.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_103.bin b/pufferlib/resources/drive/binaries/Town13/map_103.bin new file mode 100644 index 0000000000..daca218248 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_103.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_104.bin b/pufferlib/resources/drive/binaries/Town13/map_104.bin new file mode 100644 index 0000000000..53ad4fb799 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_104.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_105.bin b/pufferlib/resources/drive/binaries/Town13/map_105.bin new file mode 100644 index 0000000000..1dbf9c94cb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_105.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_106.bin b/pufferlib/resources/drive/binaries/Town13/map_106.bin new file mode 100644 index 0000000000..15f1aa1a15 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_106.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_107.bin b/pufferlib/resources/drive/binaries/Town13/map_107.bin new file mode 100644 index 0000000000..3776c31ad4 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_107.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_108.bin b/pufferlib/resources/drive/binaries/Town13/map_108.bin new file mode 100644 index 0000000000..bc9d64171b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_108.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_109.bin b/pufferlib/resources/drive/binaries/Town13/map_109.bin new file mode 100644 index 0000000000..085c5a5cc6 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_109.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_110.bin b/pufferlib/resources/drive/binaries/Town13/map_110.bin new file mode 100644 index 0000000000..199eb69163 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_110.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_111.bin b/pufferlib/resources/drive/binaries/Town13/map_111.bin new file mode 100644 index 0000000000..46bef4029c Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_111.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_112.bin b/pufferlib/resources/drive/binaries/Town13/map_112.bin new file mode 100644 index 0000000000..e93114eee1 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_112.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_113.bin b/pufferlib/resources/drive/binaries/Town13/map_113.bin new file mode 100644 index 0000000000..3219fe24ee Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_113.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_114.bin b/pufferlib/resources/drive/binaries/Town13/map_114.bin new file mode 100644 index 0000000000..7141736c93 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_114.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_115.bin b/pufferlib/resources/drive/binaries/Town13/map_115.bin new file mode 100644 index 0000000000..b8d29b41c9 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_115.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_116.bin b/pufferlib/resources/drive/binaries/Town13/map_116.bin new file mode 100644 index 0000000000..2f1db41114 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_116.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_117.bin b/pufferlib/resources/drive/binaries/Town13/map_117.bin new file mode 100644 index 0000000000..eb86be27ce Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_117.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_118.bin b/pufferlib/resources/drive/binaries/Town13/map_118.bin new file mode 100644 index 0000000000..603ab1dc40 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_118.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_119.bin b/pufferlib/resources/drive/binaries/Town13/map_119.bin new file mode 100644 index 0000000000..cad36f020a Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_119.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_120.bin b/pufferlib/resources/drive/binaries/Town13/map_120.bin new file mode 100644 index 0000000000..a5d92d6f5e Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_120.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_121.bin b/pufferlib/resources/drive/binaries/Town13/map_121.bin new file mode 100644 index 0000000000..8f20d680fe Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_121.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_122.bin b/pufferlib/resources/drive/binaries/Town13/map_122.bin new file mode 100644 index 0000000000..43c5330358 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_122.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_123.bin b/pufferlib/resources/drive/binaries/Town13/map_123.bin new file mode 100644 index 0000000000..c93d971e5d Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_123.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_124.bin b/pufferlib/resources/drive/binaries/Town13/map_124.bin new file mode 100644 index 0000000000..fb2c12e1cb Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_124.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_125.bin b/pufferlib/resources/drive/binaries/Town13/map_125.bin new file mode 100644 index 0000000000..efbb8a6227 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_125.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_126.bin b/pufferlib/resources/drive/binaries/Town13/map_126.bin new file mode 100644 index 0000000000..7d0d83e4a8 Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_126.bin differ diff --git a/pufferlib/resources/drive/binaries/Town13/map_127.bin b/pufferlib/resources/drive/binaries/Town13/map_127.bin new file mode 100644 index 0000000000..29a3be8e7b Binary files /dev/null and b/pufferlib/resources/drive/binaries/Town13/map_127.bin differ