From 7fe7bf4a682608f84e5d451215f910d19fd4a369 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 01:18:06 -0700 Subject: [PATCH 01/41] Encode the EUC-JP sources with Python instead of iconv macOS iconv converts a backslash that follows Japanese text into the fullwidth reverse solidus (0xA1C0) rather than leaving it as 0x5C. In src/cpu_vehicles_camera_path.c that turns a "\n" escape inside a string literal into a literal two-byte character, adding 26 bytes, which grows .main and shifts the whole ROM. No version can byte-match on macOS as a result. Python's euc_jp codec produces the bytes the cartridge actually has, and is identical to GNU iconv's output for the other two EUC-JP sources. PYTHON is already a required build dependency. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e4d98c41a6..5ac086be5d 100644 --- a/Makefile +++ b/Makefile @@ -636,9 +636,12 @@ $(COURSE_DISPLAYLIST_OFILES): $(BUILD_DIR)/%/course_data.o: %/course_textures.li #==============================================================================# # Source Code Generation # #==============================================================================# +# Not iconv: macOS converts a backslash that follows Japanese text into the +# fullwidth reverse solidus (0xA1C0) instead of leaving it as 0x5C, which +# lengthens the string literals here and shifts the whole ROM. $(BUILD_DIR)/%.jp.c: %.c $(call print,Encoding:,$<,$@) - $(V)iconv -t EUC-JP -f UTF-8 $< > $@ + $(V)$(PYTHON) -c "import sys; open(sys.argv[2],'wb').write(open(sys.argv[1],encoding='utf-8').read().encode('euc_jp'))" $< $@ $(BUILD_DIR)/%.o: %.c $(call print,Compiling:,$<,$@) From f7884bfb7b12f140750d1a63a4d5b7c532c5e426 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 01:25:45 -0700 Subject: [PATCH 02/41] assets: let a group asset carry per-version overrides The group JSONs under assets/ describe one version only, so a second version needs a whole duplicate file selected by an ifeq in every .mk. Nearly all of an asset is version independent though: of the Japanese assets measured against their US counterparts, 97% differ in rom_offset and nothing else. Let an asset instead carry an override block keyed by version name, holding only the keys that differ. new_extract_assets.py folds it in before anything reads the asset, so the rest of the pipeline is unchanged, and the version comes from one --version flag on ASSET_EXTRACT rather than a switch in each .mk. No asset carries an override yet, so this is a no-op. Co-Authored-By: Claude Fable 5 --- Makefile | 2 +- tools/new_extract_assets.py | 22 ++++++++++++++++++++-- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 5ac086be5d..66b9e850a8 100644 --- a/Makefile +++ b/Makefile @@ -391,7 +391,7 @@ N64GRAPHICS := $(TOOLS_DIR)/n64graphics DLPACKER := $(TOOLS_DIR)/displaylist_packer BIN2C := $(PYTHON) $(TOOLS_DIR)/bin2c.py EXTRACT_DATA_FOR_MIO := $(TOOLS_DIR)/extract_data_for_mio -ASSET_EXTRACT := $(PYTHON) $(TOOLS_DIR)/new_extract_assets.py +ASSET_EXTRACT := $(PYTHON) $(TOOLS_DIR)/new_extract_assets.py --version $(VERSION) LINKONLY_GENERATOR := $(PYTHON) $(TOOLS_DIR)/linkonly_generator.py TORCH := $(TOOLS_DIR)/torch/cmake-build-release/torch EMULATOR = mupen64plus diff --git a/tools/new_extract_assets.py b/tools/new_extract_assets.py index aa8612a946..a7be6833b5 100644 --- a/tools/new_extract_assets.py +++ b/tools/new_extract_assets.py @@ -243,10 +243,19 @@ def export_bin(baserom, asset): asset_data = baserom.read(int(asset["size"], 16)) asset_file.write(asset_data) +# Versions that may appear as an override key on an asset. Keep in step with the +# VERSION option in the Makefile. +ALL_VERSIONS = ("us", "eu.v10", "eu.v11", "jp.v11") + # TODO: use a proper argument parser -baserom_name = sys.argv[1] +argv = sys.argv[1:] +version = "us" +if argv[:1] == ["--version"]: + version = argv[1] + argv = argv[2:] +baserom_name = argv[0] # really, this should be a list of json files, that way we can just do $< in the Makefile -assest_json_file = sys.argv[2] +assest_json_file = argv[1] image_types = { "rgba16", "rgba32", "ci4", "ci8", "i4", "i8", "ia4", "ia8", "ia16", "ia1" } # Types that extracted as-is from the ROM. No decompression or converting, just rip the bytes out of the ROM @@ -258,6 +267,15 @@ def export_bin(baserom, asset): asset_list = json.load(json_file) for asset_name, asset in asset_list.items(): + # Most assets only move between versions, so a version carries an + # override holding just the keys that differ. Fold it in before + # anything else reads the asset, and drop the versions we are not + # building so nothing downstream sees them. + override = asset.get(version) + for other in ALL_VERSIONS: + asset.pop(other, None) + if override is not None: + asset.update(override) # Kind of silly, but makes assets easier to work with asset["name"] = asset_name # All output directories are relative to the directory the json file resides in From 17fcfb914413ee690008f2c5f14a1f4cf4a22aaf Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 01:38:08 -0700 Subject: [PATCH 03/41] assets: re-extract when the built version changes Assets extract to one shared path regardless of version, and an asset that already exists on disk is never extracted again. Building a second version therefore reuses the first version's bytes, silently, and they end up in the ROM. `make clean` does not help: it clears build/, not the asset tree. Record the version alongside the asset list in .assets-local.txt and re-extract when it changes. The revision ID goes to 2 so an existing tree is refreshed once rather than trusted. This matters little for EU, where 31 assets carry their own offsets, and a great deal for a version that differs more widely. Co-Authored-By: Claude Fable 5 --- extract_assets.py | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/extract_assets.py b/extract_assets.py index f91dbd58ba..d808f7ffeb 100755 --- a/extract_assets.py +++ b/extract_assets.py @@ -47,15 +47,19 @@ def clean_assets(local_asset_file): def main(): # In case we ever need to change formats of generated files, we keep a # revision ID in the local asset file. - new_version = 1 + new_version = 2 try: local_asset_file = open(".assets-local.txt") local_asset_file.readline() local_version = int(local_asset_file.readline().strip()) + # Assets extract to one shared path regardless of version, so record + # which version's bytes the tree is holding. + local_langs = local_asset_file.readline().strip().split() except Exception: local_asset_file = None local_version = -1 + local_langs = None langs = sys.argv[1:] if langs == ["--clean"]: @@ -69,6 +73,11 @@ def main(): print("For each version, baserom..z64 must exist") sys.exit(1) + # A different version's bytes may be sitting at the shared asset paths, and + # those files look present and up to date. Re-extract rather than build the + # wrong version's assets into the ROM. + version_changed = local_langs is not None and local_langs != langs + asset_map = read_asset_map() all_assets = [] any_missing_assets = False @@ -82,7 +91,7 @@ def main(): if not any_missing_assets and any(lang in data["offsets"] for lang in langs): any_missing_assets = True - if not any_missing_assets and local_version == new_version: + if not any_missing_assets and local_version == new_version and not version_changed: # Nothing to do, no need to read a ROM. For efficiency we don't check # the list of old assets either. return @@ -106,7 +115,7 @@ def main(): todo = defaultdict(lambda: []) for (asset, data, exists) in all_assets: # Leave existing assets alone if they have a compatible version. - if exists and not asset_needs_update(asset, local_version): + if exists and not version_changed and not asset_needs_update(asset, local_version): continue for lang, pos in data["offsets"].items(): @@ -266,6 +275,7 @@ def main(): [ "# This file tracks the assets currently extracted by extract_assets.py.", str(new_version), + " ".join(langs), *sorted(list(new_assets)), "", ] From 447311fdb2668dc49fd1ac9b2996794f7e522816 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 01:38:08 -0700 Subject: [PATCH 04/41] assets: give each version its own Torch output directory Torch generated into assets/code/ for every version, so building one version left its generated C in the tree for the next version to compile. Route it through ASSET_CODE_DIR, which the linker script now receives as a define, and drop the assets/code/ prefix from the rainbow_road includes so they resolve through the include path instead of a fixed location. EU has no config.yml entry and is built on top of the US assets, so it keeps reading the US output. torch.hash.yml is not version aware and would skip regeneration after a switch, so the assets target clears it first; Torch takes under a second. Also mark extracted assets .PRECIOUS. They come out of the baserom, and make's habit of deleting a target whose recipe failed leaves a tree that only re-extraction can repair. Co-Authored-By: Claude Fable 5 --- Makefile | 35 ++++++++++++++++++++++-------- config.yml | 2 +- courses/rainbow_road/course_data.c | 14 ++++++------ mk64.ld | 10 ++++----- 4 files changed, 39 insertions(+), 22 deletions(-) diff --git a/Makefile b/Makefile index 66b9e850a8..098a7bfecf 100644 --- a/Makefile +++ b/Makefile @@ -232,8 +232,17 @@ DATA_DIR := data INCLUDE_DIRS := include # Directories containing source files -SRC_ASSETS_DIR := assets/code/ceremony_data assets/code/startup_logo assets/code/data_800E45C0 assets/code/data_segment2 assets/code/data_800E8700 assets/code/common_data -SRC_DIRS := src src/data src/buffers src/racing src/ending src/audio src/debug src/os src/os/math courses assets/code/ceremony_data assets/code/startup_logo $(SRC_ASSETS_DIR) +# Torch generates C into this tree, and its contents differ per version, so keep +# each version's output apart instead of overwriting a shared directory. EU has +# no entry in config.yml and is built on top of the US assets, so it reads the +# US output rather than one of its own. +TORCH_VERSION := $(VERSION) +ifneq ($(filter $(VERSION),eu.v10 eu.v11),) + TORCH_VERSION := us +endif +ASSET_CODE_DIR := assets/code/$(TORCH_VERSION) +SRC_ASSETS_DIR := $(ASSET_CODE_DIR)/ceremony_data $(ASSET_CODE_DIR)/startup_logo $(ASSET_CODE_DIR)/data_800E45C0 $(ASSET_CODE_DIR)/data_segment2 $(ASSET_CODE_DIR)/data_800E8700 $(ASSET_CODE_DIR)/common_data +SRC_DIRS := src src/data src/buffers src/racing src/ending src/audio src/debug src/os src/os/math courses $(ASSET_CODE_DIR)/ceremony_data $(ASSET_CODE_DIR)/startup_logo $(SRC_ASSETS_DIR) ASM_DIRS := asm asm/os asm/unused $(DATA_DIR) $(DATA_DIR)/sound_data $(DATA_DIR)/karts @@ -334,7 +343,7 @@ ifeq ($(TARGET_N64),1) CC_CFLAGS := -fno-builtin endif -INCLUDE_DIRS := include $(BUILD_DIR) $(BUILD_DIR)/include src src/racing src/ending . +INCLUDE_DIRS := include $(BUILD_DIR) $(BUILD_DIR)/include src src/racing src/ending . $(ASSET_CODE_DIR) ifeq ($(TARGET_N64),1) INCLUDE_DIRS += include/libc endif @@ -450,6 +459,10 @@ endif assets: @echo "Extracting torch assets..." + # torch.hash.yml is not version aware, so a version switch would otherwise + # skip regeneration and leave this version's output missing. Torch takes + # well under a second, so there is nothing to save by keeping the cache. + $(V)$(RM) -f torch.hash.yml $(V)$(TORCH) code $(BASEROM) $(V)$(TORCH) header $(BASEROM) $(V)$(TORCH) modding export $(BASEROM) @@ -547,7 +560,7 @@ $(TEXTURE_FILES_TLUT): $(V)$(N64GRAPHICS) -i $(BUILD_DIR)/$@.inc.c -g $@.png -f $(lastword $(subst ., ,$@)) -s u8 -c $(lastword $(subst ., ,$(subst .$(lastword $(subst ., ,$(TEXTURE_FILES_TLUT))), ,$(TEXTURE_FILES_TLUT)))) -p $(BUILD_DIR)/$@.tlut.inc.c # common textures -$(BUILD_DIR)/assets/code/common_data/common_data.o: assets/code/common_data/common_data.c $(TEXTURE_FILES) $(TEXTURE_FILES_TLUT) +$(BUILD_DIR)/$(ASSET_CODE_DIR)/common_data/common_data.o: $(ASSET_CODE_DIR)/common_data/common_data.c $(TEXTURE_FILES) $(TEXTURE_FILES_TLUT) @$(PRINT) "$(GREEN)Compiling Common Textures: $(BLUE)$@ $(NO_COL)\n" @$(CC_CHECK) $(CC_CHECK_CFLAGS) -MMD -MP -MT $@ -MF $(BUILD_DIR)/$*.d $< $(V)$(CC) -c $(CFLAGS) -o $@ $< @@ -698,7 +711,7 @@ endif # Compile Trophy and Podium Models # #==============================================================================# -LDFLAGS += -R $(BUILD_DIR)/assets/code/ceremony_data/ceremony_data.elf +LDFLAGS += -R $(BUILD_DIR)/$(ASSET_CODE_DIR)/ceremony_data/ceremony_data.elf %/ceremony_data.elf: %/ceremony_data.o $(V)$(LD) -t -e 0 -Ttext=0B000000 -Map $@.map -o $@ $< --no-check-sections @@ -718,7 +731,7 @@ LDFLAGS += -R $(BUILD_DIR)/assets/code/ceremony_data/ceremony_data.elf # Compile Startup Logo # #==============================================================================# -LDFLAGS += -R $(BUILD_DIR)/assets/code/startup_logo/startup_logo.elf +LDFLAGS += -R $(BUILD_DIR)/$(ASSET_CODE_DIR)/startup_logo/startup_logo.elf %/startup_logo.elf: %/startup_logo.o $(V)$(LD) -t -e 0 -Ttext=06000000 -Map $@.map -o $@ $< --no-check-sections @@ -737,7 +750,7 @@ LDFLAGS += -R $(BUILD_DIR)/assets/code/startup_logo/startup_logo.elf # Compile Common Textures # #==============================================================================# -LDFLAGS += -R $(BUILD_DIR)/assets/code/common_data/common_data.elf +LDFLAGS += -R $(BUILD_DIR)/$(ASSET_CODE_DIR)/common_data/common_data.elf %/common_data.elf: %/common_data.o $(V)$(LD) -t -e 0 -Ttext=0D000000 -Map $@.map -o $@ $< --no-check-sections @@ -761,10 +774,10 @@ LDFLAGS += -R $(BUILD_DIR)/assets/code/common_data/common_data.elf # Run linker script through the C preprocessor $(BUILD_DIR)/$(LD_SCRIPT): $(LD_SCRIPT) $(call print,Preprocessing linker script:,$<,$@) - $(V)$(CPP) $(CPPFLAGS) -DBUILD_DIR=$(BUILD_DIR) -MMD -MP -MT $@ -MF $@.d -o $@ $< + $(V)$(CPP) $(CPPFLAGS) -DBUILD_DIR=$(BUILD_DIR) -DASSET_CODE_DIR=$(ASSET_CODE_DIR) -MMD -MP -MT $@ -MF $@.d -o $@ $< # Link MK64 ELF file -$(ELF): $(O_FILES) $(COURSE_DATA_TARGETS) $(BUILD_DIR)/$(LD_SCRIPT) $(BUILD_DIR)/assets/code/startup_logo/startup_logo.mio0.o $(BUILD_DIR)/assets/code/ceremony_data/ceremony_data.mio0.o $(BUILD_DIR)/assets/code/common_data/common_data.mio0.o $(COURSE_GEOGRAPHY_TARGETS) undefined_syms.txt +$(ELF): $(O_FILES) $(COURSE_DATA_TARGETS) $(BUILD_DIR)/$(LD_SCRIPT) $(BUILD_DIR)/$(ASSET_CODE_DIR)/startup_logo/startup_logo.mio0.o $(BUILD_DIR)/$(ASSET_CODE_DIR)/ceremony_data/ceremony_data.mio0.o $(BUILD_DIR)/$(ASSET_CODE_DIR)/common_data/common_data.mio0.o $(COURSE_GEOGRAPHY_TARGETS) undefined_syms.txt @$(PRINT) "$(GREEN)Linking ELF file: $(BLUE)$@ $(NO_COL)\n" $(V)$(LD) $(LDFLAGS) -o $@ @@ -786,6 +799,10 @@ $(BUILD_DIR)/$(TARGET).objdump: $(ELF) # with no prerequisites, .SECONDARY causes no intermediate target to be removed .SECONDARY: +# Assets come out of the baserom, so a recipe that fails partway must not delete +# one: make's usual cleanup would leave a tree that only re-extraction can repair. +.PRECIOUS: %.png %.bin %.mio0 %.inc.c + # Remove built-in rules, to improve performance MAKEFLAGS += --no-builtin-rules diff --git a/config.yml b/config.yml index 95a02a85ae..c03c40e037 100644 --- a/config.yml +++ b/config.yml @@ -9,7 +9,7 @@ output: binary: mkcube.otr headers: include/assets - code: assets/code + code: assets/code/us metadata: [yamls/courses] segments: - 0x000000 diff --git a/courses/rainbow_road/course_data.c b/courses/rainbow_road/course_data.c index 2ee57be941..808d6b1d73 100644 --- a/courses/rainbow_road/course_data.c +++ b/courses/rainbow_road/course_data.c @@ -1488,37 +1488,37 @@ u8 d_course_rainbow_road_neon_boo_tlut_list[][512] = { }; u16 d_course_rainbow_road_static_tluts[] = { -#include "assets/code/rainbow_road_tluts/gTLUTRainbowRoadNeonPeach.rgba16.inc.c" +#include "rainbow_road_tluts/gTLUTRainbowRoadNeonPeach.rgba16.inc.c" }; /* @warning array oob func_80086074 */ u16 d_tlut_rainbow_road_neon_luigi[] = { -#include "assets/code/rainbow_road_tluts/gTLUTRainbowRoadNeonLuigi.rgba16.inc.c" +#include "rainbow_road_tluts/gTLUTRainbowRoadNeonLuigi.rgba16.inc.c" }; /* @warning array oob func_80086074 */ u16 d_tlut_rainbow_road_neon_dk[] = { -#include "assets/code/rainbow_road_tluts/gTLUTRainbowRoadNeonDonkeyKong.rgba16.inc.c" +#include "rainbow_road_tluts/gTLUTRainbowRoadNeonDonkeyKong.rgba16.inc.c" }; /* @warning array oob func_80086074 */ u16 d_tlut_rainbow_road_neon_yoshi[] = { -#include "assets/code/rainbow_road_tluts/gTLUTRainbowRoadNeonYoshi.rgba16.inc.c" +#include "rainbow_road_tluts/gTLUTRainbowRoadNeonYoshi.rgba16.inc.c" }; /* @warning array oob func_80086074 */ u16 d_tlut_rainbow_road_neon_bowser[] = { -#include "assets/code/rainbow_road_tluts/gTLUTRainbowRoadNeonBowser.rgba16.inc.c" +#include "rainbow_road_tluts/gTLUTRainbowRoadNeonBowser.rgba16.inc.c" }; /* @warning array oob func_80086074 */ u16 d_tlut_rainbow_road_neon_wario[] = { -#include "assets/code/rainbow_road_tluts/gTLUTRainbowRoadNeonWario.rgba16.inc.c" +#include "rainbow_road_tluts/gTLUTRainbowRoadNeonWario.rgba16.inc.c" }; /* @warning array oob func_80086074 */ u16 d_tlut_rainbow_road_neon_toad[] = { -#include "assets/code/rainbow_road_tluts/gTLUTRainbowRoadNeonToad.rgba16.inc.c" +#include "rainbow_road_tluts/gTLUTRainbowRoadNeonToad.rgba16.inc.c" }; u8 d_course_rainbow_road_neon_mushroom[] = { diff --git a/mk64.ld b/mk64.ld index d3636752c3..151f1db815 100644 --- a/mk64.ld +++ b/mk64.ld @@ -227,7 +227,7 @@ SECTIONS BUILD_DIR/src/player_controller.o(.data*); BUILD_DIR/src/spawn_players.o(.data*); BUILD_DIR/src/update_objects.o(.data*); - BUILD_DIR/assets/code/data_800E45C0/data_800E45C0.o(.data*); + BUILD_DIR/ASSET_CODE_DIR/data_800E45C0/data_800E45C0.o(.data*); BUILD_DIR/src/code_80057C60.o(.data*); BUILD_DIR/src/data/some_data.o(.data*); BUILD_DIR/src/effects.o(.data*); @@ -236,7 +236,7 @@ SECTIONS BUILD_DIR/src/code_800AF9B0.o(.data*); BUILD_DIR/src/menus.o(.data*); BUILD_DIR/src/save.o(.data*); - BUILD_DIR/assets/code/data_800E8700/data_800E8700.o(.data*); + BUILD_DIR/ASSET_CODE_DIR/data_800E8700/data_800E8700.o(.data*); BUILD_DIR/src/audio/synthesis.o(.data*); BUILD_DIR/src/audio/heap.o(.data*); BUILD_DIR/src/audio/load.o(.data*); @@ -476,7 +476,7 @@ SECTIONS /* common textures, decompressed and set as segment 0x0D */ BEGIN_SEG(common_textures, 0x0D000000) { - BUILD_DIR/assets/code/common_data/common_data.mio0.o(.data); + BUILD_DIR/ASSET_CODE_DIR/common_data/common_data.mio0.o(.data); . = ALIGN(0x10); } END_SEG(common_textures) @@ -534,14 +534,14 @@ SECTIONS 0x828400 -> 0x8028DE30 (0xD0) */ BEGIN_SEG(ceremonyData, 0x0B000000) { - BUILD_DIR/assets/code/ceremony_data/ceremony_data.mio0.o(.data); + BUILD_DIR/ASSET_CODE_DIR/ceremony_data/ceremony_data.mio0.o(.data); . = ALIGN(0x10); } END_SEG(ceremonyData) BEGIN_SEG(startupLogo, 0x06000000) { - BUILD_DIR/assets/code/startup_logo/startup_logo.mio0.o(.data); + BUILD_DIR/ASSET_CODE_DIR/startup_logo/startup_logo.mio0.o(.data); . = ALIGN(0x10); } END_SEG(startupLogo) From 6dc4116d95d19bfacfb3b856c0300f374fe3c31f Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 01:45:03 -0700 Subject: [PATCH 05/41] Build the tools with $(MAKE), not bare make macOS still ships GNU make 3.81 as `make`, and tools/Makefile generates its per-tool rules with `define COMPILE =`, which is 3.82 syntax. Under 3.81 those rules do not take effect and make falls back to its built-in %: %.c rule, so each tool is linked from its first source file alone. n64graphics is built from n64graphics.c and utils.c, so it fails with an undefined _g_verbosity rather than anything that points at the cause. The docs already tell macOS users to build with gmake, but this line then calls bare make and undoes that. This makefile needs 4.0+ for != in the first place, so $(MAKE) is always a new enough make. --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 098a7bfecf..6898009949 100644 --- a/Makefile +++ b/Makefile @@ -198,7 +198,11 @@ endif ifeq ($(filter clean distclean print-%,$(MAKECMDGOALS)),) # Make tools if out of date - DUMMY != make -C $(TOOLS_DIR) + # Not bare make: the tools makefile needs 3.82+, and macOS still ships 3.81 as + # `make`, which falls back to built-in rules and links the tools from only + # their first source file. This makefile already needs 4.0+ for !=, so + # $(MAKE) is always new enough. + DUMMY != $(MAKE) -C $(TOOLS_DIR) ifeq ($(DUMMY),FAIL) $(error Failed to build tools) endif From 794357036b313ccce9fb21e8370a2f630e6eb477 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 02:06:17 -0700 Subject: [PATCH 06/41] jp.v11: add the Japanese 1.1 version Makefile option and expected checksum only; the asset map and the code differences follow. Co-Authored-By: Claude Fable 5 --- Makefile | 6 +++++- mk64.jp.v11.sha1 | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 mk64.jp.v11.sha1 diff --git a/Makefile b/Makefile index 6898009949..9626058c6c 100644 --- a/Makefile +++ b/Makefile @@ -42,8 +42,9 @@ GCC ?= 0 # us - builds the 1997 North American version # eu.v10 - builds the 1997 1.0 PAL version # eu.v11 - builds the 1997 1.1 PAL version +# jp.v11 - builds the 1997 1.1 Japanese version VERSION ?= us -$(eval $(call validate-option,VERSION,us eu.v10 eu.v11)) +$(eval $(call validate-option,VERSION,us eu.v10 eu.v11 jp.v11)) ifeq ($(VERSION),us) DEFINES += VERSION_US=1 @@ -54,6 +55,9 @@ else ifeq ($(VERSION),eu.v10) else ifeq ($(VERSION),eu.v11) DEFINES += VERSION_EU=1 VERSION_EU_V11=1 GRUCODE ?= f3dex_old +else ifeq ($(VERSION),jp.v11) + DEFINES += VERSION_JP=1 VERSION_JP_V11=1 + GRUCODE ?= f3dex_old endif ifeq ($(DEBUG),1) diff --git a/mk64.jp.v11.sha1 b/mk64.jp.v11.sha1 new file mode 100644 index 0000000000..b6cb34776c --- /dev/null +++ b/mk64.jp.v11.sha1 @@ -0,0 +1 @@ +9f439457585146a4e1da7e1dd9104f7f94381688 build/jp.v11/mk64.jp.v11.z64 From ec3bb42e35ed56581741272aaf581ce0cf1c1b32 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 02:06:17 -0700 Subject: [PATCH 07/41] assets: let an asset carry per-version meta overrides An asset is described once and usually only moves between versions, but a few also change shape: seven menu textures are a different width in the Japanese release, and one audio sequence a different length. Neither can be said today, because meta is shared by every version. Let meta hold an "overrides" map listing just the keys that differ for a version. Nesting them keeps a version name from colliding with a real meta key, and an asset with no override behaves exactly as before. Co-Authored-By: Claude Fable 5 --- extract_assets.py | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/extract_assets.py b/extract_assets.py index d808f7ffeb..4361750f94 100755 --- a/extract_assets.py +++ b/extract_assets.py @@ -23,6 +23,19 @@ def asset_needs_update(asset, version): return False +def resolve_meta(meta, lang): + # An asset is usually described once and merely moves between versions, so a + # version that also changes its shape lists just the differing keys under + # "overrides". Nesting them keeps a version name from colliding with a real + # meta key. + override = meta.get("overrides", {}).get(lang) + if not override: + return meta + merged = {k: v for k, v in meta.items() if k != "overrides"} + merged.update(override) + return merged + + def remove_file(fname): os.remove(fname) print("deleting", fname) @@ -66,7 +79,7 @@ def main(): clean_assets(local_asset_file) sys.exit(0) - all_langs = ["us", "eu.v10", "eu.v11"] + all_langs = ["us", "eu.v10", "eu.v11", "jp.v11"] if not langs or not all(a in all_langs for a in langs): langs_str = " ".join("[" + lang + "]" for lang in all_langs) print("Usage: " + sys.argv[0] + " " + langs_str) @@ -126,7 +139,8 @@ def main(): rom_offset = int(pos[0], 0) block_offset = int(pos[1], 0) if lang in langs: - todo[(lang, rom_offset)].append((asset, block_offset, data["meta"])) + todo[(lang, rom_offset)].append( + (asset, block_offset, resolve_meta(data["meta"], lang))) break # Load ROMs From d247b5ad7219eaa5476771f909504d482c88d737 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 02:06:17 -0700 Subject: [PATCH 08/41] jp.v11: asset offsets 877 assets carry a jp.v11 offset, and seven also carry a dims override where the Japanese menu text is a different width than the US artwork. Co-Authored-By: Claude Fable 5 --- assets.json | 1754 +++++++++++++++++++++++++-------------------------- 1 file changed, 877 insertions(+), 877 deletions(-) diff --git a/assets.json b/assets.json index 2d02e2ac74..e664be90d9 100644 --- a/assets.json +++ b/assets.json @@ -1,98 +1,98 @@ { "@comment": "This file was generated by n64split.", -"textures/raw/ipl3_font_00.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000B70","0x0"]}}, -"textures/raw/ipl3_font_01.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000B87","0x0"]}}, -"textures/raw/ipl3_font_02.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000B9E","0x0"]}}, -"textures/raw/ipl3_font_03.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000BB5","0x0"]}}, -"textures/raw/ipl3_font_04.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000BCC","0x0"]}}, -"textures/raw/ipl3_font_05.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000BE3","0x0"]}}, -"textures/raw/ipl3_font_06.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000BFA","0x0"]}}, -"textures/raw/ipl3_font_07.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C11","0x0"]}}, -"textures/raw/ipl3_font_08.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C28","0x0"]}}, -"textures/raw/ipl3_font_09.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C3F","0x0"]}}, -"textures/raw/ipl3_font_10.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C56","0x0"]}}, -"textures/raw/ipl3_font_11.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C6D","0x0"]}}, -"textures/raw/ipl3_font_12.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C84","0x0"]}}, -"textures/raw/ipl3_font_13.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C9B","0x0"]}}, -"textures/raw/ipl3_font_14.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000CB2","0x0"]}}, -"textures/raw/ipl3_font_15.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000CC9","0x0"]}}, -"textures/raw/ipl3_font_16.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000CE0","0x0"]}}, -"textures/raw/ipl3_font_17.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000CF7","0x0"]}}, -"textures/raw/ipl3_font_18.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D0E","0x0"]}}, -"textures/raw/ipl3_font_19.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D25","0x0"]}}, -"textures/raw/ipl3_font_20.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D3C","0x0"]}}, -"textures/raw/ipl3_font_21.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D53","0x0"]}}, -"textures/raw/ipl3_font_22.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D6A","0x0"]}}, -"textures/raw/ipl3_font_23.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D81","0x0"]}}, -"textures/raw/ipl3_font_24.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D98","0x0"]}}, -"textures/raw/ipl3_font_25.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000DAF","0x0"]}}, -"textures/raw/ipl3_font_26.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000DC6","0x0"]}}, -"textures/raw/ipl3_font_27.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000DDD","0x0"]}}, -"textures/raw/ipl3_font_28.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000DF4","0x0"]}}, -"textures/raw/ipl3_font_29.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E0B","0x0"]}}, -"textures/raw/ipl3_font_30.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E22","0x0"]}}, -"textures/raw/ipl3_font_31.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E39","0x0"]}}, -"textures/raw/ipl3_font_32.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E50","0x0"]}}, -"textures/raw/ipl3_font_33.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E67","0x0"]}}, -"textures/raw/ipl3_font_34.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E7E","0x0"]}}, -"textures/raw/ipl3_font_35.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E95","0x0"]}}, -"textures/raw/ipl3_font_36.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000EAC","0x0"]}}, -"textures/raw/ipl3_font_37.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000EC3","0x0"]}}, -"textures/raw/ipl3_font_38.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000EDA","0x0"]}}, -"textures/raw/ipl3_font_39.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000EF1","0x0"]}}, -"textures/raw/ipl3_font_40.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F08","0x0"]}}, -"textures/raw/ipl3_font_41.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F1F","0x0"]}}, -"textures/raw/ipl3_font_42.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F36","0x0"]}}, -"textures/raw/ipl3_font_43.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F4D","0x0"]}}, -"textures/raw/ipl3_font_44.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F64","0x0"]}}, -"textures/raw/ipl3_font_45.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F7B","0x0"]}}, -"textures/raw/ipl3_font_46.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F92","0x0"]}}, -"textures/raw/ipl3_font_47.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000FA9","0x0"]}}, -"textures/raw/ipl3_font_48.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000FC0","0x0"]}}, -"textures/raw/ipl3_font_49.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000FD7","0x0"]}}, -"textures/crash_screen/crash_screen_font.ia1.png": {"meta":{"dims":[8,136]}, "offsets":{"us":["0x0DD274","0x0"]}}, -"bin/lib/PR/boot/F3D_boot.bin": {"meta":{"size": "0xD0"}, "offsets": {"us":["0x0D9B70", "0x0"]}}, -"bin/lib/PR/f3d/F3DEX.bin": {"meta":{"size": "0x13E0"}, "offsets": {"us":["0x0D9C40", "0x0"]}}, -"bin/lib/PR/f3d/F3DLX.bin": {"meta":{"size": "0x1410"}, "offsets": {"us":["0x0DB020", "0x0"]}}, -"bin/lib/PR/audio/aspMain.bin": {"meta":{"size": "0xC70"}, "offsets": {"us":["0x0DC430", "0x0"]}}, -"bin/lib/PR/f3d/F3DEX_data.bin": {"meta":{"size": "0x800"}, "offsets": {"us":["0x0F4900", "0x0"]}}, -"bin/lib/PR/f3d/F3DLX_data.bin": {"meta":{"size": "0x800"}, "offsets": {"us":["0x0F5100", "0x0"]}}, -"bin/lib/PR/audio/aspMain_data.bin": {"meta":{"size": "0x300"}, "offsets": {"us":["0x0F5900", "0x0"]}}, +"textures/raw/ipl3_font_00.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000B70","0x0"],"jp.v11":["0xb70","0x0"]}}, +"textures/raw/ipl3_font_01.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000B87","0x0"],"jp.v11":["0xb87","0x0"]}}, +"textures/raw/ipl3_font_02.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000B9E","0x0"],"jp.v11":["0xb9e","0x0"]}}, +"textures/raw/ipl3_font_03.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000BB5","0x0"],"jp.v11":["0xbb5","0x0"]}}, +"textures/raw/ipl3_font_04.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000BCC","0x0"],"jp.v11":["0xbcc","0x0"]}}, +"textures/raw/ipl3_font_05.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000BE3","0x0"],"jp.v11":["0xbe3","0x0"]}}, +"textures/raw/ipl3_font_06.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000BFA","0x0"],"jp.v11":["0xbfa","0x0"]}}, +"textures/raw/ipl3_font_07.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C11","0x0"],"jp.v11":["0xc11","0x0"]}}, +"textures/raw/ipl3_font_08.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C28","0x0"],"jp.v11":["0xc28","0x0"]}}, +"textures/raw/ipl3_font_09.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C3F","0x0"],"jp.v11":["0xc3f","0x0"]}}, +"textures/raw/ipl3_font_10.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C56","0x0"],"jp.v11":["0xc56","0x0"]}}, +"textures/raw/ipl3_font_11.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C6D","0x0"],"jp.v11":["0xc6d","0x0"]}}, +"textures/raw/ipl3_font_12.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C84","0x0"],"jp.v11":["0xc84","0x0"]}}, +"textures/raw/ipl3_font_13.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C9B","0x0"],"jp.v11":["0xc9b","0x0"]}}, +"textures/raw/ipl3_font_14.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000CB2","0x0"],"jp.v11":["0xcb2","0x0"]}}, +"textures/raw/ipl3_font_15.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000CC9","0x0"],"jp.v11":["0xcc9","0x0"]}}, +"textures/raw/ipl3_font_16.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000CE0","0x0"],"jp.v11":["0xce0","0x0"]}}, +"textures/raw/ipl3_font_17.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000CF7","0x0"],"jp.v11":["0xcf7","0x0"]}}, +"textures/raw/ipl3_font_18.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D0E","0x0"],"jp.v11":["0xd0e","0x0"]}}, +"textures/raw/ipl3_font_19.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D25","0x0"],"jp.v11":["0xd25","0x0"]}}, +"textures/raw/ipl3_font_20.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D3C","0x0"],"jp.v11":["0xd3c","0x0"]}}, +"textures/raw/ipl3_font_21.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D53","0x0"],"jp.v11":["0xd53","0x0"]}}, +"textures/raw/ipl3_font_22.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D6A","0x0"],"jp.v11":["0xd6a","0x0"]}}, +"textures/raw/ipl3_font_23.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D81","0x0"],"jp.v11":["0xd81","0x0"]}}, +"textures/raw/ipl3_font_24.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D98","0x0"],"jp.v11":["0xd98","0x0"]}}, +"textures/raw/ipl3_font_25.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000DAF","0x0"],"jp.v11":["0xdaf","0x0"]}}, +"textures/raw/ipl3_font_26.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000DC6","0x0"],"jp.v11":["0xdc6","0x0"]}}, +"textures/raw/ipl3_font_27.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000DDD","0x0"],"jp.v11":["0xddd","0x0"]}}, +"textures/raw/ipl3_font_28.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000DF4","0x0"],"jp.v11":["0xdf4","0x0"]}}, +"textures/raw/ipl3_font_29.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E0B","0x0"],"jp.v11":["0xe0b","0x0"]}}, +"textures/raw/ipl3_font_30.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E22","0x0"],"jp.v11":["0xe22","0x0"]}}, +"textures/raw/ipl3_font_31.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E39","0x0"],"jp.v11":["0xe39","0x0"]}}, +"textures/raw/ipl3_font_32.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E50","0x0"],"jp.v11":["0xe50","0x0"]}}, +"textures/raw/ipl3_font_33.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E67","0x0"],"jp.v11":["0xe67","0x0"]}}, +"textures/raw/ipl3_font_34.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E7E","0x0"],"jp.v11":["0xe7e","0x0"]}}, +"textures/raw/ipl3_font_35.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E95","0x0"],"jp.v11":["0xe95","0x0"]}}, +"textures/raw/ipl3_font_36.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000EAC","0x0"],"jp.v11":["0xeac","0x0"]}}, +"textures/raw/ipl3_font_37.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000EC3","0x0"],"jp.v11":["0xec3","0x0"]}}, +"textures/raw/ipl3_font_38.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000EDA","0x0"],"jp.v11":["0xeda","0x0"]}}, +"textures/raw/ipl3_font_39.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000EF1","0x0"],"jp.v11":["0xef1","0x0"]}}, +"textures/raw/ipl3_font_40.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F08","0x0"],"jp.v11":["0xf08","0x0"]}}, +"textures/raw/ipl3_font_41.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F1F","0x0"],"jp.v11":["0xf1f","0x0"]}}, +"textures/raw/ipl3_font_42.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F36","0x0"],"jp.v11":["0xf36","0x0"]}}, +"textures/raw/ipl3_font_43.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F4D","0x0"],"jp.v11":["0xf4d","0x0"]}}, +"textures/raw/ipl3_font_44.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F64","0x0"],"jp.v11":["0xf64","0x0"]}}, +"textures/raw/ipl3_font_45.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F7B","0x0"],"jp.v11":["0xf7b","0x0"]}}, +"textures/raw/ipl3_font_46.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F92","0x0"],"jp.v11":["0xf92","0x0"]}}, +"textures/raw/ipl3_font_47.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000FA9","0x0"],"jp.v11":["0xfa9","0x0"]}}, +"textures/raw/ipl3_font_48.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000FC0","0x0"],"jp.v11":["0xfc0","0x0"]}}, +"textures/raw/ipl3_font_49.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000FD7","0x0"],"jp.v11":["0xfd7","0x0"]}}, +"textures/crash_screen/crash_screen_font.ia1.png": {"meta":{"dims":[8,136]}, "offsets":{"us":["0x0DD274","0x0"],"jp.v11":["0xde224","0x0"]}}, +"bin/lib/PR/boot/F3D_boot.bin": {"meta":{"size":"0xD0"}, "offsets":{"us":["0x0D9B70","0x0"],"jp.v11":["0xd9380","0x0"]}}, +"bin/lib/PR/f3d/F3DEX.bin": {"meta":{"size":"0x13E0"}, "offsets":{"us":["0x0D9C40","0x0"],"jp.v11":["0xd9450","0x0"]}}, +"bin/lib/PR/f3d/F3DLX.bin": {"meta":{"size":"0x1410"}, "offsets":{"us":["0x0DB020","0x0"],"jp.v11":["0xda830","0x0"]}}, +"bin/lib/PR/audio/aspMain.bin": {"meta":{"size":"0xC70"}, "offsets":{"us":["0x0DC430","0x0"],"jp.v11":["0xdbc40","0x0"]}}, +"bin/lib/PR/f3d/F3DEX_data.bin": {"meta":{"size":"0x800"}, "offsets":{"us":["0x0F4900","0x0"],"jp.v11":["0xf5ab0","0x0"]}}, +"bin/lib/PR/f3d/F3DLX_data.bin": {"meta":{"size":"0x800"}, "offsets":{"us":["0x0F5100","0x0"],"jp.v11":["0xf62b0","0x0"]}}, +"bin/lib/PR/audio/aspMain_data.bin": {"meta":{"size":"0x300"}, "offsets":{"us":["0x0F5900","0x0"],"jp.v11":["0xf6ab0","0x0"]}}, "bin/audiobanks.us.bin": {"meta":{"size": "0x13840"}, "offsets":{"us":["0x966260","0x0"],"eu.v11":["0x966380","0x0"]}}, "bin/audiobanks.eu.bin": {"meta":{"size": "0x13840"}, "offsets":{"eu.v10":["0x966460","0x0"]}}, "bin/audiotables.bin": {"meta":{"size": "0x24C4C0"}, "offsets":{"us":["0x979AA0","0x0"]}}, "music/00_seq_00.m64": {"meta":{"size":"0x2830"}, "offsets": {"us":["0xBC6060", "0x0"]}}, -"music/01_title_screen.m64": {"meta":{"size":"0x1B30"}, "offsets": {"us":["0xBC8890", "0x0"]}}, -"music/02_main_menu.m64": {"meta":{"size":"0x0D60"}, "offsets": {"us":["0xBCA3C0", "0x0"]}}, -"music/03_racways_wario_stadium.m64": {"meta":{"size":"0x1A10"}, "offsets": {"us":["0xBCB120", "0x0"]}}, -"music/04_moo_moo_fame_yoshi_valley.m64": {"meta":{"size":"0x1CA0"}, "offsets": {"us":["0xBCCB30", "0x0"]}}, -"music/05_choco_mountain.m64": {"meta":{"size":"0x1F70"}, "offsets": {"us":["0xBCE7D0", "0x0"]}}, -"music/06_koopa_troopa_beach.m64": {"meta":{"size":"0x1EE0"}, "offsets": {"us":["0xBD0740", "0x0"]}}, -"music/07_banshee_boardwalk.m64": {"meta":{"size":"0x16D0"}, "offsets": {"us":["0xBD2620", "0x0"]}}, -"music/08_seq_08.m64": {"meta":{"size":"0x23D0"}, "offsets": {"us":["0xBD3CF0", "0x0"]}}, -"music/09_seq_09.m64": {"meta":{"size":"0x1800"}, "offsets": {"us":["0xBD60C0", "0x0"]}}, -"music/10_kalimari_desert.m64": {"meta":{"size":"0x1AE0"}, "offsets": {"us":["0xBD78C0", "0x0"]}}, -"music/11_start_grid_gp_vs.m64": {"meta":{"size":"0x05F0"}, "offsets": {"us":["0xBD93A0", "0x0"]}}, -"music/12_final_lap_fanfare.m64": {"meta":{"size":"0x03D0"}, "offsets": {"us":["0xBD9990", "0x0"]}}, -"music/13_finish_1st_place.m64": {"meta":{"size":"0x0360"}, "offsets": {"us":["0xBD9D60", "0x0"]}}, -"music/14_finish_2nd_4th_place.m64": {"meta":{"size":"0x02E0"}, "offsets": {"us":["0xBDA0C0", "0x0"]}}, -"music/15_finish_5th_8th_place.m64": {"meta":{"size":"0x04C0"}, "offsets": {"us":["0xBDA3A0", "0x0"]}}, -"music/16_seq_10.m64": {"meta":{"size":"0x1410"}, "offsets": {"us":["0xBDA860", "0x0"]}}, -"music/17_star_jingle.m64": {"meta":{"size":"0x06E0"}, "offsets": {"us":["0xBDBC70", "0x0"]}}, -"music/18_rainbow_road.m64": {"meta":{"size":"0x32F0"}, "offsets": {"us":["0xBDC350", "0x0"]}}, -"music/19_maybe_boo_item.m64": {"meta":{"size":"0x06C0"}, "offsets": {"us":["0xBDF640", "0x0"]}}, -"music/20_game_over.m64": {"meta":{"size":"0x04B0"}, "offsets": {"us":["0xBDFD00", "0x0"]}}, -"music/21_toads_turnpike.m64": {"meta":{"size":"0x1160"}, "offsets": {"us":["0xBE01B0", "0x0"]}}, -"music/22_start_gird_time_attack.m64": {"meta":{"size":"0x0310"}, "offsets": {"us":["0xBE1310", "0x0"]}}, -"music/23_vs_battle_results.m64": {"meta":{"size":"0x12B0"}, "offsets": {"us":["0xBE1620", "0x0"]}}, -"music/24_losing_results.m64": {"meta":{"size":"0x0600"}, "offsets": {"us":["0xBE28D0", "0x0"]}}, -"music/25_battle_arenas.m64": {"meta":{"size":"0x16E0"}, "offsets": {"us":["0xBE2ED0", "0x0"]}}, -"music/26_award_ceremony_buildup.m64": {"meta":{"size":"0x0AD0"}, "offsets": {"us":["0xBE45B0", "0x0"]}}, -"music/27_award_ceremony_1st_3rd.m64": {"meta":{"size":"0x0C80"}, "offsets": {"us":["0xBE5080", "0x0"]}}, -"music/28_staff_roll.m64": {"meta":{"size":"0x2750"}, "offsets": {"us":["0xBE5D00", "0x0"]}}, -"music/29_award_ceremony_4th_8th.m64": {"meta":{"size":"0x0C80"}, "offsets": {"us":["0xBE8450", "0x0"]}}, +"music/01_title_screen.m64": {"meta":{"size":"0x1B30"}, "offsets":{"us":["0xBC8890","0x0"],"jp.v11":["0xbc6cf0","0x0"]}}, +"music/02_main_menu.m64": {"meta":{"size":"0x0D60"}, "offsets":{"us":["0xBCA3C0","0x0"],"jp.v11":["0xbc8820","0x0"]}}, +"music/03_racways_wario_stadium.m64": {"meta":{"size":"0x1A10"}, "offsets":{"us":["0xBCB120","0x0"],"jp.v11":["0xbc9580","0x0"]}}, +"music/04_moo_moo_fame_yoshi_valley.m64": {"meta":{"size":"0x1CA0"}, "offsets":{"us":["0xBCCB30","0x0"],"jp.v11":["0xbcaf90","0x0"]}}, +"music/05_choco_mountain.m64": {"meta":{"size":"0x1F70"}, "offsets":{"us":["0xBCE7D0","0x0"],"jp.v11":["0xbccc30","0x0"]}}, +"music/06_koopa_troopa_beach.m64": {"meta":{"size":"0x1EE0"}, "offsets":{"us":["0xBD0740","0x0"],"jp.v11":["0xbceba0","0x0"]}}, +"music/07_banshee_boardwalk.m64": {"meta":{"size":"0x16D0"}, "offsets":{"us":["0xBD2620","0x0"],"jp.v11":["0xbd0a80","0x0"]}}, +"music/08_seq_08.m64": {"meta":{"size":"0x23D0"}, "offsets":{"us":["0xBD3CF0","0x0"],"jp.v11":["0xbd2150","0x0"]}}, +"music/09_seq_09.m64": {"meta":{"size":"0x1800"}, "offsets":{"us":["0xBD60C0","0x0"],"jp.v11":["0xbd4520","0x0"]}}, +"music/10_kalimari_desert.m64": {"meta":{"size":"0x1AE0"}, "offsets":{"us":["0xBD78C0","0x0"],"jp.v11":["0xbd5d20","0x0"]}}, +"music/11_start_grid_gp_vs.m64": {"meta":{"size":"0x05F0"}, "offsets":{"us":["0xBD93A0","0x0"],"jp.v11":["0xbd7800","0x0"]}}, +"music/12_final_lap_fanfare.m64": {"meta":{"size":"0x03D0"}, "offsets":{"us":["0xBD9990","0x0"],"jp.v11":["0xbd7df0","0x0"]}}, +"music/13_finish_1st_place.m64": {"meta":{"size":"0x0360"}, "offsets":{"us":["0xBD9D60","0x0"],"jp.v11":["0xbd81c0","0x0"]}}, +"music/14_finish_2nd_4th_place.m64": {"meta":{"size":"0x02E0"}, "offsets":{"us":["0xBDA0C0","0x0"],"jp.v11":["0xbd8520","0x0"]}}, +"music/15_finish_5th_8th_place.m64": {"meta":{"size":"0x04C0"}, "offsets":{"us":["0xBDA3A0","0x0"],"jp.v11":["0xbd8800","0x0"]}}, +"music/16_seq_10.m64": {"meta":{"size":"0x1410"}, "offsets":{"us":["0xBDA860","0x0"],"jp.v11":["0xbd8cc0","0x0"]}}, +"music/17_star_jingle.m64": {"meta":{"size":"0x06E0"}, "offsets":{"us":["0xBDBC70","0x0"],"jp.v11":["0xbda0d0","0x0"]}}, +"music/18_rainbow_road.m64": {"meta":{"size":"0x32F0"}, "offsets":{"us":["0xBDC350","0x0"],"jp.v11":["0xbda7b0","0x0"]}}, +"music/19_maybe_boo_item.m64": {"meta":{"size":"0x06C0"}, "offsets":{"us":["0xBDF640","0x0"],"jp.v11":["0xbddaa0","0x0"]}}, +"music/20_game_over.m64": {"meta":{"size":"0x04B0"}, "offsets":{"us":["0xBDFD00","0x0"],"jp.v11":["0xbde160","0x0"]}}, +"music/21_toads_turnpike.m64": {"meta":{"size":"0x1160"}, "offsets":{"us":["0xBE01B0","0x0"],"jp.v11":["0xbde610","0x0"]}}, +"music/22_start_gird_time_attack.m64": {"meta":{"size":"0x0310"}, "offsets":{"us":["0xBE1310","0x0"],"jp.v11":["0xbdf770","0x0"]}}, +"music/23_vs_battle_results.m64": {"meta":{"size":"0x12B0"}, "offsets":{"us":["0xBE1620","0x0"],"jp.v11":["0xbdfa80","0x0"]}}, +"music/24_losing_results.m64": {"meta":{"size":"0x0600"}, "offsets":{"us":["0xBE28D0","0x0"],"jp.v11":["0xbe0d30","0x0"]}}, +"music/25_battle_arenas.m64": {"meta":{"size":"0x16E0"}, "offsets":{"us":["0xBE2ED0","0x0"],"jp.v11":["0xbe1330","0x0"]}}, +"music/26_award_ceremony_buildup.m64": {"meta":{"size":"0x0AD0"}, "offsets":{"us":["0xBE45B0","0x0"],"jp.v11":["0xbe2a10","0x0"]}}, +"music/27_award_ceremony_1st_3rd.m64": {"meta":{"size":"0x0C80"}, "offsets":{"us":["0xBE5080","0x0"],"jp.v11":["0xbe34e0","0x0"]}}, +"music/28_staff_roll.m64": {"meta":{"size":"0x2750"}, "offsets":{"us":["0xBE5D00","0x0"],"jp.v11":["0xbe4160","0x0"]}}, +"music/29_award_ceremony_4th_8th.m64": {"meta":{"size":"0x0C80"}, "offsets":{"us":["0xBE8450","0x0"],"jp.v11":["0xbe68b0","0x0"]}}, "music/eu/00_seq_00.m64": {"meta":{"size":"0x2910"}, "offsets": {"eu.v10":["0xBC6260", "0x0"],"eu.v11":["0xBC6180", "0x0"]}}, "music/eu/01_title_screen.m64": {"meta":{"size":"0x1B30"}, "offsets": {"eu.v10":["0xBC8B70", "0x0"],"eu.v11":["0xBC8A90", "0x0"]}}, @@ -125,8 +125,8 @@ "music/eu/28_staff_roll.m64": {"meta":{"size":"0x2750"}, "offsets": {"eu.v10":["0xBE5FE0", "0x0"],"eu.v11":["0xBE5F00", "0x0"]}}, "music/eu/29_award_ceremony_4th_8th.m64": {"meta":{"size":"0x0C80"}, "offsets": {"eu.v10":["0xBE8730", "0x0"],"eu.v11":["0xBE8650", "0x0"]}}, -"bin/texture_player_select.rgba16.tkmk00": {"meta":{"size":"0xC00"}, "offsets": {"us":["0x7FA3C0", "0x0"]}}, -"bin/texture_option.rgba16.tkmk00": {"meta":{"size":"0x900"}, "offsets": {"us":["0x7FAFC0", "0x0"]}}, +"bin/texture_player_select.rgba16.tkmk00": {"meta":{"size":"0xC00"}, "offsets":{"us":["0x7FA3C0","0x0"],"jp.v11":["0x7ffaa0","0x0"]}}, +"bin/texture_option.rgba16.tkmk00": {"meta":{"size":"0x900"}, "offsets":{"us":["0x7FAFC0","0x0"],"jp.v11":["0x8006a0","0x0"]}}, "bin/texture_name_dk.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x7FB8C0", "0x0"]}}, "bin/texture_name_toad.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x7FBAC0", "0x0"]}}, @@ -158,19 +158,19 @@ "bin/gTextureTitleDKsJungleParkway.rgba16.tkmk00": {"meta":{"size":"0x600"}, "offsets": {"us":["0x8018C0", "0x0"]}}, "bin/gTextureTitleBigDonut.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets": {"us":["0x801EC0", "0x0"]}}, -"bin/gTextureMapSelect.rgba16.tkmk00": {"meta":{"size":"0xC00"}, "offsets": {"us":["0x8021C0", "0x0"]}}, +"bin/gTextureMapSelect.rgba16.tkmk00": {"meta":{"size":"0xC00"}, "offsets":{"us":["0x8021C0","0x0"],"jp.v11":["0x8071a0","0x0"]}}, -"bin/gTextureMenuFlowerCup.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x802DC0", "0x0"]}}, +"bin/gTextureMenuFlowerCup.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"us":["0x802DC0","0x0"],"jp.v11":["0x807da0","0x0"]}}, "bin/gTextureMenuMushroomCup.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x8031C0", "0x0"]}}, -"bin/gTextureMenuStarCup.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x8035C0", "0x0"]}}, -"bin/gTextureMenuSpecialCup.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x8039C0", "0x0"]}}, +"bin/gTextureMenuStarCup.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"us":["0x8035C0","0x0"],"jp.v11":["0x8085a0","0x0"]}}, +"bin/gTextureMenuSpecialCup.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"us":["0x8039C0","0x0"],"jp.v11":["0x8089a0","0x0"]}}, -"bin/texture_game_select.rgba16.tkmk00": {"meta":{"size":"0xC00"}, "offsets": {"us":["0x803DC0", "0x0"]}}, +"bin/texture_game_select.rgba16.tkmk00": {"meta":{"size":"0xC00"}, "offsets":{"us":["0x803DC0","0x0"],"jp.v11":["0x808da0","0x0"]}}, -"bin/texture_menu_1p_game.rgba16.tkmk00": {"meta":{"size":"0x500"}, "offsets": {"us":["0x8049C0", "0x0"]}}, -"bin/texture_menu_2p_game.rgba16.tkmk00": {"meta":{"size":"0x700"}, "offsets": {"us":["0x804EC0", "0x0"]}}, -"bin/texture_menu_3p_game.rgba16.tkmk00": {"meta":{"size":"0xA00"}, "offsets": {"us":["0x8055C0", "0x0"]}}, -"bin/texture_menu_4p_game.rgba16.tkmk00": {"meta":{"size":"0xB00"}, "offsets": {"us":["0x805FC0", "0x0"]}}, +"bin/texture_menu_1p_game.rgba16.tkmk00": {"meta":{"size":"0x500"}, "offsets":{"us":["0x8049C0","0x0"],"jp.v11":["0x8099a0","0x0"]}}, +"bin/texture_menu_2p_game.rgba16.tkmk00": {"meta":{"size":"0x700"}, "offsets":{"us":["0x804EC0","0x0"],"jp.v11":["0x809ea0","0x0"]}}, +"bin/texture_menu_3p_game.rgba16.tkmk00": {"meta":{"size":"0xA00"}, "offsets":{"us":["0x8055C0","0x0"],"jp.v11":["0x80a5a0","0x0"]}}, +"bin/texture_menu_4p_game.rgba16.tkmk00": {"meta":{"size":"0xB00"}, "offsets":{"us":["0x805FC0","0x0"],"jp.v11":["0x80afa0","0x0"]}}, "bin/texture_mode_battle.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets": {"us":["0x806AC0", "0x0"]}}, "bin/texture_mode_time_trials.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x806DC0", "0x0"]}}, @@ -180,32 +180,32 @@ "bin/texture_l_option.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets": {"us":["0x8078C0", "0x0"]}}, "bin/texture_r_data.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets": {"us":["0x807BC0", "0x0"]}}, -"bin/texture_50cc.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x807EC0", "0x0"]}}, -"bin/texture_100cc.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x8080C0", "0x0"]}}, -"bin/texture_150cc.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x8082C0", "0x0"]}}, +"bin/texture_50cc.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets":{"us":["0x807EC0","0x0"],"jp.v11":["0x80d0a0","0x0"]}}, +"bin/texture_100cc.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets":{"us":["0x8080C0","0x0"],"jp.v11":["0x80d2a0","0x0"]}}, +"bin/texture_150cc.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets":{"us":["0x8082C0","0x0"],"jp.v11":["0x80d4a0","0x0"]}}, "bin/texture_extra.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x8084C0", "0x0"]}}, -"bin/gTextureMenuWithoutItem.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets": {"us":["0x8086C0", "0x0"]}}, -"bin/gTextureMenuWithItem.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets": {"us":["0x8089C0", "0x0"]}}, +"bin/gTextureMenuWithoutItem.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets":{"us":["0x8086C0","0x0"],"jp.v11":["0x80d8a0","0x0"]}}, +"bin/gTextureMenuWithItem.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets":{"us":["0x8089C0","0x0"],"jp.v11":["0x80dba0","0x0"]}}, "bin/texture_begin.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x808CC0", "0x0"]}}, "bin/texture_menu_ghost.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x808EC0", "0x0"]}}, "bin/texture_data.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x8090C0", "0x0"]}}, -"bin/texture_ok.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x8092C0", "0x0"]}}, +"bin/texture_ok.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets":{"us":["0x8092C0","0x0"],"jp.v11":["0x80e4a0","0x0"]}}, -"bin/background_blue_sky.rgba16.tkmk00": {"meta":{"size":"0xCE00"}, "offsets": {"us":["0x8094C0", "0x0"]}}, -"bin/background_sunset.rgba16.tkmk00": {"meta":{"size":"0x9400"}, "offsets": {"us":["0x8162C0", "0x0"]}}, +"bin/background_blue_sky.rgba16.tkmk00": {"meta":{"size":"0xCE00"}, "offsets":{"us":["0x8094C0","0x0"],"jp.v11":["0x80e6a0","0x0"]}}, +"bin/background_sunset.rgba16.tkmk00": {"meta":{"size":"0x9400"}, "offsets":{"us":["0x8162C0","0x0"],"jp.v11":["0x81b4a0","0x0"]}}, -"bin/gTextureGreenGoldStripe.rgba16.tkmk00": {"meta":{"size":"0xC00"}, "offsets": {"us":["0x81F6C0", "0x0"]}}, -"bin/gTextureGoldStripe.rgba16.tkmk00": {"meta":{"size":"0x700"}, "offsets": {"us":["0x8202C0", "0x0"]}}, -"bin/gTextureWhiteStripe.rgba16.tkmk00": {"meta":{"size":"0x100"}, "offsets": {"us":["0x8209C0", "0x0"]}}, -"bin/gTexturePinkBar.rgba16.tkmk00": {"meta":{"size":"0x500"}, "offsets": {"us":["0x820AC0", "0x0"]}}, -"bin/gTextureGoldBar.rgba16.tkmk00": {"meta":{"size":"0xD50"}, "offsets": {"us":["0x820FC0", "0x0"]}}, +"bin/gTextureGreenGoldStripe.rgba16.tkmk00": {"meta":{"size":"0xC00"}, "offsets":{"us":["0x81F6C0","0x0"],"jp.v11":["0x8248a0","0x0"]}}, +"bin/gTextureGoldStripe.rgba16.tkmk00": {"meta":{"size":"0x700"}, "offsets":{"us":["0x8202C0","0x0"],"jp.v11":["0x8254a0","0x0"]}}, +"bin/gTextureWhiteStripe.rgba16.tkmk00": {"meta":{"size":"0x100"}, "offsets":{"us":["0x8209C0","0x0"],"jp.v11":["0x825ba0","0x0"]}}, +"bin/gTexturePinkBar.rgba16.tkmk00": {"meta":{"size":"0x500"}, "offsets":{"us":["0x820AC0","0x0"],"jp.v11":["0x825ca0","0x0"]}}, +"bin/gTextureGoldBar.rgba16.tkmk00": {"meta":{"size":"0xD50"}, "offsets":{"us":["0x820FC0","0x0"],"jp.v11":["0x8261a0","0x0"]}}, -"textures/common/common_texture_particle_fire.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x132B50","0x200"]}}, -"textures/common/common_texture_item_box_question_mark.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x132B50", "0x01EE8"]}}, -"textures/common/common_texture_banana.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x03348"]}}, -"textures/common/common_texture_flat_banana.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x132B50", "0x03B48"]}}, -"textures/common/132B50_06A58.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x132B50", "0x06A58"]}}, -"textures/common/132B50_06AD8.ia8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x06AD8"]}}, +"textures/common/common_texture_particle_fire.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x132B50","0x200"],"jp.v11":["0x1323a0","0x200"]}}, +"textures/common/common_texture_item_box_question_mark.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x132B50","0x01EE8"],"jp.v11":["0x1323a0","0x01EE8"]}}, +"textures/common/common_texture_banana.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x132B50","0x03348"],"jp.v11":["0x1323a0","0x03348"]}}, +"textures/common/common_texture_flat_banana.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x132B50","0x03B48"],"jp.v11":["0x1323a0","0x03B48"]}}, +"textures/common/132B50_06A58.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x132B50","0x06A58"],"jp.v11":["0x1323a0","0x06A58"]}}, +"textures/common/132B50_06AD8.ia8.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x132B50","0x06AD8"],"jp.v11":["0x1323a0","0x06AD8"]}}, "textures/common/common_texture_speedometer.i4.png": {"meta":{"dims":[64,96]}, "offsets": {"us":["0x132B50", "0x09958"]}}, "textures/common/common_texture_speedometer_needle.i4.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x132B50", "0x0A558"]}}, "textures/common/common_texture_hud_lap.rgba16.png": {"meta":{"dims":[32,8]}, "offsets": {"us":["0x132B50", "0x0A958"]}}, @@ -246,752 +246,752 @@ "textures/common/common_texture_particle_smoke_3.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2C458"]}}, "textures/common/common_texture_particle_smoke_4.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2C858"]}}, -"textures/standalone/sign_shell_shot_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x641F70", "0x00000"]}}, -"textures/standalone/sign_shell_shot_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x6422FC", "0x00000"]}}, -"textures/standalone/gray_checkerboard.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x642544", "0x00000"]}}, -"textures/standalone/gray_cobblestone.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x642650", "0x00000"]}}, -"textures/standalone/texture_64275C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64275C", "0x00000"]}}, -"textures/standalone/texture_64286C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64286C", "0x00000"]}}, -"textures/standalone/texture_642978.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x642978", "0x00000"]}}, -"textures/standalone/sign_blue_64.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x642A88", "0x00000"]}}, -"textures/standalone/checkerboard_yellow_pink.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x642FF0", "0x00000"]}}, -"textures/standalone/texture_64313C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64313C", "0x00000"]}}, -"textures/standalone/checkerbord_yellow_blue.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6432F4", "0x00000"]}}, -"textures/standalone/texture_643430.ia16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x643430", "0x00000"]}}, -"textures/standalone/texture_643A34.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x643A34", "0x00000"]}}, -"textures/standalone/texture_643B3C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x643B3C", "0x00000"]}}, -"textures/standalone/texture_6442D4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6442D4", "0x00000"]}}, -"textures/standalone/texture_64440C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x64440C", "0x00000"]}}, -"textures/standalone/texture_6446AC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6446AC", "0x00000"]}}, -"textures/standalone/texture_6447C4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6447C4", "0x00000"]}}, -"textures/standalone/checkerboard_black_white.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6448CC", "0x00000"]}}, -"textures/standalone/texture_6449D4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6449D4", "0x00000"]}}, -"textures/standalone/texture_645134.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x645134", "0x00000"]}}, -"textures/standalone/texture_645660.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x645660", "0x00000"]}}, -"textures/standalone/texture_6457D8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6457D8", "0x00000"]}}, -"textures/standalone/checkerboard_blue_green.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x645938", "0x00000"]}}, -"textures/standalone/number_yellow_blue_1.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x645A74", "0x00000"]}}, -"textures/standalone/number_yellow_blue_2.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x645C24", "0x00000"]}}, -"textures/standalone/number_yellow_blue_3.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x645DEC", "0x00000"]}}, -"textures/standalone/number_yellow_blue_4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x645FB8", "0x00000"]}}, -"textures/standalone/texture_64619C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64619C", "0x00000"]}}, -"textures/standalone/texture_6462C0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6462C0", "0x00000"]}}, -"textures/standalone/texture_64647C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x64647C", "0x00000"]}}, -"textures/standalone/texture_646CA8.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x646CA8", "0x00000"]}}, -"textures/standalone/texture_6473E4.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x6473E4", "0x00000"]}}, -"textures/standalone/texture_647994.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x647994", "0x00000"]}}, -"textures/standalone/texture_647F4C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x647F4C", "0x00000"]}}, -"textures/standalone/texture_648508.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x648508", "0x00000"]}}, -"textures/standalone/grass_1.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x648708", "0x00000"]}}, -"textures/standalone/wood_door_0.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x648830", "0x00000"]}}, -"textures/standalone/wood_door_1.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x648AC4", "0x00000"]}}, -"textures/standalone/grass_2.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6493C8", "0x00000"]}}, -"textures/standalone/texture_64ACAC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64ACAC", "0x00000"]}}, -"textures/standalone/texture_64AF50.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64AF50", "0x00000"]}}, -"textures/standalone/texture_64B090.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64B090", "0x00000"]}}, -"textures/standalone/texture_64B3F8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64B3F8", "0x00000"]}}, -"textures/standalone/texture_64B54C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64B54C", "0x00000"]}}, -"textures/standalone/texture_64B8D8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64B8D8", "0x00000"]}}, -"textures/standalone/texture_64BA50.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64BA50", "0x00000"]}}, -"textures/standalone/texture_64BB60.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64BB60", "0x00000"]}}, -"textures/standalone/texture_64BCCC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64BCCC", "0x00000"]}}, -"textures/standalone/texture_64C11C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64C11C", "0x00000"]}}, -"textures/standalone/texture_64C7B4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64C7B4", "0x00000"]}}, -"textures/standalone/texture_64CC20.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x64CC20", "0x00000"]}}, -"textures/standalone/sign_merging_lanes.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64DAE4", "0x00000"]}}, -"textures/standalone/grass_3.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64DBFC", "0x00000"]}}, -"textures/standalone/grass_4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64DF70", "0x00000"]}}, -"textures/standalone/grass_5.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64E534", "0x00000"]}}, -"textures/standalone/grass_6.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64E774", "0x00000"]}}, -"textures/standalone/sign_nintendo_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x64E9B0", "0x00000"]}}, -"textures/standalone/sign_nintendo_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x64EEF4", "0x00000"]}}, -"textures/standalone/grass_7.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64F408", "0x00000"]}}, -"textures/standalone/texture_64F9E8.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x64F9E8", "0x00000"]}}, -"textures/standalone/texture_64FBF4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64FBF4", "0x00000"]}}, -"textures/standalone/texture_64FE68.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x64FE68", "0x00000"]}}, -"textures/standalone/wood_bridge_slats.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x6500C0", "0x00000"]}}, -"textures/standalone/flag_red.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x650E6C", "0x00000"]}}, -"textures/standalone/texture_65100C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x65100C", "0x00000"]}}, -"textures/standalone/texture_65112C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x65112C", "0x00000"]}}, -"textures/standalone/texture_65127C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x65127C", "0x00000"]}}, -"textures/standalone/texture_651428.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x651428", "0x00000"]}}, -"textures/standalone/texture_651984.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x651984", "0x00000"]}}, -"textures/standalone/texture_651B20.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x651B20", "0x00000"]}}, -"textures/standalone/texture_651F40.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x651F40", "0x00000"]}}, -"textures/standalone/texture_6522E0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6522E0", "0x00000"]}}, -"textures/standalone/texture_6528DC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6528DC", "0x00000"]}}, -"textures/standalone/texture_652B54.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x652B54", "0x00000"]}}, -"textures/standalone/texture_65315C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x65315C", "0x00000"]}}, -"textures/standalone/texture_653608.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x653608", "0x00000"]}}, -"textures/standalone/texture_653DB0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x653DB0", "0x00000"]}}, -"textures/standalone/texture_654460.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x654460", "0x00000"]}}, -"textures/standalone/texture_654F74.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x654F74", "0x00000"]}}, -"textures/standalone/texture_655998.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x655998", "0x00000"]}}, -"textures/standalone/texture_655F38.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x655F38", "0x00000"]}}, -"textures/standalone/texture_656AF4.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x656AF4", "0x00000"]}}, -"textures/standalone/texture_6575C8.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x6575C8", "0x00000"]}}, -"textures/standalone/texture_658370.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x658370", "0x00000"]}}, -"textures/standalone/texture_65912C.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x65912C", "0x00000"]}}, -"textures/standalone/texture_659EE8.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x659EE8", "0x00000"]}}, -"textures/standalone/texture_65ADE0.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x65ADE0", "0x00000"]}}, -"textures/standalone/texture_65BB3C.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x65BB3C", "0x00000"]}}, -"textures/standalone/texture_65C8DC.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x65C8DC", "0x00000"]}}, -"textures/standalone/texture_65D5D4.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x65D5D4", "0x00000"]}}, -"textures/standalone/texture_65E2EC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x65E2EC", "0x00000"]}}, -"textures/standalone/texture_65E59C.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x65E59C", "0x00000"]}}, -"textures/standalone/texture_65EAEC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x65EAEC", "0x00000"]}}, -"textures/standalone/texture_65EE38.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x65EE38", "0x00000"]}}, -"textures/standalone/texture_65FB18.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x65FB18", "0x00000"]}}, -"textures/standalone/sign_pink_arrow.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x65FF08", "0x00000"]}}, -"textures/standalone/crown_jewel_blue.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6600A0", "0x00000"]}}, -"textures/standalone/crown.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6603A4", "0x00000"]}}, -"textures/standalone/crown_jewel_pink.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6604AC", "0x00000"]}}, -"textures/standalone/texture_6607C0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6607C0", "0x00000"]}}, -"textures/standalone/texture_6608C8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6608C8", "0x00000"]}}, -"textures/standalone/texture_6609D0.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x6609D0", "0x00000"]}}, -"textures/standalone/texture_660D8C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x660D8C", "0x00000"]}}, -"textures/standalone/roof_tile.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x660EB4", "0x00000"]}}, -"textures/standalone/castle_bricks.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x660FE0", "0x00000"]}}, -"textures/standalone/castle_bridge.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x661B14", "0x00000"]}}, -"textures/standalone/grass_8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x661F3C", "0x00000"]}}, -"textures/standalone/grass_9.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x662208", "0x00000"]}}, -"textures/standalone/texture_66262C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66262C", "0x00000"]}}, -"textures/standalone/texture_662924.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x662924", "0x00000"]}}, -"textures/standalone/texture_662A34.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x662A34", "0x00000"]}}, -"textures/standalone/sign_toad_yellow.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x662B3C", "0x00000"]}}, -"textures/standalone/sign_toad_green.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x663260", "0x00000"]}}, -"textures/standalone/sign_toad_red.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x663980", "0x00000"]}}, -"textures/standalone/texture_663F90.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x663F90", "0x00000"]}}, -"textures/standalone/texture_6640B4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6640B4", "0x00000"]}}, -"textures/standalone/texture_6642A4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6642A4", "0x00000"]}}, -"textures/standalone/texture_664408.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x664408", "0x00000"]}}, -"textures/standalone/texture_6646B8.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x6646B8", "0x00000"]}}, -"textures/standalone/sign_koopa_air_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x664950", "0x00000"]}}, -"textures/standalone/sign_koopa_air_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x664CB0", "0x00000"]}}, -"textures/standalone/bricks_red.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x664FB4", "0x00000"]}}, -"textures/standalone/texture_665C0C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x665C0C", "0x00000"]}}, -"textures/standalone/texture_6661AC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6661AC", "0x00000"]}}, -"textures/standalone/texture_6663A4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6663A4", "0x00000"]}}, -"textures/standalone/sign_bowser_0.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x66699C", "0x00000"]}}, -"textures/standalone/sign_bowser_1.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x66716C", "0x00000"]}}, -"textures/standalone/grass_10.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6677BC", "0x00000"]}}, -"textures/standalone/grass_11.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6679B4", "0x00000"]}}, -"textures/standalone/texture_667BAC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x667BAC", "0x00000"]}}, -"textures/standalone/texture_668228.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x668228", "0x00000"]}}, -"textures/standalone/texture_668358.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x668358", "0x00000"]}}, -"textures/standalone/texture_6684F8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6684F8", "0x00000"]}}, -"textures/standalone/texture_668608.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x668608", "0x00000"]}}, -"textures/standalone/texture_668728.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x668728", "0x00000"]}}, -"textures/standalone/texture_668920.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x668920", "0x00000"]}}, -"textures/standalone/grass_12.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x668CFC", "0x00000"]}}, -"textures/standalone/texture_669570.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x669570", "0x00000"]}}, -"textures/standalone/texture_66A3DC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66A3DC", "0x00000"]}}, -"textures/standalone/texture_66ABA4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66ABA4", "0x00000"]}}, -"textures/standalone/texture_66AEB8.ia16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66AEB8", "0x00000"]}}, -"textures/standalone/sign_luigi_face_0.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x66B0BC", "0x00000"]}}, -"textures/standalone/sign_luigi_face_1.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x66B688", "0x00000"]}}, -"textures/standalone/sign_luigis_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x66BCE8", "0x00000"]}}, -"textures/standalone/sign_luigis_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x66BF70", "0x00000"]}}, -"textures/standalone/sign_mario_star_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x66C220", "0x00000"]}}, -"textures/standalone/sign_mario_star_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x66C4F4", "0x00000"]}}, -"textures/standalone/texture_66C7A8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66C7A8", "0x00000"]}}, -"textures/standalone/texture_66C8F4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66C8F4", "0x00000"]}}, -"textures/standalone/texture_66CA98.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66CA98", "0x00000"]}}, -"textures/standalone/texture_66CD64.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66CD64", "0x00000"]}}, -"textures/standalone/texture_66D024.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66D024", "0x00000"]}}, -"textures/standalone/flag_red_2.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66D510", "0x00000"]}}, -"textures/standalone/texture_66D698.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66D698", "0x00000"]}}, -"textures/standalone/checkerboard_pink.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66DA08", "0x00000"]}}, -"textures/standalone/texture_66DB60.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66DB60", "0x00000"]}}, -"textures/standalone/texture_66DD38.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x66DD38", "0x00000"]}}, -"textures/standalone/sign_nintendo_red_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x66E068", "0x00000"]}}, -"textures/standalone/sign_nintendo_red_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x66E310", "0x00000"]}}, -"textures/standalone/texture_66E608.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66E608", "0x00000"]}}, -"textures/standalone/texture_66EBF0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66EBF0", "0x00000"]}}, -"textures/standalone/texture_66ED38.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66ED38", "0x00000"]}}, -"textures/standalone/stainglass_peach_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x66EE48", "0x00000"]}}, -"textures/standalone/stainglass_peach_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x66FD1C", "0x00000"]}}, -"textures/standalone/texture_670AC8.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x670AC8", "0x00000"]}}, -"textures/standalone/texture_671A88.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x671A88", "0x00000"]}}, -"textures/standalone/railroad_track.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x671BB8", "0x00000"]}}, -"textures/standalone/railroad_crossing_track.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x672714", "0x00000"]}}, -"textures/standalone/texture_67291C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67291C", "0x00000"]}}, -"textures/standalone/rainbow.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x672EB8", "0x00000"]}}, -"textures/standalone/texture_673118.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x673118", "0x00000"]}}, -"textures/standalone/texture_6733CC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6733CC", "0x00000"]}}, -"textures/standalone/texture_6735DC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6735DC", "0x00000"]}}, -"textures/standalone/texture_673990.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x673990", "0x00000"]}}, -"textures/standalone/texture_673C68.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x673C68", "0x00000"]}}, -"textures/standalone/texture_673FF8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x673FF8", "0x00000"]}}, -"textures/standalone/texture_674354.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x674354", "0x00000"]}}, -"textures/standalone/texture_6747C4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6747C4", "0x00000"]}}, -"textures/standalone/texture_67490C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67490C", "0x00000"]}}, -"textures/standalone/texture_674B28.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x674B28", "0x00000"]}}, -"textures/standalone/texture_674D58.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x674D58", "0x00000"]}}, -"textures/standalone/texture_675064.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x675064", "0x00000"]}}, -"textures/standalone/texture_675220.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x675220", "0x00000"]}}, -"textures/standalone/texture_675434.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x675434", "0x00000"]}}, -"textures/standalone/road_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x67567C", "0x00000"]}}, -"textures/standalone/road_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x67597C", "0x00000"]}}, -"textures/standalone/road_2.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x675C50", "0x00000"]}}, -"textures/standalone/road_3.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x675F00", "0x00000"]}}, -"textures/standalone/road_4.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x676188", "0x00000"]}}, -"textures/standalone/road_5.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x67640C", "0x00000"]}}, -"textures/standalone/road_finish_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x6766C8", "0x00000"]}}, -"textures/standalone/road_finish_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x676A00", "0x00000"]}}, -"textures/standalone/texture_676C6C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x676C6C", "0x00000"]}}, -"textures/standalone/texture_676D7C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x676D7C", "0x00000"]}}, -"textures/standalone/texture_676EA8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x676EA8", "0x00000"]}}, -"textures/standalone/texture_676FB0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x676FB0", "0x00000"]}}, -"textures/standalone/texture_6774D8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6774D8", "0x00000"]}}, -"textures/standalone/texture_6775EC.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x6775EC", "0x00000"]}}, -"textures/standalone/fence_barbed_wire.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x677820", "0x00000"]}}, -"textures/standalone/texture_677A40.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x677A40", "0x00000"]}}, -"textures/standalone/sign_falling_rocks.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x677CB8", "0x00000"]}}, -"textures/standalone/sign_backside.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x677DE4", "0x00000"]}}, -"textures/standalone/texture_677F04.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x677F04", "0x00000"]}}, -"textures/standalone/texture_678118.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x678118", "0x00000"]}}, -"textures/standalone/texture_67842C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67842C", "0x00000"]}}, -"textures/standalone/texture_67893C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67893C", "0x00000"]}}, -"textures/standalone/texture_678CC8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x678CC8", "0x00000"]}}, -"textures/standalone/texture_679258.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x679258", "0x00000"]}}, -"textures/standalone/texture_67973C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x67973C", "0x00000"]}}, -"textures/standalone/texture_679C04.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x679C04", "0x00000"]}}, -"textures/standalone/texture_679D34.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x679D34", "0x00000"]}}, -"textures/standalone/star_outline.ia16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x679E3C", "0x00000"]}}, -"textures/standalone/texture_67A1B8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67A1B8", "0x00000"]}}, -"textures/standalone/texture_67A370.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67A370", "0x00000"]}}, -"textures/standalone/texture_67A91C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67A91C", "0x00000"]}}, -"textures/standalone/texture_67ADF0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67ADF0", "0x00000"]}}, -"textures/standalone/texture_67B388.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67B388", "0x00000"]}}, -"textures/standalone/texture_67B75C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67B75C", "0x00000"]}}, -"textures/standalone/texture_67B864.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67B864", "0x00000"]}}, -"textures/standalone/texture_67B9B0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67B9B0", "0x00000"]}}, -"textures/standalone/texture_67BBD8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67BBD8", "0x00000"]}}, -"textures/standalone/texture_67BEE8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67BEE8", "0x00000"]}}, -"textures/standalone/sand_finish.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67C1B8", "0x00000"]}}, -"textures/standalone/waves_0.ia16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67C3E8", "0x00000"]}}, -"textures/standalone/waves_1.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67C8B8", "0x00000"]}}, -"textures/standalone/waves_2.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67CE7C", "0x00000"]}}, -"textures/standalone/texture_67D304.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x67D304", "0x00000"]}}, -"textures/standalone/texture_67DC20.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67DC20", "0x00000"]}}, -"textures/standalone/texture_67E010.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67E010", "0x00000"]}}, -"textures/standalone/texture_67E428.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x67E428", "0x00000"]}}, -"textures/standalone/texture_67EEAC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67EEAC", "0x00000"]}}, -"textures/standalone/texture_67EFEC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67EFEC", "0x00000"]}}, -"textures/standalone/texture_67F15C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67F15C", "0x00000"]}}, -"textures/standalone/texture_67F450.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67F450", "0x00000"]}}, -"textures/standalone/sign_wario_face.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x67F5E4", "0x00000"]}}, -"textures/standalone/texture_67FE0C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67FE0C", "0x00000"]}}, -"textures/standalone/sign_welcome_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x6800EC", "0x00000"]}}, -"textures/standalone/sign_welcome_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x680B1C", "0x00000"]}}, -"textures/standalone/sign_wooden_back_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x681528", "0x00000"]}}, -"textures/standalone/sign_wooden_back_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x681C18", "0x00000"]}}, -"textures/standalone/wheel_steam_engine.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6822EC", "0x00000"]}}, -"textures/standalone/wheel_steam_engine_real.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x6824FC", "0x00000"]}}, -"textures/standalone/texture_68272C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68272C", "0x00000"]}}, -"textures/standalone/texture_682928.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x682928", "0x00000"]}}, -"textures/standalone/texture_682B24.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x682B24", "0x00000"]}}, -"textures/standalone/texture_682D20.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x682D20", "0x00000"]}}, -"textures/standalone/texture_682F1C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x682F1C", "0x00000"]}}, -"textures/standalone/texture_683118.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x683118", "0x00000"]}}, -"textures/standalone/texture_683314.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x683314", "0x00000"]}}, -"textures/standalone/texture_6835F0.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x6835F0", "0x00000"]}}, -"textures/standalone/texture_683844.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x683844", "0x00000"]}}, -"textures/standalone/fence_post_wooden.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x683E9C", "0x00000"]}}, -"textures/standalone/texture_6846DC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6846DC", "0x00000"]}}, -"textures/standalone/fence_rope.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x684BC8", "0x00000"]}}, -"textures/standalone/texture_685108.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x685108", "0x00000"]}}, -"textures/standalone/sign_wood_red_arrow.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x6855DC", "0x00000"]}}, -"textures/standalone/texture_685AC0.ia16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x685AC0", "0x00000"]}}, -"textures/standalone/sign_green_arrow.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68628C", "0x00000"]}}, -"textures/standalone/texture_6864E8.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x6864E8", "0x00000"]}}, -"textures/standalone/texture_686CF0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x686CF0", "0x00000"]}}, -"textures/standalone/texture_6875A8.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x6875A8", "0x00000"]}}, -"textures/standalone/texture_687EE8.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x687EE8", "0x00000"]}}, -"textures/standalone/texture_68876C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68876C", "0x00000"]}}, -"textures/standalone/texture_689230.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x689230", "0x00000"]}}, -"textures/standalone/texture_689C00.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x689C00", "0x00000"]}}, -"textures/standalone/texture_68A484.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68A484", "0x00000"]}}, -"textures/standalone/texture_68AC5C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68AC5C", "0x00000"]}}, -"textures/standalone/texture_68B6A4.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68B6A4", "0x00000"]}}, -"textures/standalone/texture_68BE6C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68BE6C", "0x00000"]}}, -"textures/standalone/texture_68C310.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68C310", "0x00000"]}}, -"textures/standalone/texture_68C620.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68C620", "0x00000"]}}, -"textures/standalone/texture_68C79C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68C79C", "0x00000"]}}, -"textures/standalone/texture_68C944.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68C944", "0x00000"]}}, -"textures/standalone/texture_68CA94.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68CA94", "0x00000"]}}, -"textures/standalone/texture_68CC0C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68CC0C", "0x00000"]}}, -"textures/standalone/texture_68CDA0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68CDA0", "0x00000"]}}, -"textures/standalone/sign_yoshi.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68CEB0", "0x00000"]}}, -"textures/standalone/checkerboard_blue_gray.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68D390", "0x00000"]}}, -"textures/standalone/texture_68D834.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68D834", "0x00000"]}}, -"textures/standalone/texture_68D940.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68D940", "0x00000"]}}, -"textures/standalone/texture_68DEC0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68DEC0", "0x00000"]}}, -"textures/standalone/texture_68E2D0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68E2D0", "0x00000"]}}, +"textures/standalone/sign_shell_shot_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x641F70","0x00000"],"jp.v11":["0x64d7b0","0x00000"]}}, +"textures/standalone/sign_shell_shot_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x6422FC","0x00000"],"jp.v11":["0x64db3c","0x00000"]}}, +"textures/standalone/gray_checkerboard.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x642544","0x00000"],"jp.v11":["0x64dd84","0x00000"]}}, +"textures/standalone/gray_cobblestone.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x642650","0x00000"],"jp.v11":["0x64de90","0x00000"]}}, +"textures/standalone/texture_64275C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64275C","0x00000"],"jp.v11":["0x64df9c","0x00000"]}}, +"textures/standalone/texture_64286C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64286C","0x00000"],"jp.v11":["0x64e0ac","0x00000"]}}, +"textures/standalone/texture_642978.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x642978","0x00000"],"jp.v11":["0x64e1b8","0x00000"]}}, +"textures/standalone/sign_blue_64.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x642A88","0x00000"],"jp.v11":["0x64E2C8","0x0"]}}, +"textures/standalone/checkerboard_yellow_pink.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x642FF0","0x00000"],"jp.v11":["0x64e588","0x00000"]}}, +"textures/standalone/texture_64313C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64313C","0x00000"],"jp.v11":["0x64e6d4","0x00000"]}}, +"textures/standalone/checkerbord_yellow_blue.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6432F4","0x00000"],"jp.v11":["0x64e88c","0x00000"]}}, +"textures/standalone/texture_643430.ia16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x643430","0x00000"],"jp.v11":["0x64e9c8","0x00000"]}}, +"textures/standalone/texture_643A34.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x643A34","0x00000"],"jp.v11":["0x64efcc","0x00000"]}}, +"textures/standalone/texture_643B3C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x643B3C","0x00000"],"jp.v11":["0x64f0d4","0x00000"]}}, +"textures/standalone/texture_6442D4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6442D4","0x00000"],"jp.v11":["0x64f86c","0x00000"]}}, +"textures/standalone/texture_64440C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x64440C","0x00000"],"jp.v11":["0x64f9a4","0x00000"]}}, +"textures/standalone/texture_6446AC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6446AC","0x00000"],"jp.v11":["0x64fc44","0x00000"]}}, +"textures/standalone/texture_6447C4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6447C4","0x00000"],"jp.v11":["0x64fd5c","0x00000"]}}, +"textures/standalone/checkerboard_black_white.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6448CC","0x00000"],"jp.v11":["0x64fe64","0x00000"]}}, +"textures/standalone/texture_6449D4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6449D4","0x00000"],"jp.v11":["0x64ff6c","0x00000"]}}, +"textures/standalone/texture_645134.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x645134","0x00000"],"jp.v11":["0x6506cc","0x00000"]}}, +"textures/standalone/texture_645660.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x645660","0x00000"],"jp.v11":["0x650bf8","0x00000"]}}, +"textures/standalone/texture_6457D8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6457D8","0x00000"],"jp.v11":["0x650d70","0x00000"]}}, +"textures/standalone/checkerboard_blue_green.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x645938","0x00000"],"jp.v11":["0x650ed0","0x00000"]}}, +"textures/standalone/number_yellow_blue_1.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x645A74","0x00000"],"jp.v11":["0x65100c","0x00000"]}}, +"textures/standalone/number_yellow_blue_2.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x645C24","0x00000"],"jp.v11":["0x6511bc","0x00000"]}}, +"textures/standalone/number_yellow_blue_3.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x645DEC","0x00000"],"jp.v11":["0x651384","0x00000"]}}, +"textures/standalone/number_yellow_blue_4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x645FB8","0x00000"],"jp.v11":["0x651550","0x00000"]}}, +"textures/standalone/texture_64619C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64619C","0x00000"],"jp.v11":["0x651734","0x00000"]}}, +"textures/standalone/texture_6462C0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6462C0","0x00000"],"jp.v11":["0x651858","0x00000"]}}, +"textures/standalone/texture_64647C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x64647C","0x00000"],"jp.v11":["0x651a14","0x00000"]}}, +"textures/standalone/texture_646CA8.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x646CA8","0x00000"],"jp.v11":["0x652240","0x00000"]}}, +"textures/standalone/texture_6473E4.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x6473E4","0x00000"],"jp.v11":["0x65297c","0x00000"]}}, +"textures/standalone/texture_647994.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x647994","0x00000"],"jp.v11":["0x652f2c","0x00000"]}}, +"textures/standalone/texture_647F4C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x647F4C","0x00000"],"jp.v11":["0x6534e4","0x00000"]}}, +"textures/standalone/texture_648508.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x648508","0x00000"],"jp.v11":["0x653aa0","0x00000"]}}, +"textures/standalone/grass_1.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x648708","0x00000"],"jp.v11":["0x653ca0","0x00000"]}}, +"textures/standalone/wood_door_0.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x648830","0x00000"],"jp.v11":["0x653dc8","0x00000"]}}, +"textures/standalone/wood_door_1.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x648AC4","0x00000"],"jp.v11":["0x65405c","0x00000"]}}, +"textures/standalone/grass_2.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6493C8","0x00000"],"jp.v11":["0x654960","0x00000"]}}, +"textures/standalone/texture_64ACAC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64ACAC","0x00000"],"jp.v11":["0x655d9c","0x00000"]}}, +"textures/standalone/texture_64AF50.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64AF50","0x00000"],"jp.v11":["0x656040","0x00000"]}}, +"textures/standalone/texture_64B090.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64B090","0x00000"],"jp.v11":["0x656180","0x00000"]}}, +"textures/standalone/texture_64B3F8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64B3F8","0x00000"],"jp.v11":["0x6564e8","0x00000"]}}, +"textures/standalone/texture_64B54C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64B54C","0x00000"],"jp.v11":["0x65663c","0x00000"]}}, +"textures/standalone/texture_64B8D8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64B8D8","0x00000"],"jp.v11":["0x6569c8","0x00000"]}}, +"textures/standalone/texture_64BA50.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64BA50","0x00000"],"jp.v11":["0x656b40","0x00000"]}}, +"textures/standalone/texture_64BB60.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64BB60","0x00000"],"jp.v11":["0x656c50","0x00000"]}}, +"textures/standalone/texture_64BCCC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64BCCC","0x00000"],"jp.v11":["0x656dbc","0x00000"]}}, +"textures/standalone/texture_64C11C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64C11C","0x00000"],"jp.v11":["0x65720c","0x00000"]}}, +"textures/standalone/texture_64C7B4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64C7B4","0x00000"],"jp.v11":["0x6578a4","0x00000"]}}, +"textures/standalone/texture_64CC20.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x64CC20","0x00000"],"jp.v11":["0x657d10","0x00000"]}}, +"textures/standalone/sign_merging_lanes.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64DAE4","0x00000"],"jp.v11":["0x658bd4","0x00000"]}}, +"textures/standalone/grass_3.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64DBFC","0x00000"],"jp.v11":["0x658cec","0x00000"]}}, +"textures/standalone/grass_4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64DF70","0x00000"],"jp.v11":["0x659060","0x00000"]}}, +"textures/standalone/grass_5.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64E534","0x00000"],"jp.v11":["0x659624","0x00000"]}}, +"textures/standalone/grass_6.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64E774","0x00000"],"jp.v11":["0x659864","0x00000"]}}, +"textures/standalone/sign_nintendo_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x64E9B0","0x00000"],"jp.v11":["0x659aa0","0x00000"]}}, +"textures/standalone/sign_nintendo_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x64EEF4","0x00000"],"jp.v11":["0x659fe4","0x00000"]}}, +"textures/standalone/grass_7.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64F408","0x00000"],"jp.v11":["0x65a4f8","0x00000"]}}, +"textures/standalone/texture_64F9E8.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x64F9E8","0x00000"],"jp.v11":["0x65aad8","0x00000"]}}, +"textures/standalone/texture_64FBF4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x64FBF4","0x00000"],"jp.v11":["0x65ace4","0x00000"]}}, +"textures/standalone/texture_64FE68.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x64FE68","0x00000"],"jp.v11":["0x65af58","0x00000"]}}, +"textures/standalone/wood_bridge_slats.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x6500C0","0x00000"],"jp.v11":["0x65b1b0","0x00000"]}}, +"textures/standalone/flag_red.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x650E6C","0x00000"],"jp.v11":["0x65bf5c","0x00000"]}}, +"textures/standalone/texture_65100C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x65100C","0x00000"],"jp.v11":["0x65c0fc","0x00000"]}}, +"textures/standalone/texture_65112C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x65112C","0x00000"],"jp.v11":["0x65c21c","0x00000"]}}, +"textures/standalone/texture_65127C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x65127C","0x00000"],"jp.v11":["0x65c36c","0x00000"]}}, +"textures/standalone/texture_651428.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x651428","0x00000"],"jp.v11":["0x65c518","0x00000"]}}, +"textures/standalone/texture_651984.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x651984","0x00000"],"jp.v11":["0x65ca74","0x00000"]}}, +"textures/standalone/texture_651B20.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x651B20","0x00000"],"jp.v11":["0x65cc10","0x00000"]}}, +"textures/standalone/texture_651F40.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x651F40","0x00000"],"jp.v11":["0x65d030","0x00000"]}}, +"textures/standalone/texture_6522E0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6522E0","0x00000"],"jp.v11":["0x65d3d0","0x00000"]}}, +"textures/standalone/texture_6528DC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6528DC","0x00000"],"jp.v11":["0x65d9cc","0x00000"]}}, +"textures/standalone/texture_652B54.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x652B54","0x00000"],"jp.v11":["0x65dc44","0x00000"]}}, +"textures/standalone/texture_65315C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x65315C","0x00000"],"jp.v11":["0x65e24c","0x00000"]}}, +"textures/standalone/texture_653608.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x653608","0x00000"],"jp.v11":["0x65e6f8","0x00000"]}}, +"textures/standalone/texture_653DB0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x653DB0","0x00000"],"jp.v11":["0x65eea0","0x00000"]}}, +"textures/standalone/texture_654460.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x654460","0x00000"],"jp.v11":["0x65f550","0x00000"]}}, +"textures/standalone/texture_654F74.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x654F74","0x00000"],"jp.v11":["0x660064","0x00000"]}}, +"textures/standalone/texture_655998.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x655998","0x00000"],"jp.v11":["0x660a88","0x00000"]}}, +"textures/standalone/texture_655F38.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x655F38","0x00000"],"jp.v11":["0x661028","0x00000"]}}, +"textures/standalone/texture_656AF4.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x656AF4","0x00000"],"jp.v11":["0x661be4","0x00000"]}}, +"textures/standalone/texture_6575C8.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x6575C8","0x00000"],"jp.v11":["0x6626b8","0x00000"]}}, +"textures/standalone/texture_658370.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x658370","0x00000"],"jp.v11":["0x663460","0x00000"]}}, +"textures/standalone/texture_65912C.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x65912C","0x00000"],"jp.v11":["0x66421c","0x00000"]}}, +"textures/standalone/texture_659EE8.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x659EE8","0x00000"],"jp.v11":["0x664fd8","0x00000"]}}, +"textures/standalone/texture_65ADE0.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x65ADE0","0x00000"],"jp.v11":["0x665ed0","0x00000"]}}, +"textures/standalone/texture_65BB3C.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x65BB3C","0x00000"],"jp.v11":["0x666c2c","0x00000"]}}, +"textures/standalone/texture_65C8DC.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x65C8DC","0x00000"],"jp.v11":["0x6679cc","0x00000"]}}, +"textures/standalone/texture_65D5D4.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x65D5D4","0x00000"],"jp.v11":["0x6686c4","0x00000"]}}, +"textures/standalone/texture_65E2EC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x65E2EC","0x00000"],"jp.v11":["0x6693dc","0x00000"]}}, +"textures/standalone/texture_65E59C.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x65E59C","0x00000"],"jp.v11":["0x66968c","0x00000"]}}, +"textures/standalone/texture_65EAEC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x65EAEC","0x00000"],"jp.v11":["0x669bdc","0x00000"]}}, +"textures/standalone/texture_65EE38.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x65EE38","0x00000"],"jp.v11":["0x669f28","0x00000"]}}, +"textures/standalone/texture_65FB18.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x65FB18","0x00000"],"jp.v11":["0x66ac08","0x00000"]}}, +"textures/standalone/sign_pink_arrow.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x65FF08","0x00000"],"jp.v11":["0x66aff8","0x00000"]}}, +"textures/standalone/crown_jewel_blue.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6600A0","0x00000"],"jp.v11":["0x66b190","0x00000"]}}, +"textures/standalone/crown.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6603A4","0x00000"],"jp.v11":["0x66b494","0x00000"]}}, +"textures/standalone/crown_jewel_pink.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6604AC","0x00000"],"jp.v11":["0x66b59c","0x00000"]}}, +"textures/standalone/texture_6607C0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6607C0","0x00000"],"jp.v11":["0x66b8b0","0x00000"]}}, +"textures/standalone/texture_6608C8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6608C8","0x00000"],"jp.v11":["0x66b9b8","0x00000"]}}, +"textures/standalone/texture_6609D0.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x6609D0","0x00000"],"jp.v11":["0x66bac0","0x00000"]}}, +"textures/standalone/texture_660D8C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x660D8C","0x00000"],"jp.v11":["0x66be7c","0x00000"]}}, +"textures/standalone/roof_tile.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x660EB4","0x00000"],"jp.v11":["0x66bfa4","0x00000"]}}, +"textures/standalone/castle_bricks.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x660FE0","0x00000"],"jp.v11":["0x66c0d0","0x00000"]}}, +"textures/standalone/castle_bridge.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x661B14","0x00000"],"jp.v11":["0x66cc04","0x00000"]}}, +"textures/standalone/grass_8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x661F3C","0x00000"],"jp.v11":["0x66d02c","0x00000"]}}, +"textures/standalone/grass_9.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x662208","0x00000"],"jp.v11":["0x66d2f8","0x00000"]}}, +"textures/standalone/texture_66262C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x66262C","0x00000"],"jp.v11":["0x66d71c","0x00000"]}}, +"textures/standalone/texture_662924.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x662924","0x00000"],"jp.v11":["0x66da14","0x00000"]}}, +"textures/standalone/texture_662A34.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x662A34","0x00000"],"jp.v11":["0x66db24","0x00000"]}}, +"textures/standalone/sign_toad_yellow.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x662B3C","0x00000"],"jp.v11":["0x66dc2c","0x00000"]}}, +"textures/standalone/sign_toad_green.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x663260","0x00000"],"jp.v11":["0x66e350","0x00000"]}}, +"textures/standalone/sign_toad_red.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x663980","0x00000"],"jp.v11":["0x66ea70","0x00000"]}}, +"textures/standalone/texture_663F90.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x663F90","0x00000"],"jp.v11":["0x66f080","0x00000"]}}, +"textures/standalone/texture_6640B4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6640B4","0x00000"],"jp.v11":["0x66f1a4","0x00000"]}}, +"textures/standalone/texture_6642A4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6642A4","0x00000"],"jp.v11":["0x66f394","0x00000"]}}, +"textures/standalone/texture_664408.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x664408","0x00000"],"jp.v11":["0x66f4f8","0x00000"]}}, +"textures/standalone/texture_6646B8.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x6646B8","0x00000"],"jp.v11":["0x66f7a8","0x00000"]}}, +"textures/standalone/sign_koopa_air_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x664950","0x00000"],"jp.v11":["0x66FA40","0x0"]}}, +"textures/standalone/sign_koopa_air_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x664CB0","0x00000"],"jp.v11":["0x66FE04","0x0"]}}, +"textures/standalone/bricks_red.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x664FB4","0x00000"],"jp.v11":["0x670120","0x00000"]}}, +"textures/standalone/texture_665C0C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x665C0C","0x00000"],"jp.v11":["0x670d78","0x00000"]}}, +"textures/standalone/texture_6661AC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6661AC","0x00000"],"jp.v11":["0x671318","0x00000"]}}, +"textures/standalone/texture_6663A4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6663A4","0x00000"],"jp.v11":["0x671510","0x00000"]}}, +"textures/standalone/sign_bowser_0.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x66699C","0x00000"],"jp.v11":["0x671b08","0x00000"]}}, +"textures/standalone/sign_bowser_1.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x66716C","0x00000"],"jp.v11":["0x6722d8","0x00000"]}}, +"textures/standalone/grass_10.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6677BC","0x00000"],"jp.v11":["0x672928","0x00000"]}}, +"textures/standalone/grass_11.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6679B4","0x00000"],"jp.v11":["0x672b20","0x00000"]}}, +"textures/standalone/texture_667BAC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x667BAC","0x00000"],"jp.v11":["0x672d18","0x00000"]}}, +"textures/standalone/texture_668228.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x668228","0x00000"],"jp.v11":["0x673394","0x00000"]}}, +"textures/standalone/texture_668358.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x668358","0x00000"],"jp.v11":["0x6734c4","0x00000"]}}, +"textures/standalone/texture_6684F8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6684F8","0x00000"],"jp.v11":["0x673664","0x00000"]}}, +"textures/standalone/texture_668608.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x668608","0x00000"],"jp.v11":["0x673774","0x00000"]}}, +"textures/standalone/texture_668728.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x668728","0x00000"],"jp.v11":["0x673894","0x00000"]}}, +"textures/standalone/texture_668920.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x668920","0x00000"],"jp.v11":["0x673a8c","0x00000"]}}, +"textures/standalone/grass_12.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x668CFC","0x00000"],"jp.v11":["0x673e68","0x00000"]}}, +"textures/standalone/texture_669570.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x669570","0x00000"],"jp.v11":["0x6746dc","0x00000"]}}, +"textures/standalone/texture_66A3DC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x66A3DC","0x00000"],"jp.v11":["0x675548","0x00000"]}}, +"textures/standalone/texture_66ABA4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x66ABA4","0x00000"],"jp.v11":["0x675d10","0x00000"]}}, +"textures/standalone/texture_66AEB8.ia16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x66AEB8","0x00000"],"jp.v11":["0x676024","0x00000"]}}, +"textures/standalone/sign_luigi_face_0.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x66B0BC","0x00000"],"jp.v11":["0x676228","0x00000"]}}, +"textures/standalone/sign_luigi_face_1.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x66B688","0x00000"],"jp.v11":["0x6767f4","0x00000"]}}, +"textures/standalone/sign_luigis_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x66BCE8","0x00000"],"jp.v11":["0x676E54","0x0"]}}, +"textures/standalone/sign_luigis_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x66BF70","0x00000"],"jp.v11":["0x6770C0","0x0"]}}, +"textures/standalone/sign_mario_star_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x66C220","0x00000"],"jp.v11":["0x67738C","0x0"]}}, +"textures/standalone/sign_mario_star_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x66C4F4","0x00000"],"jp.v11":["0x6776D8","0x0"]}}, +"textures/standalone/texture_66C7A8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x66C7A8","0x00000"],"jp.v11":["0x6779b0","0x00000"]}}, +"textures/standalone/texture_66C8F4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x66C8F4","0x00000"],"jp.v11":["0x677afc","0x00000"]}}, +"textures/standalone/texture_66CA98.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x66CA98","0x00000"],"jp.v11":["0x677ca0","0x00000"]}}, +"textures/standalone/texture_66CD64.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x66CD64","0x00000"],"jp.v11":["0x677f6c","0x00000"]}}, +"textures/standalone/texture_66D024.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x66D024","0x00000"],"jp.v11":["0x67822c","0x00000"]}}, +"textures/standalone/flag_red_2.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x66D510","0x00000"],"jp.v11":["0x678718","0x00000"]}}, +"textures/standalone/texture_66D698.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x66D698","0x00000"],"jp.v11":["0x6788a0","0x00000"]}}, +"textures/standalone/checkerboard_pink.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x66DA08","0x00000"],"jp.v11":["0x678c10","0x00000"]}}, +"textures/standalone/texture_66DB60.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x66DB60","0x00000"],"jp.v11":["0x678d68","0x00000"]}}, +"textures/standalone/texture_66DD38.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x66DD38","0x00000"],"jp.v11":["0x678f40","0x00000"]}}, +"textures/standalone/sign_nintendo_red_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x66E068","0x00000"],"jp.v11":["0x679270","0x0"]}}, +"textures/standalone/sign_nintendo_red_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x66E310","0x00000"],"jp.v11":["0x679554","0x0"]}}, +"textures/standalone/texture_66E608.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x66E608","0x00000"],"jp.v11":["0x6798a0","0x00000"]}}, +"textures/standalone/texture_66EBF0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x66EBF0","0x00000"],"jp.v11":["0x679e88","0x00000"]}}, +"textures/standalone/texture_66ED38.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x66ED38","0x00000"],"jp.v11":["0x679fd0","0x00000"]}}, +"textures/standalone/stainglass_peach_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x66EE48","0x00000"],"jp.v11":["0x67a0e0","0x00000"]}}, +"textures/standalone/stainglass_peach_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x66FD1C","0x00000"],"jp.v11":["0x67afb4","0x00000"]}}, +"textures/standalone/texture_670AC8.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x670AC8","0x00000"],"jp.v11":["0x67bd60","0x00000"]}}, +"textures/standalone/texture_671A88.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x671A88","0x00000"],"jp.v11":["0x67cd20","0x00000"]}}, +"textures/standalone/railroad_track.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x671BB8","0x00000"],"jp.v11":["0x67ce50","0x00000"]}}, +"textures/standalone/railroad_crossing_track.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x672714","0x00000"],"jp.v11":["0x67d9ac","0x00000"]}}, +"textures/standalone/texture_67291C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67291C","0x00000"],"jp.v11":["0x67dbb4","0x00000"]}}, +"textures/standalone/rainbow.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x672EB8","0x00000"],"jp.v11":["0x67e150","0x00000"]}}, +"textures/standalone/texture_673118.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x673118","0x00000"],"jp.v11":["0x67e3b0","0x00000"]}}, +"textures/standalone/texture_6733CC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6733CC","0x00000"],"jp.v11":["0x67e664","0x00000"]}}, +"textures/standalone/texture_6735DC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6735DC","0x00000"],"jp.v11":["0x67e874","0x00000"]}}, +"textures/standalone/texture_673990.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x673990","0x00000"],"jp.v11":["0x67ec28","0x00000"]}}, +"textures/standalone/texture_673C68.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x673C68","0x00000"],"jp.v11":["0x67ef00","0x00000"]}}, +"textures/standalone/texture_673FF8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x673FF8","0x00000"],"jp.v11":["0x67f290","0x00000"]}}, +"textures/standalone/texture_674354.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x674354","0x00000"],"jp.v11":["0x67f5ec","0x00000"]}}, +"textures/standalone/texture_6747C4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6747C4","0x00000"],"jp.v11":["0x67fa5c","0x00000"]}}, +"textures/standalone/texture_67490C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67490C","0x00000"],"jp.v11":["0x67fba4","0x00000"]}}, +"textures/standalone/texture_674B28.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x674B28","0x00000"],"jp.v11":["0x67fdc0","0x00000"]}}, +"textures/standalone/texture_674D58.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x674D58","0x00000"],"jp.v11":["0x67fff0","0x00000"]}}, +"textures/standalone/texture_675064.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x675064","0x00000"],"jp.v11":["0x6802fc","0x00000"]}}, +"textures/standalone/texture_675220.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x675220","0x00000"],"jp.v11":["0x6804b8","0x00000"]}}, +"textures/standalone/texture_675434.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x675434","0x00000"],"jp.v11":["0x6806cc","0x00000"]}}, +"textures/standalone/road_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x67567C","0x00000"],"jp.v11":["0x680914","0x00000"]}}, +"textures/standalone/road_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x67597C","0x00000"],"jp.v11":["0x680c14","0x00000"]}}, +"textures/standalone/road_2.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x675C50","0x00000"],"jp.v11":["0x680ee8","0x00000"]}}, +"textures/standalone/road_3.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x675F00","0x00000"],"jp.v11":["0x681198","0x00000"]}}, +"textures/standalone/road_4.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x676188","0x00000"],"jp.v11":["0x681420","0x00000"]}}, +"textures/standalone/road_5.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x67640C","0x00000"],"jp.v11":["0x6816a4","0x00000"]}}, +"textures/standalone/road_finish_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x6766C8","0x00000"],"jp.v11":["0x681960","0x00000"]}}, +"textures/standalone/road_finish_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x676A00","0x00000"],"jp.v11":["0x681c98","0x00000"]}}, +"textures/standalone/texture_676C6C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x676C6C","0x00000"],"jp.v11":["0x681f04","0x00000"]}}, +"textures/standalone/texture_676D7C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x676D7C","0x00000"],"jp.v11":["0x682014","0x00000"]}}, +"textures/standalone/texture_676EA8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x676EA8","0x00000"],"jp.v11":["0x682140","0x00000"]}}, +"textures/standalone/texture_676FB0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x676FB0","0x00000"],"jp.v11":["0x682248","0x00000"]}}, +"textures/standalone/texture_6774D8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6774D8","0x00000"],"jp.v11":["0x682770","0x00000"]}}, +"textures/standalone/texture_6775EC.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x6775EC","0x00000"],"jp.v11":["0x682884","0x00000"]}}, +"textures/standalone/fence_barbed_wire.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x677820","0x00000"],"jp.v11":["0x682ab8","0x00000"]}}, +"textures/standalone/texture_677A40.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x677A40","0x00000"],"jp.v11":["0x682cd8","0x00000"]}}, +"textures/standalone/sign_falling_rocks.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x677CB8","0x00000"],"jp.v11":["0x682f50","0x00000"]}}, +"textures/standalone/sign_backside.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x677DE4","0x00000"],"jp.v11":["0x68307c","0x00000"]}}, +"textures/standalone/texture_677F04.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x677F04","0x00000"],"jp.v11":["0x68319c","0x00000"]}}, +"textures/standalone/texture_678118.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x678118","0x00000"],"jp.v11":["0x6833b0","0x00000"]}}, +"textures/standalone/texture_67842C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67842C","0x00000"],"jp.v11":["0x6836c4","0x00000"]}}, +"textures/standalone/texture_67893C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67893C","0x00000"],"jp.v11":["0x683bd4","0x00000"]}}, +"textures/standalone/texture_678CC8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x678CC8","0x00000"],"jp.v11":["0x683f60","0x00000"]}}, +"textures/standalone/texture_679258.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x679258","0x00000"],"jp.v11":["0x6844f0","0x00000"]}}, +"textures/standalone/texture_67973C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x67973C","0x00000"],"jp.v11":["0x6849d4","0x00000"]}}, +"textures/standalone/texture_679C04.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x679C04","0x00000"],"jp.v11":["0x684e9c","0x00000"]}}, +"textures/standalone/texture_679D34.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x679D34","0x00000"],"jp.v11":["0x684fcc","0x00000"]}}, +"textures/standalone/star_outline.ia16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x679E3C","0x00000"],"jp.v11":["0x6850d4","0x00000"]}}, +"textures/standalone/texture_67A1B8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67A1B8","0x00000"],"jp.v11":["0x685450","0x00000"]}}, +"textures/standalone/texture_67A370.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67A370","0x00000"],"jp.v11":["0x685608","0x00000"]}}, +"textures/standalone/texture_67A91C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67A91C","0x00000"],"jp.v11":["0x685bb4","0x00000"]}}, +"textures/standalone/texture_67ADF0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67ADF0","0x00000"],"jp.v11":["0x686088","0x00000"]}}, +"textures/standalone/texture_67B388.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67B388","0x00000"],"jp.v11":["0x686620","0x00000"]}}, +"textures/standalone/texture_67B75C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67B75C","0x00000"],"jp.v11":["0x6869f4","0x00000"]}}, +"textures/standalone/texture_67B864.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67B864","0x00000"],"jp.v11":["0x686afc","0x00000"]}}, +"textures/standalone/texture_67B9B0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67B9B0","0x00000"],"jp.v11":["0x686c48","0x00000"]}}, +"textures/standalone/texture_67BBD8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67BBD8","0x00000"],"jp.v11":["0x686e70","0x00000"]}}, +"textures/standalone/texture_67BEE8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67BEE8","0x00000"],"jp.v11":["0x687180","0x00000"]}}, +"textures/standalone/sand_finish.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67C1B8","0x00000"],"jp.v11":["0x687450","0x00000"]}}, +"textures/standalone/waves_0.ia16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67C3E8","0x00000"],"jp.v11":["0x687680","0x00000"]}}, +"textures/standalone/waves_1.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67C8B8","0x00000"],"jp.v11":["0x687b50","0x00000"]}}, +"textures/standalone/waves_2.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67CE7C","0x00000"],"jp.v11":["0x688114","0x00000"]}}, +"textures/standalone/texture_67D304.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x67D304","0x00000"],"jp.v11":["0x68859c","0x00000"]}}, +"textures/standalone/texture_67DC20.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67DC20","0x00000"],"jp.v11":["0x688eb8","0x00000"]}}, +"textures/standalone/texture_67E010.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67E010","0x00000"],"jp.v11":["0x6892a8","0x00000"]}}, +"textures/standalone/texture_67E428.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x67E428","0x00000"],"jp.v11":["0x6896c0","0x00000"]}}, +"textures/standalone/texture_67EEAC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67EEAC","0x00000"],"jp.v11":["0x68a144","0x00000"]}}, +"textures/standalone/texture_67EFEC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67EFEC","0x00000"],"jp.v11":["0x68a284","0x00000"]}}, +"textures/standalone/texture_67F15C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67F15C","0x00000"],"jp.v11":["0x68a3f4","0x00000"]}}, +"textures/standalone/texture_67F450.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67F450","0x00000"],"jp.v11":["0x68a6e8","0x00000"]}}, +"textures/standalone/sign_wario_face.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x67F5E4","0x00000"],"jp.v11":["0x68a87c","0x00000"]}}, +"textures/standalone/texture_67FE0C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x67FE0C","0x00000"],"jp.v11":["0x68b0a4","0x00000"]}}, +"textures/standalone/sign_welcome_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x6800EC","0x00000"],"jp.v11":["0x68b384","0x00000"]}}, +"textures/standalone/sign_welcome_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x680B1C","0x00000"],"jp.v11":["0x68bdb4","0x00000"]}}, +"textures/standalone/sign_wooden_back_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x681528","0x00000"],"jp.v11":["0x68c7c0","0x00000"]}}, +"textures/standalone/sign_wooden_back_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x681C18","0x00000"],"jp.v11":["0x68ceb0","0x00000"]}}, +"textures/standalone/wheel_steam_engine.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6822EC","0x00000"],"jp.v11":["0x68d584","0x00000"]}}, +"textures/standalone/wheel_steam_engine_real.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x6824FC","0x00000"],"jp.v11":["0x68d794","0x00000"]}}, +"textures/standalone/texture_68272C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x68272C","0x00000"],"jp.v11":["0x68d9c4","0x00000"]}}, +"textures/standalone/texture_682928.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x682928","0x00000"],"jp.v11":["0x68dbc0","0x00000"]}}, +"textures/standalone/texture_682B24.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x682B24","0x00000"],"jp.v11":["0x68ddbc","0x00000"]}}, +"textures/standalone/texture_682D20.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x682D20","0x00000"],"jp.v11":["0x68dfb8","0x00000"]}}, +"textures/standalone/texture_682F1C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x682F1C","0x00000"],"jp.v11":["0x68e1b4","0x00000"]}}, +"textures/standalone/texture_683118.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x683118","0x00000"],"jp.v11":["0x68e3b0","0x00000"]}}, +"textures/standalone/texture_683314.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x683314","0x00000"],"jp.v11":["0x68e5ac","0x00000"]}}, +"textures/standalone/texture_6835F0.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x6835F0","0x00000"],"jp.v11":["0x68e888","0x00000"]}}, +"textures/standalone/texture_683844.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x683844","0x00000"],"jp.v11":["0x68eadc","0x00000"]}}, +"textures/standalone/fence_post_wooden.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x683E9C","0x00000"],"jp.v11":["0x68f134","0x00000"]}}, +"textures/standalone/texture_6846DC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6846DC","0x00000"],"jp.v11":["0x68f974","0x00000"]}}, +"textures/standalone/fence_rope.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x684BC8","0x00000"],"jp.v11":["0x68fe60","0x00000"]}}, +"textures/standalone/texture_685108.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x685108","0x00000"],"jp.v11":["0x6903a0","0x00000"]}}, +"textures/standalone/sign_wood_red_arrow.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x6855DC","0x00000"],"jp.v11":["0x690874","0x00000"]}}, +"textures/standalone/texture_685AC0.ia16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x685AC0","0x00000"],"jp.v11":["0x690d58","0x00000"]}}, +"textures/standalone/sign_green_arrow.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x68628C","0x00000"],"jp.v11":["0x691524","0x00000"]}}, +"textures/standalone/texture_6864E8.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x6864E8","0x00000"],"jp.v11":["0x691780","0x00000"]}}, +"textures/standalone/texture_686CF0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x686CF0","0x00000"],"jp.v11":["0x691f88","0x00000"]}}, +"textures/standalone/texture_6875A8.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x6875A8","0x00000"],"jp.v11":["0x692840","0x00000"]}}, +"textures/standalone/texture_687EE8.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x687EE8","0x00000"],"jp.v11":["0x693180","0x00000"]}}, +"textures/standalone/texture_68876C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x68876C","0x00000"],"jp.v11":["0x693a04","0x00000"]}}, +"textures/standalone/texture_689230.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x689230","0x00000"],"jp.v11":["0x6944c8","0x00000"]}}, +"textures/standalone/texture_689C00.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x689C00","0x00000"],"jp.v11":["0x694e98","0x00000"]}}, +"textures/standalone/texture_68A484.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x68A484","0x00000"],"jp.v11":["0x69571c","0x00000"]}}, +"textures/standalone/texture_68AC5C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x68AC5C","0x00000"],"jp.v11":["0x695ef4","0x00000"]}}, +"textures/standalone/texture_68B6A4.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x68B6A4","0x00000"],"jp.v11":["0x69693c","0x00000"]}}, +"textures/standalone/texture_68BE6C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x68BE6C","0x00000"],"jp.v11":["0x697104","0x00000"]}}, +"textures/standalone/texture_68C310.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x68C310","0x00000"],"jp.v11":["0x6975a8","0x00000"]}}, +"textures/standalone/texture_68C620.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x68C620","0x00000"],"jp.v11":["0x6978b8","0x00000"]}}, +"textures/standalone/texture_68C79C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x68C79C","0x00000"],"jp.v11":["0x697a34","0x00000"]}}, +"textures/standalone/texture_68C944.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x68C944","0x00000"],"jp.v11":["0x697bdc","0x00000"]}}, +"textures/standalone/texture_68CA94.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x68CA94","0x00000"],"jp.v11":["0x697d2c","0x00000"]}}, +"textures/standalone/texture_68CC0C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x68CC0C","0x00000"],"jp.v11":["0x697ea4","0x00000"]}}, +"textures/standalone/texture_68CDA0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x68CDA0","0x00000"],"jp.v11":["0x698038","0x00000"]}}, +"textures/standalone/sign_yoshi.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x68CEB0","0x00000"],"jp.v11":["0x698148","0x0"]}}, +"textures/standalone/checkerboard_blue_gray.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x68D390","0x00000"],"jp.v11":["0x69848C","0x0"]}}, +"textures/standalone/texture_68D834.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x68D834","0x00000"],"jp.v11":["0x69870c","0x00000"]}}, +"textures/standalone/texture_68D940.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x68D940","0x00000"],"jp.v11":["0x698818","0x00000"]}}, +"textures/standalone/texture_68DEC0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x68DEC0","0x00000"],"jp.v11":["0x698d98","0x00000"]}}, +"textures/standalone/texture_68E2D0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x68E2D0","0x00000"],"jp.v11":["0x6991a8","0x00000"]}}, -"textures/standalone/question_mark_yellow.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x691030", "0x00000"]}}, +"textures/standalone/question_mark_yellow.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x691030","0x00000"],"jp.v11":["0x69bf10","0x00000"]}}, -"textures/standalone/shrub.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x692F3C", "0x00000"]}}, +"textures/standalone/shrub.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x692F3C","0x00000"],"jp.v11":["0x69de1c","0x00000"]}}, -"textures/standalone/texture_6997E0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6997E0", "0x00000"]}}, +"textures/standalone/texture_6997E0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x6997E0","0x00000"],"jp.v11":["0x6a46c0","0x00000"]}}, -"textures/standalone/kart_shadow.i8.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69A830", "0x00000"]}}, -"textures/standalone/texture_69B03C.i8.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x69B03C", "0x00000"]}}, -"textures/standalone/texture_69B140.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x69B140", "0x00000"]}}, -"textures/standalone/gGrassParticle.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x69B378", "0x00000"]}}, -"textures/standalone/texture_69B960.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x69B960", "0x00000"]}}, -"textures/standalone/texture_69BA28.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x69BA28", "0x00000"]}}, -"textures/standalone/boing_exclamation.ia8.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x69BB18", "0x00000"]}}, -"textures/standalone/texture_69BE6C.ia16.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x69BE6C", "0x00000"]}}, -"textures/standalone/texture_69BF54.ia16.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x69BF54", "0x00000"]}}, -"textures/standalone/texture_69C090.ia16.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x69C090", "0x00000"]}}, -"textures/standalone/texture_69C1E8.ia16.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x69C1E8", "0x00000"]}}, -"textures/standalone/texture_69C354.ia8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x69C354", "0x00000"]}}, -"textures/standalone/gGroundDust.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x69C4E4", "0x00000"]}}, -"textures/standalone/texture_69C80C.ia8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x69C80C", "0x00000"]}}, -"textures/standalone/texture_69C9C4.ia16.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x69C9C4", "0x00000"]}}, -"textures/standalone/texture_69CB84.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69CB84", "0x00000"]}}, -"textures/standalone/texture_69CCEC.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69CCEC", "0x00000"]}}, -"textures/standalone/texture_69CEB8.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69CEB8", "0x00000"]}}, -"textures/standalone/texture_69D148.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69D148", "0x00000"]}}, -"textures/standalone/texture_69D4E0.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69D4E0", "0x00000"]}}, -"textures/standalone/texture_69D8FC.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69D8FC", "0x00000"]}}, -"textures/standalone/texture_69DCB4.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69DCB4", "0x00000"]}}, -"textures/standalone/texture_69DFA0.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69DFA0", "0x00000"]}}, -"textures/standalone/texture_69E25C.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69E25C", "0x00000"]}}, -"textures/standalone/texture_69E518.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69E518", "0x00000"]}}, -"textures/standalone/texture_69E7A8.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69E7A8", "0x00000"]}}, -"textures/standalone/texture_69EA18.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69EA18", "0x00000"]}}, -"textures/standalone/texture_69EC54.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69EC54", "0x00000"]}}, -"textures/standalone/texture_69EE38.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69EE38", "0x00000"]}}, -"textures/standalone/texture_69EFE0.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69EFE0", "0x00000"]}}, +"textures/standalone/kart_shadow.i8.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x69A830","0x00000"],"jp.v11":["0x6a5710","0x00000"]}}, +"textures/standalone/texture_69B03C.i8.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x69B03C","0x00000"],"jp.v11":["0x6a5f1c","0x00000"]}}, +"textures/standalone/texture_69B140.i8.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x69B140","0x00000"],"jp.v11":["0x6a6020","0x00000"]}}, +"textures/standalone/gGrassParticle.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x69B378","0x00000"],"jp.v11":["0x6a6258","0x00000"]}}, +"textures/standalone/texture_69B960.i8.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x69B960","0x00000"],"jp.v11":["0x6a6840","0x00000"]}}, +"textures/standalone/texture_69BA28.i8.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x69BA28","0x00000"],"jp.v11":["0x6a6908","0x00000"]}}, +"textures/standalone/boing_exclamation.ia8.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x69BB18","0x00000"],"jp.v11":["0x6a69f8","0x00000"]}}, +"textures/standalone/texture_69BE6C.ia16.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x69BE6C","0x00000"],"jp.v11":["0x6a6d4c","0x00000"]}}, +"textures/standalone/texture_69BF54.ia16.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x69BF54","0x00000"],"jp.v11":["0x6a6e34","0x00000"]}}, +"textures/standalone/texture_69C090.ia16.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x69C090","0x00000"],"jp.v11":["0x6a6f70","0x00000"]}}, +"textures/standalone/texture_69C1E8.ia16.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x69C1E8","0x00000"],"jp.v11":["0x6a70c8","0x00000"]}}, +"textures/standalone/texture_69C354.ia8.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x69C354","0x00000"],"jp.v11":["0x6a7234","0x00000"]}}, +"textures/standalone/gGroundDust.i8.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x69C4E4","0x00000"],"jp.v11":["0x6a73c4","0x00000"]}}, +"textures/standalone/texture_69C80C.ia8.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x69C80C","0x00000"],"jp.v11":["0x6a76ec","0x00000"]}}, +"textures/standalone/texture_69C9C4.ia16.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x69C9C4","0x00000"],"jp.v11":["0x6a78a4","0x00000"]}}, +"textures/standalone/texture_69CB84.i4.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x69CB84","0x00000"],"jp.v11":["0x6a7a64","0x00000"]}}, +"textures/standalone/texture_69CCEC.i4.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x69CCEC","0x00000"],"jp.v11":["0x6a7bcc","0x00000"]}}, +"textures/standalone/texture_69CEB8.i4.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x69CEB8","0x00000"],"jp.v11":["0x6a7d98","0x00000"]}}, +"textures/standalone/texture_69D148.i4.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x69D148","0x00000"],"jp.v11":["0x6a8028","0x00000"]}}, +"textures/standalone/texture_69D4E0.i4.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x69D4E0","0x00000"],"jp.v11":["0x6a83c0","0x00000"]}}, +"textures/standalone/texture_69D8FC.i4.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x69D8FC","0x00000"],"jp.v11":["0x6a87dc","0x00000"]}}, +"textures/standalone/texture_69DCB4.i4.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x69DCB4","0x00000"],"jp.v11":["0x6a8b94","0x00000"]}}, +"textures/standalone/texture_69DFA0.i4.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x69DFA0","0x00000"],"jp.v11":["0x6a8e80","0x00000"]}}, +"textures/standalone/texture_69E25C.i4.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x69E25C","0x00000"],"jp.v11":["0x6a913c","0x00000"]}}, +"textures/standalone/texture_69E518.i4.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x69E518","0x00000"],"jp.v11":["0x6a93f8","0x00000"]}}, +"textures/standalone/texture_69E7A8.i4.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x69E7A8","0x00000"],"jp.v11":["0x6a9688","0x00000"]}}, +"textures/standalone/texture_69EA18.i4.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x69EA18","0x00000"],"jp.v11":["0x6a98f8","0x00000"]}}, +"textures/standalone/texture_69EC54.i4.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x69EC54","0x00000"],"jp.v11":["0x6a9b34","0x00000"]}}, +"textures/standalone/texture_69EE38.i4.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x69EE38","0x00000"],"jp.v11":["0x6a9d18","0x00000"]}}, +"textures/standalone/texture_69EFE0.i4.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x69EFE0","0x00000"],"jp.v11":["0x6a9ec0","0x00000"]}}, -"textures/standalone/lightning_zap_0.ia8.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x6A04E4", "0x00000"]}}, -"textures/standalone/lightning_zap_1.ia8.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x6A0798", "0x00000"]}}, +"textures/standalone/lightning_zap_0.ia8.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x6A04E4","0x00000"],"jp.v11":["0x6ab3c4","0x00000"]}}, +"textures/standalone/lightning_zap_1.ia8.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x6A0798","0x00000"],"jp.v11":["0x6ab678","0x00000"]}}, -"textures/standalone/exhaust_0.ia8.png": {"meta":{"dims":[32,96]}, "offsets": {"us":["0x717A84", "0x00000"]}}, -"textures/standalone/exhaust_1.ia8.png": {"meta":{"dims":[32,96]}, "offsets": {"us":["0x717F00", "0x00000"]}}, -"textures/standalone/exhaust_2.ia8.png": {"meta":{"dims":[32,96]}, "offsets": {"us":["0x718388", "0x00000"]}}, -"textures/standalone/exhaust_3.ia8.png": {"meta":{"dims":[32,128]}, "offsets": {"us":["0x71887C", "0x00000"]}}, -"textures/standalone/exhaust_4.ia8.png": {"meta":{"dims":[32,128]}, "offsets": {"us":["0x718C44", "0x00000"]}}, -"textures/standalone/exhaust_5.ia8.png": {"meta":{"dims":[32,128]}, "offsets": {"us":["0x71903C", "0x00000"]}}, -"textures/standalone/logo_mario_kart_64.rgba32.png": {"meta":{"dims":[256,128]}, "offsets": {"us":["0x719480", "0x00000"]}}, +"textures/standalone/exhaust_0.ia8.png": {"meta":{"dims":[32,96]}, "offsets":{"us":["0x717A84","0x00000"],"jp.v11":["0x722964","0x00000"]}}, +"textures/standalone/exhaust_1.ia8.png": {"meta":{"dims":[32,96]}, "offsets":{"us":["0x717F00","0x00000"],"jp.v11":["0x722de0","0x00000"]}}, +"textures/standalone/exhaust_2.ia8.png": {"meta":{"dims":[32,96]}, "offsets":{"us":["0x718388","0x00000"],"jp.v11":["0x723268","0x00000"]}}, +"textures/standalone/exhaust_3.ia8.png": {"meta":{"dims":[32,128]}, "offsets":{"us":["0x71887C","0x00000"],"jp.v11":["0x72375c","0x00000"]}}, +"textures/standalone/exhaust_4.ia8.png": {"meta":{"dims":[32,128]}, "offsets":{"us":["0x718C44","0x00000"],"jp.v11":["0x723b24","0x00000"]}}, +"textures/standalone/exhaust_5.ia8.png": {"meta":{"dims":[32,128]}, "offsets":{"us":["0x71903C","0x00000"],"jp.v11":["0x723f1c","0x00000"]}}, +"textures/standalone/logo_mario_kart_64.rgba32.png": {"meta":{"dims":[256,128]}, "offsets":{"us":["0x719480","0x00000"],"jp.v11":["0x724360","0x00000"]}}, -"textures/standalone/trophy_gold.rgba16.png": {"meta":{"dims":[45,45]}, "offsets": {"us":["0x7D83E8", "0x00000"]}}, -"textures/standalone/trophy_silver.rgba16.png": {"meta":{"dims":[45,45]}, "offsets": {"us":["0x7D8A1C", "0x00000"]}}, -"textures/standalone/trophy_bronze.rgba16.png": {"meta":{"dims":[45,45]}, "offsets": {"us":["0x7D9044", "0x00000"]}}, -"textures/standalone/cup_gold.rgba16.png": {"meta":{"dims":[45,45]}, "offsets": {"us":["0x7D9630", "0x00000"]}}, -"textures/standalone/cup_silver.rgba16.png": {"meta":{"dims":[45,45]}, "offsets": {"us":["0x7D9FBC", "0x00000"]}}, -"textures/standalone/cup_bronze.rgba16.png": {"meta":{"dims":[45,45]}, "offsets": {"us":["0x7DA940", "0x00000"]}}, -"textures/raw/push_start_button.rgba16.png": {"meta":{"dims":[159,16]}, "offsets": {"us":["0x7DB1E4", "0x0"]}}, -"textures/raw/copyright_1996.rgba16.png": {"meta":{"dims":[124,17]}, "offsets": {"us":["0x7DC5C4", "0x0"]}}, -"textures/raw/p1_border_blue.rgba16.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x7DD63C", "0x0"]}}, -"textures/raw/p2_border_red.rgba16.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x7DF63C", "0x0"]}}, -"textures/raw/p3_border_orange.rgba16.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x7E163C", "0x0"]}}, -"textures/raw/p4_border_green.rgba16.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x7E363C", "0x0"]}}, -"textures/raw/small_green_triangle.rgba16.png": {"meta":{"dims":[12,7]}, "offsets": {"us":["0x7E563C", "0x0"]}}, -"textures/standalone/texture_7E56E4.ia16.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x7E56E4", "0x00000"]}}, -"textures/standalone/small_letter_0.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E6850", "0x00000"]}}, -"textures/standalone/small_letter_1.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E68E0", "0x00000"]}}, -"textures/standalone/small_letter_2.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E6938", "0x00000"]}}, -"textures/standalone/small_letter_3.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E69D0", "0x00000"]}}, -"textures/standalone/small_letter_4.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E6A64", "0x00000"]}}, -"textures/standalone/small_letter_5.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E6AEC", "0x00000"]}}, -"textures/standalone/small_letter_6.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E6B84", "0x00000"]}}, -"textures/standalone/small_letter_7.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E6C20", "0x00000"]}}, -"textures/standalone/small_letter_8.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E6C90", "0x00000"]}}, -"textures/standalone/small_letter_9.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E6D20", "0x00000"]}}, -"textures/standalone/n64_controller_pak_data_select.ia16.png": {"meta":{"dims":[180,32]}, "offsets": {"us":["0x7E6DC0", "0x00000"]}}, -"textures/standalone/erase_data_record_confirmation.ia16.png": {"meta":{"dims":[180,32]}, "offsets": {"us":["0x7E7EE8", "0x00000"]}}, -"textures/standalone/record_not_erased.ia16.png": {"meta":{"dims":[180,32]}, "offsets": {"us":["0x7E8EDC", "0x00000"]}}, -"textures/standalone/place_n64_controller_pak_into_controller_1.ia16.png": {"meta":{"dims":[180,32]}, "offsets": {"us":["0x7E97AC", "0x00000"]}}, -"textures/standalone/please_reinsert_original_n64_controller_pak.ia16.png": {"meta":{"dims":[180,32]}, "offsets": {"us":["0x7EA3F8", "0x00000"]}}, -"textures/standalone/erasing_selected_record.ia16.png": {"meta":{"dims":[180,32]}, "offsets": {"us":["0x7EB0D0", "0x00000"]}}, -"textures/standalone/select_record.ia16.png": {"meta":{"dims":[68,10]}, "offsets": {"us":["0x7EBCD4", "0x00000"]}}, -"textures/standalone/text_end.ia16.png": {"meta":{"dims":[20,10]}, "offsets": {"us":["0x7EC04C", "0x00000"]}}, -"textures/standalone/table_of_contents.ia16.png": {"meta":{"dims":[88,10]}, "offsets": {"us":["0x7EC17C", "0x00000"]}}, -"textures/standalone/text_hash.ia16.png": {"meta":{"dims":[8,10]}, "offsets": {"us":["0x7EC5A8", "0x00000"]}}, -"textures/standalone/text_game_data.ia16.png": {"meta":{"dims":[56,10]}, "offsets": {"us":["0x7EC628", "0x00000"]}}, -"textures/standalone/text_pages.ia16.png": {"meta":{"dims":[32,10]}, "offsets": {"us":["0x7EC8EC", "0x00000"]}}, -"textures/standalone/text_pages_free.ia16.png": {"meta":{"dims":[56,10]}, "offsets": {"us":["0x7ECAAC", "0x00000"]}}, -"textures/standalone/text_erase.ia16.png": {"meta":{"dims":[28,10]}, "offsets": {"us":["0x7ECD70", "0x00000"]}}, -"textures/standalone/text_quit.ia16.png": {"meta":{"dims":[24,10]}, "offsets": {"us":["0x7ECF10", "0x00000"]}}, -"textures/standalone/texture_7ED058.ia16.png": {"meta":{"dims":[32,66]}, "offsets": {"us":["0x7ED058", "0x00000"]}}, -"textures/standalone/texture_7ED290.ia16.png": {"meta":{"dims":[248,10]}, "offsets": {"us":["0x7ED290", "0x00000"]}}, -"textures/standalone/texture_7ED50C.ia16.png": {"meta":{"dims":[128,10]}, "offsets": {"us":["0x7ED50C", "0x00000"]}}, -"textures/standalone/texture_7ED6A4.ia16.png": {"meta":{"dims":[68,51]}, "offsets": {"us":["0x7ED6A4", "0x00000"]}}, -"textures/standalone/tiny_font_0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDA34", "0x00000"]}}, -"textures/standalone/tiny_font_1.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDAA8", "0x00000"]}}, -"textures/standalone/tiny_font_2.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDAF0", "0x00000"]}}, -"textures/standalone/tiny_font_3.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDB64", "0x00000"]}}, -"textures/standalone/tiny_font_4.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDBD4", "0x00000"]}}, -"textures/standalone/tiny_font_5.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDC30", "0x00000"]}}, -"textures/standalone/tiny_font_6.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDCA4", "0x00000"]}}, -"textures/standalone/tiny_font_7.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDD18", "0x00000"]}}, -"textures/standalone/tiny_font_8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDD78", "0x00000"]}}, -"textures/standalone/tiny_font_9.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDDF0", "0x00000"]}}, -"textures/standalone/tiny_font_A.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDE64", "0x00000"]}}, -"textures/standalone/tiny_font_B.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDED0", "0x00000"]}}, -"textures/standalone/tiny_font_C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDF4C", "0x00000"]}}, -"textures/standalone/tiny_font_D.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDFC0", "0x00000"]}}, -"textures/standalone/tiny_font_E.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE030", "0x00000"]}}, -"textures/standalone/tiny_font_F.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE0A4", "0x00000"]}}, -"textures/standalone/tiny_font_G.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE108", "0x00000"]}}, -"textures/standalone/tiny_font_H.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE17C", "0x00000"]}}, -"textures/standalone/tiny_font_I.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE1F4", "0x00000"]}}, -"textures/standalone/tiny_font_J.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE23C", "0x00000"]}}, -"textures/standalone/tiny_font_K.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE290", "0x00000"]}}, -"textures/standalone/tiny_font_L.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE300", "0x00000"]}}, -"textures/standalone/tiny_font_M.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE34C", "0x00000"]}}, -"textures/standalone/tiny_font_N.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE3C8", "0x00000"]}}, -"textures/standalone/tiny_font_O.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE444", "0x00000"]}}, -"textures/standalone/tiny_font_P.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE4BC", "0x00000"]}}, -"textures/standalone/tiny_font_Q.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE528", "0x00000"]}}, -"textures/standalone/tiny_font_R.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE5A0", "0x00000"]}}, -"textures/standalone/tiny_font_S.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE614", "0x00000"]}}, -"textures/standalone/tiny_font_T.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE684", "0x00000"]}}, -"textures/standalone/tiny_font_U.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE6D8", "0x00000"]}}, -"textures/standalone/tiny_font_V.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE73C", "0x00000"]}}, -"textures/standalone/tiny_font_W.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE79C", "0x00000"]}}, -"textures/standalone/tiny_font_X.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE818", "0x00000"]}}, -"textures/standalone/tiny_font_Y.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE884", "0x00000"]}}, -"textures/standalone/tiny_font_Z.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE8D4", "0x00000"]}}, -"textures/standalone/tiny_font_exclamation_mark.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE93C", "0x00000"]}}, -"textures/standalone/tiny_font_double_quote.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE984", "0x00000"]}}, -"textures/standalone/tiny_font_hash.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE9BC", "0x00000"]}}, -"textures/standalone/tiny_font_single_quote.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEA2C", "0x00000"]}}, -"textures/standalone/tiny_font_asterisk.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEA5C", "0x00000"]}}, -"textures/standalone/tiny_font_plus.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEAC8", "0x00000"]}}, -"textures/standalone/texture_7EEB18.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEB18", "0x00000"]}}, -"textures/standalone/tiny_font_minus.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEB48", "0x00000"]}}, -"textures/standalone/tiny_font_dot.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEB7C", "0x00000"]}}, -"textures/standalone/tiny_font_forward_slash.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEBAC", "0x00000"]}}, -"textures/standalone/tiny_font_colon.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEBFC", "0x00000"]}}, -"textures/standalone/texture_7EEC34.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEC34", "0x00000"]}}, -"textures/standalone/tiny_font_question.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEC84", "0x00000"]}}, -"textures/standalone/texture_7EECE4.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EECE4", "0x00000"]}}, -"textures/standalone/texture_7EED74.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EED74", "0x00000"]}}, -"textures/standalone/texture_7EEDB0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEDB0", "0x00000"]}}, -"textures/standalone/texture_7EEDE8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEDE8", "0x00000"]}}, -"textures/standalone/texture_7EEE20.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEE20", "0x00000"]}}, -"textures/standalone/texture_7EEE7C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEE7C", "0x00000"]}}, -"textures/standalone/texture_7EEED0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEED0", "0x00000"]}}, -"textures/standalone/texture_7EEF3C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEF3C", "0x00000"]}}, -"textures/standalone/texture_7EEF90.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEF90", "0x00000"]}}, -"textures/standalone/texture_7EEFF4.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEFF4", "0x00000"]}}, -"textures/standalone/texture_7EF058.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF058", "0x00000"]}}, -"textures/standalone/texture_7EF0B4.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF0B4", "0x00000"]}}, -"textures/standalone/texture_7EF110.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF110", "0x00000"]}}, -"textures/standalone/texture_7EF17C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF17C", "0x00000"]}}, -"textures/standalone/texture_7EF1F0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF1F0", "0x00000"]}}, -"textures/standalone/texture_7EF250.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF250", "0x00000"]}}, -"textures/standalone/texture_7EF2B8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF2B8", "0x00000"]}}, -"textures/standalone/texture_7EF314.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF314", "0x00000"]}}, -"textures/standalone/texture_7EF388.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF388", "0x00000"]}}, -"textures/standalone/texture_7EF3F8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF3F8", "0x00000"]}}, -"textures/standalone/texture_7EF470.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF470", "0x00000"]}}, -"textures/standalone/texture_7EF4E4.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF4E4", "0x00000"]}}, -"textures/standalone/texture_7EF554.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF554", "0x00000"]}}, -"textures/standalone/texture_7EF5C0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF5C0", "0x00000"]}}, -"textures/standalone/texture_7EF620.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF620", "0x00000"]}}, -"textures/standalone/texture_7EF694.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF694", "0x00000"]}}, -"textures/standalone/texture_7EF708.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF708", "0x00000"]}}, -"textures/standalone/texture_7EF77C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF77C", "0x00000"]}}, -"textures/standalone/texture_7EF7E8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF7E8", "0x00000"]}}, -"textures/standalone/texture_7EF85C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF85C", "0x00000"]}}, -"textures/standalone/texture_7EF8C8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF8C8", "0x00000"]}}, -"textures/standalone/texture_7EF93C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF93C", "0x00000"]}}, -"textures/standalone/texture_7EF9B4.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF9B4", "0x00000"]}}, -"textures/standalone/texture_7EFA2C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFA2C", "0x00000"]}}, -"textures/standalone/texture_7EFAA8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFAA8", "0x00000"]}}, -"textures/standalone/texture_7EFB00.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFB00", "0x00000"]}}, -"textures/standalone/texture_7EFB64.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFB64", "0x00000"]}}, -"textures/standalone/texture_7EFBBC.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFBBC", "0x00000"]}}, -"textures/standalone/texture_7EFC30.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFC30", "0x00000"]}}, -"textures/standalone/texture_7EFCAC.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFCAC", "0x00000"]}}, -"textures/standalone/texture_7EFD00.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFD00", "0x00000"]}}, -"textures/standalone/texture_7EFD60.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFD60", "0x00000"]}}, -"textures/standalone/texture_7EFDD4.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFDD4", "0x00000"]}}, -"textures/standalone/texture_7EFE48.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFE48", "0x00000"]}}, -"textures/standalone/texture_7EFEA0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFEA0", "0x00000"]}}, -"textures/standalone/texture_7EFF2C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFF2C", "0x00000"]}}, -"textures/standalone/texture_7EFF90.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFF90", "0x00000"]}}, -"textures/standalone/texture_7F0000.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0000", "0x00000"]}}, -"textures/standalone/texture_7F006C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F006C", "0x00000"]}}, -"textures/standalone/texture_7F00D8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F00D8", "0x00000"]}}, -"textures/standalone/texture_7F0158.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0158", "0x00000"]}}, -"textures/standalone/texture_7F01D0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F01D0", "0x00000"]}}, -"textures/standalone/texture_7F023C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F023C", "0x00000"]}}, -"textures/standalone/texture_7F02B4.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F02B4", "0x00000"]}}, -"textures/standalone/texture_7F032C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F032C", "0x00000"]}}, -"textures/standalone/texture_7F0390.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0390", "0x00000"]}}, -"textures/standalone/texture_7F0404.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0404", "0x00000"]}}, -"textures/standalone/texture_7F0470.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0470", "0x00000"]}}, -"textures/standalone/texture_7F04EC.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F04EC", "0x00000"]}}, -"textures/standalone/texture_7F055C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F055C", "0x00000"]}}, -"textures/standalone/texture_7F05F0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F05F0", "0x00000"]}}, -"textures/standalone/texture_7F0670.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0670", "0x00000"]}}, -"textures/standalone/texture_7F06EC.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F06EC", "0x00000"]}}, -"textures/standalone/texture_7F0768.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0768", "0x00000"]}}, -"textures/standalone/texture_7F07E0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F07E0", "0x00000"]}}, -"textures/standalone/texture_7F0858.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0858", "0x00000"]}}, -"textures/standalone/texture_7F08D8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F08D8", "0x00000"]}}, -"textures/standalone/texture_7F0948.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0948", "0x00000"]}}, -"textures/standalone/texture_7F09D0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F09D0", "0x00000"]}}, -"textures/standalone/texture_7F0A3C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0A3C", "0x00000"]}}, -"textures/standalone/texture_7F0ABC.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0ABC", "0x00000"]}}, -"textures/standalone/texture_7F0B34.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0B34", "0x00000"]}}, -"textures/standalone/texture_7F0BB0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0BB0", "0x00000"]}}, -"textures/standalone/texture_7F0C24.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0C24", "0x00000"]}}, -"textures/standalone/texture_7F0C94.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0C94", "0x00000"]}}, -"textures/standalone/texture_7F0D0C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0D0C", "0x00000"]}}, -"textures/standalone/texture_7F0D8C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0D8C", "0x00000"]}}, -"textures/standalone/texture_7F0DEC.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0DEC", "0x00000"]}}, -"textures/standalone/texture_7F0E5C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0E5C", "0x00000"]}}, -"textures/standalone/texture_7F0EE4.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0EE4", "0x00000"]}}, -"textures/standalone/texture_7F0F5C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0F5C", "0x00000"]}}, -"textures/standalone/texture_7F0FD8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0FD8", "0x00000"]}}, -"textures/standalone/texture_7F1038.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F1038", "0x00000"]}}, -"textures/standalone/texture_7F109C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F109C", "0x00000"]}}, -"textures/raw/font_four_dote.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1124", "0x0"]}}, -"textures/raw/font_cc.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F11F4", "0x0"]}}, -"textures/raw/font_double_quote.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F12C4", "0x0"]}}, -"textures/raw/font_exclamation_mark.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1394", "0x0"]}}, -"textures/raw/font_minus.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1464", "0x0"]}}, -"textures/raw/font_dot.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1534", "0x0"]}}, -"textures/raw/font_plus.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1604", "0x0"]}}, -"textures/raw/font_interogation_mark.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F16D4", "0x0"]}}, -"textures/raw/font_simple_quote.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F17A4", "0x0"]}}, -"textures/raw/font_number_zero.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1874", "0x0"]}}, -"textures/raw/font_number_one.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1944", "0x0"]}}, -"textures/raw/font_number_two.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1A14", "0x0"]}}, -"textures/raw/font_number_three.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1AE4", "0x0"]}}, -"textures/raw/font_number_four.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1BB4", "0x0"]}}, -"textures/raw/font_number_five.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1C84", "0x0"]}}, -"textures/raw/font_number_six.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1D54", "0x0"]}}, -"textures/raw/font_number_seven.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1E24", "0x0"]}}, -"textures/raw/font_number_eight.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1EF4", "0x0"]}}, -"textures/raw/font_number_nine.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1FC4", "0x0"]}}, -"textures/raw/font_letter_A.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2094", "0x0"]}}, -"textures/raw/font_letter_B.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2164", "0x0"]}}, -"textures/raw/font_letter_C.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2234", "0x0"]}}, -"textures/raw/font_letter_D.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2304", "0x0"]}}, -"textures/raw/font_letter_E.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F23D4", "0x0"]}}, -"textures/raw/font_letter_F.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F24A4", "0x0"]}}, -"textures/raw/font_letter_G.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2574", "0x0"]}}, -"textures/raw/font_letter_H.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2644", "0x0"]}}, -"textures/raw/font_letter_I.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2714", "0x0"]}}, -"textures/raw/font_letter_J.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F27E4", "0x0"]}}, -"textures/raw/font_letter_K.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F28B4", "0x0"]}}, -"textures/raw/font_letter_L.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2984", "0x0"]}}, -"textures/raw/font_letter_M.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2A54", "0x0"]}}, -"textures/raw/font_letter_N.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2B24", "0x0"]}}, -"textures/raw/font_letter_O.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2BF4", "0x0"]}}, -"textures/raw/font_letter_P.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2CC4", "0x0"]}}, -"textures/raw/font_letter_Q.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2D94", "0x0"]}}, -"textures/raw/font_letter_R.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2E64", "0x0"]}}, -"textures/raw/font_letter_S.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2F34", "0x0"]}}, -"textures/raw/font_letter_T.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F3004", "0x0"]}}, -"textures/raw/font_letter_U.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F30D4", "0x0"]}}, -"textures/raw/font_letter_V.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F31A4", "0x0"]}}, -"textures/raw/font_letter_W.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F3274", "0x0"]}}, -"textures/raw/font_letter_X.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F3344", "0x0"]}}, -"textures/raw/font_letter_Y.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F3414", "0x0"]}}, -"textures/raw/font_letter_Z.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F34E4", "0x0"]}}, -"textures/raw/7F35B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F35B4", "0x0"]}}, -"textures/raw/7F3634.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3634", "0x0"]}}, -"textures/raw/7F36B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F36B4", "0x0"]}}, -"textures/raw/7F3734.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3734", "0x0"]}}, -"textures/raw/7F37B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F37B4", "0x0"]}}, -"textures/raw/7F3834.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3834", "0x0"]}}, -"textures/raw/7F38B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F38B4", "0x0"]}}, -"textures/raw/7F3934.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3934", "0x0"]}}, -"textures/raw/7F39B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F39B4", "0x0"]}}, -"textures/raw/7F3A34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3A34", "0x0"]}}, -"textures/raw/7F3AB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3AB4", "0x0"]}}, -"textures/raw/7F3B34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3B34", "0x0"]}}, -"textures/raw/7F3BB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3BB4", "0x0"]}}, -"textures/raw/7F3C34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3C34", "0x0"]}}, -"textures/raw/7F3CB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3CB4", "0x0"]}}, -"textures/raw/7F3D34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3D34", "0x0"]}}, -"textures/raw/7F3DB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3DB4", "0x0"]}}, -"textures/raw/7F3E34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3E34", "0x0"]}}, -"textures/raw/7F3EB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3EB4", "0x0"]}}, -"textures/raw/7F3F34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3F34", "0x0"]}}, -"textures/raw/7F3FB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3FB4", "0x0"]}}, -"textures/raw/7F4034.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4034", "0x0"]}}, -"textures/raw/7F40B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F40B4", "0x0"]}}, -"textures/raw/7F4134.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4134", "0x0"]}}, -"textures/raw/7F41B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F41B4", "0x0"]}}, -"textures/raw/7F4234.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4234", "0x0"]}}, -"textures/raw/7F42B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F42B4", "0x0"]}}, -"textures/raw/7F4334.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4334", "0x0"]}}, -"textures/raw/7F43B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F43B4", "0x0"]}}, -"textures/raw/7F4434.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4434", "0x0"]}}, -"textures/raw/7F44B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F44B4", "0x0"]}}, -"textures/raw/7F4534.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4534", "0x0"]}}, -"textures/raw/7F45B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F45B4", "0x0"]}}, -"textures/raw/7F4634.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4634", "0x0"]}}, -"textures/raw/7F46B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F46B4", "0x0"]}}, -"textures/raw/7F4734.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4734", "0x0"]}}, -"textures/raw/7F47B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F47B4", "0x0"]}}, -"textures/raw/7F4834.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4834", "0x0"]}}, -"textures/raw/7F48B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F48B4", "0x0"]}}, -"textures/raw/7F4934.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4934", "0x0"]}}, -"textures/raw/7F49B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F49B4", "0x0"]}}, -"textures/raw/7F4A34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4A34", "0x0"]}}, -"textures/raw/7F4AB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4AB4", "0x0"]}}, -"textures/raw/7F4B34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4B34", "0x0"]}}, -"textures/raw/7F4BB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4BB4", "0x0"]}}, -"textures/raw/7F4C34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4C34", "0x0"]}}, -"textures/raw/7F4CB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4CB4", "0x0"]}}, -"textures/raw/7F4D34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4D34", "0x0"]}}, -"textures/raw/7F4DB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4DB4", "0x0"]}}, -"textures/raw/7F4E34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4E34", "0x0"]}}, -"textures/raw/7F4EB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4EB4", "0x0"]}}, -"textures/raw/7F4F34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4F34", "0x0"]}}, -"textures/raw/7F4FB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4FB4", "0x0"]}}, -"textures/raw/7F5034.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5034", "0x0"]}}, -"textures/raw/7F50B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F50B4", "0x0"]}}, -"textures/raw/7F5134.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5134", "0x0"]}}, -"textures/raw/7F51B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F51B4", "0x0"]}}, -"textures/raw/7F5234.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5234", "0x0"]}}, -"textures/raw/7F52B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F52B4", "0x0"]}}, -"textures/raw/7F5334.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5334", "0x0"]}}, -"textures/raw/7F53B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F53B4", "0x0"]}}, -"textures/raw/7F5434.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5434", "0x0"]}}, -"textures/raw/7F54B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F54B4", "0x0"]}}, -"textures/raw/7F5534.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5534", "0x0"]}}, -"textures/raw/7F55B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F55B4", "0x0"]}}, -"textures/raw/7F5634.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5634", "0x0"]}}, -"textures/raw/7F56B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F56B4", "0x0"]}}, -"textures/raw/7F5734.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5734", "0x0"]}}, -"textures/raw/7F57B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F57B4", "0x0"]}}, -"textures/raw/7F5834.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5834", "0x0"]}}, -"textures/raw/7F58B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F58B4", "0x0"]}}, -"textures/raw/7F5934.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5934", "0x0"]}}, -"textures/raw/7F59B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F59B4", "0x0"]}}, -"textures/raw/7F5A34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5A34", "0x0"]}}, -"textures/raw/7F5AB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5AB4", "0x0"]}}, -"textures/raw/7F5B34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5B34", "0x0"]}}, -"textures/raw/7F5BB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5BB4", "0x0"]}}, -"textures/raw/7F5C34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5C34", "0x0"]}}, -"textures/raw/7F5CB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5CB4", "0x0"]}}, -"textures/raw/7F5D34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5D34", "0x0"]}}, -"textures/raw/7F5DB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5DB4", "0x0"]}}, -"textures/raw/7F5E34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5E34", "0x0"]}}, -"textures/raw/7F5EB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5EB4", "0x0"]}}, -"textures/raw/7F5F34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5F34", "0x0"]}}, -"textures/raw/7F5FB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5FB4", "0x0"]}}, -"textures/raw/7F6034.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6034", "0x0"]}}, -"textures/raw/7F60B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F60B4", "0x0"]}}, -"textures/raw/7F6134.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6134", "0x0"]}}, -"textures/raw/7F61B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F61B4", "0x0"]}}, -"textures/raw/7F6234.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6234", "0x0"]}}, -"textures/raw/7F62B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F62B4", "0x0"]}}, -"textures/raw/7F6334.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6334", "0x0"]}}, -"textures/raw/7F63B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F63B4", "0x0"]}}, -"textures/raw/7F6434.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6434", "0x0"]}}, -"textures/raw/7F64B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F64B4", "0x0"]}}, -"textures/raw/7F6534.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6534", "0x0"]}}, -"textures/raw/7F65B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F65B4", "0x0"]}}, -"textures/raw/7F6634.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6634", "0x0"]}}, -"textures/raw/7F66B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F66B4", "0x0"]}}, -"textures/raw/7F6734.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6734", "0x0"]}}, -"textures/raw/7F67B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F67B4", "0x0"]}}, -"textures/raw/7F6834.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6834", "0x0"]}}, -"textures/raw/7F68B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F68B4", "0x0"]}}, -"textures/raw/7F6934.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6934", "0x0"]}}, -"textures/raw/7F69B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F69B4", "0x0"]}}, -"textures/raw/7F6A34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6A34", "0x0"]}}, -"textures/raw/7F6AB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6AB4", "0x0"]}}, -"textures/raw/7F6B34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6B34", "0x0"]}}, -"textures/raw/7F6BB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6BB4", "0x0"]}}, -"textures/raw/7F6C34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6C34", "0x0"]}}, -"textures/raw/7F6CB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6CB4", "0x0"]}}, -"textures/raw/7F6D34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6D34", "0x0"]}}, -"textures/raw/7F6DB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6DB4", "0x0"]}}, -"textures/raw/7F6E34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6E34", "0x0"]}}, -"textures/raw/7F6EB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6EB4", "0x0"]}}, -"textures/raw/7F6F34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6F34", "0x0"]}}, -"textures/raw/7F6FB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6FB4", "0x0"]}}, -"textures/raw/7F7034.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7034", "0x0"]}}, -"textures/raw/7F70B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F70B4", "0x0"]}}, -"textures/raw/7F7134.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7134", "0x0"]}}, -"textures/raw/7F71B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F71B4", "0x0"]}}, -"textures/raw/7F7234.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7234", "0x0"]}}, -"textures/raw/7F72B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F72B4", "0x0"]}}, -"textures/raw/7F7334.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7334", "0x0"]}}, -"textures/raw/7F73B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F73B4", "0x0"]}}, -"textures/raw/7F7434.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7434", "0x0"]}}, -"textures/raw/7F74B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F74B4", "0x0"]}}, -"textures/raw/7F7534.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7534", "0x0"]}}, -"textures/raw/7F75B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F75B4", "0x0"]}}, -"textures/raw/7F7634.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7634", "0x0"]}}, -"textures/raw/7F76B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F76B4", "0x0"]}}, -"textures/raw/7F7734.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7734", "0x0"]}}, -"textures/raw/7F77B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F77B4", "0x0"]}}, -"textures/raw/7F7834.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7834", "0x0"]}}, -"textures/raw/7F78B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F78B4", "0x0"]}}, -"textures/raw/7F7934.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7934", "0x0"]}}, -"textures/raw/7F79B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F79B4", "0x0"]}}, -"textures/raw/7F7A34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7A34", "0x0"]}}, -"textures/raw/7F7AB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7AB4", "0x0"]}}, -"textures/raw/7F7B34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7B34", "0x0"]}}, -"textures/raw/7F7BB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7BB4", "0x0"]}}, -"textures/raw/7F7C34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7C34", "0x0"]}}, -"textures/raw/7F7CB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7CB4", "0x0"]}}, -"textures/raw/7F7D34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7D34", "0x0"]}}, -"textures/raw/7F7DB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7DB4", "0x0"]}}, -"textures/raw/7F7E34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7E34", "0x0"]}}, -"textures/raw/7F7EB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7EB4", "0x0"]}}, -"textures/raw/7F7F34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7F34", "0x0"]}}, -"textures/raw/7F7FB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7FB4", "0x0"]}}, -"textures/raw/7F8034.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F8034", "0x0"]}}, -"textures/raw/7F80B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F80B4", "0x0"]}}, -"textures/raw/7F8134.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F8134", "0x0"]}}, -"textures/raw/7F81B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F81B4", "0x0"]}}, -"textures/raw/7F8234.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F8234", "0x0"]}}, -"textures/raw/7F82B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F82B4", "0x0"]}}, -"textures/raw/7F8334.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F8334", "0x0"]}}, -"textures/raw/7F83B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F83B4", "0x0"]}}, -"textures/raw/7F8434.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F8434", "0x0"]}}, -"textures/raw/7F84B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F84B4", "0x0"]}}, -"textures/raw/7F8534.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F8534", "0x0"]}}, -"textures/raw/7F85B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F85B4", "0x0"]}}, -"textures/raw/7F8634.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F8634", "0x0"]}}, -"textures/raw/7F86B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F86B4", "0x0"]}}, -"textures/raw/7F8734.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F8734", "0x0"]}}, -"textures/raw/7F8914.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F8914", "0x0"]}}, -"textures/raw/7F8AF4.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F8AF4", "0x0"]}}, -"textures/raw/7F8CD4.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F8CD4", "0x0"]}}, -"textures/raw/7F8EB4.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F8EB4", "0x0"]}}, -"textures/raw/7F9094.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F9094", "0x0"]}}, -"textures/raw/7F9274.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F9274", "0x0"]}}, -"textures/raw/7F9454.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F9454", "0x0"]}}, -"textures/raw/7F9634.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F9634", "0x0"]}}, -"textures/raw/7F9814.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F9814", "0x0"]}}, -"textures/raw/7F99F4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F99F4", "0x0"]}}, -"textures/raw/7F9A74.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9A74", "0x0"]}}, -"textures/raw/7F9AF4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9AF4", "0x0"]}}, -"textures/raw/7F9B74.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9B74", "0x0"]}}, -"textures/raw/7F9BF4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9BF4", "0x0"]}}, -"textures/raw/7F9C74.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9C74", "0x0"]}}, -"textures/raw/7F9CF4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F9CF4", "0x0"]}}, -"textures/raw/7F9DC4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9DC4", "0x0"]}}, -"textures/raw/7F9E44.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9E44", "0x0"]}}, -"textures/raw/7F9EC4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9EC4", "0x0"]}}, -"textures/raw/7F9F44.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9F44", "0x0"]}}, -"textures/raw/7F9FC4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9FC4", "0x0"]}}, -"textures/raw/font_apostrophe.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7FA044", "0x0"]}}, -"textures/raw/7FA0C4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7FA0C4", "0x0"]}}, -"textures/raw/7FA194.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7FA194", "0x0"]}}, -"textures/raw/7FA264.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7FA264", "0x0"]}}, -"textures/raw/font_comma.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7FA334", "0x0"]}}, +"textures/standalone/trophy_gold.rgba16.png": {"meta":{"dims":[45,45]}, "offsets":{"us":["0x7D83E8","0x00000"],"jp.v11":["0x7ddab8","0x00000"]}}, +"textures/standalone/trophy_silver.rgba16.png": {"meta":{"dims":[45,45]}, "offsets":{"us":["0x7D8A1C","0x00000"],"jp.v11":["0x7de0ec","0x00000"]}}, +"textures/standalone/trophy_bronze.rgba16.png": {"meta":{"dims":[45,45]}, "offsets":{"us":["0x7D9044","0x00000"],"jp.v11":["0x7de714","0x00000"]}}, +"textures/standalone/cup_gold.rgba16.png": {"meta":{"dims":[45,45]}, "offsets":{"us":["0x7D9630","0x00000"],"jp.v11":["0x7ded00","0x00000"]}}, +"textures/standalone/cup_silver.rgba16.png": {"meta":{"dims":[45,45]}, "offsets":{"us":["0x7D9FBC","0x00000"],"jp.v11":["0x7df68c","0x00000"]}}, +"textures/standalone/cup_bronze.rgba16.png": {"meta":{"dims":[45,45]}, "offsets":{"us":["0x7DA940","0x00000"],"jp.v11":["0x7e0010","0x00000"]}}, +"textures/raw/push_start_button.rgba16.png": {"meta":{"dims":[159,16]}, "offsets":{"us":["0x7DB1E4","0x0"],"jp.v11":["0x7e08b4","0x0"]}}, +"textures/raw/copyright_1996.rgba16.png": {"meta":{"dims":[124,17]}, "offsets":{"us":["0x7DC5C4","0x0"],"jp.v11":["0x7e1c94","0x0"]}}, +"textures/raw/p1_border_blue.rgba16.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x7DD63C","0x0"],"jp.v11":["0x7e2d0c","0x0"]}}, +"textures/raw/p2_border_red.rgba16.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x7DF63C","0x0"],"jp.v11":["0x7e4d0c","0x0"]}}, +"textures/raw/p3_border_orange.rgba16.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x7E163C","0x0"],"jp.v11":["0x7e6d0c","0x0"]}}, +"textures/raw/p4_border_green.rgba16.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x7E363C","0x0"],"jp.v11":["0x7e8d0c","0x0"]}}, +"textures/raw/small_green_triangle.rgba16.png": {"meta":{"dims":[12,7]}, "offsets":{"us":["0x7E563C","0x0"],"jp.v11":["0x7ead0c","0x0"]}}, +"textures/standalone/texture_7E56E4.ia16.png": {"meta":{"dims":[64,64]}, "offsets":{"us":["0x7E56E4","0x00000"],"jp.v11":["0x7eadb4","0x00000"]}}, +"textures/standalone/small_letter_0.ia16.png": {"meta":{"dims":[8,9]}, "offsets":{"us":["0x7E6850","0x00000"],"jp.v11":["0x7ebf20","0x00000"]}}, +"textures/standalone/small_letter_1.ia16.png": {"meta":{"dims":[8,9]}, "offsets":{"us":["0x7E68E0","0x00000"],"jp.v11":["0x7ebfb0","0x00000"]}}, +"textures/standalone/small_letter_2.ia16.png": {"meta":{"dims":[8,9]}, "offsets":{"us":["0x7E6938","0x00000"],"jp.v11":["0x7ec008","0x00000"]}}, +"textures/standalone/small_letter_3.ia16.png": {"meta":{"dims":[8,9]}, "offsets":{"us":["0x7E69D0","0x00000"],"jp.v11":["0x7ec0a0","0x00000"]}}, +"textures/standalone/small_letter_4.ia16.png": {"meta":{"dims":[8,9]}, "offsets":{"us":["0x7E6A64","0x00000"],"jp.v11":["0x7ec134","0x00000"]}}, +"textures/standalone/small_letter_5.ia16.png": {"meta":{"dims":[8,9]}, "offsets":{"us":["0x7E6AEC","0x00000"],"jp.v11":["0x7ec1bc","0x00000"]}}, +"textures/standalone/small_letter_6.ia16.png": {"meta":{"dims":[8,9]}, "offsets":{"us":["0x7E6B84","0x00000"],"jp.v11":["0x7ec254","0x00000"]}}, +"textures/standalone/small_letter_7.ia16.png": {"meta":{"dims":[8,9]}, "offsets":{"us":["0x7E6C20","0x00000"],"jp.v11":["0x7ec2f0","0x00000"]}}, +"textures/standalone/small_letter_8.ia16.png": {"meta":{"dims":[8,9]}, "offsets":{"us":["0x7E6C90","0x00000"],"jp.v11":["0x7ec360","0x00000"]}}, +"textures/standalone/small_letter_9.ia16.png": {"meta":{"dims":[8,9]}, "offsets":{"us":["0x7E6D20","0x00000"],"jp.v11":["0x7ec3f0","0x00000"]}}, +"textures/standalone/n64_controller_pak_data_select.ia16.png": {"meta":{"dims":[180,32]}, "offsets":{"us":["0x7E6DC0","0x00000"],"jp.v11":["0x7EC490","0x0"]}}, +"textures/standalone/erase_data_record_confirmation.ia16.png": {"meta":{"dims":[180,32]}, "offsets":{"us":["0x7E7EE8","0x00000"],"jp.v11":["0x7ED5FC","0x0"]}}, +"textures/standalone/record_not_erased.ia16.png": {"meta":{"dims":[180,32]}, "offsets":{"us":["0x7E8EDC","0x00000"],"jp.v11":["0x7EE5E4","0x0"]}}, +"textures/standalone/place_n64_controller_pak_into_controller_1.ia16.png": {"meta":{"dims":[180,32]}, "offsets":{"us":["0x7E97AC","0x00000"],"jp.v11":["0x7EF1DC","0x0"]}}, +"textures/standalone/please_reinsert_original_n64_controller_pak.ia16.png": {"meta":{"dims":[180,32]}, "offsets":{"us":["0x7EA3F8","0x00000"],"jp.v11":["0x7EFC80","0x0"]}}, +"textures/standalone/erasing_selected_record.ia16.png": {"meta":{"dims":[180,32]}, "offsets":{"us":["0x7EB0D0","0x00000"],"jp.v11":["0x7F07FC","0x0"]}}, +"textures/standalone/select_record.ia16.png": {"meta":{"dims":[68,10],"overrides":{"jp.v11":{"dims":[52,10]}}}, "offsets":{"us":["0x7EBCD4","0x00000"],"jp.v11":["0x7F15D0","0x0"]}}, +"textures/standalone/text_end.ia16.png": {"meta":{"dims":[20,10],"overrides":{"jp.v11":{"dims":[32,10]}}}, "offsets":{"us":["0x7EC04C","0x00000"],"jp.v11":["0x7F1928","0x0"]}}, +"textures/standalone/table_of_contents.ia16.png": {"meta":{"dims":[88,10]}, "offsets":{"us":["0x7EC17C","0x00000"],"jp.v11":["0x7F1B20","0x0"]}}, +"textures/standalone/text_hash.ia16.png": {"meta":{"dims":[8,10],"overrides":{"jp.v11":{"dims":[20,10]}}}, "offsets":{"us":["0x7EC5A8","0x00000"],"jp.v11":["0x7F1E5C","0x0"]}}, +"textures/standalone/text_game_data.ia16.png": {"meta":{"dims":[56,10],"overrides":{"jp.v11":{"dims":[60,10]}}}, "offsets":{"us":["0x7EC628","0x00000"],"jp.v11":["0x7F1F7C","0x0"]}}, +"textures/standalone/text_pages.ia16.png": {"meta":{"dims":[32,10]}, "offsets":{"us":["0x7EC8EC","0x00000"],"jp.v11":["0x7F2174","0x0"]}}, +"textures/standalone/text_pages_free.ia16.png": {"meta":{"dims":[56,10],"overrides":{"jp.v11":{"dims":[20,10]}}}, "offsets":{"us":["0x7ECAAC","0x00000"],"jp.v11":["0x7F22B8","0x0"]}}, +"textures/standalone/text_erase.ia16.png": {"meta":{"dims":[28,10],"overrides":{"jp.v11":{"dims":[20,10]}}}, "offsets":{"us":["0x7ECD70","0x00000"],"jp.v11":["0x7F2404","0x0"]}}, +"textures/standalone/text_quit.ia16.png": {"meta":{"dims":[24,10],"overrides":{"jp.v11":{"dims":[32,10]}}}, "offsets":{"us":["0x7ECF10","0x00000"],"jp.v11":["0x7F2564","0x0"]}}, +"textures/standalone/texture_7ED058.ia16.png": {"meta":{"dims":[32,66]}, "offsets":{"us":["0x7ED058","0x00000"],"jp.v11":["0x7f2740","0x00000"]}}, +"textures/standalone/texture_7ED290.ia16.png": {"meta":{"dims":[248,10]}, "offsets":{"us":["0x7ED290","0x00000"],"jp.v11":["0x7f2978","0x00000"]}}, +"textures/standalone/texture_7ED50C.ia16.png": {"meta":{"dims":[128,10]}, "offsets":{"us":["0x7ED50C","0x00000"],"jp.v11":["0x7f2bf4","0x00000"]}}, +"textures/standalone/texture_7ED6A4.ia16.png": {"meta":{"dims":[68,51]}, "offsets":{"us":["0x7ED6A4","0x00000"],"jp.v11":["0x7f2d8c","0x00000"]}}, +"textures/standalone/tiny_font_0.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EDA34","0x00000"],"jp.v11":["0x7f311c","0x00000"]}}, +"textures/standalone/tiny_font_1.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EDAA8","0x00000"],"jp.v11":["0x7f3190","0x00000"]}}, +"textures/standalone/tiny_font_2.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EDAF0","0x00000"],"jp.v11":["0x7f31d8","0x00000"]}}, +"textures/standalone/tiny_font_3.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EDB64","0x00000"],"jp.v11":["0x7f324c","0x00000"]}}, +"textures/standalone/tiny_font_4.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EDBD4","0x00000"],"jp.v11":["0x7f32bc","0x00000"]}}, +"textures/standalone/tiny_font_5.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EDC30","0x00000"],"jp.v11":["0x7f3318","0x00000"]}}, +"textures/standalone/tiny_font_6.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EDCA4","0x00000"],"jp.v11":["0x7f338c","0x00000"]}}, +"textures/standalone/tiny_font_7.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EDD18","0x00000"],"jp.v11":["0x7f3400","0x00000"]}}, +"textures/standalone/tiny_font_8.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EDD78","0x00000"],"jp.v11":["0x7f3460","0x00000"]}}, +"textures/standalone/tiny_font_9.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EDDF0","0x00000"],"jp.v11":["0x7f34d8","0x00000"]}}, +"textures/standalone/tiny_font_A.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EDE64","0x00000"],"jp.v11":["0x7f354c","0x00000"]}}, +"textures/standalone/tiny_font_B.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EDED0","0x00000"],"jp.v11":["0x7f35b8","0x00000"]}}, +"textures/standalone/tiny_font_C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EDF4C","0x00000"],"jp.v11":["0x7f3634","0x00000"]}}, +"textures/standalone/tiny_font_D.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EDFC0","0x00000"],"jp.v11":["0x7f36a8","0x00000"]}}, +"textures/standalone/tiny_font_E.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE030","0x00000"],"jp.v11":["0x7f3718","0x00000"]}}, +"textures/standalone/tiny_font_F.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE0A4","0x00000"],"jp.v11":["0x7f378c","0x00000"]}}, +"textures/standalone/tiny_font_G.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE108","0x00000"],"jp.v11":["0x7f37f0","0x00000"]}}, +"textures/standalone/tiny_font_H.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE17C","0x00000"],"jp.v11":["0x7f3864","0x00000"]}}, +"textures/standalone/tiny_font_I.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE1F4","0x00000"],"jp.v11":["0x7f38dc","0x00000"]}}, +"textures/standalone/tiny_font_J.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE23C","0x00000"],"jp.v11":["0x7f3924","0x00000"]}}, +"textures/standalone/tiny_font_K.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE290","0x00000"],"jp.v11":["0x7f3978","0x00000"]}}, +"textures/standalone/tiny_font_L.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE300","0x00000"],"jp.v11":["0x7f39e8","0x00000"]}}, +"textures/standalone/tiny_font_M.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE34C","0x00000"],"jp.v11":["0x7f3a34","0x00000"]}}, +"textures/standalone/tiny_font_N.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE3C8","0x00000"],"jp.v11":["0x7f3ab0","0x00000"]}}, +"textures/standalone/tiny_font_O.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE444","0x00000"],"jp.v11":["0x7f3b2c","0x00000"]}}, +"textures/standalone/tiny_font_P.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE4BC","0x00000"],"jp.v11":["0x7f3ba4","0x00000"]}}, +"textures/standalone/tiny_font_Q.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE528","0x00000"],"jp.v11":["0x7f3c10","0x00000"]}}, +"textures/standalone/tiny_font_R.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE5A0","0x00000"],"jp.v11":["0x7f3c88","0x00000"]}}, +"textures/standalone/tiny_font_S.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE614","0x00000"],"jp.v11":["0x7f3cfc","0x00000"]}}, +"textures/standalone/tiny_font_T.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE684","0x00000"],"jp.v11":["0x7f3d6c","0x00000"]}}, +"textures/standalone/tiny_font_U.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE6D8","0x00000"],"jp.v11":["0x7f3dc0","0x00000"]}}, +"textures/standalone/tiny_font_V.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE73C","0x00000"],"jp.v11":["0x7f3e24","0x00000"]}}, +"textures/standalone/tiny_font_W.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE79C","0x00000"],"jp.v11":["0x7f3e84","0x00000"]}}, +"textures/standalone/tiny_font_X.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE818","0x00000"],"jp.v11":["0x7f3f00","0x00000"]}}, +"textures/standalone/tiny_font_Y.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE884","0x00000"],"jp.v11":["0x7f3f6c","0x00000"]}}, +"textures/standalone/tiny_font_Z.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE8D4","0x00000"],"jp.v11":["0x7f3fbc","0x00000"]}}, +"textures/standalone/tiny_font_exclamation_mark.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE93C","0x00000"],"jp.v11":["0x7f4024","0x00000"]}}, +"textures/standalone/tiny_font_double_quote.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE984","0x00000"],"jp.v11":["0x7f406c","0x00000"]}}, +"textures/standalone/tiny_font_hash.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EE9BC","0x00000"],"jp.v11":["0x7f40a4","0x00000"]}}, +"textures/standalone/tiny_font_single_quote.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EEA2C","0x00000"],"jp.v11":["0x7f4114","0x00000"]}}, +"textures/standalone/tiny_font_asterisk.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EEA5C","0x00000"],"jp.v11":["0x7f4144","0x00000"]}}, +"textures/standalone/tiny_font_plus.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EEAC8","0x00000"],"jp.v11":["0x7f41b0","0x00000"]}}, +"textures/standalone/texture_7EEB18.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EEB18","0x00000"],"jp.v11":["0x7f4200","0x00000"]}}, +"textures/standalone/tiny_font_minus.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EEB48","0x00000"],"jp.v11":["0x7f4230","0x00000"]}}, +"textures/standalone/tiny_font_dot.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EEB7C","0x00000"],"jp.v11":["0x7f4264","0x00000"]}}, +"textures/standalone/tiny_font_forward_slash.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EEBAC","0x00000"],"jp.v11":["0x7f4294","0x00000"]}}, +"textures/standalone/tiny_font_colon.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EEBFC","0x00000"],"jp.v11":["0x7f42e4","0x00000"]}}, +"textures/standalone/texture_7EEC34.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EEC34","0x00000"],"jp.v11":["0x7f431c","0x00000"]}}, +"textures/standalone/tiny_font_question.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EEC84","0x00000"],"jp.v11":["0x7f436c","0x00000"]}}, +"textures/standalone/texture_7EECE4.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EECE4","0x00000"],"jp.v11":["0x7f43cc","0x00000"]}}, +"textures/standalone/texture_7EED74.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EED74","0x00000"],"jp.v11":["0x7f445c","0x00000"]}}, +"textures/standalone/texture_7EEDB0.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EEDB0","0x00000"],"jp.v11":["0x7f4498","0x00000"]}}, +"textures/standalone/texture_7EEDE8.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EEDE8","0x00000"],"jp.v11":["0x7f44d0","0x00000"]}}, +"textures/standalone/texture_7EEE20.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EEE20","0x00000"],"jp.v11":["0x7f4508","0x00000"]}}, +"textures/standalone/texture_7EEE7C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EEE7C","0x00000"],"jp.v11":["0x7f4564","0x00000"]}}, +"textures/standalone/texture_7EEED0.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EEED0","0x00000"],"jp.v11":["0x7f45b8","0x00000"]}}, +"textures/standalone/texture_7EEF3C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EEF3C","0x00000"],"jp.v11":["0x7f4624","0x00000"]}}, +"textures/standalone/texture_7EEF90.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EEF90","0x00000"],"jp.v11":["0x7f4678","0x00000"]}}, +"textures/standalone/texture_7EEFF4.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EEFF4","0x00000"],"jp.v11":["0x7f46dc","0x00000"]}}, +"textures/standalone/texture_7EF058.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF058","0x00000"],"jp.v11":["0x7f4740","0x00000"]}}, +"textures/standalone/texture_7EF0B4.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF0B4","0x00000"],"jp.v11":["0x7f479c","0x00000"]}}, +"textures/standalone/texture_7EF110.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF110","0x00000"],"jp.v11":["0x7f47f8","0x00000"]}}, +"textures/standalone/texture_7EF17C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF17C","0x00000"],"jp.v11":["0x7f4864","0x00000"]}}, +"textures/standalone/texture_7EF1F0.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF1F0","0x00000"],"jp.v11":["0x7f48d8","0x00000"]}}, +"textures/standalone/texture_7EF250.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF250","0x00000"],"jp.v11":["0x7f4938","0x00000"]}}, +"textures/standalone/texture_7EF2B8.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF2B8","0x00000"],"jp.v11":["0x7f49a0","0x00000"]}}, +"textures/standalone/texture_7EF314.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF314","0x00000"],"jp.v11":["0x7f49fc","0x00000"]}}, +"textures/standalone/texture_7EF388.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF388","0x00000"],"jp.v11":["0x7f4a70","0x00000"]}}, +"textures/standalone/texture_7EF3F8.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF3F8","0x00000"],"jp.v11":["0x7f4ae0","0x00000"]}}, +"textures/standalone/texture_7EF470.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF470","0x00000"],"jp.v11":["0x7f4b58","0x00000"]}}, +"textures/standalone/texture_7EF4E4.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF4E4","0x00000"],"jp.v11":["0x7f4bcc","0x00000"]}}, +"textures/standalone/texture_7EF554.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF554","0x00000"],"jp.v11":["0x7f4c3c","0x00000"]}}, +"textures/standalone/texture_7EF5C0.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF5C0","0x00000"],"jp.v11":["0x7f4ca8","0x00000"]}}, +"textures/standalone/texture_7EF620.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF620","0x00000"],"jp.v11":["0x7f4d08","0x00000"]}}, +"textures/standalone/texture_7EF694.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF694","0x00000"],"jp.v11":["0x7f4d7c","0x00000"]}}, +"textures/standalone/texture_7EF708.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF708","0x00000"],"jp.v11":["0x7f4df0","0x00000"]}}, +"textures/standalone/texture_7EF77C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF77C","0x00000"],"jp.v11":["0x7f4e64","0x00000"]}}, +"textures/standalone/texture_7EF7E8.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF7E8","0x00000"],"jp.v11":["0x7f4ed0","0x00000"]}}, +"textures/standalone/texture_7EF85C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF85C","0x00000"],"jp.v11":["0x7f4f44","0x00000"]}}, +"textures/standalone/texture_7EF8C8.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF8C8","0x00000"],"jp.v11":["0x7f4fb0","0x00000"]}}, +"textures/standalone/texture_7EF93C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF93C","0x00000"],"jp.v11":["0x7f5024","0x00000"]}}, +"textures/standalone/texture_7EF9B4.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EF9B4","0x00000"],"jp.v11":["0x7f509c","0x00000"]}}, +"textures/standalone/texture_7EFA2C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EFA2C","0x00000"],"jp.v11":["0x7f5114","0x00000"]}}, +"textures/standalone/texture_7EFAA8.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EFAA8","0x00000"],"jp.v11":["0x7f5190","0x00000"]}}, +"textures/standalone/texture_7EFB00.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EFB00","0x00000"],"jp.v11":["0x7f51e8","0x00000"]}}, +"textures/standalone/texture_7EFB64.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EFB64","0x00000"],"jp.v11":["0x7f524c","0x00000"]}}, +"textures/standalone/texture_7EFBBC.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EFBBC","0x00000"],"jp.v11":["0x7f52a4","0x00000"]}}, +"textures/standalone/texture_7EFC30.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EFC30","0x00000"],"jp.v11":["0x7f5318","0x00000"]}}, +"textures/standalone/texture_7EFCAC.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EFCAC","0x00000"],"jp.v11":["0x7f5394","0x00000"]}}, +"textures/standalone/texture_7EFD00.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EFD00","0x00000"],"jp.v11":["0x7f53e8","0x00000"]}}, +"textures/standalone/texture_7EFD60.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EFD60","0x00000"],"jp.v11":["0x7f5448","0x00000"]}}, +"textures/standalone/texture_7EFDD4.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EFDD4","0x00000"],"jp.v11":["0x7f54bc","0x00000"]}}, +"textures/standalone/texture_7EFE48.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EFE48","0x00000"],"jp.v11":["0x7f5530","0x00000"]}}, +"textures/standalone/texture_7EFEA0.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EFEA0","0x00000"],"jp.v11":["0x7f5588","0x00000"]}}, +"textures/standalone/texture_7EFF2C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EFF2C","0x00000"],"jp.v11":["0x7f5614","0x00000"]}}, +"textures/standalone/texture_7EFF90.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7EFF90","0x00000"],"jp.v11":["0x7f5678","0x00000"]}}, +"textures/standalone/texture_7F0000.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0000","0x00000"],"jp.v11":["0x7f56e8","0x00000"]}}, +"textures/standalone/texture_7F006C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F006C","0x00000"],"jp.v11":["0x7f5754","0x00000"]}}, +"textures/standalone/texture_7F00D8.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F00D8","0x00000"],"jp.v11":["0x7f57c0","0x00000"]}}, +"textures/standalone/texture_7F0158.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0158","0x00000"],"jp.v11":["0x7f5840","0x00000"]}}, +"textures/standalone/texture_7F01D0.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F01D0","0x00000"],"jp.v11":["0x7f58b8","0x00000"]}}, +"textures/standalone/texture_7F023C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F023C","0x00000"],"jp.v11":["0x7f5924","0x00000"]}}, +"textures/standalone/texture_7F02B4.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F02B4","0x00000"],"jp.v11":["0x7f599c","0x00000"]}}, +"textures/standalone/texture_7F032C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F032C","0x00000"],"jp.v11":["0x7f5a14","0x00000"]}}, +"textures/standalone/texture_7F0390.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0390","0x00000"],"jp.v11":["0x7f5a78","0x00000"]}}, +"textures/standalone/texture_7F0404.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0404","0x00000"],"jp.v11":["0x7f5aec","0x00000"]}}, +"textures/standalone/texture_7F0470.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0470","0x00000"],"jp.v11":["0x7f5b58","0x00000"]}}, +"textures/standalone/texture_7F04EC.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F04EC","0x00000"],"jp.v11":["0x7f5bd4","0x00000"]}}, +"textures/standalone/texture_7F055C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F055C","0x00000"],"jp.v11":["0x7f5c44","0x00000"]}}, +"textures/standalone/texture_7F05F0.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F05F0","0x00000"],"jp.v11":["0x7f5cd8","0x00000"]}}, +"textures/standalone/texture_7F0670.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0670","0x00000"],"jp.v11":["0x7f5d58","0x00000"]}}, +"textures/standalone/texture_7F06EC.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F06EC","0x00000"],"jp.v11":["0x7f5dd4","0x00000"]}}, +"textures/standalone/texture_7F0768.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0768","0x00000"],"jp.v11":["0x7f5e50","0x00000"]}}, +"textures/standalone/texture_7F07E0.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F07E0","0x00000"],"jp.v11":["0x7f5ec8","0x00000"]}}, +"textures/standalone/texture_7F0858.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0858","0x00000"],"jp.v11":["0x7f5f40","0x00000"]}}, +"textures/standalone/texture_7F08D8.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F08D8","0x00000"],"jp.v11":["0x7f5fc0","0x00000"]}}, +"textures/standalone/texture_7F0948.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0948","0x00000"],"jp.v11":["0x7f6030","0x00000"]}}, +"textures/standalone/texture_7F09D0.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F09D0","0x00000"],"jp.v11":["0x7f60b8","0x00000"]}}, +"textures/standalone/texture_7F0A3C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0A3C","0x00000"],"jp.v11":["0x7f6124","0x00000"]}}, +"textures/standalone/texture_7F0ABC.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0ABC","0x00000"],"jp.v11":["0x7f61a4","0x00000"]}}, +"textures/standalone/texture_7F0B34.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0B34","0x00000"],"jp.v11":["0x7f621c","0x00000"]}}, +"textures/standalone/texture_7F0BB0.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0BB0","0x00000"],"jp.v11":["0x7f6298","0x00000"]}}, +"textures/standalone/texture_7F0C24.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0C24","0x00000"],"jp.v11":["0x7f630c","0x00000"]}}, +"textures/standalone/texture_7F0C94.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0C94","0x00000"],"jp.v11":["0x7f637c","0x00000"]}}, +"textures/standalone/texture_7F0D0C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0D0C","0x00000"],"jp.v11":["0x7f63f4","0x00000"]}}, +"textures/standalone/texture_7F0D8C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0D8C","0x00000"],"jp.v11":["0x7f6474","0x00000"]}}, +"textures/standalone/texture_7F0DEC.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0DEC","0x00000"],"jp.v11":["0x7f64d4","0x00000"]}}, +"textures/standalone/texture_7F0E5C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0E5C","0x00000"],"jp.v11":["0x7f6544","0x00000"]}}, +"textures/standalone/texture_7F0EE4.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0EE4","0x00000"],"jp.v11":["0x7f65cc","0x00000"]}}, +"textures/standalone/texture_7F0F5C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0F5C","0x00000"],"jp.v11":["0x7f6644","0x00000"]}}, +"textures/standalone/texture_7F0FD8.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F0FD8","0x00000"],"jp.v11":["0x7f66c0","0x00000"]}}, +"textures/standalone/texture_7F1038.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F1038","0x00000"],"jp.v11":["0x7f6720","0x00000"]}}, +"textures/standalone/texture_7F109C.ia16.png": {"meta":{"dims":[8,8]}, "offsets":{"us":["0x7F109C","0x00000"],"jp.v11":["0x7f6784","0x00000"]}}, +"textures/raw/font_four_dote.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F1124","0x0"],"jp.v11":["0x7f680c","0x0"]}}, +"textures/raw/font_cc.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F11F4","0x0"],"jp.v11":["0x7f68dc","0x0"]}}, +"textures/raw/font_double_quote.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F12C4","0x0"],"jp.v11":["0x7f69ac","0x0"]}}, +"textures/raw/font_exclamation_mark.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F1394","0x0"],"jp.v11":["0x7f6a7c","0x0"]}}, +"textures/raw/font_minus.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F1464","0x0"],"jp.v11":["0x7f6b4c","0x0"]}}, +"textures/raw/font_dot.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F1534","0x0"],"jp.v11":["0x7f6c1c","0x0"]}}, +"textures/raw/font_plus.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F1604","0x0"],"jp.v11":["0x7f6cec","0x0"]}}, +"textures/raw/font_interogation_mark.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F16D4","0x0"],"jp.v11":["0x7f6dbc","0x0"]}}, +"textures/raw/font_simple_quote.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F17A4","0x0"],"jp.v11":["0x7f6e8c","0x0"]}}, +"textures/raw/font_number_zero.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F1874","0x0"],"jp.v11":["0x7f6f5c","0x0"]}}, +"textures/raw/font_number_one.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F1944","0x0"],"jp.v11":["0x7f702c","0x0"]}}, +"textures/raw/font_number_two.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F1A14","0x0"],"jp.v11":["0x7f70fc","0x0"]}}, +"textures/raw/font_number_three.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F1AE4","0x0"],"jp.v11":["0x7f71cc","0x0"]}}, +"textures/raw/font_number_four.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F1BB4","0x0"],"jp.v11":["0x7f729c","0x0"]}}, +"textures/raw/font_number_five.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F1C84","0x0"],"jp.v11":["0x7f736c","0x0"]}}, +"textures/raw/font_number_six.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F1D54","0x0"],"jp.v11":["0x7f743c","0x0"]}}, +"textures/raw/font_number_seven.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F1E24","0x0"],"jp.v11":["0x7f750c","0x0"]}}, +"textures/raw/font_number_eight.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F1EF4","0x0"],"jp.v11":["0x7f75dc","0x0"]}}, +"textures/raw/font_number_nine.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F1FC4","0x0"],"jp.v11":["0x7f76ac","0x0"]}}, +"textures/raw/font_letter_A.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F2094","0x0"],"jp.v11":["0x7f777c","0x0"]}}, +"textures/raw/font_letter_B.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F2164","0x0"],"jp.v11":["0x7f784c","0x0"]}}, +"textures/raw/font_letter_C.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F2234","0x0"],"jp.v11":["0x7f791c","0x0"]}}, +"textures/raw/font_letter_D.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F2304","0x0"],"jp.v11":["0x7f79ec","0x0"]}}, +"textures/raw/font_letter_E.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F23D4","0x0"],"jp.v11":["0x7f7abc","0x0"]}}, +"textures/raw/font_letter_F.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F24A4","0x0"],"jp.v11":["0x7f7b8c","0x0"]}}, +"textures/raw/font_letter_G.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F2574","0x0"],"jp.v11":["0x7f7c5c","0x0"]}}, +"textures/raw/font_letter_H.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F2644","0x0"],"jp.v11":["0x7f7d2c","0x0"]}}, +"textures/raw/font_letter_I.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F2714","0x0"],"jp.v11":["0x7f7dfc","0x0"]}}, +"textures/raw/font_letter_J.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F27E4","0x0"],"jp.v11":["0x7f7ecc","0x0"]}}, +"textures/raw/font_letter_K.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F28B4","0x0"],"jp.v11":["0x7f7f9c","0x0"]}}, +"textures/raw/font_letter_L.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F2984","0x0"],"jp.v11":["0x7f806c","0x0"]}}, +"textures/raw/font_letter_M.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F2A54","0x0"],"jp.v11":["0x7f813c","0x0"]}}, +"textures/raw/font_letter_N.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F2B24","0x0"],"jp.v11":["0x7f820c","0x0"]}}, +"textures/raw/font_letter_O.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F2BF4","0x0"],"jp.v11":["0x7f82dc","0x0"]}}, +"textures/raw/font_letter_P.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F2CC4","0x0"],"jp.v11":["0x7f83ac","0x0"]}}, +"textures/raw/font_letter_Q.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F2D94","0x0"],"jp.v11":["0x7f847c","0x0"]}}, +"textures/raw/font_letter_R.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F2E64","0x0"],"jp.v11":["0x7f854c","0x0"]}}, +"textures/raw/font_letter_S.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F2F34","0x0"],"jp.v11":["0x7f861c","0x0"]}}, +"textures/raw/font_letter_T.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F3004","0x0"],"jp.v11":["0x7f86ec","0x0"]}}, +"textures/raw/font_letter_U.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F30D4","0x0"],"jp.v11":["0x7f87bc","0x0"]}}, +"textures/raw/font_letter_V.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F31A4","0x0"],"jp.v11":["0x7f888c","0x0"]}}, +"textures/raw/font_letter_W.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F3274","0x0"],"jp.v11":["0x7f895c","0x0"]}}, +"textures/raw/font_letter_X.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F3344","0x0"],"jp.v11":["0x7f8a2c","0x0"]}}, +"textures/raw/font_letter_Y.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F3414","0x0"],"jp.v11":["0x7f8afc","0x0"]}}, +"textures/raw/font_letter_Z.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F34E4","0x0"],"jp.v11":["0x7f8bcc","0x0"]}}, +"textures/raw/7F35B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F35B4","0x0"],"jp.v11":["0x7f8c9c","0x0"]}}, +"textures/raw/7F3634.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F3634","0x0"],"jp.v11":["0x7f8d1c","0x0"]}}, +"textures/raw/7F36B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F36B4","0x0"],"jp.v11":["0x7f8d9c","0x0"]}}, +"textures/raw/7F3734.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F3734","0x0"],"jp.v11":["0x7f8e1c","0x0"]}}, +"textures/raw/7F37B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F37B4","0x0"],"jp.v11":["0x7f8e9c","0x0"]}}, +"textures/raw/7F3834.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F3834","0x0"],"jp.v11":["0x7f8f1c","0x0"]}}, +"textures/raw/7F38B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F38B4","0x0"],"jp.v11":["0x7f8f9c","0x0"]}}, +"textures/raw/7F3934.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F3934","0x0"],"jp.v11":["0x7f901c","0x0"]}}, +"textures/raw/7F39B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F39B4","0x0"],"jp.v11":["0x7f909c","0x0"]}}, +"textures/raw/7F3A34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F3A34","0x0"],"jp.v11":["0x7f911c","0x0"]}}, +"textures/raw/7F3AB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F3AB4","0x0"],"jp.v11":["0x7f919c","0x0"]}}, +"textures/raw/7F3B34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F3B34","0x0"],"jp.v11":["0x7f921c","0x0"]}}, +"textures/raw/7F3BB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F3BB4","0x0"],"jp.v11":["0x7f929c","0x0"]}}, +"textures/raw/7F3C34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F3C34","0x0"],"jp.v11":["0x7f931c","0x0"]}}, +"textures/raw/7F3CB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F3CB4","0x0"],"jp.v11":["0x7f939c","0x0"]}}, +"textures/raw/7F3D34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F3D34","0x0"],"jp.v11":["0x7f941c","0x0"]}}, +"textures/raw/7F3DB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F3DB4","0x0"],"jp.v11":["0x7f949c","0x0"]}}, +"textures/raw/7F3E34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F3E34","0x0"],"jp.v11":["0x7f951c","0x0"]}}, +"textures/raw/7F3EB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F3EB4","0x0"],"jp.v11":["0x7f959c","0x0"]}}, +"textures/raw/7F3F34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F3F34","0x0"],"jp.v11":["0x7f961c","0x0"]}}, +"textures/raw/7F3FB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F3FB4","0x0"],"jp.v11":["0x7f969c","0x0"]}}, +"textures/raw/7F4034.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4034","0x0"],"jp.v11":["0x7f971c","0x0"]}}, +"textures/raw/7F40B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F40B4","0x0"],"jp.v11":["0x7f979c","0x0"]}}, +"textures/raw/7F4134.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4134","0x0"],"jp.v11":["0x7f981c","0x0"]}}, +"textures/raw/7F41B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F41B4","0x0"],"jp.v11":["0x7f989c","0x0"]}}, +"textures/raw/7F4234.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4234","0x0"],"jp.v11":["0x7f991c","0x0"]}}, +"textures/raw/7F42B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F42B4","0x0"],"jp.v11":["0x7f999c","0x0"]}}, +"textures/raw/7F4334.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4334","0x0"],"jp.v11":["0x7f9a1c","0x0"]}}, +"textures/raw/7F43B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F43B4","0x0"],"jp.v11":["0x7f9a9c","0x0"]}}, +"textures/raw/7F4434.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4434","0x0"],"jp.v11":["0x7f9b1c","0x0"]}}, +"textures/raw/7F44B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F44B4","0x0"],"jp.v11":["0x7f9b9c","0x0"]}}, +"textures/raw/7F4534.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4534","0x0"],"jp.v11":["0x7f9c1c","0x0"]}}, +"textures/raw/7F45B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F45B4","0x0"],"jp.v11":["0x7f9c9c","0x0"]}}, +"textures/raw/7F4634.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4634","0x0"],"jp.v11":["0x7f9d1c","0x0"]}}, +"textures/raw/7F46B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F46B4","0x0"],"jp.v11":["0x7f9d9c","0x0"]}}, +"textures/raw/7F4734.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4734","0x0"],"jp.v11":["0x7f9e1c","0x0"]}}, +"textures/raw/7F47B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F47B4","0x0"],"jp.v11":["0x7f9e9c","0x0"]}}, +"textures/raw/7F4834.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4834","0x0"],"jp.v11":["0x7f9f1c","0x0"]}}, +"textures/raw/7F48B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F48B4","0x0"],"jp.v11":["0x7f9f9c","0x0"]}}, +"textures/raw/7F4934.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4934","0x0"],"jp.v11":["0x7fa01c","0x0"]}}, +"textures/raw/7F49B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F49B4","0x0"],"jp.v11":["0x7fa09c","0x0"]}}, +"textures/raw/7F4A34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4A34","0x0"],"jp.v11":["0x7fa11c","0x0"]}}, +"textures/raw/7F4AB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4AB4","0x0"],"jp.v11":["0x7fa19c","0x0"]}}, +"textures/raw/7F4B34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4B34","0x0"],"jp.v11":["0x7fa21c","0x0"]}}, +"textures/raw/7F4BB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4BB4","0x0"],"jp.v11":["0x7fa29c","0x0"]}}, +"textures/raw/7F4C34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4C34","0x0"],"jp.v11":["0x7fa31c","0x0"]}}, +"textures/raw/7F4CB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4CB4","0x0"],"jp.v11":["0x7fa39c","0x0"]}}, +"textures/raw/7F4D34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4D34","0x0"],"jp.v11":["0x7fa41c","0x0"]}}, +"textures/raw/7F4DB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4DB4","0x0"],"jp.v11":["0x7fa49c","0x0"]}}, +"textures/raw/7F4E34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4E34","0x0"],"jp.v11":["0x7fa51c","0x0"]}}, +"textures/raw/7F4EB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4EB4","0x0"],"jp.v11":["0x7fa59c","0x0"]}}, +"textures/raw/7F4F34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4F34","0x0"],"jp.v11":["0x7fa61c","0x0"]}}, +"textures/raw/7F4FB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F4FB4","0x0"],"jp.v11":["0x7fa69c","0x0"]}}, +"textures/raw/7F5034.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5034","0x0"],"jp.v11":["0x7fa71c","0x0"]}}, +"textures/raw/7F50B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F50B4","0x0"],"jp.v11":["0x7fa79c","0x0"]}}, +"textures/raw/7F5134.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5134","0x0"],"jp.v11":["0x7fa81c","0x0"]}}, +"textures/raw/7F51B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F51B4","0x0"],"jp.v11":["0x7fa89c","0x0"]}}, +"textures/raw/7F5234.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5234","0x0"],"jp.v11":["0x7fa91c","0x0"]}}, +"textures/raw/7F52B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F52B4","0x0"],"jp.v11":["0x7fa99c","0x0"]}}, +"textures/raw/7F5334.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5334","0x0"],"jp.v11":["0x7faa1c","0x0"]}}, +"textures/raw/7F53B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F53B4","0x0"],"jp.v11":["0x7faa9c","0x0"]}}, +"textures/raw/7F5434.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5434","0x0"],"jp.v11":["0x7fab1c","0x0"]}}, +"textures/raw/7F54B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F54B4","0x0"],"jp.v11":["0x7fab9c","0x0"]}}, +"textures/raw/7F5534.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5534","0x0"],"jp.v11":["0x7fac1c","0x0"]}}, +"textures/raw/7F55B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F55B4","0x0"],"jp.v11":["0x7fac9c","0x0"]}}, +"textures/raw/7F5634.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5634","0x0"],"jp.v11":["0x7fad1c","0x0"]}}, +"textures/raw/7F56B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F56B4","0x0"],"jp.v11":["0x7fad9c","0x0"]}}, +"textures/raw/7F5734.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5734","0x0"],"jp.v11":["0x7fae1c","0x0"]}}, +"textures/raw/7F57B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F57B4","0x0"],"jp.v11":["0x7fae9c","0x0"]}}, +"textures/raw/7F5834.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5834","0x0"],"jp.v11":["0x7faf1c","0x0"]}}, +"textures/raw/7F58B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F58B4","0x0"],"jp.v11":["0x7faf9c","0x0"]}}, +"textures/raw/7F5934.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5934","0x0"],"jp.v11":["0x7fb01c","0x0"]}}, +"textures/raw/7F59B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F59B4","0x0"],"jp.v11":["0x7fb09c","0x0"]}}, +"textures/raw/7F5A34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5A34","0x0"],"jp.v11":["0x7fb11c","0x0"]}}, +"textures/raw/7F5AB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5AB4","0x0"],"jp.v11":["0x7fb19c","0x0"]}}, +"textures/raw/7F5B34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5B34","0x0"],"jp.v11":["0x7fb21c","0x0"]}}, +"textures/raw/7F5BB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5BB4","0x0"],"jp.v11":["0x7fb29c","0x0"]}}, +"textures/raw/7F5C34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5C34","0x0"],"jp.v11":["0x7fb31c","0x0"]}}, +"textures/raw/7F5CB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5CB4","0x0"],"jp.v11":["0x7fb39c","0x0"]}}, +"textures/raw/7F5D34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5D34","0x0"],"jp.v11":["0x7fb41c","0x0"]}}, +"textures/raw/7F5DB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5DB4","0x0"],"jp.v11":["0x7fb49c","0x0"]}}, +"textures/raw/7F5E34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5E34","0x0"],"jp.v11":["0x7fb51c","0x0"]}}, +"textures/raw/7F5EB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5EB4","0x0"],"jp.v11":["0x7fb59c","0x0"]}}, +"textures/raw/7F5F34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5F34","0x0"],"jp.v11":["0x7fb61c","0x0"]}}, +"textures/raw/7F5FB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F5FB4","0x0"],"jp.v11":["0x7fb69c","0x0"]}}, +"textures/raw/7F6034.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6034","0x0"],"jp.v11":["0x7fb71c","0x0"]}}, +"textures/raw/7F60B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F60B4","0x0"],"jp.v11":["0x7fb79c","0x0"]}}, +"textures/raw/7F6134.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6134","0x0"],"jp.v11":["0x7fb81c","0x0"]}}, +"textures/raw/7F61B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F61B4","0x0"],"jp.v11":["0x7fb89c","0x0"]}}, +"textures/raw/7F6234.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6234","0x0"],"jp.v11":["0x7fb91c","0x0"]}}, +"textures/raw/7F62B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F62B4","0x0"],"jp.v11":["0x7fb99c","0x0"]}}, +"textures/raw/7F6334.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6334","0x0"],"jp.v11":["0x7fba1c","0x0"]}}, +"textures/raw/7F63B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F63B4","0x0"],"jp.v11":["0x7fba9c","0x0"]}}, +"textures/raw/7F6434.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6434","0x0"],"jp.v11":["0x7fbb1c","0x0"]}}, +"textures/raw/7F64B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F64B4","0x0"],"jp.v11":["0x7fbb9c","0x0"]}}, +"textures/raw/7F6534.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6534","0x0"],"jp.v11":["0x7fbc1c","0x0"]}}, +"textures/raw/7F65B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F65B4","0x0"],"jp.v11":["0x7fbc9c","0x0"]}}, +"textures/raw/7F6634.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6634","0x0"],"jp.v11":["0x7fbd1c","0x0"]}}, +"textures/raw/7F66B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F66B4","0x0"],"jp.v11":["0x7fbd9c","0x0"]}}, +"textures/raw/7F6734.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6734","0x0"],"jp.v11":["0x7fbe1c","0x0"]}}, +"textures/raw/7F67B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F67B4","0x0"],"jp.v11":["0x7fbe9c","0x0"]}}, +"textures/raw/7F6834.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6834","0x0"],"jp.v11":["0x7fbf1c","0x0"]}}, +"textures/raw/7F68B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F68B4","0x0"],"jp.v11":["0x7fbf9c","0x0"]}}, +"textures/raw/7F6934.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6934","0x0"],"jp.v11":["0x7fc01c","0x0"]}}, +"textures/raw/7F69B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F69B4","0x0"],"jp.v11":["0x7fc09c","0x0"]}}, +"textures/raw/7F6A34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6A34","0x0"],"jp.v11":["0x7fc11c","0x0"]}}, +"textures/raw/7F6AB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6AB4","0x0"],"jp.v11":["0x7fc19c","0x0"]}}, +"textures/raw/7F6B34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6B34","0x0"],"jp.v11":["0x7fc21c","0x0"]}}, +"textures/raw/7F6BB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6BB4","0x0"],"jp.v11":["0x7fc29c","0x0"]}}, +"textures/raw/7F6C34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6C34","0x0"],"jp.v11":["0x7fc31c","0x0"]}}, +"textures/raw/7F6CB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6CB4","0x0"],"jp.v11":["0x7fc39c","0x0"]}}, +"textures/raw/7F6D34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6D34","0x0"],"jp.v11":["0x7fc41c","0x0"]}}, +"textures/raw/7F6DB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6DB4","0x0"],"jp.v11":["0x7fc49c","0x0"]}}, +"textures/raw/7F6E34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6E34","0x0"],"jp.v11":["0x7fc51c","0x0"]}}, +"textures/raw/7F6EB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6EB4","0x0"],"jp.v11":["0x7fc59c","0x0"]}}, +"textures/raw/7F6F34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6F34","0x0"],"jp.v11":["0x7fc61c","0x0"]}}, +"textures/raw/7F6FB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F6FB4","0x0"],"jp.v11":["0x7fc69c","0x0"]}}, +"textures/raw/7F7034.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7034","0x0"],"jp.v11":["0x7fc71c","0x0"]}}, +"textures/raw/7F70B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F70B4","0x0"],"jp.v11":["0x7fc79c","0x0"]}}, +"textures/raw/7F7134.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7134","0x0"],"jp.v11":["0x7fc81c","0x0"]}}, +"textures/raw/7F71B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F71B4","0x0"],"jp.v11":["0x7fc89c","0x0"]}}, +"textures/raw/7F7234.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7234","0x0"],"jp.v11":["0x7fc91c","0x0"]}}, +"textures/raw/7F72B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F72B4","0x0"],"jp.v11":["0x7fc99c","0x0"]}}, +"textures/raw/7F7334.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7334","0x0"],"jp.v11":["0x7fca1c","0x0"]}}, +"textures/raw/7F73B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F73B4","0x0"],"jp.v11":["0x7fca9c","0x0"]}}, +"textures/raw/7F7434.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7434","0x0"],"jp.v11":["0x7fcb1c","0x0"]}}, +"textures/raw/7F74B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F74B4","0x0"],"jp.v11":["0x7fcb9c","0x0"]}}, +"textures/raw/7F7534.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7534","0x0"],"jp.v11":["0x7fcc1c","0x0"]}}, +"textures/raw/7F75B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F75B4","0x0"],"jp.v11":["0x7fcc9c","0x0"]}}, +"textures/raw/7F7634.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7634","0x0"],"jp.v11":["0x7fcd1c","0x0"]}}, +"textures/raw/7F76B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F76B4","0x0"],"jp.v11":["0x7fcd9c","0x0"]}}, +"textures/raw/7F7734.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7734","0x0"],"jp.v11":["0x7fce1c","0x0"]}}, +"textures/raw/7F77B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F77B4","0x0"],"jp.v11":["0x7fce9c","0x0"]}}, +"textures/raw/7F7834.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7834","0x0"],"jp.v11":["0x7fcf1c","0x0"]}}, +"textures/raw/7F78B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F78B4","0x0"],"jp.v11":["0x7fcf9c","0x0"]}}, +"textures/raw/7F7934.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7934","0x0"],"jp.v11":["0x7fd01c","0x0"]}}, +"textures/raw/7F79B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F79B4","0x0"],"jp.v11":["0x7fd09c","0x0"]}}, +"textures/raw/7F7A34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7A34","0x0"],"jp.v11":["0x7fd11c","0x0"]}}, +"textures/raw/7F7AB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7AB4","0x0"],"jp.v11":["0x7fd19c","0x0"]}}, +"textures/raw/7F7B34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7B34","0x0"],"jp.v11":["0x7fd21c","0x0"]}}, +"textures/raw/7F7BB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7BB4","0x0"],"jp.v11":["0x7fd29c","0x0"]}}, +"textures/raw/7F7C34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7C34","0x0"],"jp.v11":["0x7fd31c","0x0"]}}, +"textures/raw/7F7CB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7CB4","0x0"],"jp.v11":["0x7fd39c","0x0"]}}, +"textures/raw/7F7D34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7D34","0x0"],"jp.v11":["0x7fd41c","0x0"]}}, +"textures/raw/7F7DB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7DB4","0x0"],"jp.v11":["0x7fd49c","0x0"]}}, +"textures/raw/7F7E34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7E34","0x0"],"jp.v11":["0x7fd51c","0x0"]}}, +"textures/raw/7F7EB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7EB4","0x0"],"jp.v11":["0x7fd59c","0x0"]}}, +"textures/raw/7F7F34.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7F34","0x0"],"jp.v11":["0x7fd61c","0x0"]}}, +"textures/raw/7F7FB4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F7FB4","0x0"],"jp.v11":["0x7fd69c","0x0"]}}, +"textures/raw/7F8034.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F8034","0x0"],"jp.v11":["0x7fd71c","0x0"]}}, +"textures/raw/7F80B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F80B4","0x0"],"jp.v11":["0x7fd79c","0x0"]}}, +"textures/raw/7F8134.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F8134","0x0"],"jp.v11":["0x7fd81c","0x0"]}}, +"textures/raw/7F81B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F81B4","0x0"],"jp.v11":["0x7fd89c","0x0"]}}, +"textures/raw/7F8234.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F8234","0x0"],"jp.v11":["0x7fd91c","0x0"]}}, +"textures/raw/7F82B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F82B4","0x0"],"jp.v11":["0x7fd99c","0x0"]}}, +"textures/raw/7F8334.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F8334","0x0"],"jp.v11":["0x7fda1c","0x0"]}}, +"textures/raw/7F83B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F83B4","0x0"],"jp.v11":["0x7fda9c","0x0"]}}, +"textures/raw/7F8434.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F8434","0x0"],"jp.v11":["0x7fdb1c","0x0"]}}, +"textures/raw/7F84B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F84B4","0x0"],"jp.v11":["0x7fdb9c","0x0"]}}, +"textures/raw/7F8534.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F8534","0x0"],"jp.v11":["0x7fdc1c","0x0"]}}, +"textures/raw/7F85B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F85B4","0x0"],"jp.v11":["0x7fdc9c","0x0"]}}, +"textures/raw/7F8634.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F8634","0x0"],"jp.v11":["0x7fdd1c","0x0"]}}, +"textures/raw/7F86B4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F86B4","0x0"],"jp.v11":["0x7fdd9c","0x0"]}}, +"textures/raw/7F8734.i4.png": {"meta":{"dims":[30,32]}, "offsets":{"us":["0x7F8734","0x0"],"jp.v11":["0x7fde1c","0x0"]}}, +"textures/raw/7F8914.i4.png": {"meta":{"dims":[30,32]}, "offsets":{"us":["0x7F8914","0x0"],"jp.v11":["0x7fdffc","0x0"]}}, +"textures/raw/7F8AF4.i4.png": {"meta":{"dims":[30,32]}, "offsets":{"us":["0x7F8AF4","0x0"],"jp.v11":["0x7fe1dc","0x0"]}}, +"textures/raw/7F8CD4.i4.png": {"meta":{"dims":[30,32]}, "offsets":{"us":["0x7F8CD4","0x0"],"jp.v11":["0x7fe3bc","0x0"]}}, +"textures/raw/7F8EB4.i4.png": {"meta":{"dims":[30,32]}, "offsets":{"us":["0x7F8EB4","0x0"],"jp.v11":["0x7fe59c","0x0"]}}, +"textures/raw/7F9094.i4.png": {"meta":{"dims":[30,32]}, "offsets":{"us":["0x7F9094","0x0"],"jp.v11":["0x7fe77c","0x0"]}}, +"textures/raw/7F9274.i4.png": {"meta":{"dims":[30,32]}, "offsets":{"us":["0x7F9274","0x0"],"jp.v11":["0x7fe95c","0x0"]}}, +"textures/raw/7F9454.i4.png": {"meta":{"dims":[30,32]}, "offsets":{"us":["0x7F9454","0x0"],"jp.v11":["0x7feb3c","0x0"]}}, +"textures/raw/7F9634.i4.png": {"meta":{"dims":[30,32]}, "offsets":{"us":["0x7F9634","0x0"],"jp.v11":["0x7fed1c","0x0"]}}, +"textures/raw/7F9814.i4.png": {"meta":{"dims":[30,32]}, "offsets":{"us":["0x7F9814","0x0"],"jp.v11":["0x7feefc","0x0"]}}, +"textures/raw/7F99F4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F99F4","0x0"],"jp.v11":["0x7ff0dc","0x0"]}}, +"textures/raw/7F9A74.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F9A74","0x0"],"jp.v11":["0x7ff15c","0x0"]}}, +"textures/raw/7F9AF4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F9AF4","0x0"],"jp.v11":["0x7ff1dc","0x0"]}}, +"textures/raw/7F9B74.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F9B74","0x0"],"jp.v11":["0x7ff25c","0x0"]}}, +"textures/raw/7F9BF4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F9BF4","0x0"],"jp.v11":["0x7ff2dc","0x0"]}}, +"textures/raw/7F9C74.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F9C74","0x0"],"jp.v11":["0x7ff35c","0x0"]}}, +"textures/raw/7F9CF4.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7F9CF4","0x0"],"jp.v11":["0x7ff3dc","0x0"]}}, +"textures/raw/7F9DC4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F9DC4","0x0"],"jp.v11":["0x7ff4ac","0x0"]}}, +"textures/raw/7F9E44.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F9E44","0x0"],"jp.v11":["0x7ff52c","0x0"]}}, +"textures/raw/7F9EC4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F9EC4","0x0"],"jp.v11":["0xe5ab7","0x0"]}}, +"textures/raw/7F9F44.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F9F44","0x0"],"jp.v11":["0xe5ab7","0x0"]}}, +"textures/raw/7F9FC4.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7F9FC4","0x0"],"jp.v11":["0x7ff6ac","0x0"]}}, +"textures/raw/font_apostrophe.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7FA044","0x0"],"jp.v11":["0x7ff72c","0x0"]}}, +"textures/raw/7FA0C4.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7FA0C4","0x0"],"jp.v11":["0x7ff7ac","0x0"]}}, +"textures/raw/7FA194.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7FA194","0x0"],"jp.v11":["0x7ff87c","0x0"]}}, +"textures/raw/7FA264.i4.png": {"meta":{"dims":[26,16]}, "offsets":{"us":["0x7FA264","0x0"],"jp.v11":["0x7ff94c","0x0"]}}, +"textures/raw/font_comma.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x7FA334","0x0"],"jp.v11":["0x7ffa1c","0x0"]}}, -"textures/texture_player_select.rgba16.png": {"meta":{"dims":[220,32], "alpha":"0x01"}, "offsets": {"us":["0x7FA3C0", "0x0"]}}, -"textures/texture_option.rgba16.png": {"meta":{"dims":[130,32], "alpha":"0x01"}, "offsets": {"us":["0x7FAFC0", "0x0"]}}, +"textures/texture_player_select.rgba16.png": {"meta":{"dims":[220,32],"alpha":"0x01"}, "offsets":{"us":["0x7FA3C0","0x0"],"jp.v11":["0x7ffaa0","0x0"]}}, +"textures/texture_option.rgba16.png": {"meta":{"dims":[130,32],"alpha":"0x01"}, "offsets":{"us":["0x7FAFC0","0x0"],"jp.v11":["0x8006a0","0x0"]}}, "textures/texture_name_dk.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FB8C0", "0x0"]}}, "textures/texture_name_toad.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FBAC0", "0x0"]}}, @@ -1023,19 +1023,19 @@ "textures/gTextureTitleDKsJungleParkway.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x8018C0", "0x0"]}}, "textures/gTextureTitleBigDonut.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x801EC0", "0x0"]}}, -"textures/gTextureMapSelect.rgba16.png": {"meta":{"dims":[190,32], "alpha":"0x01"}, "offsets": {"us":["0x8021C0", "0x0"]}}, +"textures/gTextureMapSelect.rgba16.png": {"meta":{"dims":[190,32],"alpha":"0x01"}, "offsets":{"us":["0x8021C0","0x0"],"jp.v11":["0x8071a0","0x0"]}}, -"textures/gTextureMenuFlowerCup.rgba16.png": {"meta":{"dims":[65,40], "alpha":"0xBE"}, "offsets": {"us":["0x802DC0", "0x0"]}}, +"textures/gTextureMenuFlowerCup.rgba16.png": {"meta":{"dims":[65,40],"alpha":"0xBE"}, "offsets":{"us":["0x802DC0","0x0"],"jp.v11":["0x807da0","0x0"]}}, "textures/gTextureMenuMushroomCup.rgba16.png": {"meta":{"dims":[65,40], "alpha":"0xBE"}, "offsets": {"us":["0x8031C0", "0x0"]}}, -"textures/gTextureMenuStarCup.rgba16.png": {"meta":{"dims":[65,40], "alpha":"0xBE"}, "offsets": {"us":["0x8035C0", "0x0"]}}, -"textures/gTextureMenuSpecialCup.rgba16.png": {"meta":{"dims":[65,40], "alpha":"0xBE"}, "offsets": {"us":["0x8039C0", "0x0"]}}, +"textures/gTextureMenuStarCup.rgba16.png": {"meta":{"dims":[65,40],"alpha":"0xBE"}, "offsets":{"us":["0x8035C0","0x0"],"jp.v11":["0x8085a0","0x0"]}}, +"textures/gTextureMenuSpecialCup.rgba16.png": {"meta":{"dims":[65,40],"alpha":"0xBE"}, "offsets":{"us":["0x8039C0","0x0"],"jp.v11":["0x8089a0","0x0"]}}, -"textures/texture_game_select.rgba16.png": {"meta":{"dims":[200,32], "alpha":"0x01"}, "offsets": {"us":["0x803DC0", "0x0"]}}, +"textures/texture_game_select.rgba16.png": {"meta":{"dims":[200,32],"alpha":"0x01"}, "offsets":{"us":["0x803DC0","0x0"],"jp.v11":["0x808da0","0x0"]}}, -"textures/texture_menu_1p_game.rgba16.png": {"meta":{"dims":[64,54], "alpha":"0xBE"}, "offsets": {"us":["0x8049C0", "0x0"]}}, -"textures/texture_menu_2p_game.rgba16.png": {"meta":{"dims":[64,54], "alpha":"0xBE"}, "offsets": {"us":["0x804EC0", "0x0"]}}, -"textures/texture_menu_3p_game.rgba16.png": {"meta":{"dims":[64,54], "alpha":"0xBE"}, "offsets": {"us":["0x8055C0", "0x0"]}}, -"textures/texture_menu_4p_game.rgba16.png": {"meta":{"dims":[64,54], "alpha":"0xBE"}, "offsets": {"us":["0x805FC0", "0x0"]}}, +"textures/texture_menu_1p_game.rgba16.png": {"meta":{"dims":[64,54],"alpha":"0xBE"}, "offsets":{"us":["0x8049C0","0x0"],"jp.v11":["0x8099a0","0x0"]}}, +"textures/texture_menu_2p_game.rgba16.png": {"meta":{"dims":[64,54],"alpha":"0xBE"}, "offsets":{"us":["0x804EC0","0x0"],"jp.v11":["0x809ea0","0x0"]}}, +"textures/texture_menu_3p_game.rgba16.png": {"meta":{"dims":[64,54],"alpha":"0xBE"}, "offsets":{"us":["0x8055C0","0x0"],"jp.v11":["0x80a5a0","0x0"]}}, +"textures/texture_menu_4p_game.rgba16.png": {"meta":{"dims":[64,54],"alpha":"0xBE"}, "offsets":{"us":["0x805FC0","0x0"],"jp.v11":["0x80afa0","0x0"]}}, "textures/texture_mode_battle.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x806AC0", "0x0"]}}, "textures/texture_mode_time_trials.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x806DC0", "0x0"]}}, @@ -1045,24 +1045,24 @@ "textures/texture_l_option.rgba16.png": {"meta":{"dims":[58,19], "alpha":"0xBE"}, "offsets": {"us":["0x8078C0", "0x0"]}}, "textures/texture_r_data.rgba16.png": {"meta":{"dims":[58,19], "alpha":"0xBE"}, "offsets": {"us":["0x807BC0", "0x0"]}}, -"textures/texture_50cc.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x807EC0", "0x0"]}}, -"textures/texture_100cc.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x8080C0", "0x0"]}}, -"textures/texture_150cc.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x8082C0", "0x0"]}}, +"textures/texture_50cc.rgba16.png": {"meta":{"dims":[64,18],"alpha":"0xBE"}, "offsets":{"us":["0x807EC0","0x0"],"jp.v11":["0x80d0a0","0x0"]}}, +"textures/texture_100cc.rgba16.png": {"meta":{"dims":[64,18],"alpha":"0xBE"}, "offsets":{"us":["0x8080C0","0x0"],"jp.v11":["0x80d2a0","0x0"]}}, +"textures/texture_150cc.rgba16.png": {"meta":{"dims":[64,18],"alpha":"0xBE"}, "offsets":{"us":["0x8082C0","0x0"],"jp.v11":["0x80d4a0","0x0"]}}, "textures/texture_extra.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x8084C0", "0x0"]}}, -"textures/gTextureMenuWithoutItem.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x8086C0", "0x0"]}}, -"textures/gTextureMenuWithItem.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x8089C0", "0x0"]}}, +"textures/gTextureMenuWithoutItem.rgba16.png": {"meta":{"dims":[64,18],"alpha":"0xBE"}, "offsets":{"us":["0x8086C0","0x0"],"jp.v11":["0x80d8a0","0x0"]}}, +"textures/gTextureMenuWithItem.rgba16.png": {"meta":{"dims":[64,18],"alpha":"0xBE"}, "offsets":{"us":["0x8089C0","0x0"],"jp.v11":["0x80dba0","0x0"]}}, "textures/texture_begin.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x808CC0", "0x0"]}}, "textures/texture_menu_ghost.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x808EC0", "0x0"]}}, "textures/texture_data.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x8090C0", "0x0"]}}, -"textures/texture_ok.rgba16.png": {"meta":{"dims":[31,19], "alpha":"0xBE"}, "offsets": {"us":["0x8092C0", "0x0"]}}, +"textures/texture_ok.rgba16.png": {"meta":{"dims":[31,19],"alpha":"0xBE"}, "offsets":{"us":["0x8092C0","0x0"],"jp.v11":["0x80e4a0","0x0"]}}, -"textures/background_blue_sky.rgba16.png": {"meta":{"dims":[320,240], "alpha":"0x01"}, "offsets": {"us":["0x8094C0", "0x0"]}}, -"textures/background_sunset.rgba16.png": {"meta":{"dims":[320,240], "alpha":"0x01"}, "offsets": {"us":["0x8162C0", "0x0"]}}, +"textures/background_blue_sky.rgba16.png": {"meta":{"dims":[320,240],"alpha":"0x01"}, "offsets":{"us":["0x8094C0","0x0"],"jp.v11":["0x80e6a0","0x0"]}}, +"textures/background_sunset.rgba16.png": {"meta":{"dims":[320,240],"alpha":"0x01"}, "offsets":{"us":["0x8162C0","0x0"],"jp.v11":["0x81b4a0","0x0"]}}, -"textures/gTextureGreenGoldStripe.rgba16.png": {"meta":{"dims":[256,29], "alpha":"0x01"}, "offsets": {"us":["0x81F6C0", "0x0"]}}, -"textures/gTextureGoldStripe.rgba16.png": {"meta":{"dims":[256,15], "alpha":"0x01"}, "offsets": {"us":["0x8202C0", "0x0"]}}, -"textures/gTextureWhiteStripe.rgba16.png": {"meta":{"dims":[256,10], "alpha":"0x01"}, "offsets": {"us":["0x8209C0", "0x0"]}}, -"textures/gTexturePinkBar.rgba16.png": {"meta":{"dims":[90,16], "alpha":"0x01"}, "offsets": {"us":["0x820AC0", "0x0"]}}, -"textures/gTextureGoldBar.rgba16.png": {"meta":{"dims":[256,40], "alpha":"0x01"}, "offsets": {"us":["0x820FC0", "0x0"]}} +"textures/gTextureGreenGoldStripe.rgba16.png": {"meta":{"dims":[256,29],"alpha":"0x01"}, "offsets":{"us":["0x81F6C0","0x0"],"jp.v11":["0x8248a0","0x0"]}}, +"textures/gTextureGoldStripe.rgba16.png": {"meta":{"dims":[256,15],"alpha":"0x01"}, "offsets":{"us":["0x8202C0","0x0"],"jp.v11":["0x8254a0","0x0"]}}, +"textures/gTextureWhiteStripe.rgba16.png": {"meta":{"dims":[256,10],"alpha":"0x01"}, "offsets":{"us":["0x8209C0","0x0"],"jp.v11":["0x825ba0","0x0"]}}, +"textures/gTexturePinkBar.rgba16.png": {"meta":{"dims":[90,16],"alpha":"0x01"}, "offsets":{"us":["0x820AC0","0x0"],"jp.v11":["0x825ca0","0x0"]}}, +"textures/gTextureGoldBar.rgba16.png": {"meta":{"dims":[256,40],"alpha":"0x01"}, "offsets":{"us":["0x820FC0","0x0"],"jp.v11":["0x8261a0","0x0"]}} } From 45f389255b78eea1a285e983f074bd104f2503aa Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 02:06:17 -0700 Subject: [PATCH 09/41] jp.v11: group asset offsets 12379 group assets carry a jp.v11 override. 12060 of them differ from the US entry in nothing but rom_offset, which is why these are overrides rather than a second copy of every group file. Co-Authored-By: Claude Fable 5 --- assets/character_select/bowser_select.json | 34 +- .../character_select/donkeykong_select.json | 34 +- assets/character_select/luigi_select.json | 34 +- assets/character_select/mario_select.json | 34 +- assets/character_select/peach_select.json | 34 +- assets/character_select/toad_select.json | 34 +- assets/character_select/wario_select.json | 34 +- assets/character_select/yoshi_select.json | 34 +- assets/course_outlines.json | 40 +- assets/courses/banshee_boardwalk.json | 76 +- assets/courses/bowsers_castle.json | 16 +- assets/courses/choco_mountain.json | 4 +- assets/courses/dks_jungle_parkway.json | 36 +- assets/courses/frappe_snowland.json | 16 +- assets/courses/kalimari_desert.json | 54 +- assets/courses/koopa_troopa_beach.json | 26 +- assets/courses/luigi_raceway.json | 8 +- assets/courses/mario_raceway.json | 24 +- assets/courses/moo_moo_farm.json | 46 +- assets/courses/rainbow_road.json | 74 +- assets/courses/royal_raceway.json | 2 +- assets/courses/sherbet_land.json | 6 +- assets/courses/toads_turnpike.json | 68 +- assets/courses/wario_stadium.json | 8 +- assets/courses/yoshi_valley.json | 10 +- assets/finish_line_banner.json | 18 +- assets/greenshell.json | 18 +- assets/karts/bowser_kart.json | 2956 ++++++++--------- assets/karts/donkeykong_kart.json | 2956 ++++++++--------- assets/karts/luigi_kart.json | 2956 ++++++++--------- assets/karts/mario_kart.json | 2956 ++++++++--------- assets/karts/peach_kart.json | 2956 ++++++++--------- assets/karts/toad_kart.json | 2956 ++++++++--------- assets/karts/wario_kart.json | 2956 ++++++++--------- assets/karts/yoshi_kart.json | 2956 ++++++++--------- assets/lakitu/bluelight.json | 18 +- assets/lakitu/checkeredflag.json | 66 +- assets/lakitu/finallap.json | 34 +- assets/lakitu/fishing.json | 10 +- assets/lakitu/nolights.json | 18 +- assets/lakitu/redlights.json | 34 +- assets/lakitu/reverse.json | 34 +- assets/lakitu/secondlap.json | 34 +- assets/onomatopoeia.json | 18 +- assets/trees.json | 22 +- 45 files changed, 12379 insertions(+), 12379 deletions(-) diff --git a/assets/character_select/bowser_select.json b/assets/character_select/bowser_select.json index 5a2f58480c..e45bf42959 100644 --- a/assets/character_select/bowser_select.json +++ b/assets/character_select/bowser_select.json @@ -1,19 +1,19 @@ { -"bowser_face_00": {"output_dir": "bowser", "rom_offset": "0x78D210", "width": 64, "height": 64, "type": "rgba16"}, -"bowser_face_01": {"output_dir": "bowser", "rom_offset": "0x78E4F8", "width": 64, "height": 64, "type": "rgba16"}, -"bowser_face_02": {"output_dir": "bowser", "rom_offset": "0x78F7AC", "width": 64, "height": 64, "type": "rgba16"}, -"bowser_face_03": {"output_dir": "bowser", "rom_offset": "0x790A74", "width": 64, "height": 64, "type": "rgba16"}, -"bowser_face_04": {"output_dir": "bowser", "rom_offset": "0x791D40", "width": 64, "height": 64, "type": "rgba16"}, -"bowser_face_05": {"output_dir": "bowser", "rom_offset": "0x792FE4", "width": 64, "height": 64, "type": "rgba16"}, -"bowser_face_06": {"output_dir": "bowser", "rom_offset": "0x794270", "width": 64, "height": 64, "type": "rgba16"}, -"bowser_face_07": {"output_dir": "bowser", "rom_offset": "0x79554C", "width": 64, "height": 64, "type": "rgba16"}, -"bowser_face_08": {"output_dir": "bowser", "rom_offset": "0x796834", "width": 64, "height": 64, "type": "rgba16"}, -"bowser_face_09": {"output_dir": "bowser", "rom_offset": "0x797B24", "width": 64, "height": 64, "type": "rgba16"}, -"bowser_face_10": {"output_dir": "bowser", "rom_offset": "0x798E40", "width": 64, "height": 64, "type": "rgba16"}, -"bowser_face_11": {"output_dir": "bowser", "rom_offset": "0x79A10C", "width": 64, "height": 64, "type": "rgba16"}, -"bowser_face_12": {"output_dir": "bowser", "rom_offset": "0x79B448", "width": 64, "height": 64, "type": "rgba16"}, -"bowser_face_13": {"output_dir": "bowser", "rom_offset": "0x79C7EC", "width": 64, "height": 64, "type": "rgba16"}, -"bowser_face_14": {"output_dir": "bowser", "rom_offset": "0x79DB68", "width": 64, "height": 64, "type": "rgba16"}, -"bowser_face_15": {"output_dir": "bowser", "rom_offset": "0x79EEAC", "width": 64, "height": 64, "type": "rgba16"}, -"bowser_face_16": {"output_dir": "bowser", "rom_offset": "0x7A01F4", "width": 64, "height": 64, "type": "rgba16"} +"bowser_face_00": {"output_dir": "bowser", "rom_offset": "0x78D210", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7928E0"}}, +"bowser_face_01": {"output_dir": "bowser", "rom_offset": "0x78E4F8", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x793BC8"}}, +"bowser_face_02": {"output_dir": "bowser", "rom_offset": "0x78F7AC", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x794E7C"}}, +"bowser_face_03": {"output_dir": "bowser", "rom_offset": "0x790A74", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x796144"}}, +"bowser_face_04": {"output_dir": "bowser", "rom_offset": "0x791D40", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x797410"}}, +"bowser_face_05": {"output_dir": "bowser", "rom_offset": "0x792FE4", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7986B4"}}, +"bowser_face_06": {"output_dir": "bowser", "rom_offset": "0x794270", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x799940"}}, +"bowser_face_07": {"output_dir": "bowser", "rom_offset": "0x79554C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x79AC1C"}}, +"bowser_face_08": {"output_dir": "bowser", "rom_offset": "0x796834", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x79BF04"}}, +"bowser_face_09": {"output_dir": "bowser", "rom_offset": "0x797B24", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x79D1F4"}}, +"bowser_face_10": {"output_dir": "bowser", "rom_offset": "0x798E40", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x79E510"}}, +"bowser_face_11": {"output_dir": "bowser", "rom_offset": "0x79A10C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x79F7DC"}}, +"bowser_face_12": {"output_dir": "bowser", "rom_offset": "0x79B448", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7A0B18"}}, +"bowser_face_13": {"output_dir": "bowser", "rom_offset": "0x79C7EC", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7A1EBC"}}, +"bowser_face_14": {"output_dir": "bowser", "rom_offset": "0x79DB68", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7A3238"}}, +"bowser_face_15": {"output_dir": "bowser", "rom_offset": "0x79EEAC", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7A457C"}}, +"bowser_face_16": {"output_dir": "bowser", "rom_offset": "0x7A01F4", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7A58C4"}} } diff --git a/assets/character_select/donkeykong_select.json b/assets/character_select/donkeykong_select.json index 0e46be4ee6..f4330be747 100644 --- a/assets/character_select/donkeykong_select.json +++ b/assets/character_select/donkeykong_select.json @@ -1,19 +1,19 @@ { -"donkeykong_face_00": {"output_dir": "donkeykong", "rom_offset": "0x76A4EC", "width": 64, "height": 64, "type": "rgba16"}, -"donkeykong_face_01": {"output_dir": "donkeykong", "rom_offset": "0x76B2D8", "width": 64, "height": 64, "type": "rgba16"}, -"donkeykong_face_02": {"output_dir": "donkeykong", "rom_offset": "0x76C0E0", "width": 64, "height": 64, "type": "rgba16"}, -"donkeykong_face_03": {"output_dir": "donkeykong", "rom_offset": "0x76CEC0", "width": 64, "height": 64, "type": "rgba16"}, -"donkeykong_face_04": {"output_dir": "donkeykong", "rom_offset": "0x76DC70", "width": 64, "height": 64, "type": "rgba16"}, -"donkeykong_face_05": {"output_dir": "donkeykong", "rom_offset": "0x76EA18", "width": 64, "height": 64, "type": "rgba16"}, -"donkeykong_face_06": {"output_dir": "donkeykong", "rom_offset": "0x76F7FC", "width": 64, "height": 64, "type": "rgba16"}, -"donkeykong_face_07": {"output_dir": "donkeykong", "rom_offset": "0x770628", "width": 64, "height": 64, "type": "rgba16"}, -"donkeykong_face_08": {"output_dir": "donkeykong", "rom_offset": "0x7714BC", "width": 64, "height": 64, "type": "rgba16"}, -"donkeykong_face_09": {"output_dir": "donkeykong", "rom_offset": "0x772398", "width": 64, "height": 64, "type": "rgba16"}, -"donkeykong_face_10": {"output_dir": "donkeykong", "rom_offset": "0x7732E0", "width": 64, "height": 64, "type": "rgba16"}, -"donkeykong_face_11": {"output_dir": "donkeykong", "rom_offset": "0x774218", "width": 64, "height": 64, "type": "rgba16"}, -"donkeykong_face_12": {"output_dir": "donkeykong", "rom_offset": "0x77519C", "width": 64, "height": 64, "type": "rgba16"}, -"donkeykong_face_13": {"output_dir": "donkeykong", "rom_offset": "0x7761A0", "width": 64, "height": 64, "type": "rgba16"}, -"donkeykong_face_14": {"output_dir": "donkeykong", "rom_offset": "0x777160", "width": 64, "height": 64, "type": "rgba16"}, -"donkeykong_face_15": {"output_dir": "donkeykong", "rom_offset": "0x7780AC", "width": 64, "height": 64, "type": "rgba16"}, -"donkeykong_face_16": {"output_dir": "donkeykong", "rom_offset": "0x778FAC", "width": 64, "height": 64, "type": "rgba16"} +"donkeykong_face_00": {"output_dir": "donkeykong", "rom_offset": "0x76A4EC", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x76FBBC"}}, +"donkeykong_face_01": {"output_dir": "donkeykong", "rom_offset": "0x76B2D8", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7709A8"}}, +"donkeykong_face_02": {"output_dir": "donkeykong", "rom_offset": "0x76C0E0", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7717B0"}}, +"donkeykong_face_03": {"output_dir": "donkeykong", "rom_offset": "0x76CEC0", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x772590"}}, +"donkeykong_face_04": {"output_dir": "donkeykong", "rom_offset": "0x76DC70", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x773340"}}, +"donkeykong_face_05": {"output_dir": "donkeykong", "rom_offset": "0x76EA18", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7740E8"}}, +"donkeykong_face_06": {"output_dir": "donkeykong", "rom_offset": "0x76F7FC", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x774ECC"}}, +"donkeykong_face_07": {"output_dir": "donkeykong", "rom_offset": "0x770628", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x775CF8"}}, +"donkeykong_face_08": {"output_dir": "donkeykong", "rom_offset": "0x7714BC", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x776B8C"}}, +"donkeykong_face_09": {"output_dir": "donkeykong", "rom_offset": "0x772398", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x777A68"}}, +"donkeykong_face_10": {"output_dir": "donkeykong", "rom_offset": "0x7732E0", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7789B0"}}, +"donkeykong_face_11": {"output_dir": "donkeykong", "rom_offset": "0x774218", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7798E8"}}, +"donkeykong_face_12": {"output_dir": "donkeykong", "rom_offset": "0x77519C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x77A86C"}}, +"donkeykong_face_13": {"output_dir": "donkeykong", "rom_offset": "0x7761A0", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x77B870"}}, +"donkeykong_face_14": {"output_dir": "donkeykong", "rom_offset": "0x777160", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x77C830"}}, +"donkeykong_face_15": {"output_dir": "donkeykong", "rom_offset": "0x7780AC", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x77D77C"}}, +"donkeykong_face_16": {"output_dir": "donkeykong", "rom_offset": "0x778FAC", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x77E67C"}} } diff --git a/assets/character_select/luigi_select.json b/assets/character_select/luigi_select.json index cb3399f7b7..1be3089433 100644 --- a/assets/character_select/luigi_select.json +++ b/assets/character_select/luigi_select.json @@ -1,19 +1,19 @@ { -"luigi_face_00": {"output_dir": "luigi", "rom_offset": "0x737494", "width": 64, "height": 64, "type": "rgba16"}, -"luigi_face_01": {"output_dir": "luigi", "rom_offset": "0x7380B0", "width": 64, "height": 64, "type": "rgba16"}, -"luigi_face_02": {"output_dir": "luigi", "rom_offset": "0x738CD0", "width": 64, "height": 64, "type": "rgba16"}, -"luigi_face_03": {"output_dir": "luigi", "rom_offset": "0x7398F0", "width": 64, "height": 64, "type": "rgba16"}, -"luigi_face_04": {"output_dir": "luigi", "rom_offset": "0x73A4D8", "width": 64, "height": 64, "type": "rgba16"}, -"luigi_face_05": {"output_dir": "luigi", "rom_offset": "0x73B0C0", "width": 64, "height": 64, "type": "rgba16"}, -"luigi_face_06": {"output_dir": "luigi", "rom_offset": "0x73BC8C", "width": 64, "height": 64, "type": "rgba16"}, -"luigi_face_07": {"output_dir": "luigi", "rom_offset": "0x73C8B4", "width": 64, "height": 64, "type": "rgba16"}, -"luigi_face_08": {"output_dir": "luigi", "rom_offset": "0x73D4E8", "width": 64, "height": 64, "type": "rgba16"}, -"luigi_face_09": {"output_dir": "luigi", "rom_offset": "0x73E174", "width": 64, "height": 64, "type": "rgba16"}, -"luigi_face_10": {"output_dir": "luigi", "rom_offset": "0x73EDF4", "width": 64, "height": 64, "type": "rgba16"}, -"luigi_face_11": {"output_dir": "luigi", "rom_offset": "0x73FA84", "width": 64, "height": 64, "type": "rgba16"}, -"luigi_face_12": {"output_dir": "luigi", "rom_offset": "0x740744", "width": 64, "height": 64, "type": "rgba16"}, -"luigi_face_13": {"output_dir": "luigi", "rom_offset": "0x741474", "width": 64, "height": 64, "type": "rgba16"}, -"luigi_face_14": {"output_dir": "luigi", "rom_offset": "0x7421A0", "width": 64, "height": 64, "type": "rgba16"}, -"luigi_face_15": {"output_dir": "luigi", "rom_offset": "0x742EE8", "width": 64, "height": 64, "type": "rgba16"}, -"luigi_face_16": {"output_dir": "luigi", "rom_offset": "0x743C3C", "width": 64, "height": 64, "type": "rgba16"} +"luigi_face_00": {"output_dir": "luigi", "rom_offset": "0x737494", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x73CB64"}}, +"luigi_face_01": {"output_dir": "luigi", "rom_offset": "0x7380B0", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x73D780"}}, +"luigi_face_02": {"output_dir": "luigi", "rom_offset": "0x738CD0", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x73E3A0"}}, +"luigi_face_03": {"output_dir": "luigi", "rom_offset": "0x7398F0", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x73EFC0"}}, +"luigi_face_04": {"output_dir": "luigi", "rom_offset": "0x73A4D8", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x73FBA8"}}, +"luigi_face_05": {"output_dir": "luigi", "rom_offset": "0x73B0C0", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x740790"}}, +"luigi_face_06": {"output_dir": "luigi", "rom_offset": "0x73BC8C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x74135C"}}, +"luigi_face_07": {"output_dir": "luigi", "rom_offset": "0x73C8B4", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x741F84"}}, +"luigi_face_08": {"output_dir": "luigi", "rom_offset": "0x73D4E8", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x742BB8"}}, +"luigi_face_09": {"output_dir": "luigi", "rom_offset": "0x73E174", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x743844"}}, +"luigi_face_10": {"output_dir": "luigi", "rom_offset": "0x73EDF4", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7444C4"}}, +"luigi_face_11": {"output_dir": "luigi", "rom_offset": "0x73FA84", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x745154"}}, +"luigi_face_12": {"output_dir": "luigi", "rom_offset": "0x740744", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x745E14"}}, +"luigi_face_13": {"output_dir": "luigi", "rom_offset": "0x741474", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x746B44"}}, +"luigi_face_14": {"output_dir": "luigi", "rom_offset": "0x7421A0", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x747870"}}, +"luigi_face_15": {"output_dir": "luigi", "rom_offset": "0x742EE8", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7485B8"}}, +"luigi_face_16": {"output_dir": "luigi", "rom_offset": "0x743C3C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x74930C"}} } diff --git a/assets/character_select/mario_select.json b/assets/character_select/mario_select.json index 256fe8a2c1..b2425b0f66 100644 --- a/assets/character_select/mario_select.json +++ b/assets/character_select/mario_select.json @@ -1,19 +1,19 @@ { -"mario_face_00": {"output_dir": "mario", "rom_offset": "0x729A30", "width": 64, "height": 64, "type": "rgba16"}, -"mario_face_01": {"output_dir": "mario", "rom_offset": "0x72A704", "width": 64, "height": 64, "type": "rgba16"}, -"mario_face_02": {"output_dir": "mario", "rom_offset": "0x72B3C4", "width": 64, "height": 64, "type": "rgba16"}, -"mario_face_03": {"output_dir": "mario", "rom_offset": "0x72C080", "width": 64, "height": 64, "type": "rgba16"}, -"mario_face_04": {"output_dir": "mario", "rom_offset": "0x72CCEC", "width": 64, "height": 64, "type": "rgba16"}, -"mario_face_05": {"output_dir": "mario", "rom_offset": "0x72D938", "width": 64, "height": 64, "type": "rgba16"}, -"mario_face_06": {"output_dir": "mario", "rom_offset": "0x72E578", "width": 64, "height": 64, "type": "rgba16"}, -"mario_face_07": {"output_dir": "mario", "rom_offset": "0x72F28C", "width": 64, "height": 64, "type": "rgba16"}, -"mario_face_08": {"output_dir": "mario", "rom_offset": "0x72FF98", "width": 64, "height": 64, "type": "rgba16"}, -"mario_face_09": {"output_dir": "mario", "rom_offset": "0x730C9C", "width": 64, "height": 64, "type": "rgba16"}, -"mario_face_10": {"output_dir": "mario", "rom_offset": "0x73197C", "width": 64, "height": 64, "type": "rgba16"}, -"mario_face_11": {"output_dir": "mario", "rom_offset": "0x732678", "width": 64, "height": 64, "type": "rgba16"}, -"mario_face_12": {"output_dir": "mario", "rom_offset": "0x733374", "width": 64, "height": 64, "type": "rgba16"}, -"mario_face_13": {"output_dir": "mario", "rom_offset": "0x7340B8", "width": 64, "height": 64, "type": "rgba16"}, -"mario_face_14": {"output_dir": "mario", "rom_offset": "0x734E0C", "width": 64, "height": 64, "type": "rgba16"}, -"mario_face_15": {"output_dir": "mario", "rom_offset": "0x735BB0", "width": 64, "height": 64, "type": "rgba16"}, -"mario_face_16": {"output_dir": "mario", "rom_offset": "0x736950", "width": 64, "height": 64, "type": "rgba16"} +"mario_face_00": {"output_dir": "mario", "rom_offset": "0x729A30", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x72F100"}}, +"mario_face_01": {"output_dir": "mario", "rom_offset": "0x72A704", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x72FDD4"}}, +"mario_face_02": {"output_dir": "mario", "rom_offset": "0x72B3C4", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x730A94"}}, +"mario_face_03": {"output_dir": "mario", "rom_offset": "0x72C080", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x731750"}}, +"mario_face_04": {"output_dir": "mario", "rom_offset": "0x72CCEC", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7323BC"}}, +"mario_face_05": {"output_dir": "mario", "rom_offset": "0x72D938", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x733008"}}, +"mario_face_06": {"output_dir": "mario", "rom_offset": "0x72E578", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x733C48"}}, +"mario_face_07": {"output_dir": "mario", "rom_offset": "0x72F28C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x73495C"}}, +"mario_face_08": {"output_dir": "mario", "rom_offset": "0x72FF98", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x735668"}}, +"mario_face_09": {"output_dir": "mario", "rom_offset": "0x730C9C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x73636C"}}, +"mario_face_10": {"output_dir": "mario", "rom_offset": "0x73197C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x73704C"}}, +"mario_face_11": {"output_dir": "mario", "rom_offset": "0x732678", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x737D48"}}, +"mario_face_12": {"output_dir": "mario", "rom_offset": "0x733374", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x738A44"}}, +"mario_face_13": {"output_dir": "mario", "rom_offset": "0x7340B8", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x739788"}}, +"mario_face_14": {"output_dir": "mario", "rom_offset": "0x734E0C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x73A4DC"}}, +"mario_face_15": {"output_dir": "mario", "rom_offset": "0x735BB0", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x73B280"}}, +"mario_face_16": {"output_dir": "mario", "rom_offset": "0x736950", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x73C020"}} } diff --git a/assets/character_select/peach_select.json b/assets/character_select/peach_select.json index fc6b70dc0a..0dddaaf84a 100644 --- a/assets/character_select/peach_select.json +++ b/assets/character_select/peach_select.json @@ -1,19 +1,19 @@ { -"peach_face_00": {"output_dir": "peach", "rom_offset": "0x744674", "width": 64, "height": 64, "type": "rgba16"}, -"peach_face_01": {"output_dir": "peach", "rom_offset": "0x74552C", "width": 64, "height": 64, "type": "rgba16"}, -"peach_face_02": {"output_dir": "peach", "rom_offset": "0x7463D8", "width": 64, "height": 64, "type": "rgba16"}, -"peach_face_03": {"output_dir": "peach", "rom_offset": "0x747294", "width": 64, "height": 64, "type": "rgba16"}, -"peach_face_04": {"output_dir": "peach", "rom_offset": "0x74814C", "width": 64, "height": 64, "type": "rgba16"}, -"peach_face_05": {"output_dir": "peach", "rom_offset": "0x748FD4", "width": 64, "height": 64, "type": "rgba16"}, -"peach_face_06": {"output_dir": "peach", "rom_offset": "0x749E74", "width": 64, "height": 64, "type": "rgba16"}, -"peach_face_07": {"output_dir": "peach", "rom_offset": "0x74AD3C", "width": 64, "height": 64, "type": "rgba16"}, -"peach_face_08": {"output_dir": "peach", "rom_offset": "0x74BC2C", "width": 64, "height": 64, "type": "rgba16"}, -"peach_face_09": {"output_dir": "peach", "rom_offset": "0x74CB3C", "width": 64, "height": 64, "type": "rgba16"}, -"peach_face_10": {"output_dir": "peach", "rom_offset": "0x74DAF0", "width": 64, "height": 64, "type": "rgba16"}, -"peach_face_11": {"output_dir": "peach", "rom_offset": "0x74EAD4", "width": 64, "height": 64, "type": "rgba16"}, -"peach_face_12": {"output_dir": "peach", "rom_offset": "0x74FB20", "width": 64, "height": 64, "type": "rgba16"}, -"peach_face_13": {"output_dir": "peach", "rom_offset": "0x750B58", "width": 64, "height": 64, "type": "rgba16"}, -"peach_face_14": {"output_dir": "peach", "rom_offset": "0x751B3C", "width": 64, "height": 64, "type": "rgba16"}, -"peach_face_15": {"output_dir": "peach", "rom_offset": "0x752AD0", "width": 64, "height": 64, "type": "rgba16"}, -"peach_face_16": {"output_dir": "peach", "rom_offset": "0x753A58", "width": 64, "height": 64, "type": "rgba16"} +"peach_face_00": {"output_dir": "peach", "rom_offset": "0x744674", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x749D44"}}, +"peach_face_01": {"output_dir": "peach", "rom_offset": "0x74552C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x74ABFC"}}, +"peach_face_02": {"output_dir": "peach", "rom_offset": "0x7463D8", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x74BAA8"}}, +"peach_face_03": {"output_dir": "peach", "rom_offset": "0x747294", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x74C964"}}, +"peach_face_04": {"output_dir": "peach", "rom_offset": "0x74814C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x74D81C"}}, +"peach_face_05": {"output_dir": "peach", "rom_offset": "0x748FD4", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x74E6A4"}}, +"peach_face_06": {"output_dir": "peach", "rom_offset": "0x749E74", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x74F544"}}, +"peach_face_07": {"output_dir": "peach", "rom_offset": "0x74AD3C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x75040C"}}, +"peach_face_08": {"output_dir": "peach", "rom_offset": "0x74BC2C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7512FC"}}, +"peach_face_09": {"output_dir": "peach", "rom_offset": "0x74CB3C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x75220C"}}, +"peach_face_10": {"output_dir": "peach", "rom_offset": "0x74DAF0", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7531C0"}}, +"peach_face_11": {"output_dir": "peach", "rom_offset": "0x74EAD4", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7541A4"}}, +"peach_face_12": {"output_dir": "peach", "rom_offset": "0x74FB20", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7551F0"}}, +"peach_face_13": {"output_dir": "peach", "rom_offset": "0x750B58", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x756228"}}, +"peach_face_14": {"output_dir": "peach", "rom_offset": "0x751B3C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x75720C"}}, +"peach_face_15": {"output_dir": "peach", "rom_offset": "0x752AD0", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7581A0"}}, +"peach_face_16": {"output_dir": "peach", "rom_offset": "0x753A58", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x759128"}} } diff --git a/assets/character_select/toad_select.json b/assets/character_select/toad_select.json index 2cbebfb29a..5381fa315f 100644 --- a/assets/character_select/toad_select.json +++ b/assets/character_select/toad_select.json @@ -1,19 +1,19 @@ { -"toad_face_00": {"output_dir": "toad", "rom_offset": "0x754900", "width": 64, "height": 64, "type": "rgba16"}, -"toad_face_01": {"output_dir": "toad", "rom_offset": "0x7552BC", "width": 64, "height": 64, "type": "rgba16"}, -"toad_face_02": {"output_dir": "toad", "rom_offset": "0x755C70", "width": 64, "height": 64, "type": "rgba16"}, -"toad_face_03": {"output_dir": "toad", "rom_offset": "0x75662C", "width": 64, "height": 64, "type": "rgba16"}, -"toad_face_04": {"output_dir": "toad", "rom_offset": "0x756FE4", "width": 64, "height": 64, "type": "rgba16"}, -"toad_face_05": {"output_dir": "toad", "rom_offset": "0x7579A0", "width": 64, "height": 64, "type": "rgba16"}, -"toad_face_06": {"output_dir": "toad", "rom_offset": "0x758340", "width": 64, "height": 64, "type": "rgba16"}, -"toad_face_07": {"output_dir": "toad", "rom_offset": "0x758CD8", "width": 64, "height": 64, "type": "rgba16"}, -"toad_face_08": {"output_dir": "toad", "rom_offset": "0x7596A4", "width": 64, "height": 64, "type": "rgba16"}, -"toad_face_09": {"output_dir": "toad", "rom_offset": "0x75A058", "width": 64, "height": 64, "type": "rgba16"}, -"toad_face_10": {"output_dir": "toad", "rom_offset": "0x75AA40", "width": 64, "height": 64, "type": "rgba16"}, -"toad_face_11": {"output_dir": "toad", "rom_offset": "0x75B454", "width": 64, "height": 64, "type": "rgba16"}, -"toad_face_12": {"output_dir": "toad", "rom_offset": "0x75BEAC", "width": 64, "height": 64, "type": "rgba16"}, -"toad_face_13": {"output_dir": "toad", "rom_offset": "0x75C90C", "width": 64, "height": 64, "type": "rgba16"}, -"toad_face_14": {"output_dir": "toad", "rom_offset": "0x75D38C", "width": 64, "height": 64, "type": "rgba16"}, -"toad_face_15": {"output_dir": "toad", "rom_offset": "0x75DE00", "width": 64, "height": 64, "type": "rgba16"}, -"toad_face_16": {"output_dir": "toad", "rom_offset": "0x75E860", "width": 64, "height": 64, "type": "rgba16"} +"toad_face_00": {"output_dir": "toad", "rom_offset": "0x754900", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x759FD0"}}, +"toad_face_01": {"output_dir": "toad", "rom_offset": "0x7552BC", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x75A98C"}}, +"toad_face_02": {"output_dir": "toad", "rom_offset": "0x755C70", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x75B340"}}, +"toad_face_03": {"output_dir": "toad", "rom_offset": "0x75662C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x75BCFC"}}, +"toad_face_04": {"output_dir": "toad", "rom_offset": "0x756FE4", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x75C6B4"}}, +"toad_face_05": {"output_dir": "toad", "rom_offset": "0x7579A0", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x75D070"}}, +"toad_face_06": {"output_dir": "toad", "rom_offset": "0x758340", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x75DA10"}}, +"toad_face_07": {"output_dir": "toad", "rom_offset": "0x758CD8", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x75E3A8"}}, +"toad_face_08": {"output_dir": "toad", "rom_offset": "0x7596A4", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x75ED74"}}, +"toad_face_09": {"output_dir": "toad", "rom_offset": "0x75A058", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x75F728"}}, +"toad_face_10": {"output_dir": "toad", "rom_offset": "0x75AA40", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x760110"}}, +"toad_face_11": {"output_dir": "toad", "rom_offset": "0x75B454", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x760B24"}}, +"toad_face_12": {"output_dir": "toad", "rom_offset": "0x75BEAC", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x76157C"}}, +"toad_face_13": {"output_dir": "toad", "rom_offset": "0x75C90C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x761FDC"}}, +"toad_face_14": {"output_dir": "toad", "rom_offset": "0x75D38C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x762A5C"}}, +"toad_face_15": {"output_dir": "toad", "rom_offset": "0x75DE00", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7634D0"}}, +"toad_face_16": {"output_dir": "toad", "rom_offset": "0x75E860", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x763F30"}} } diff --git a/assets/character_select/wario_select.json b/assets/character_select/wario_select.json index 29c8e20b73..b8e1ecf41b 100644 --- a/assets/character_select/wario_select.json +++ b/assets/character_select/wario_select.json @@ -1,19 +1,19 @@ { -"wario_face_00": {"output_dir": "wario", "rom_offset": "0x779F00", "width": 64, "height": 64, "type": "rgba16"}, -"wario_face_01": {"output_dir": "wario", "rom_offset": "0x77B060", "width": 64, "height": 64, "type": "rgba16"}, -"wario_face_02": {"output_dir": "wario", "rom_offset": "0x77C1A4", "width": 64, "height": 64, "type": "rgba16"}, -"wario_face_03": {"output_dir": "wario", "rom_offset": "0x77D2F8", "width": 64, "height": 64, "type": "rgba16"}, -"wario_face_04": {"output_dir": "wario", "rom_offset": "0x77E460", "width": 64, "height": 64, "type": "rgba16"}, -"wario_face_05": {"output_dir": "wario", "rom_offset": "0x77F5B4", "width": 64, "height": 64, "type": "rgba16"}, -"wario_face_06": {"output_dir": "wario", "rom_offset": "0x780710", "width": 64, "height": 64, "type": "rgba16"}, -"wario_face_07": {"output_dir": "wario", "rom_offset": "0x781884", "width": 64, "height": 64, "type": "rgba16"}, -"wario_face_08": {"output_dir": "wario", "rom_offset": "0x782A5C", "width": 64, "height": 64, "type": "rgba16"}, -"wario_face_09": {"output_dir": "wario", "rom_offset": "0x783C84", "width": 64, "height": 64, "type": "rgba16"}, -"wario_face_10": {"output_dir": "wario", "rom_offset": "0x784EF0", "width": 64, "height": 64, "type": "rgba16"}, -"wario_face_11": {"output_dir": "wario", "rom_offset": "0x7861D0", "width": 64, "height": 64, "type": "rgba16"}, -"wario_face_12": {"output_dir": "wario", "rom_offset": "0x7874D8", "width": 64, "height": 64, "type": "rgba16"}, -"wario_face_13": {"output_dir": "wario", "rom_offset": "0x7887BC", "width": 64, "height": 64, "type": "rgba16"}, -"wario_face_14": {"output_dir": "wario", "rom_offset": "0x789AE0", "width": 64, "height": 64, "type": "rgba16"}, -"wario_face_15": {"output_dir": "wario", "rom_offset": "0x78ADCC", "width": 64, "height": 64, "type": "rgba16"}, -"wario_face_16": {"output_dir": "wario", "rom_offset": "0x78C098", "width": 64, "height": 64, "type": "rgba16"} +"wario_face_00": {"output_dir": "wario", "rom_offset": "0x779F00", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x77F5D0"}}, +"wario_face_01": {"output_dir": "wario", "rom_offset": "0x77B060", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x780730"}}, +"wario_face_02": {"output_dir": "wario", "rom_offset": "0x77C1A4", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x781874"}}, +"wario_face_03": {"output_dir": "wario", "rom_offset": "0x77D2F8", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7829C8"}}, +"wario_face_04": {"output_dir": "wario", "rom_offset": "0x77E460", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x783B30"}}, +"wario_face_05": {"output_dir": "wario", "rom_offset": "0x77F5B4", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x784C84"}}, +"wario_face_06": {"output_dir": "wario", "rom_offset": "0x780710", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x785DE0"}}, +"wario_face_07": {"output_dir": "wario", "rom_offset": "0x781884", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x786F54"}}, +"wario_face_08": {"output_dir": "wario", "rom_offset": "0x782A5C", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x78812C"}}, +"wario_face_09": {"output_dir": "wario", "rom_offset": "0x783C84", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x789354"}}, +"wario_face_10": {"output_dir": "wario", "rom_offset": "0x784EF0", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x78A5C0"}}, +"wario_face_11": {"output_dir": "wario", "rom_offset": "0x7861D0", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x78B8A0"}}, +"wario_face_12": {"output_dir": "wario", "rom_offset": "0x7874D8", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x78CBA8"}}, +"wario_face_13": {"output_dir": "wario", "rom_offset": "0x7887BC", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x78DE8C"}}, +"wario_face_14": {"output_dir": "wario", "rom_offset": "0x789AE0", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x78F1B0"}}, +"wario_face_15": {"output_dir": "wario", "rom_offset": "0x78ADCC", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x79049C"}}, +"wario_face_16": {"output_dir": "wario", "rom_offset": "0x78C098", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x791768"}} } diff --git a/assets/character_select/yoshi_select.json b/assets/character_select/yoshi_select.json index 27aac12fdf..fa8673215b 100644 --- a/assets/character_select/yoshi_select.json +++ b/assets/character_select/yoshi_select.json @@ -1,19 +1,19 @@ { -"yoshi_face_00": {"output_dir": "yoshi", "rom_offset": "0x75F1C4", "width": 64, "height": 64, "type": "rgba16"}, -"yoshi_face_01": {"output_dir": "yoshi", "rom_offset": "0x75FCB0", "width": 64, "height": 64, "type": "rgba16"}, -"yoshi_face_02": {"output_dir": "yoshi", "rom_offset": "0x760794", "width": 64, "height": 64, "type": "rgba16"}, -"yoshi_face_03": {"output_dir": "yoshi", "rom_offset": "0x761274", "width": 64, "height": 64, "type": "rgba16"}, -"yoshi_face_04": {"output_dir": "yoshi", "rom_offset": "0x761D28", "width": 64, "height": 64, "type": "rgba16"}, -"yoshi_face_05": {"output_dir": "yoshi", "rom_offset": "0x762798", "width": 64, "height": 64, "type": "rgba16"}, -"yoshi_face_06": {"output_dir": "yoshi", "rom_offset": "0x7631E0", "width": 64, "height": 64, "type": "rgba16"}, -"yoshi_face_07": {"output_dir": "yoshi", "rom_offset": "0x763D04", "width": 64, "height": 64, "type": "rgba16"}, -"yoshi_face_08": {"output_dir": "yoshi", "rom_offset": "0x764730", "width": 64, "height": 64, "type": "rgba16"}, -"yoshi_face_09": {"output_dir": "yoshi", "rom_offset": "0x7650EC", "width": 64, "height": 64, "type": "rgba16"}, -"yoshi_face_10": {"output_dir": "yoshi", "rom_offset": "0x765A98", "width": 64, "height": 64, "type": "rgba16"}, -"yoshi_face_11": {"output_dir": "yoshi", "rom_offset": "0x766458", "width": 64, "height": 64, "type": "rgba16"}, -"yoshi_face_12": {"output_dir": "yoshi", "rom_offset": "0x766E68", "width": 64, "height": 64, "type": "rgba16"}, -"yoshi_face_13": {"output_dir": "yoshi", "rom_offset": "0x7678C4", "width": 64, "height": 64, "type": "rgba16"}, -"yoshi_face_14": {"output_dir": "yoshi", "rom_offset": "0x7683A4", "width": 64, "height": 64, "type": "rgba16"}, -"yoshi_face_15": {"output_dir": "yoshi", "rom_offset": "0x768EAC", "width": 64, "height": 64, "type": "rgba16"}, -"yoshi_face_16": {"output_dir": "yoshi", "rom_offset": "0x7699C4", "width": 64, "height": 64, "type": "rgba16"} +"yoshi_face_00": {"output_dir": "yoshi", "rom_offset": "0x75F1C4", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x764894"}}, +"yoshi_face_01": {"output_dir": "yoshi", "rom_offset": "0x75FCB0", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x765380"}}, +"yoshi_face_02": {"output_dir": "yoshi", "rom_offset": "0x760794", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x765E64"}}, +"yoshi_face_03": {"output_dir": "yoshi", "rom_offset": "0x761274", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x766944"}}, +"yoshi_face_04": {"output_dir": "yoshi", "rom_offset": "0x761D28", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7673F8"}}, +"yoshi_face_05": {"output_dir": "yoshi", "rom_offset": "0x762798", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x767E68"}}, +"yoshi_face_06": {"output_dir": "yoshi", "rom_offset": "0x7631E0", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7688B0"}}, +"yoshi_face_07": {"output_dir": "yoshi", "rom_offset": "0x763D04", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x7693D4"}}, +"yoshi_face_08": {"output_dir": "yoshi", "rom_offset": "0x764730", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x769E00"}}, +"yoshi_face_09": {"output_dir": "yoshi", "rom_offset": "0x7650EC", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x76A7BC"}}, +"yoshi_face_10": {"output_dir": "yoshi", "rom_offset": "0x765A98", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x76B168"}}, +"yoshi_face_11": {"output_dir": "yoshi", "rom_offset": "0x766458", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x76BB28"}}, +"yoshi_face_12": {"output_dir": "yoshi", "rom_offset": "0x766E68", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x76C538"}}, +"yoshi_face_13": {"output_dir": "yoshi", "rom_offset": "0x7678C4", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x76CF94"}}, +"yoshi_face_14": {"output_dir": "yoshi", "rom_offset": "0x7683A4", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x76DA74"}}, +"yoshi_face_15": {"output_dir": "yoshi", "rom_offset": "0x768EAC", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x76E57C"}}, +"yoshi_face_16": {"output_dir": "yoshi", "rom_offset": "0x7699C4", "width": 64, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x76F094"}} } diff --git a/assets/course_outlines.json b/assets/course_outlines.json index 7a208a6842..22b008687e 100644 --- a/assets/course_outlines.json +++ b/assets/course_outlines.json @@ -1,22 +1,22 @@ { -"minimap_mario_raceway": {"output_dir": "course_outlines", "rom_offset": "0x720C0C", "width": 64, "height": 64, "type": "i4"}, -"minimap_choco_mountain": {"output_dir": "course_outlines", "rom_offset": "0x720ED0", "width": 64, "height": 64, "type": "i4"}, -"minimap_bowsers_castle": {"output_dir": "course_outlines", "rom_offset": "0x7211D8", "width": 64, "height": 64, "type": "i4"}, -"minimap_banshee_boardwalk": {"output_dir": "course_outlines", "rom_offset": "0x72143C", "width": 64, "height": 64, "type": "i4"}, -"minimap_yoshi_valley": {"output_dir": "course_outlines", "rom_offset": "0x721634", "width": 64, "height": 64, "type": "i4"}, -"minimap_frappe_snowland": {"output_dir": "course_outlines", "rom_offset": "0x721A58", "width": 64, "height": 64, "type": "i4"}, -"minimap_koopa_troopa_beach": {"output_dir": "course_outlines", "rom_offset": "0x721CD0", "width": 64, "height": 64, "type": "i4"}, -"minimap_royal_raceway": {"output_dir": "course_outlines", "rom_offset": "0x721F38", "width": 64, "height": 64, "type": "i4"}, -"minimap_luigi_raceway": {"output_dir": "course_outlines", "rom_offset": "0x722210", "width": 64, "height": 96, "type": "i4"}, -"minimap_moo_moo_farm": {"output_dir": "course_outlines", "rom_offset": "0x72248C", "width": 64, "height": 64, "type": "i4"}, -"minimap_toads_turnpike": {"output_dir": "course_outlines", "rom_offset": "0x7226C4", "width": 128, "height": 64, "type": "i4"}, -"minimap_kalimari_desert": {"output_dir": "course_outlines", "rom_offset": "0x7229C0", "width": 64, "height": 96, "type": "i4"}, -"minimap_sherbet_land": {"output_dir": "course_outlines", "rom_offset": "0x722D2C", "width": 64, "height": 64, "type": "i4"}, -"minimap_rainbow_road": {"output_dir": "course_outlines", "rom_offset": "0x723034", "width": 64, "height": 96, "type": "i4"}, -"minimap_wario_stadium": {"output_dir": "course_outlines", "rom_offset": "0x723370", "width": 64, "height": 64, "type": "i4"}, -"minimap_block_fort": {"output_dir": "course_outlines", "rom_offset": "0x723644", "width": 64, "height": 64, "type": "i4"}, -"minimap_skyscraper": {"output_dir": "course_outlines", "rom_offset": "0x7238E4", "width": 64, "height": 64, "type": "i4"}, -"minimap_double_deck": {"output_dir": "course_outlines", "rom_offset": "0x723B18", "width": 64, "height": 64, "type": "i4"}, -"minimap_dks_jungle_parkway": {"output_dir": "course_outlines", "rom_offset": "0x723C9C", "width": 64, "height": 64, "type": "i4"}, -"minimap_big_donut": {"output_dir": "course_outlines", "rom_offset": "0x723F84", "width": 64, "height": 64, "type": "i4"} +"minimap_mario_raceway": {"output_dir": "course_outlines", "rom_offset": "0x720C0C", "width": 64, "height": 64, "type": "i4", "jp.v11": {"rom_offset": "0x72BAEC"}}, +"minimap_choco_mountain": {"output_dir": "course_outlines", "rom_offset": "0x720ED0", "width": 64, "height": 64, "type": "i4", "jp.v11": {"rom_offset": "0x72BDB0"}}, +"minimap_bowsers_castle": {"output_dir": "course_outlines", "rom_offset": "0x7211D8", "width": 64, "height": 64, "type": "i4", "jp.v11": {"rom_offset": "0x72C0B8"}}, +"minimap_banshee_boardwalk": {"output_dir": "course_outlines", "rom_offset": "0x72143C", "width": 64, "height": 64, "type": "i4", "jp.v11": {"rom_offset": "0x72C31C"}}, +"minimap_yoshi_valley": {"output_dir": "course_outlines", "rom_offset": "0x721634", "width": 64, "height": 64, "type": "i4", "jp.v11": {"rom_offset": "0x72C514"}}, +"minimap_frappe_snowland": {"output_dir": "course_outlines", "rom_offset": "0x721A58", "width": 64, "height": 64, "type": "i4", "jp.v11": {"rom_offset": "0x72C938"}}, +"minimap_koopa_troopa_beach": {"output_dir": "course_outlines", "rom_offset": "0x721CD0", "width": 64, "height": 64, "type": "i4", "jp.v11": {"rom_offset": "0x72CBB0"}}, +"minimap_royal_raceway": {"output_dir": "course_outlines", "rom_offset": "0x721F38", "width": 64, "height": 64, "type": "i4", "jp.v11": {"rom_offset": "0x72CE18"}}, +"minimap_luigi_raceway": {"output_dir": "course_outlines", "rom_offset": "0x722210", "width": 64, "height": 96, "type": "i4", "jp.v11": {"rom_offset": "0x72D0F0"}}, +"minimap_moo_moo_farm": {"output_dir": "course_outlines", "rom_offset": "0x72248C", "width": 64, "height": 64, "type": "i4", "jp.v11": {"rom_offset": "0x72D36C"}}, +"minimap_toads_turnpike": {"output_dir": "course_outlines", "rom_offset": "0x7226C4", "width": 128, "height": 64, "type": "i4", "jp.v11": {"rom_offset": "0x72D5A4"}}, +"minimap_kalimari_desert": {"output_dir": "course_outlines", "rom_offset": "0x7229C0", "width": 64, "height": 96, "type": "i4", "jp.v11": {"rom_offset": "0x72D8A0"}}, +"minimap_sherbet_land": {"output_dir": "course_outlines", "rom_offset": "0x722D2C", "width": 64, "height": 64, "type": "i4", "jp.v11": {"rom_offset": "0x72DC0C"}}, +"minimap_rainbow_road": {"output_dir": "course_outlines", "rom_offset": "0x723034", "width": 64, "height": 96, "type": "i4", "jp.v11": {"rom_offset": "0x72DF14"}}, +"minimap_wario_stadium": {"output_dir": "course_outlines", "rom_offset": "0x723370", "width": 64, "height": 64, "type": "i4", "jp.v11": {"rom_offset": "0x72E250"}}, +"minimap_block_fort": {"output_dir": "course_outlines", "rom_offset": "0x723644", "width": 64, "height": 64, "type": "i4", "jp.v11": {"rom_offset": "0x72E524"}}, +"minimap_skyscraper": {"output_dir": "course_outlines", "rom_offset": "0x7238E4", "width": 64, "height": 64, "type": "i4", "jp.v11": {"rom_offset": "0x72E7C4"}}, +"minimap_double_deck": {"output_dir": "course_outlines", "rom_offset": "0x723B18", "width": 64, "height": 64, "type": "i4", "jp.v11": {"rom_offset": "0x72E9F8"}}, +"minimap_dks_jungle_parkway": {"output_dir": "course_outlines", "rom_offset": "0x723C9C", "width": 64, "height": 64, "type": "i4", "jp.v11": {"rom_offset": "0x72EB7C"}}, +"minimap_big_donut": {"output_dir": "course_outlines", "rom_offset": "0x723F84", "width": 64, "height": 64, "type": "i4", "jp.v11": {"rom_offset": "0x72EE64"}} } diff --git a/assets/courses/banshee_boardwalk.json b/assets/courses/banshee_boardwalk.json index 0735aad3f2..1e71ac2206 100644 --- a/assets/courses/banshee_boardwalk.json +++ b/assets/courses/banshee_boardwalk.json @@ -1,42 +1,42 @@ { -"gTLUTBoo": {"output_dir": "banshee_boardwalk", "rom_offset": "0x831DC0", "block_offset": "0x5C80", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureBansheeBoardwalkFishEyes": {"output_dir": "banshee_boardwalk", "rom_offset": "0x831DC0", "block_offset": "0x6E50", "width": 32, "height": 32, "type": "rgba16"}, -"gTLUTBat": {"output_dir": "banshee_boardwalk", "rom_offset": "0x831DC0", "block_offset": "0x7BB8", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureBat1": {"output_dir": "banshee_boardwalk", "rom_offset": "0x831DC0", "block_offset": "0x7DB8", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTBat"}, -"gTextureBat2": {"output_dir": "banshee_boardwalk", "rom_offset": "0x831DC0", "block_offset": "0x85B8", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTBat"}, -"gTextureBat3": {"output_dir": "banshee_boardwalk", "rom_offset": "0x831DC0", "block_offset": "0x8DB8", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTBat"}, -"gTextureBat4": {"output_dir": "banshee_boardwalk", "rom_offset": "0x831DC0", "block_offset": "0x95B8", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTBat"}, +"gTLUTBoo": {"output_dir": "banshee_boardwalk", "rom_offset": "0x831DC0", "block_offset": "0x5C80", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x830630", "block_offset": "0x04408"}}, +"gTextureBansheeBoardwalkFishEyes": {"output_dir": "banshee_boardwalk", "rom_offset": "0x831DC0", "block_offset": "0x6E50", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x830630", "block_offset": "0x055D8"}}, +"gTLUTBat": {"output_dir": "banshee_boardwalk", "rom_offset": "0x831DC0", "block_offset": "0x7BB8", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x830630", "block_offset": "0x06340"}}, +"gTextureBat1": {"output_dir": "banshee_boardwalk", "rom_offset": "0x831DC0", "block_offset": "0x7DB8", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTBat", "jp.v11": {"rom_offset": "0x830630", "block_offset": "0x06540"}}, +"gTextureBat2": {"output_dir": "banshee_boardwalk", "rom_offset": "0x831DC0", "block_offset": "0x85B8", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTBat", "jp.v11": {"rom_offset": "0x830630", "block_offset": "0x06D40"}}, +"gTextureBat3": {"output_dir": "banshee_boardwalk", "rom_offset": "0x831DC0", "block_offset": "0x8DB8", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTBat", "jp.v11": {"rom_offset": "0x830630", "block_offset": "0x07540"}}, +"gTextureBat4": {"output_dir": "banshee_boardwalk", "rom_offset": "0x831DC0", "block_offset": "0x95B8", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTBat", "jp.v11": {"rom_offset": "0x830630", "block_offset": "0x07D40"}}, -"gTextureBansheBoardwalkA050": {"output_dir": "banshee_boardwalk", "rom_offset": "0x831DC0", "block_offset": "0xA050", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureBansheBoardwalkAA78": {"output_dir": "banshee_boardwalk", "rom_offset": "0x831DC0", "block_offset": "0xAA78", "width": 32, "height": 32, "type": "rgba16"}, +"gTextureBansheBoardwalkA050": {"output_dir": "banshee_boardwalk", "rom_offset": "0x831DC0", "block_offset": "0xA050", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x830630", "block_offset": "0x087D8"}}, +"gTextureBansheBoardwalkAA78": {"output_dir": "banshee_boardwalk", "rom_offset": "0x831DC0", "block_offset": "0xAA78", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x830630", "block_offset": "0x09200"}}, -"gTextureBoo01": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x00000", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo02": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x00780", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo03": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x00F00", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo04": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x01680", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo05": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x01E00", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo06": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x02580", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo07": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x02D00", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo08": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x03480", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo09": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x03C00", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo10": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x04380", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo11": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x04B00", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo12": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x05280", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo13": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x05A00", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo14": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x06180", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo15": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x06900", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo16": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x07080", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo17": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x07800", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo18": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x07F80", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo19": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x08700", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo20": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x08E80", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo21": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x09600", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo22": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x09D80", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo23": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x0A500", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo24": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x0AC80", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo25": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x0B400", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo26": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x0BB80", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo27": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x0C300", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo28": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x0CA80", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"}, -"gTextureBoo29": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x0D200", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo"} +"gTextureBoo01": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x00000", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo02": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x00780", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo03": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x00F00", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo04": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x01680", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo05": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x01E00", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo06": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x02580", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo07": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x02D00", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo08": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x03480", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo09": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x03C00", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo10": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x04380", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo11": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x04B00", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo12": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x05280", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo13": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x05A00", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo14": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x06180", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo15": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x06900", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo16": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x07080", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo17": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x07800", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo18": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x07F80", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo19": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x08700", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo20": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x08E80", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo21": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x09600", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo22": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x09D80", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo23": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x0A500", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo24": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x0AC80", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo25": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x0B400", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo26": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x0BB80", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo27": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x0C300", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo28": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x0CA80", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}}, +"gTextureBoo29": {"output_dir": "banshee_boardwalk", "rom_offset": "0x712DC0", "block_offset": "0x0D200", "width": 48, "height": 40, "type": "ci8", "tlut": "gTLUTBoo", "jp.v11": {"rom_offset": "0x71DCA0"}} } diff --git a/assets/courses/bowsers_castle.json b/assets/courses/bowsers_castle.json index 734828109d..107ef8fab3 100644 --- a/assets/courses/bowsers_castle.json +++ b/assets/courses/bowsers_castle.json @@ -1,10 +1,10 @@ { -"gTextureThwompSide": {"output_dir": "bowsers_castle", "rom_offset": "0x82DF40", "block_offset": "0x6738", "width": 32, "height": 32, "type": "rgba16"}, -"gTLUTThwomp": {"output_dir": "bowsers_castle", "rom_offset": "0x82DF40", "block_offset": "0x6F38", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureThwompFace1": {"output_dir": "bowsers_castle", "rom_offset": "0x82DF40", "block_offset": "0x7138", "width": 16, "height": 64, "type": "ci8", "tlut": "gTLUTThwomp"}, -"gTextureThwompFace2": {"output_dir": "bowsers_castle", "rom_offset": "0x82DF40", "block_offset": "0x7538", "width": 16, "height": 64, "type": "ci8", "tlut": "gTLUTThwomp"}, -"gTextureThwompFace3": {"output_dir": "bowsers_castle", "rom_offset": "0x82DF40", "block_offset": "0x7938", "width": 16, "height": 64, "type": "ci8", "tlut": "gTLUTThwomp"}, -"gTextureThwompFace4": {"output_dir": "bowsers_castle", "rom_offset": "0x82DF40", "block_offset": "0x7D38", "width": 16, "height": 64, "type": "ci8", "tlut": "gTLUTThwomp"}, -"gTextureThwompFace5": {"output_dir": "bowsers_castle", "rom_offset": "0x82DF40", "block_offset": "0x8138", "width": 16, "height": 64, "type": "ci8", "tlut": "gTLUTThwomp"}, -"gTextureThwompFace6": {"output_dir": "bowsers_castle", "rom_offset": "0x82DF40", "block_offset": "0x8538", "width": 16, "height": 64, "type": "ci8", "tlut": "gTLUTThwomp"} +"gTextureThwompSide": {"output_dir": "bowsers_castle", "rom_offset": "0x82DF40", "block_offset": "0x6738", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x82C840", "block_offset": "0x04BD8"}}, +"gTLUTThwomp": {"output_dir": "bowsers_castle", "rom_offset": "0x82DF40", "block_offset": "0x6F38", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x82C840", "block_offset": "0x053D8"}}, +"gTextureThwompFace1": {"output_dir": "bowsers_castle", "rom_offset": "0x82DF40", "block_offset": "0x7138", "width": 16, "height": 64, "type": "ci8", "tlut": "gTLUTThwomp", "jp.v11": {"rom_offset": "0x82C840", "block_offset": "0x055D8"}}, +"gTextureThwompFace2": {"output_dir": "bowsers_castle", "rom_offset": "0x82DF40", "block_offset": "0x7538", "width": 16, "height": 64, "type": "ci8", "tlut": "gTLUTThwomp", "jp.v11": {"rom_offset": "0x82C840", "block_offset": "0x059D8"}}, +"gTextureThwompFace3": {"output_dir": "bowsers_castle", "rom_offset": "0x82DF40", "block_offset": "0x7938", "width": 16, "height": 64, "type": "ci8", "tlut": "gTLUTThwomp", "jp.v11": {"rom_offset": "0x82C840", "block_offset": "0x05DD8"}}, +"gTextureThwompFace4": {"output_dir": "bowsers_castle", "rom_offset": "0x82DF40", "block_offset": "0x7D38", "width": 16, "height": 64, "type": "ci8", "tlut": "gTLUTThwomp", "jp.v11": {"rom_offset": "0x82C840", "block_offset": "0x061D8"}}, +"gTextureThwompFace5": {"output_dir": "bowsers_castle", "rom_offset": "0x82DF40", "block_offset": "0x8138", "width": 16, "height": 64, "type": "ci8", "tlut": "gTLUTThwomp", "jp.v11": {"rom_offset": "0x82C840", "block_offset": "0x065D8"}}, +"gTextureThwompFace6": {"output_dir": "bowsers_castle", "rom_offset": "0x82DF40", "block_offset": "0x8538", "width": 16, "height": 64, "type": "ci8", "tlut": "gTLUTThwomp", "jp.v11": {"rom_offset": "0x82C840", "block_offset": "0x069D8"}} } diff --git a/assets/courses/choco_mountain.json b/assets/courses/choco_mountain.json index f9627e3137..6ca452ad27 100644 --- a/assets/courses/choco_mountain.json +++ b/assets/courses/choco_mountain.json @@ -1,4 +1,4 @@ { -"gTextureChocoMountainWall": {"output_dir": "choco_mountain", "rom_offset": "0x82B620", "block_offset": "0x05B38", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureChocoMountainRock": {"output_dir": "choco_mountain", "rom_offset": "0x82B620", "block_offset": "0x06338", "width": 32, "height": 32, "type": "rgba16"} +"gTextureChocoMountainWall": {"output_dir": "choco_mountain", "rom_offset": "0x82B620", "block_offset": "0x05B38", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x829FA0", "block_offset": "0x04220"}}, +"gTextureChocoMountainRock": {"output_dir": "choco_mountain", "rom_offset": "0x82B620", "block_offset": "0x06338", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x829FA0", "block_offset": "0x04A20"}} } diff --git a/assets/courses/dks_jungle_parkway.json b/assets/courses/dks_jungle_parkway.json index 6c1338df7d..e89e8bc30f 100644 --- a/assets/courses/dks_jungle_parkway.json +++ b/assets/courses/dks_jungle_parkway.json @@ -1,21 +1,21 @@ { -"gTextureDksJungleParkwayBoatMarioSign": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x09E48", "width": 64, "height": 32, "type": "rgba16"}, -"gTextureDksJungleParkwayTreeBark": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x0AE48", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureDksJungleParkwayBoatWindowUpper": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x0B648", "width": 32, "height": 64, "type": "rgba16"}, -"gTextureDksJungleParkwayBoatWindowLower": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x0C648", "width": 32, "height": 64, "type": "rgba16"}, -"gTextureDksJungleParkwayBoatRailing": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x0D648", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureDksJungleParkwayBoatPaddle1": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x0EAE0", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureDksJungleParkwayBoatPaddle2": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x0F2E0", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureDksJungleParkwayTree2Top": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x0FCC0", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureDksJungleParkwayTree2Trunk": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x104C0", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureDksJungleParkwayTree3TopRight": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x10DC8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureDksJungleParkwayTree3TopLeft": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x115C8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureDksJungleParkwayTreeTrunk": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x11EF0", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureDksJungleParkwayTree1Top": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x126F0", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureDksJungleParkwayPalmTreeTop": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x13078", "width": 32, "height": 32, "type": "rgba16"}, -"gTLUTDksJungleParkwayKiwanoFruit": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x13978", "width": 16, "height": 16, "type": "rgba16"}, +"gTextureDksJungleParkwayBoatMarioSign": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x09E48", "width": 64, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x883C00", "block_offset": "0x08018"}}, +"gTextureDksJungleParkwayTreeBark": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x0AE48", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x883C00", "block_offset": "0x09018"}}, +"gTextureDksJungleParkwayBoatWindowUpper": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x0B648", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x883C00", "block_offset": "0x09818"}}, +"gTextureDksJungleParkwayBoatWindowLower": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x0C648", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x883C00", "block_offset": "0x0A818"}}, +"gTextureDksJungleParkwayBoatRailing": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x0D648", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x883C00", "block_offset": "0x0B818"}}, +"gTextureDksJungleParkwayBoatPaddle1": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x0EAE0", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x883C00", "block_offset": "0x0CCB0"}}, +"gTextureDksJungleParkwayBoatPaddle2": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x0F2E0", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x883C00", "block_offset": "0x0D4B0"}}, +"gTextureDksJungleParkwayTree2Top": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x0FCC0", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x883C00", "block_offset": "0x0DE90"}}, +"gTextureDksJungleParkwayTree2Trunk": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x104C0", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x883C00", "block_offset": "0x0E690"}}, +"gTextureDksJungleParkwayTree3TopRight": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x10DC8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x883C00", "block_offset": "0x0EF98"}}, +"gTextureDksJungleParkwayTree3TopLeft": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x115C8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x883C00", "block_offset": "0x0F798"}}, +"gTextureDksJungleParkwayTreeTrunk": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x11EF0", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x883C00", "block_offset": "0x100C0"}}, +"gTextureDksJungleParkwayTree1Top": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x126F0", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x883C00", "block_offset": "0x108C0"}}, +"gTextureDksJungleParkwayPalmTreeTop": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x13078", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x883C00", "block_offset": "0x11248"}}, +"gTLUTDksJungleParkwayKiwanoFruit": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x13978", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x883C00", "block_offset": "0x11B48"}}, -"gTextureDksJungleParkwayKiwanoFruit1": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x699E24", "width": 32, "height": 32, "type": "ci8", "tlut": "gTLUTDksJungleParkwayKiwanoFruit"}, -"gTextureDksJungleParkwayKiwanoFruit2": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x69A154", "width": 32, "height": 32, "type": "ci8", "tlut": "gTLUTDksJungleParkwayKiwanoFruit"}, -"gTextureDksJungleParkwayKiwanoFruit3": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x69A4C0", "width": 32, "height": 32, "type": "ci8", "tlut": "gTLUTDksJungleParkwayKiwanoFruit"} +"gTextureDksJungleParkwayKiwanoFruit1": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x699E24", "width": 32, "height": 32, "type": "ci8", "tlut": "gTLUTDksJungleParkwayKiwanoFruit", "jp.v11": {"rom_offset": "0x6A4D04", "type": "bin", "compressed": true, "size": "0x400"}}, +"gTextureDksJungleParkwayKiwanoFruit2": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x69A154", "width": 32, "height": 32, "type": "ci8", "tlut": "gTLUTDksJungleParkwayKiwanoFruit", "jp.v11": {"rom_offset": "0x6A5034", "type": "bin", "compressed": true, "size": "0x400"}}, +"gTextureDksJungleParkwayKiwanoFruit3": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x69A4C0", "width": 32, "height": 32, "type": "ci8", "tlut": "gTLUTDksJungleParkwayKiwanoFruit", "jp.v11": {"rom_offset": "0x6A53A0", "type": "bin", "compressed": true, "size": "0x400"}} } diff --git a/assets/courses/frappe_snowland.json b/assets/courses/frappe_snowland.json index 788e3261cc..448f0ae37c 100644 --- a/assets/courses/frappe_snowland.json +++ b/assets/courses/frappe_snowland.json @@ -1,12 +1,12 @@ { -"gTLUTSnowman": {"output_dir": "frappe_snowland", "rom_offset": "0x83F740", "block_offset": "0x4B20", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureSnowmanHead": {"output_dir": "frappe_snowland", "rom_offset": "0x83F740", "block_offset": "0x4D20", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTSnowman"}, -"gTextureSnowmanBody": {"output_dir": "frappe_snowland", "rom_offset": "0x83F740", "block_offset": "0x5D20", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTSnowman"}, +"gTLUTSnowman": {"output_dir": "frappe_snowland", "rom_offset": "0x83F740", "block_offset": "0x4B20", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x83DED0", "block_offset": "0x034A0"}}, +"gTextureSnowmanHead": {"output_dir": "frappe_snowland", "rom_offset": "0x83F740", "block_offset": "0x4D20", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTSnowman", "jp.v11": {"rom_offset": "0x83DED0", "block_offset": "0x036A0"}}, +"gTextureSnowmanBody": {"output_dir": "frappe_snowland", "rom_offset": "0x83F740", "block_offset": "0x5D20", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTSnowman", "jp.v11": {"rom_offset": "0x83DED0", "block_offset": "0x046A0"}}, -"gTLUTSnow": {"output_dir": "frappe_snowland", "rom_offset": "0x83F740", "block_offset": "0x6D20", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureSnow": {"output_dir": "frappe_snowland", "rom_offset": "0x83F740", "block_offset": "0x6F20", "width": 32, "height": 32, "type": "ci8", "tlut": "gTLUTSnow"}, +"gTLUTSnow": {"output_dir": "frappe_snowland", "rom_offset": "0x83F740", "block_offset": "0x6D20", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x83DED0", "block_offset": "0x056A0"}}, +"gTextureSnow": {"output_dir": "frappe_snowland", "rom_offset": "0x83F740", "block_offset": "0x6F20", "width": 32, "height": 32, "type": "ci8", "tlut": "gTLUTSnow", "jp.v11": {"rom_offset": "0x83DED0", "block_offset": "0x058A0"}}, -"gTLUTFrappeSnowlandTree": {"output_dir": "frappe_snowland", "rom_offset": "0x83F740", "block_offset": "0x7320", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureFrappeSnowlandTreeLeft": {"output_dir": "frappe_snowland", "rom_offset": "0x69333C", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTFrappeSnowlandTree"}, -"gTextureFrappeSnowlandTreeRight": {"output_dir": "frappe_snowland", "rom_offset": "0x693790", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTFrappeSnowlandTree"} +"gTLUTFrappeSnowlandTree": {"output_dir": "frappe_snowland", "rom_offset": "0x83F740", "block_offset": "0x7320", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x83DED0", "block_offset": "0x05CA0"}}, +"gTextureFrappeSnowlandTreeLeft": {"output_dir": "frappe_snowland", "rom_offset": "0x69333C", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTFrappeSnowlandTree", "jp.v11": {"rom_offset": "0x69E21C"}}, +"gTextureFrappeSnowlandTreeRight": {"output_dir": "frappe_snowland", "rom_offset": "0x693790", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTFrappeSnowlandTree", "jp.v11": {"rom_offset": "0x69E670"}} } diff --git a/assets/courses/kalimari_desert.json b/assets/courses/kalimari_desert.json index 0a2416d186..bafc8add87 100644 --- a/assets/courses/kalimari_desert.json +++ b/assets/courses/kalimari_desert.json @@ -1,32 +1,32 @@ { "gTLUTCactus": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x08380", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTCactusImport": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x08380", "width": 4, "height": 29, "type": "rgba16"}, -"gTextureCactus1Left": {"output_dir": "kalimari_desert", "rom_offset": "0x695BA4", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCactus"}, -"gTextureCactus1Right": {"output_dir": "kalimari_desert", "rom_offset": "0x695EE4", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCactus"}, -"gTextureCactus2Left": {"output_dir": "kalimari_desert", "rom_offset": "0x6961E0", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCactus"}, -"gTextureCactus2Right": {"output_dir": "kalimari_desert", "rom_offset": "0x696488", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCactus"}, -"gTextureCactus3": {"output_dir": "kalimari_desert", "rom_offset": "0x6967FC", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCactus"}, +"gTLUTCactusImport": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x08380", "width": 4, "height": 29, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x06938"}}, +"gTextureCactus1Left": {"output_dir": "kalimari_desert", "rom_offset": "0x695BA4", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCactus", "jp.v11": {"rom_offset": "0x6A0A84", "type": "bin", "compressed": true, "size": "0x800"}}, +"gTextureCactus1Right": {"output_dir": "kalimari_desert", "rom_offset": "0x695EE4", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCactus", "jp.v11": {"rom_offset": "0x6A0DC4", "type": "bin", "compressed": true, "size": "0x800"}}, +"gTextureCactus2Left": {"output_dir": "kalimari_desert", "rom_offset": "0x6961E0", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCactus", "jp.v11": {"rom_offset": "0x6A10C0", "type": "bin", "compressed": true, "size": "0x800"}}, +"gTextureCactus2Right": {"output_dir": "kalimari_desert", "rom_offset": "0x696488", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCactus", "jp.v11": {"rom_offset": "0x6A1368", "type": "bin", "compressed": true, "size": "0x800"}}, +"gTextureCactus3": {"output_dir": "kalimari_desert", "rom_offset": "0x6967FC", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCactus", "jp.v11": {"rom_offset": "0x6A16DC", "type": "bin", "compressed": true, "size": "0x800"}}, -"gTextureCrossingSignalInactiveTopLeft": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x087E8", "width": 32, "height": 64, "type": "rgba16"}, -"gTextureCrossingSignalInactiveTopRight": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x097E8", "width": 32, "height": 64, "type": "rgba16"}, -"gTextureCrossingSignalInactiveBottomLeft": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x0A7E8", "width": 32, "height": 64, "type": "rgba16"}, -"gTextureCrossingSignalInactiveBottomRight": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x0B7E8", "width": 32, "height": 64, "type": "rgba16"}, -"gTextureCrossingSignalActiveTopLeft": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x0C7E8", "width": 32, "height": 64, "type": "rgba16"}, -"gTextureCrossingSignalActiveTopRight": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x0D7E8", "width": 32, "height": 64, "type": "rgba16"}, -"gTextureCrossingSignalActiveBottomLeft": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x0E7E8", "width": 32, "height": 64, "type": "rgba16"}, -"gTextureCrossingSignalActiveBottomRight": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x0F7E8", "width": 32, "height": 64, "type": "rgba16"}, +"gTextureCrossingSignalInactiveTopLeft": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x087E8", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x06DA0"}}, +"gTextureCrossingSignalInactiveTopRight": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x097E8", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x07DA0"}}, +"gTextureCrossingSignalInactiveBottomLeft": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x0A7E8", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x08DA0"}}, +"gTextureCrossingSignalInactiveBottomRight": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x0B7E8", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x09DA0"}}, +"gTextureCrossingSignalActiveTopLeft": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x0C7E8", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x0ADA0"}}, +"gTextureCrossingSignalActiveTopRight": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x0D7E8", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x0BDA0"}}, +"gTextureCrossingSignalActiveBottomLeft": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x0E7E8", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x0CDA0"}}, +"gTextureCrossingSignalActiveBottomRight": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x0F7E8", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x0DDA0"}}, -"gTextureLocomotive64": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x10E60", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureLocomotiveCabWindow": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x11660", "width": 64, "height": 32, "type": "rgba16"}, -"gTextureLocomotiveCabWindowFront": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x12660", "width": 32, "height": 64, "type": "rgba16"}, -"gTextureLocomotiveChasis": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x13660", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureLocomotiveLamp": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x13E60", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureLocomotiveBoiler": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x14660", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureCarriageRailing": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x14E60", "width": 32, "height": 64, "type": "rgba16"}, -"gTextureLocomotiveTender": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x15E60", "width": 64, "height": 32, "type": "rgba16"}, -"gTextureLocomotiveBallast": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x16E60", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureCarriageLower": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x17660", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureCarriageDoor": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x17E60", "width": 32, "height": 64, "type": "rgba16"}, -"gTextureCarriageWindow": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x18E60", "width": 32, "height": 64, "type": "rgba16"}, -"gTextureLocomotiveBogie": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x21D28", "width": 32, "height": 64, "type": "rgba16"} +"gTextureLocomotive64": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x10E60", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x0F418"}}, +"gTextureLocomotiveCabWindow": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x11660", "width": 64, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x0FC18"}}, +"gTextureLocomotiveCabWindowFront": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x12660", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x10C18"}}, +"gTextureLocomotiveChasis": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x13660", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x11C18"}}, +"gTextureLocomotiveLamp": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x13E60", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x12418"}}, +"gTextureLocomotiveBoiler": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x14660", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x12C18"}}, +"gTextureCarriageRailing": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x14E60", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x13418"}}, +"gTextureLocomotiveTender": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x15E60", "width": 64, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x14418"}}, +"gTextureLocomotiveBallast": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x16E60", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x15418"}}, +"gTextureCarriageLower": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x17660", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x15C18"}}, +"gTextureCarriageDoor": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x17E60", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x16418"}}, +"gTextureCarriageWindow": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x18E60", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x17418"}}, +"gTextureLocomotiveBogie": {"output_dir": "kalimari_desert", "rom_offset": "0x8666A0", "block_offset": "0x21D28", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x864A40", "block_offset": "0x202E0"}} } diff --git a/assets/courses/koopa_troopa_beach.json b/assets/courses/koopa_troopa_beach.json index 91662d6aab..1625015a2b 100644 --- a/assets/courses/koopa_troopa_beach.json +++ b/assets/courses/koopa_troopa_beach.json @@ -1,17 +1,17 @@ { -"gTLUTCrab": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x0D628", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureCrab1": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x0D828", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTCrab"}, -"gTextureCrab2": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x0E828", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTCrab"}, -"gTextureCrab3": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x0F828", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTCrab"}, -"gTextureCrab4": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x10828", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTCrab"}, -"gTextureCrab5": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x11828", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTCrab"}, -"gTextureCrab6": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x12828", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTCrab"}, -"gTextureCrab7": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x13828", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTCrab"}, +"gTLUTCrab": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x0D628", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x8415C0", "block_offset": "0x0ABA0"}}, +"gTextureCrab1": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x0D828", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTCrab", "jp.v11": {"rom_offset": "0x8415C0", "block_offset": "0x0ADA0"}}, +"gTextureCrab2": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x0E828", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTCrab", "jp.v11": {"rom_offset": "0x8415C0", "block_offset": "0x0BDA0"}}, +"gTextureCrab3": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x0F828", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTCrab", "jp.v11": {"rom_offset": "0x8415C0", "block_offset": "0x0CDA0"}}, +"gTextureCrab4": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x10828", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTCrab", "jp.v11": {"rom_offset": "0x8415C0", "block_offset": "0x0DDA0"}}, +"gTextureCrab5": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x11828", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTCrab", "jp.v11": {"rom_offset": "0x8415C0", "block_offset": "0x0EDA0"}}, +"gTextureCrab6": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x12828", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTCrab", "jp.v11": {"rom_offset": "0x8415C0", "block_offset": "0x0FDA0"}}, +"gTextureCrab7": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x13828", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTCrab", "jp.v11": {"rom_offset": "0x8415C0", "block_offset": "0x10DA0"}}, -"gTextureKoopaTroopaBirdWing": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x14C00", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureKoopaTroopaBirdEye": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x15400", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureKoopaTroopaBirdBeak": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x15C00", "width": 32, "height": 32, "type": "rgba16"}, +"gTextureKoopaTroopaBirdWing": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x14C00", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x8415C0", "block_offset": "0x12178"}}, +"gTextureKoopaTroopaBirdEye": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x15400", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x8415C0", "block_offset": "0x12978"}}, +"gTextureKoopaTroopaBirdBeak": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x15C00", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x8415C0", "block_offset": "0x13178"}}, -"gTextureKoopaTroopaPalmFrond": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x16D20", "width": 64, "height": 32, "type": "rgba16"}, -"gTextureKoopaTroopaPalmTrunk": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x17D20", "width": 32, "height": 32, "type": "rgba16"} +"gTextureKoopaTroopaPalmFrond": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x16D20", "width": 64, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x8415C0", "block_offset": "0x14298"}}, +"gTextureKoopaTroopaPalmTrunk": {"output_dir": "koopa_troopa_beach", "rom_offset": "0x842E40", "block_offset": "0x17D20", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x8415C0", "block_offset": "0x15298"}} } diff --git a/assets/courses/luigi_raceway.json b/assets/courses/luigi_raceway.json index a2af38a602..eab393e863 100644 --- a/assets/courses/luigi_raceway.json +++ b/assets/courses/luigi_raceway.json @@ -1,6 +1,6 @@ { -"gTextureLuigiRacewaySignLeft": {"output_dir": "luigi_raceway", "rom_offset": "0x84E8E0", "block_offset": "0x0C588", "width": 32, "height": 64, "type": "rgba16"}, -"gTextureLuigiRacewaySignRight": {"output_dir": "luigi_raceway", "rom_offset": "0x84E8E0", "block_offset": "0x0D588", "width": 32, "height": 64, "type": "rgba16"}, -"gTextureLuigiRacewayBalloonBasket": {"output_dir": "luigi_raceway", "rom_offset": "0x84E8E0", "block_offset": "0x0E588", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureLuigiRacewayBalloonRope": {"output_dir": "luigi_raceway", "rom_offset": "0x84E8E0", "block_offset": "0x0ED88", "width": 32, "height": 32, "type": "rgba16"} +"gTextureLuigiRacewaySignLeft": {"output_dir": "luigi_raceway", "rom_offset": "0x84E8E0", "block_offset": "0x0C588", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x84CEB0", "block_offset": "0x0A330"}}, +"gTextureLuigiRacewaySignRight": {"output_dir": "luigi_raceway", "rom_offset": "0x84E8E0", "block_offset": "0x0D588", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x84CEB0", "block_offset": "0x0B330"}}, +"gTextureLuigiRacewayBalloonBasket": {"output_dir": "luigi_raceway", "rom_offset": "0x84E8E0", "block_offset": "0x0E588", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x84CEB0", "block_offset": "0x0C330"}}, +"gTextureLuigiRacewayBalloonRope": {"output_dir": "luigi_raceway", "rom_offset": "0x84E8E0", "block_offset": "0x0ED88", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x84CEB0", "block_offset": "0x0CB30"}} } diff --git a/assets/courses/mario_raceway.json b/assets/courses/mario_raceway.json index f6d2a9c780..2637b4fdbc 100644 --- a/assets/courses/mario_raceway.json +++ b/assets/courses/mario_raceway.json @@ -1,14 +1,14 @@ { -"gTextureMarioRacewaySignLeft": {"output_dir": "mario_raceway", "rom_offset": "0x8284D0", "block_offset": "0x7068", "width": 32, "height": 64, "type": "rgba16"}, -"gTextureMarioRacewaySignRight": {"output_dir": "mario_raceway", "rom_offset": "0x8284D0", "block_offset": "0x8068", "width": 32, "height": 64, "type": "rgba16"}, -"gTLUTMarioRacewayPiranhaPlant": {"output_dir": "mario_raceway", "rom_offset": "0x8284D0", "block_offset": "0x6750", "width": 16, "height": 16, "type": "rgba16"}, -"gTexturePiranhaPlant1": {"output_dir": "mario_raceway", "rom_offset": "0x698378", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMarioRacewayPiranhaPlant"}, -"gTexturePiranhaPlant2": {"output_dir": "mario_raceway", "rom_offset": "0x69859C", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMarioRacewayPiranhaPlant"}, -"gTexturePiranhaPlant3": {"output_dir": "mario_raceway", "rom_offset": "0x6987FC", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMarioRacewayPiranhaPlant"}, -"gTexturePiranhaPlant4": {"output_dir": "mario_raceway", "rom_offset": "0x698A40", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMarioRacewayPiranhaPlant"}, -"gTexturePiranhaPlant5": {"output_dir": "mario_raceway", "rom_offset": "0x698C60", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMarioRacewayPiranhaPlant"}, -"gTexturePiranhaPlant6": {"output_dir": "mario_raceway", "rom_offset": "0x698E38", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMarioRacewayPiranhaPlant"}, -"gTexturePiranhaPlant7": {"output_dir": "mario_raceway", "rom_offset": "0x698FF4", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMarioRacewayPiranhaPlant"}, -"gTexturePiranhaPlant8": {"output_dir": "mario_raceway", "rom_offset": "0x6991F8", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMarioRacewayPiranhaPlant"}, -"gTexturePiranhaPlant9": {"output_dir": "mario_raceway", "rom_offset": "0x699500", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMarioRacewayPiranhaPlant"} +"gTextureMarioRacewaySignLeft": {"output_dir": "mario_raceway", "rom_offset": "0x8284D0", "block_offset": "0x7068", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x826EF0", "block_offset": "0x05A88"}}, +"gTextureMarioRacewaySignRight": {"output_dir": "mario_raceway", "rom_offset": "0x8284D0", "block_offset": "0x8068", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x826EF0", "block_offset": "0x06A88"}}, +"gTLUTMarioRacewayPiranhaPlant": {"output_dir": "mario_raceway", "rom_offset": "0x8284D0", "block_offset": "0x6750", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x826EF0", "block_offset": "0x05170"}}, +"gTexturePiranhaPlant1": {"output_dir": "mario_raceway", "rom_offset": "0x698378", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMarioRacewayPiranhaPlant", "jp.v11": {"rom_offset": "0x6A3258"}}, +"gTexturePiranhaPlant2": {"output_dir": "mario_raceway", "rom_offset": "0x69859C", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMarioRacewayPiranhaPlant", "jp.v11": {"rom_offset": "0x6A347C"}}, +"gTexturePiranhaPlant3": {"output_dir": "mario_raceway", "rom_offset": "0x6987FC", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMarioRacewayPiranhaPlant", "jp.v11": {"rom_offset": "0x6A36DC"}}, +"gTexturePiranhaPlant4": {"output_dir": "mario_raceway", "rom_offset": "0x698A40", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMarioRacewayPiranhaPlant", "jp.v11": {"rom_offset": "0x6A3920"}}, +"gTexturePiranhaPlant5": {"output_dir": "mario_raceway", "rom_offset": "0x698C60", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMarioRacewayPiranhaPlant", "jp.v11": {"rom_offset": "0x6A3B40"}}, +"gTexturePiranhaPlant6": {"output_dir": "mario_raceway", "rom_offset": "0x698E38", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMarioRacewayPiranhaPlant", "jp.v11": {"rom_offset": "0x6A3D18"}}, +"gTexturePiranhaPlant7": {"output_dir": "mario_raceway", "rom_offset": "0x698FF4", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMarioRacewayPiranhaPlant", "jp.v11": {"rom_offset": "0x6A3ED4"}}, +"gTexturePiranhaPlant8": {"output_dir": "mario_raceway", "rom_offset": "0x6991F8", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMarioRacewayPiranhaPlant", "jp.v11": {"rom_offset": "0x6A40D8"}}, +"gTexturePiranhaPlant9": {"output_dir": "mario_raceway", "rom_offset": "0x699500", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMarioRacewayPiranhaPlant", "jp.v11": {"rom_offset": "0x6A43E0"}} } diff --git a/assets/courses/moo_moo_farm.json b/assets/courses/moo_moo_farm.json index 8b6b6e9e93..4514d4be6b 100644 --- a/assets/courses/moo_moo_farm.json +++ b/assets/courses/moo_moo_farm.json @@ -1,28 +1,28 @@ { -"gTLUTMole": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0xFC70", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureMole1": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x0FE70", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMole"}, -"gTextureMole2": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x10670", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMole"}, -"gTextureMole3": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x10E70", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMole"}, -"gTextureMole4": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x11670", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMole"}, -"gTextureMole5": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x11E70", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMole"}, -"gTextureMole6": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x12670", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMole"}, -"gTextureMole7": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x12E70", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMole"}, +"gTLUTMole": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0xFC70", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x851250", "block_offset": "0x0EB30"}}, +"gTextureMole1": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x0FE70", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMole", "jp.v11": {"rom_offset": "0x851250", "block_offset": "0x0ED30"}}, +"gTextureMole2": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x10670", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMole", "jp.v11": {"rom_offset": "0x851250", "block_offset": "0x0F530"}}, +"gTextureMole3": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x10E70", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMole", "jp.v11": {"rom_offset": "0x851250", "block_offset": "0x0FD30"}}, +"gTextureMole4": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x11670", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMole", "jp.v11": {"rom_offset": "0x851250", "block_offset": "0x10530"}}, +"gTextureMole5": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x11E70", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMole", "jp.v11": {"rom_offset": "0x851250", "block_offset": "0x10D30"}}, +"gTextureMole6": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x12670", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMole", "jp.v11": {"rom_offset": "0x851250", "block_offset": "0x11530"}}, +"gTextureMole7": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x12E70", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTMole", "jp.v11": {"rom_offset": "0x851250", "block_offset": "0x11D30"}}, -"gTextureMooMooFarmDirt": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x13670", "width": 16, "height": 16, "type": "rgba16"}, +"gTextureMooMooFarmDirt": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x13670", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x851250", "block_offset": "0x12530"}}, -"gTLUTCowImport": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x13870", "width": 12, "height": 17, "type": "rgba16"}, -"gTLUTCow": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x13870", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureCow01Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x693BC4", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow"}, -"gTextureCow01Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x693F48", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow"}, -"gTextureCow02Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x69429C", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow"}, -"gTextureCow02Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x694628", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow"}, -"gTextureCow03Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x694990", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow"}, -"gTextureCow03Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x694CAC", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow"}, -"gTextureCow04Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x694F7C", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow"}, -"gTextureCow04Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x695268", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow"}, -"gTextureCow05Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x6955AC", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow"}, -"gTextureCow05Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x6958C0", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow"}, +"gTLUTCowImport": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x13870", "width": 12, "height": 17, "type": "rgba16", "jp.v11": {"rom_offset": "0x851250", "block_offset": "0x12730"}}, +"gTLUTCow": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x13870", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x851250", "block_offset": "0x12730"}}, +"gTextureCow01Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x693BC4", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69EAA4", "type": "bin", "compressed": true, "size": "0x800"}}, +"gTextureCow01Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x693F48", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69EE28", "type": "bin", "compressed": true, "size": "0x800"}}, +"gTextureCow02Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x69429C", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69F17C", "type": "bin", "compressed": true, "size": "0x800"}}, +"gTextureCow02Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x694628", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69F508", "type": "bin", "compressed": true, "size": "0x800"}}, +"gTextureCow03Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x694990", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69F870", "type": "bin", "compressed": true, "size": "0x800"}}, +"gTextureCow03Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x694CAC", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69FB8C", "type": "bin", "compressed": true, "size": "0x800"}}, +"gTextureCow04Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x694F7C", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69FE5C", "type": "bin", "compressed": true, "size": "0x800"}}, +"gTextureCow04Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x695268", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x6A0148", "type": "bin", "compressed": true, "size": "0x800"}}, +"gTextureCow05Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x6955AC", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x6A048C", "type": "bin", "compressed": true, "size": "0x800"}}, +"gTextureCow05Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x6958C0", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x6A07A0", "type": "bin", "compressed": true, "size": "0x800"}}, -"gTextureMooMooFarmSignLeft": {"output_dir": "moo_moo_farm", "rom_offset": "0x6497E0", "width": 64, "height": 32, "type": "rgba16"}, -"gTextureMooMooFarmSignRight": {"output_dir": "moo_moo_farm", "rom_offset": "0x64A248", "width": 64, "height": 32, "type": "rgba16"} +"gTextureMooMooFarmSignLeft": {"output_dir": "moo_moo_farm", "rom_offset": "0x6497E0", "width": 64, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x654D78"}}, +"gTextureMooMooFarmSignRight": {"output_dir": "moo_moo_farm", "rom_offset": "0x64A248", "width": 64, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x6555BC"}} } diff --git a/assets/courses/rainbow_road.json b/assets/courses/rainbow_road.json index a0bbcd39f4..67e11e5632 100644 --- a/assets/courses/rainbow_road.json +++ b/assets/courses/rainbow_road.json @@ -1,44 +1,44 @@ { -"gTLUTRainbowRoadNeonMushroom1": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x05400", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTRainbowRoadNeonMushroom2": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x05600", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTRainbowRoadNeonMushroom3": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x05800", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTRainbowRoadNeonMushroom4": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x05A00", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTRainbowRoadNeonMushroom5": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x05C00", "width": 16, "height": 16, "type": "rgba16"}, +"gTLUTRainbowRoadNeonMushroom1": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x05400", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x019D0"}}, +"gTLUTRainbowRoadNeonMushroom2": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x05600", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x01BD0"}}, +"gTLUTRainbowRoadNeonMushroom3": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x05800", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x01DD0"}}, +"gTLUTRainbowRoadNeonMushroom4": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x05A00", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x01FD0"}}, +"gTLUTRainbowRoadNeonMushroom5": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x05C00", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x021D0"}}, -"gTLUTRainbowRoadNeonMario1": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x05E00", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTRainbowRoadNeonMario2": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x06000", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTRainbowRoadNeonMario3": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x06200", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTRainbowRoadNeonMario4": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x06400", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTRainbowRoadNeonMario5": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x06600", "width": 16, "height": 16, "type": "rgba16"}, +"gTLUTRainbowRoadNeonMario1": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x05E00", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x023D0"}}, +"gTLUTRainbowRoadNeonMario2": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x06000", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x025D0"}}, +"gTLUTRainbowRoadNeonMario3": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x06200", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x027D0"}}, +"gTLUTRainbowRoadNeonMario4": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x06400", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x029D0"}}, +"gTLUTRainbowRoadNeonMario5": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x06600", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x02BD0"}}, -"gTLUTRainbowRoadNeonBoo1": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x06800", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTRainbowRoadNeonBoo2": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x06A00", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTRainbowRoadNeonBoo3": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x06C00", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTRainbowRoadNeonBoo4": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x06E00", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTRainbowRoadNeonBoo5": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x07000", "width": 16, "height": 16, "type": "rgba16"}, +"gTLUTRainbowRoadNeonBoo1": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x06800", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x02DD0"}}, +"gTLUTRainbowRoadNeonBoo2": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x06A00", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x02FD0"}}, +"gTLUTRainbowRoadNeonBoo3": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x06C00", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x031D0"}}, +"gTLUTRainbowRoadNeonBoo4": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x06E00", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x033D0"}}, +"gTLUTRainbowRoadNeonBoo5": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x07000", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x035D0"}}, -"gTLUTRainbowRoadNeonPeach": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x07200", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTRainbowRoadNeonLuigi": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x07400", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTRainbowRoadNeonDonkeyKong": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x07600", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTRainbowRoadNeonYoshi": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x07800", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTRainbowRoadNeonBowser": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x07A00", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTRainbowRoadNeonWario": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x07C00", "width": 16, "height": 16, "type": "rgba16"}, -"gTLUTRainbowRoadNeonToad": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x07E00", "width": 16, "height": 16, "type": "rgba16"}, +"gTLUTRainbowRoadNeonPeach": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x07200", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x037D0"}}, +"gTLUTRainbowRoadNeonLuigi": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x07400", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x039D0"}}, +"gTLUTRainbowRoadNeonDonkeyKong": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x07600", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x03BD0"}}, +"gTLUTRainbowRoadNeonYoshi": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x07800", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x03DD0"}}, +"gTLUTRainbowRoadNeonBowser": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x07A00", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x03FD0"}}, +"gTLUTRainbowRoadNeonWario": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x07C00", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x041D0"}}, +"gTLUTRainbowRoadNeonToad": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x07E00", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x043D0"}}, -"gTextureRainbowRoadNeonMushroom": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x08000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonMushroom4"}, -"gTextureRainbowRoadNeonMario": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x09000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonMario5"}, -"gTextureRainbowRoadNeonBoo": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x0A000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonBoo5"}, -"gTextureRainbowRoadNeonPeach": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x0B000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonPeach"}, -"gTextureRainbowRoadNeonLuigi": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x0C000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonLuigi"}, -"gTextureRainbowRoadNeonDonkeyKong": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x0D000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonDonkeyKong"}, -"gTextureRainbowRoadNeonYoshi": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x0E000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonYoshi"}, -"gTextureRainbowRoadNeonBowser": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x0F000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonBowser"}, -"gTextureRainbowRoadNeonWario": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x10000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonWario"}, -"gTextureRainbowRoadNeonToad": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x11000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonToad"}, +"gTextureRainbowRoadNeonMushroom": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x08000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonMushroom4", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x045D0"}}, +"gTextureRainbowRoadNeonMario": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x09000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonMario5", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x055D0"}}, +"gTextureRainbowRoadNeonBoo": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x0A000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonBoo5", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x065D0"}}, +"gTextureRainbowRoadNeonPeach": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x0B000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonPeach", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x075D0"}}, +"gTextureRainbowRoadNeonLuigi": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x0C000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonLuigi", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x085D0"}}, +"gTextureRainbowRoadNeonDonkeyKong": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x0D000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonDonkeyKong", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x095D0"}}, +"gTextureRainbowRoadNeonYoshi": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x0E000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonYoshi", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x0A5D0"}}, +"gTextureRainbowRoadNeonBowser": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x0F000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonBowser", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x0B5D0"}}, +"gTextureRainbowRoadNeonWario": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x10000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonWario", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x0C5D0"}}, +"gTextureRainbowRoadNeonToad": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x11000", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTRainbowRoadNeonToad", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x0D5D0"}}, -"gTextureRainbowRoadSphere": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x12028", "width": 32, "height": 64, "type": "rgba16"}, -"gTextureRainbowRoadReflectionMapMetal": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x13028", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureRainbowRoadReflectionMapGold": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x13828", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureRainbowRoadChainChompTongue": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x14028", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureRainbowRoadChainChompEye": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x14828", "width": 32, "height": 32, "type": "rgba16"} +"gTextureRainbowRoadSphere": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x12028", "width": 32, "height": 64, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x0E5F8"}}, +"gTextureRainbowRoadReflectionMapMetal": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x13028", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x0F5F8"}}, +"gTextureRainbowRoadReflectionMapGold": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x13828", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x0FDF8"}}, +"gTextureRainbowRoadChainChompTongue": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x14028", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x105F8"}}, +"gTextureRainbowRoadChainChompEye": {"output_dir": "rainbow_road", "rom_offset": "0x872A00", "block_offset": "0x14828", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x870CF0", "block_offset": "0x10DF8"}} } diff --git a/assets/courses/royal_raceway.json b/assets/courses/royal_raceway.json index 039d5ad27d..42fa9e8586 100644 --- a/assets/courses/royal_raceway.json +++ b/assets/courses/royal_raceway.json @@ -1,3 +1,3 @@ { -"gTLUTRoyalRacewayPiranhaPlant": {"output_dir": "royal_raceway", "rom_offset": "0x84ABD0", "block_offset": "0x0D610", "width": 16, "height": 16, "type": "rgba16"} +"gTLUTRoyalRacewayPiranhaPlant": {"output_dir": "royal_raceway", "rom_offset": "0x84ABD0", "block_offset": "0x0D610", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x8492E0", "block_offset": "0x0AEB8"}} } diff --git a/assets/courses/sherbet_land.json b/assets/courses/sherbet_land.json index 1025385ec2..805b0cb338 100644 --- a/assets/courses/sherbet_land.json +++ b/assets/courses/sherbet_land.json @@ -1,5 +1,5 @@ { -"gTextureSherbetLandIce": {"output_dir": "sherbet_land", "rom_offset": "0x86ECF0", "block_offset": "0x068E8", "width": 32, "height": 32, "type": "ia16"}, -"gTexturePenguinBeak": {"output_dir": "sherbet_land", "rom_offset": "0x86ECF0", "block_offset": "0x072E8", "width": 32, "height": 32, "type": "rgba16"}, -"gTexturePenguinEye": {"output_dir": "sherbet_land", "rom_offset": "0x86ECF0", "block_offset": "0x07AE8", "width": 32, "height": 32, "type": "rgba16"} +"gTextureSherbetLandIce": {"output_dir": "sherbet_land", "rom_offset": "0x86ECF0", "block_offset": "0x068E8", "width": 32, "height": 32, "type": "ia16", "jp.v11": {"rom_offset": "0x86D050", "block_offset": "0x04F08"}}, +"gTexturePenguinBeak": {"output_dir": "sherbet_land", "rom_offset": "0x86ECF0", "block_offset": "0x072E8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x86D050", "block_offset": "0x05908"}}, +"gTexturePenguinEye": {"output_dir": "sherbet_land", "rom_offset": "0x86ECF0", "block_offset": "0x07AE8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x86D050", "block_offset": "0x06108"}} } diff --git a/assets/courses/toads_turnpike.json b/assets/courses/toads_turnpike.json index 5106f200ba..974aba62d4 100644 --- a/assets/courses/toads_turnpike.json +++ b/assets/courses/toads_turnpike.json @@ -1,40 +1,40 @@ { -"gTextureToadsTurnpikeTruckWindshieldLeft": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x059B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeTruckWindshieldRight": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x061B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeTruckBox1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x069B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeTruckHeadlights": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x071B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeTruckTyre": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x079B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeTruckCab": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x081B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeTruckCabSide": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x089B8", "width": 32, "height": 32, "type": "rgba16"}, +"gTextureToadsTurnpikeTruckWindshieldLeft": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x059B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x03910"}}, +"gTextureToadsTurnpikeTruckWindshieldRight": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x061B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x04110"}}, +"gTextureToadsTurnpikeTruckBox1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x069B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x04910"}}, +"gTextureToadsTurnpikeTruckHeadlights": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x071B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x05110"}}, +"gTextureToadsTurnpikeTruckTyre": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x079B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x05910"}}, +"gTextureToadsTurnpikeTruckCab": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x081B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x06110"}}, +"gTextureToadsTurnpikeTruckCabSide": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x089B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x06910"}}, -"gTextureToadsTurnpikeBusBackLod0": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x091B8", "width": 64, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeBusSide": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0A1B8", "width": 64, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeBusDoorLod0": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0B1B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeBusWindow": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0B9B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeBusFrontLod0": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0C1B8", "width": 64, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeBusUnknown1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0D1B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeBusDriverWindow": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0D9B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeBusDoorLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0E1B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeBusSideLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0E9B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeBusFrontLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0F1B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeBusBackLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0F9B8", "width": 32, "height": 32, "type": "rgba16"}, +"gTextureToadsTurnpikeBusBackLod0": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x091B8", "width": 64, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x07110"}}, +"gTextureToadsTurnpikeBusSide": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0A1B8", "width": 64, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x08110"}}, +"gTextureToadsTurnpikeBusDoorLod0": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0B1B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x09110"}}, +"gTextureToadsTurnpikeBusWindow": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0B9B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x09910"}}, +"gTextureToadsTurnpikeBusFrontLod0": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0C1B8", "width": 64, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x0A110"}}, +"gTextureToadsTurnpikeBusUnknown1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0D1B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x0B110"}}, +"gTextureToadsTurnpikeBusDriverWindow": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0D9B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x0B910"}}, +"gTextureToadsTurnpikeBusDoorLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0E1B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x0C110"}}, +"gTextureToadsTurnpikeBusSideLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0E9B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x0C910"}}, +"gTextureToadsTurnpikeBusFrontLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0F1B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x0D110"}}, +"gTextureToadsTurnpikeBusBackLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x0F9B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x0D910"}}, -"gTextureToadsTurnpikeTankerStripe": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x101B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeTankerWindshield": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x109B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeTankerFront": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x111B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeTankerHeadlights": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x119B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeTankerBumper": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x121B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeTankerSideBackLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x129B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeTankerBackLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x131B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeTankerSideFrontLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x139B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeTankerFrontLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x141B8", "width": 32, "height": 32, "type": "rgba16"}, +"gTextureToadsTurnpikeTankerStripe": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x101B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x0E110"}}, +"gTextureToadsTurnpikeTankerWindshield": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x109B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x0E910"}}, +"gTextureToadsTurnpikeTankerFront": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x111B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x0F110"}}, +"gTextureToadsTurnpikeTankerHeadlights": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x119B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x0F910"}}, +"gTextureToadsTurnpikeTankerBumper": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x121B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x10110"}}, +"gTextureToadsTurnpikeTankerSideBackLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x129B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x10910"}}, +"gTextureToadsTurnpikeTankerBackLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x131B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x11110"}}, +"gTextureToadsTurnpikeTankerSideFrontLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x139B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x11910"}}, +"gTextureToadsTurnpikeTankerFrontLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x141B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x12110"}}, -"gTextureToadsTurnpikeTruckBox2": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x149B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeTruckBox3": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x151B8", "width": 32, "height": 32, "type": "rgba16"}, +"gTextureToadsTurnpikeTruckBox2": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x149B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x12910"}}, +"gTextureToadsTurnpikeTruckBox3": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x151B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x13110"}}, -"gTextureToadsTurnpikeCarHeadlights": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x159B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeCarTaillights": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x161B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeCarFrontLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x169B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeCarBackLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x171B8", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureToadsTurnpikeCarSideLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x179B8", "width": 32, "height": 32, "type": "rgba16"} +"gTextureToadsTurnpikeCarHeadlights": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x159B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x13910"}}, +"gTextureToadsTurnpikeCarTaillights": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x161B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x14110"}}, +"gTextureToadsTurnpikeCarFrontLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x169B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x14910"}}, +"gTextureToadsTurnpikeCarBackLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x171B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x15110"}}, +"gTextureToadsTurnpikeCarSideLod1": {"output_dir": "toads_turnpike", "rom_offset": "0x857E80", "block_offset": "0x179B8", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x856270", "block_offset": "0x15910"}} } diff --git a/assets/courses/wario_stadium.json b/assets/courses/wario_stadium.json index 0e18fc89f9..9b06230123 100644 --- a/assets/courses/wario_stadium.json +++ b/assets/courses/wario_stadium.json @@ -1,6 +1,6 @@ { -"gTextureWarioStadiumSignTopLeft": {"output_dir": "wario_stadium", "rom_offset": "0x8804A0", "block_offset": "0x08890", "width": 64, "height": 32, "type": "rgba16"}, -"gTextureWarioStadiumSignBottomLeft": {"output_dir": "wario_stadium", "rom_offset": "0x8804A0", "block_offset": "0x09890", "width": 64, "height": 32, "type": "rgba16"}, -"gTextureWarioStadiumSignTopRight": {"output_dir": "wario_stadium", "rom_offset": "0x8804A0", "block_offset": "0x0A890", "width": 64, "height": 32, "type": "rgba16"}, -"gTextureWarioStadiumSignBottomRight": {"output_dir": "wario_stadium", "rom_offset": "0x8804A0", "block_offset": "0x0B890", "width": 64, "height": 32, "type": "rgba16"} +"gTextureWarioStadiumSignTopLeft": {"output_dir": "wario_stadium", "rom_offset": "0x8804A0", "block_offset": "0x08890", "width": 64, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x87E770", "block_offset": "0x054A8"}}, +"gTextureWarioStadiumSignBottomLeft": {"output_dir": "wario_stadium", "rom_offset": "0x8804A0", "block_offset": "0x09890", "width": 64, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x87E770", "block_offset": "0x064A8"}}, +"gTextureWarioStadiumSignTopRight": {"output_dir": "wario_stadium", "rom_offset": "0x8804A0", "block_offset": "0x0A890", "width": 64, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x87E770", "block_offset": "0x074A8"}}, +"gTextureWarioStadiumSignBottomRight": {"output_dir": "wario_stadium", "rom_offset": "0x8804A0", "block_offset": "0x0B890", "width": 64, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x87E770", "block_offset": "0x084A8"}} } diff --git a/assets/courses/yoshi_valley.json b/assets/courses/yoshi_valley.json index ff87aaa2b5..ad467b2840 100644 --- a/assets/courses/yoshi_valley.json +++ b/assets/courses/yoshi_valley.json @@ -1,7 +1,7 @@ { -"gTextureYoshiValleyYoshiFlag": {"output_dir": "yoshi_valley", "rom_offset": "0x835BA0", "block_offset": "0x139A0", "width": 32, "height": 32, "type": "rgba16"}, -"gTLUTYoshiValleyHedgehog": {"output_dir": "yoshi_valley", "rom_offset": "0x835BA0", "block_offset": "0x14908", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureYoshiValleyHedgehog": {"output_dir": "yoshi_valley", "rom_offset": "0x835BA0", "block_offset": "0x14B08", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTYoshiValleyHedgehog"}, -"gTextureYoshiValleyEggSpot": {"output_dir": "yoshi_valley", "rom_offset": "0x835BA0", "block_offset": "0x16570", "width": 32, "height": 32, "type": "rgba16"}, -"gTextureYoshiValleyEgg": {"output_dir": "yoshi_valley", "rom_offset": "0x835BA0", "block_offset": "0x16FA8", "width": 64, "height": 32, "type": "rgba16"} +"gTextureYoshiValleyYoshiFlag": {"output_dir": "yoshi_valley", "rom_offset": "0x835BA0", "block_offset": "0x139A0", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x8343D0", "block_offset": "0x0D480"}}, +"gTLUTYoshiValleyHedgehog": {"output_dir": "yoshi_valley", "rom_offset": "0x835BA0", "block_offset": "0x14908", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x8343D0", "block_offset": "0x0E3E8"}}, +"gTextureYoshiValleyHedgehog": {"output_dir": "yoshi_valley", "rom_offset": "0x835BA0", "block_offset": "0x14B08", "width": 64, "height": 64, "type": "ci8", "tlut": "gTLUTYoshiValleyHedgehog", "jp.v11": {"rom_offset": "0x8343D0", "block_offset": "0x0E5E8"}}, +"gTextureYoshiValleyEggSpot": {"output_dir": "yoshi_valley", "rom_offset": "0x835BA0", "block_offset": "0x16570", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x8343D0", "block_offset": "0x10050"}}, +"gTextureYoshiValleyEgg": {"output_dir": "yoshi_valley", "rom_offset": "0x835BA0", "block_offset": "0x16FA8", "width": 64, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x8343D0", "block_offset": "0x10A88"}} } diff --git a/assets/finish_line_banner.json b/assets/finish_line_banner.json index 7d0d5a7423..f127e3e6ef 100644 --- a/assets/finish_line_banner.json +++ b/assets/finish_line_banner.json @@ -1,11 +1,11 @@ { -"common_tlut_finish_line_banner": {"output_dir": "finish_line_banner", "rom_offset": "0x132B50", "block_offset": "0x0", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureFinishLineBanner1": {"output_dir": "finish_line_banner", "rom_offset": "0x696BAC", "width": 64, "height": 32, "type": "ci8", "tlut": "common_tlut_finish_line_banner"}, -"gTextureFinishLineBanner2": {"output_dir": "finish_line_banner", "rom_offset": "0x696E3C", "width": 64, "height": 32, "type": "ci8", "tlut": "common_tlut_finish_line_banner"}, -"gTextureFinishLineBanner3": {"output_dir": "finish_line_banner", "rom_offset": "0x697138", "width": 64, "height": 32, "type": "ci8", "tlut": "common_tlut_finish_line_banner"}, -"gTextureFinishLineBanner4": {"output_dir": "finish_line_banner", "rom_offset": "0x69743C", "width": 64, "height": 32, "type": "ci8", "tlut": "common_tlut_finish_line_banner"}, -"gTextureFinishLineBanner5": {"output_dir": "finish_line_banner", "rom_offset": "0x6977F0", "width": 64, "height": 32, "type": "ci8", "tlut": "common_tlut_finish_line_banner"}, -"gTextureFinishLineBanner6": {"output_dir": "finish_line_banner", "rom_offset": "0x697B10", "width": 64, "height": 32, "type": "ci8", "tlut": "common_tlut_finish_line_banner"}, -"gTextureFinishLineBanner7": {"output_dir": "finish_line_banner", "rom_offset": "0x697E80", "width": 64, "height": 32, "type": "ci8", "tlut": "common_tlut_finish_line_banner"}, -"gTextureFinishLineBanner8": {"output_dir": "finish_line_banner", "rom_offset": "0x69811C", "width": 64, "height": 32, "type": "ci8", "tlut": "common_tlut_finish_line_banner"} +"common_tlut_finish_line_banner": {"output_dir": "finish_line_banner", "rom_offset": "0x132B50", "block_offset": "0x0", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0"}}, +"gTextureFinishLineBanner1": {"output_dir": "finish_line_banner", "rom_offset": "0x696BAC", "width": 64, "height": 32, "type": "ci8", "tlut": "common_tlut_finish_line_banner", "jp.v11": {"rom_offset": "0x6A1A8C"}}, +"gTextureFinishLineBanner2": {"output_dir": "finish_line_banner", "rom_offset": "0x696E3C", "width": 64, "height": 32, "type": "ci8", "tlut": "common_tlut_finish_line_banner", "jp.v11": {"rom_offset": "0x6A1D1C"}}, +"gTextureFinishLineBanner3": {"output_dir": "finish_line_banner", "rom_offset": "0x697138", "width": 64, "height": 32, "type": "ci8", "tlut": "common_tlut_finish_line_banner", "jp.v11": {"rom_offset": "0x6A2018"}}, +"gTextureFinishLineBanner4": {"output_dir": "finish_line_banner", "rom_offset": "0x69743C", "width": 64, "height": 32, "type": "ci8", "tlut": "common_tlut_finish_line_banner", "jp.v11": {"rom_offset": "0x6A231C"}}, +"gTextureFinishLineBanner5": {"output_dir": "finish_line_banner", "rom_offset": "0x6977F0", "width": 64, "height": 32, "type": "ci8", "tlut": "common_tlut_finish_line_banner", "jp.v11": {"rom_offset": "0x6A26D0"}}, +"gTextureFinishLineBanner6": {"output_dir": "finish_line_banner", "rom_offset": "0x697B10", "width": 64, "height": 32, "type": "ci8", "tlut": "common_tlut_finish_line_banner", "jp.v11": {"rom_offset": "0x6A29F0"}}, +"gTextureFinishLineBanner7": {"output_dir": "finish_line_banner", "rom_offset": "0x697E80", "width": 64, "height": 32, "type": "ci8", "tlut": "common_tlut_finish_line_banner", "jp.v11": {"rom_offset": "0x6A2D60"}}, +"gTextureFinishLineBanner8": {"output_dir": "finish_line_banner", "rom_offset": "0x69811C", "width": 64, "height": 32, "type": "ci8", "tlut": "common_tlut_finish_line_banner", "jp.v11": {"rom_offset": "0x6A2FFC"}} } diff --git a/assets/greenshell.json b/assets/greenshell.json index cf07a68221..3a3186ce63 100644 --- a/assets/greenshell.json +++ b/assets/greenshell.json @@ -1,11 +1,11 @@ { -"common_tlut_green_shell": {"output_dir": "greenshell", "rom_offset": "0x132B50", "block_offset": "0x04E38", "width": 16, "height": 16, "type": "rgba16"}, -"texture_green_shell_0": {"output_dir": "greenshell", "rom_offset": "0x68EB50", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_green_shell"}, -"texture_green_shell_1": {"output_dir": "greenshell", "rom_offset": "0x68EDA0", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_green_shell"}, -"texture_green_shell_2": {"output_dir": "greenshell", "rom_offset": "0x68EFF0", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_green_shell"}, -"texture_green_shell_3": {"output_dir": "greenshell", "rom_offset": "0x68F248", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_green_shell"}, -"texture_green_shell_4": {"output_dir": "greenshell", "rom_offset": "0x68F4A8", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_green_shell"}, -"texture_green_shell_5": {"output_dir": "greenshell", "rom_offset": "0x68F700", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_green_shell"}, -"texture_green_shell_6": {"output_dir": "greenshell", "rom_offset": "0x68F96C", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_green_shell"}, -"texture_green_shell_7": {"output_dir": "greenshell", "rom_offset": "0x68FBCC", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_green_shell"} +"common_tlut_green_shell": {"output_dir": "greenshell", "rom_offset": "0x132B50", "block_offset": "0x04E38", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0"}}, +"texture_green_shell_0": {"output_dir": "greenshell", "rom_offset": "0x68EB50", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_green_shell", "jp.v11": {"rom_offset": "0x699A30"}}, +"texture_green_shell_1": {"output_dir": "greenshell", "rom_offset": "0x68EDA0", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_green_shell", "jp.v11": {"rom_offset": "0x699C80"}}, +"texture_green_shell_2": {"output_dir": "greenshell", "rom_offset": "0x68EFF0", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_green_shell", "jp.v11": {"rom_offset": "0x699ED0"}}, +"texture_green_shell_3": {"output_dir": "greenshell", "rom_offset": "0x68F248", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_green_shell", "jp.v11": {"rom_offset": "0x69A128"}}, +"texture_green_shell_4": {"output_dir": "greenshell", "rom_offset": "0x68F4A8", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_green_shell", "jp.v11": {"rom_offset": "0x69A388"}}, +"texture_green_shell_5": {"output_dir": "greenshell", "rom_offset": "0x68F700", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_green_shell", "jp.v11": {"rom_offset": "0x69A5E0"}}, +"texture_green_shell_6": {"output_dir": "greenshell", "rom_offset": "0x68F96C", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_green_shell", "jp.v11": {"rom_offset": "0x69A84C"}}, +"texture_green_shell_7": {"output_dir": "greenshell", "rom_offset": "0x68FBCC", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_green_shell", "jp.v11": {"rom_offset": "0x69AAAC"}} } diff --git a/assets/karts/bowser_kart.json b/assets/karts/bowser_kart.json index 38d39699a0..f865900130 100644 --- a/assets/karts/bowser_kart.json +++ b/assets/karts/bowser_kart.json @@ -1,1480 +1,1480 @@ { -"bowser_kart_frame000": {"output_dir": "bowser/frames", "rom_offset": "0x57DE70", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame001": {"output_dir": "bowser/frames", "rom_offset": "0x57E4C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_001_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame002": {"output_dir": "bowser/frames", "rom_offset": "0x57EB4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_002_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame003": {"output_dir": "bowser/frames", "rom_offset": "0x57F1CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_003_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame004": {"output_dir": "bowser/frames", "rom_offset": "0x57F830", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_004_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame005": {"output_dir": "bowser/frames", "rom_offset": "0x57FED0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_005_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame006": {"output_dir": "bowser/frames", "rom_offset": "0x580580", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_006_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame007": {"output_dir": "bowser/frames", "rom_offset": "0x580C64", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_007_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame008": {"output_dir": "bowser/frames", "rom_offset": "0x581380", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_008_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame009": {"output_dir": "bowser/frames", "rom_offset": "0x581AAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_009_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame010": {"output_dir": "bowser/frames", "rom_offset": "0x5821F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_010_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame011": {"output_dir": "bowser/frames", "rom_offset": "0x582964", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_011_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame012": {"output_dir": "bowser/frames", "rom_offset": "0x5830DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_012_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame013": {"output_dir": "bowser/frames", "rom_offset": "0x583858", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_013_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame014": {"output_dir": "bowser/frames", "rom_offset": "0x583FF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_014_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame015": {"output_dir": "bowser/frames", "rom_offset": "0x5847AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_015_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame016": {"output_dir": "bowser/frames", "rom_offset": "0x584F64", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_016_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame017": {"output_dir": "bowser/frames", "rom_offset": "0x585734", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_017_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame018": {"output_dir": "bowser/frames", "rom_offset": "0x585EF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_018_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame019": {"output_dir": "bowser/frames", "rom_offset": "0x5866A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_019_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame020": {"output_dir": "bowser/frames", "rom_offset": "0x586E84", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_020_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame021": {"output_dir": "bowser/frames", "rom_offset": "0x587658", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_021_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame022": {"output_dir": "bowser/frames", "rom_offset": "0x587CCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_022_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame023": {"output_dir": "bowser/frames", "rom_offset": "0x58836C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_023_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame024": {"output_dir": "bowser/frames", "rom_offset": "0x5889F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_024_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame025": {"output_dir": "bowser/frames", "rom_offset": "0x589078", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_025_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame026": {"output_dir": "bowser/frames", "rom_offset": "0x589708", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_026_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame027": {"output_dir": "bowser/frames", "rom_offset": "0x589DC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_027_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame028": {"output_dir": "bowser/frames", "rom_offset": "0x58A4E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_028_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame029": {"output_dir": "bowser/frames", "rom_offset": "0x58AC10", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_029_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame030": {"output_dir": "bowser/frames", "rom_offset": "0x58B35C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_030_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame031": {"output_dir": "bowser/frames", "rom_offset": "0x58BAC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_031_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame032": {"output_dir": "bowser/frames", "rom_offset": "0x58C24C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_032_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame033": {"output_dir": "bowser/frames", "rom_offset": "0x58C9DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_033_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame034": {"output_dir": "bowser/frames", "rom_offset": "0x58D198", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_034_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame035": {"output_dir": "bowser/frames", "rom_offset": "0x58D95C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_035_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame036": {"output_dir": "bowser/frames", "rom_offset": "0x58E12C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_036_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame037": {"output_dir": "bowser/frames", "rom_offset": "0x58E8F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_037_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame038": {"output_dir": "bowser/frames", "rom_offset": "0x58F0C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_038_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame039": {"output_dir": "bowser/frames", "rom_offset": "0x58F890", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_039_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame040": {"output_dir": "bowser/frames", "rom_offset": "0x590078", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_040_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame041": {"output_dir": "bowser/frames", "rom_offset": "0x590854", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_041_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame042": {"output_dir": "bowser/frames", "rom_offset": "0x59105C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_042_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame043": {"output_dir": "bowser/frames", "rom_offset": "0x5916FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_043_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame044": {"output_dir": "bowser/frames", "rom_offset": "0x591DB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_044_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame045": {"output_dir": "bowser/frames", "rom_offset": "0x592464", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_045_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame046": {"output_dir": "bowser/frames", "rom_offset": "0x592B24", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_046_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame047": {"output_dir": "bowser/frames", "rom_offset": "0x593204", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_047_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame048": {"output_dir": "bowser/frames", "rom_offset": "0x5938EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_048_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame049": {"output_dir": "bowser/frames", "rom_offset": "0x594010", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_049_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame050": {"output_dir": "bowser/frames", "rom_offset": "0x594774", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_050_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame051": {"output_dir": "bowser/frames", "rom_offset": "0x594EE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_051_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame052": {"output_dir": "bowser/frames", "rom_offset": "0x595698", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_052_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame053": {"output_dir": "bowser/frames", "rom_offset": "0x595E3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_053_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame054": {"output_dir": "bowser/frames", "rom_offset": "0x596604", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_054_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame055": {"output_dir": "bowser/frames", "rom_offset": "0x596DD0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_055_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame056": {"output_dir": "bowser/frames", "rom_offset": "0x597590", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_056_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame057": {"output_dir": "bowser/frames", "rom_offset": "0x597D80", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_057_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame058": {"output_dir": "bowser/frames", "rom_offset": "0x59855C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_058_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame059": {"output_dir": "bowser/frames", "rom_offset": "0x598D40", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_059_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame060": {"output_dir": "bowser/frames", "rom_offset": "0x599528", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_060_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame061": {"output_dir": "bowser/frames", "rom_offset": "0x599D24", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_061_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame062": {"output_dir": "bowser/frames", "rom_offset": "0x59A53C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_062_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame063": {"output_dir": "bowser/frames", "rom_offset": "0x59AD60", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_063_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame064": {"output_dir": "bowser/frames", "rom_offset": "0x59B42C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_064_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame065": {"output_dir": "bowser/frames", "rom_offset": "0x59BB08", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_065_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame066": {"output_dir": "bowser/frames", "rom_offset": "0x59C208", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_066_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame067": {"output_dir": "bowser/frames", "rom_offset": "0x59C8E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_067_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame068": {"output_dir": "bowser/frames", "rom_offset": "0x59CFBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_068_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame069": {"output_dir": "bowser/frames", "rom_offset": "0x59D6DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_069_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame070": {"output_dir": "bowser/frames", "rom_offset": "0x59DE2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_070_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame071": {"output_dir": "bowser/frames", "rom_offset": "0x59E594", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_071_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame072": {"output_dir": "bowser/frames", "rom_offset": "0x59ED14", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_072_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame073": {"output_dir": "bowser/frames", "rom_offset": "0x59F4D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_073_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame074": {"output_dir": "bowser/frames", "rom_offset": "0x59FC98", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_074_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame075": {"output_dir": "bowser/frames", "rom_offset": "0x5A046C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_075_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame076": {"output_dir": "bowser/frames", "rom_offset": "0x5A0C44", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_076_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame077": {"output_dir": "bowser/frames", "rom_offset": "0x5A142C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_077_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame078": {"output_dir": "bowser/frames", "rom_offset": "0x5A1C2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_078_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame079": {"output_dir": "bowser/frames", "rom_offset": "0x5A2444", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_079_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame080": {"output_dir": "bowser/frames", "rom_offset": "0x5A2C48", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_080_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame081": {"output_dir": "bowser/frames", "rom_offset": "0x5A3460", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_081_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame082": {"output_dir": "bowser/frames", "rom_offset": "0x5A3C74", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_082_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame083": {"output_dir": "bowser/frames", "rom_offset": "0x5A4494", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_083_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame084": {"output_dir": "bowser/frames", "rom_offset": "0x5A4CB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_084_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame085": {"output_dir": "bowser/frames", "rom_offset": "0x5A5394", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_085_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame086": {"output_dir": "bowser/frames", "rom_offset": "0x5A5A78", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_086_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame087": {"output_dir": "bowser/frames", "rom_offset": "0x5A6178", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_087_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame088": {"output_dir": "bowser/frames", "rom_offset": "0x5A6864", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_088_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame089": {"output_dir": "bowser/frames", "rom_offset": "0x5A6F78", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_089_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame090": {"output_dir": "bowser/frames", "rom_offset": "0x5A76B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_090_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame091": {"output_dir": "bowser/frames", "rom_offset": "0x5A7E10", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_091_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame092": {"output_dir": "bowser/frames", "rom_offset": "0x5A85A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_092_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame093": {"output_dir": "bowser/frames", "rom_offset": "0x5A8D4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_093_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame094": {"output_dir": "bowser/frames", "rom_offset": "0x5A9528", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_094_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame095": {"output_dir": "bowser/frames", "rom_offset": "0x5A9D0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_095_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame096": {"output_dir": "bowser/frames", "rom_offset": "0x5AA500", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_096_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame097": {"output_dir": "bowser/frames", "rom_offset": "0x5AAD04", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_097_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame098": {"output_dir": "bowser/frames", "rom_offset": "0x5AB514", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_098_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame099": {"output_dir": "bowser/frames", "rom_offset": "0x5ABD2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_099_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame100": {"output_dir": "bowser/frames", "rom_offset": "0x5AC540", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_100_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame101": {"output_dir": "bowser/frames", "rom_offset": "0x5ACD5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_101_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame102": {"output_dir": "bowser/frames", "rom_offset": "0x5AD590", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_102_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame103": {"output_dir": "bowser/frames", "rom_offset": "0x5ADDC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_103_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame104": {"output_dir": "bowser/frames", "rom_offset": "0x5AE5F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_104_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame105": {"output_dir": "bowser/frames", "rom_offset": "0x5AEE40", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_105_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame106": {"output_dir": "bowser/frames", "rom_offset": "0x5AF528", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_106_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame107": {"output_dir": "bowser/frames", "rom_offset": "0x5AFC38", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_107_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame108": {"output_dir": "bowser/frames", "rom_offset": "0x5B0348", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_108_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame109": {"output_dir": "bowser/frames", "rom_offset": "0x5B0A6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_109_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame110": {"output_dir": "bowser/frames", "rom_offset": "0x5B1190", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_110_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame111": {"output_dir": "bowser/frames", "rom_offset": "0x5B1904", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_111_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame112": {"output_dir": "bowser/frames", "rom_offset": "0x5B2094", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_112_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame113": {"output_dir": "bowser/frames", "rom_offset": "0x5B2844", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_113_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame114": {"output_dir": "bowser/frames", "rom_offset": "0x5B3008", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_114_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame115": {"output_dir": "bowser/frames", "rom_offset": "0x5B37E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_115_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame116": {"output_dir": "bowser/frames", "rom_offset": "0x5B3FC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_116_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame117": {"output_dir": "bowser/frames", "rom_offset": "0x5B47E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_117_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame118": {"output_dir": "bowser/frames", "rom_offset": "0x5B4FE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_118_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame119": {"output_dir": "bowser/frames", "rom_offset": "0x5B5808", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_119_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame120": {"output_dir": "bowser/frames", "rom_offset": "0x5B6040", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_120_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame121": {"output_dir": "bowser/frames", "rom_offset": "0x5B6868", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_121_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame122": {"output_dir": "bowser/frames", "rom_offset": "0x5B70A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_122_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame123": {"output_dir": "bowser/frames", "rom_offset": "0x5B78C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_123_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame124": {"output_dir": "bowser/frames", "rom_offset": "0x5B8118", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_124_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame125": {"output_dir": "bowser/frames", "rom_offset": "0x5B8938", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_125_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame126": {"output_dir": "bowser/frames", "rom_offset": "0x5B91A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_126_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame127": {"output_dir": "bowser/frames", "rom_offset": "0x5B98B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_127_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame128": {"output_dir": "bowser/frames", "rom_offset": "0x5B9FEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_128_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame129": {"output_dir": "bowser/frames", "rom_offset": "0x5BA714", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_129_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame130": {"output_dir": "bowser/frames", "rom_offset": "0x5BAE50", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_130_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame131": {"output_dir": "bowser/frames", "rom_offset": "0x5BB5B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_131_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame132": {"output_dir": "bowser/frames", "rom_offset": "0x5BBD24", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_132_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame133": {"output_dir": "bowser/frames", "rom_offset": "0x5BC4CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_133_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame134": {"output_dir": "bowser/frames", "rom_offset": "0x5BCC94", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_134_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame135": {"output_dir": "bowser/frames", "rom_offset": "0x5BD464", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_135_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame136": {"output_dir": "bowser/frames", "rom_offset": "0x5BDC5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_136_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame137": {"output_dir": "bowser/frames", "rom_offset": "0x5BE450", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_137_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame138": {"output_dir": "bowser/frames", "rom_offset": "0x5BEC74", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_138_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame139": {"output_dir": "bowser/frames", "rom_offset": "0x5BF4AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_139_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame140": {"output_dir": "bowser/frames", "rom_offset": "0x5BFCE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_140_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame141": {"output_dir": "bowser/frames", "rom_offset": "0x5C0534", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_141_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame142": {"output_dir": "bowser/frames", "rom_offset": "0x5C0D74", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_142_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame143": {"output_dir": "bowser/frames", "rom_offset": "0x5C15B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_143_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame144": {"output_dir": "bowser/frames", "rom_offset": "0x5C1E08", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_144_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame145": {"output_dir": "bowser/frames", "rom_offset": "0x5C2670", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_145_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame146": {"output_dir": "bowser/frames", "rom_offset": "0x5C2EC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_146_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame147": {"output_dir": "bowser/frames", "rom_offset": "0x5C373C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_147_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame148": {"output_dir": "bowser/frames", "rom_offset": "0x5C3E7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_148_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame149": {"output_dir": "bowser/frames", "rom_offset": "0x5C45C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_149_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame150": {"output_dir": "bowser/frames", "rom_offset": "0x5C4D20", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_150_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame151": {"output_dir": "bowser/frames", "rom_offset": "0x5C5484", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_151_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame152": {"output_dir": "bowser/frames", "rom_offset": "0x5C5C04", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_152_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame153": {"output_dir": "bowser/frames", "rom_offset": "0x5C63BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_153_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame154": {"output_dir": "bowser/frames", "rom_offset": "0x5C6B98", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_154_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame155": {"output_dir": "bowser/frames", "rom_offset": "0x5C738C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_155_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame156": {"output_dir": "bowser/frames", "rom_offset": "0x5C7B90", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_156_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame157": {"output_dir": "bowser/frames", "rom_offset": "0x5C837C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_157_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame158": {"output_dir": "bowser/frames", "rom_offset": "0x5C8B7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_158_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame159": {"output_dir": "bowser/frames", "rom_offset": "0x5C93B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_159_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame160": {"output_dir": "bowser/frames", "rom_offset": "0x5C9BF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_160_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame161": {"output_dir": "bowser/frames", "rom_offset": "0x5CA460", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_161_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame162": {"output_dir": "bowser/frames", "rom_offset": "0x5CACCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_162_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame163": {"output_dir": "bowser/frames", "rom_offset": "0x5CB514", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_163_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame164": {"output_dir": "bowser/frames", "rom_offset": "0x5CBD84", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_164_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame165": {"output_dir": "bowser/frames", "rom_offset": "0x5CC5F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_165_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame166": {"output_dir": "bowser/frames", "rom_offset": "0x5CCE98", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_166_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame167": {"output_dir": "bowser/frames", "rom_offset": "0x5CD720", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_167_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame168": {"output_dir": "bowser/frames", "rom_offset": "0x5CDFB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_168_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame169": {"output_dir": "bowser/frames", "rom_offset": "0x5CE70C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_169_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame170": {"output_dir": "bowser/frames", "rom_offset": "0x5CEE84", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_170_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame171": {"output_dir": "bowser/frames", "rom_offset": "0x5CF600", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_171_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame172": {"output_dir": "bowser/frames", "rom_offset": "0x5CFD90", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_172_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame173": {"output_dir": "bowser/frames", "rom_offset": "0x5D0564", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_173_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame174": {"output_dir": "bowser/frames", "rom_offset": "0x5D0D2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_174_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame175": {"output_dir": "bowser/frames", "rom_offset": "0x5D151C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_175_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame176": {"output_dir": "bowser/frames", "rom_offset": "0x5D1D28", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_176_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame177": {"output_dir": "bowser/frames", "rom_offset": "0x5D252C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_177_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame178": {"output_dir": "bowser/frames", "rom_offset": "0x5D2D54", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_178_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame179": {"output_dir": "bowser/frames", "rom_offset": "0x5D3588", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_179_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame180": {"output_dir": "bowser/frames", "rom_offset": "0x5D3DD0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_180_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame181": {"output_dir": "bowser/frames", "rom_offset": "0x5D4634", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_181_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame182": {"output_dir": "bowser/frames", "rom_offset": "0x5D4EA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_182_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame183": {"output_dir": "bowser/frames", "rom_offset": "0x5D573C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_183_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame184": {"output_dir": "bowser/frames", "rom_offset": "0x5D5FC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_184_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame185": {"output_dir": "bowser/frames", "rom_offset": "0x5D6874", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_185_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame186": {"output_dir": "bowser/frames", "rom_offset": "0x5D70F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_186_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame187": {"output_dir": "bowser/frames", "rom_offset": "0x5D799C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_187_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame188": {"output_dir": "bowser/frames", "rom_offset": "0x5D8238", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_188_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame189": {"output_dir": "bowser/frames", "rom_offset": "0x5D8AE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_189_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame190": {"output_dir": "bowser/frames", "rom_offset": "0x5D9160", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_190_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame191": {"output_dir": "bowser/frames", "rom_offset": "0x5D981C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_191_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame192": {"output_dir": "bowser/frames", "rom_offset": "0x5D9F44", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_192_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame193": {"output_dir": "bowser/frames", "rom_offset": "0x5DA694", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_193_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame194": {"output_dir": "bowser/frames", "rom_offset": "0x5DAE20", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_194_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame195": {"output_dir": "bowser/frames", "rom_offset": "0x5DB5C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_195_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame196": {"output_dir": "bowser/frames", "rom_offset": "0x5DBDAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_196_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame197": {"output_dir": "bowser/frames", "rom_offset": "0x5DC5C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_197_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame198": {"output_dir": "bowser/frames", "rom_offset": "0x5DCDEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_198_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame199": {"output_dir": "bowser/frames", "rom_offset": "0x5DD680", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_199_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame200": {"output_dir": "bowser/frames", "rom_offset": "0x5DDF28", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_200_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame201": {"output_dir": "bowser/frames", "rom_offset": "0x5DE7FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_201_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame202": {"output_dir": "bowser/frames", "rom_offset": "0x5DF0CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_202_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame203": {"output_dir": "bowser/frames", "rom_offset": "0x5DF9B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_203_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame204": {"output_dir": "bowser/frames", "rom_offset": "0x5E0288", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_204_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame205": {"output_dir": "bowser/frames", "rom_offset": "0x5E0B48", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_205_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame206": {"output_dir": "bowser/frames", "rom_offset": "0x5E13A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_206_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame207": {"output_dir": "bowser/frames", "rom_offset": "0x5E1BE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_207_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame208": {"output_dir": "bowser/frames", "rom_offset": "0x5E2430", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_208_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame209": {"output_dir": "bowser/frames", "rom_offset": "0x5E2C60", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_209_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame210": {"output_dir": "bowser/frames", "rom_offset": "0x5E3320", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_210_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame211": {"output_dir": "bowser/frames", "rom_offset": "0x5E3A34", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_211_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame212": {"output_dir": "bowser/frames", "rom_offset": "0x5E41B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_212_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame213": {"output_dir": "bowser/frames", "rom_offset": "0x5E4968", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_213_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame214": {"output_dir": "bowser/frames", "rom_offset": "0x5E5108", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_214_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame215": {"output_dir": "bowser/frames", "rom_offset": "0x5E58E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_215_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame216": {"output_dir": "bowser/frames", "rom_offset": "0x5E6114", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_216_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame217": {"output_dir": "bowser/frames", "rom_offset": "0x5E6958", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_217_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame218": {"output_dir": "bowser/frames", "rom_offset": "0x5E71C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_218_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame219": {"output_dir": "bowser/frames", "rom_offset": "0x5E7A3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_219_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame220": {"output_dir": "bowser/frames", "rom_offset": "0x5E82B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_220_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame221": {"output_dir": "bowser/frames", "rom_offset": "0x5E8B70", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_221_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame222": {"output_dir": "bowser/frames", "rom_offset": "0x5E942C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_222_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame223": {"output_dir": "bowser/frames", "rom_offset": "0x5E9CD0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_223_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame224": {"output_dir": "bowser/frames", "rom_offset": "0x5EA570", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_224_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame225": {"output_dir": "bowser/frames", "rom_offset": "0x5EADF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_225_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame226": {"output_dir": "bowser/frames", "rom_offset": "0x5EB620", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_226_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame227": {"output_dir": "bowser/frames", "rom_offset": "0x5EBE3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_227_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame228": {"output_dir": "bowser/frames", "rom_offset": "0x5EC658", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_228_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame229": {"output_dir": "bowser/frames", "rom_offset": "0x5ECE34", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_229_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame230": {"output_dir": "bowser/frames", "rom_offset": "0x5ED528", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_230_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame231": {"output_dir": "bowser/frames", "rom_offset": "0x5EDC88", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_231_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame232": {"output_dir": "bowser/frames", "rom_offset": "0x5EE434", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_232_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame233": {"output_dir": "bowser/frames", "rom_offset": "0x5EEC04", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_233_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame234": {"output_dir": "bowser/frames", "rom_offset": "0x5EF408", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_234_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame235": {"output_dir": "bowser/frames", "rom_offset": "0x5EFC30", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_235_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame236": {"output_dir": "bowser/frames", "rom_offset": "0x5F0478", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_236_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame237": {"output_dir": "bowser/frames", "rom_offset": "0x5F0CD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_237_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame238": {"output_dir": "bowser/frames", "rom_offset": "0x5F153C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_238_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame239": {"output_dir": "bowser/frames", "rom_offset": "0x5F1DBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_239_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame240": {"output_dir": "bowser/frames", "rom_offset": "0x5F2654", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_240_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame241": {"output_dir": "bowser/frames", "rom_offset": "0x5F2F04", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_241_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame242": {"output_dir": "bowser/frames", "rom_offset": "0x5F3754", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_242_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame243": {"output_dir": "bowser/frames", "rom_offset": "0x5F3FE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_243_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame244": {"output_dir": "bowser/frames", "rom_offset": "0x5F485C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_244_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame245": {"output_dir": "bowser/frames", "rom_offset": "0x5F5098", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_245_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame246": {"output_dir": "bowser/frames", "rom_offset": "0x5F5898", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_246_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame247": {"output_dir": "bowser/frames", "rom_offset": "0x5F6070", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_247_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame248": {"output_dir": "bowser/frames", "rom_offset": "0x5F6850", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_248_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame249": {"output_dir": "bowser/frames", "rom_offset": "0x5F700C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_249_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame250": {"output_dir": "bowser/frames", "rom_offset": "0x5F774C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_250_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame251": {"output_dir": "bowser/frames", "rom_offset": "0x5F7EDC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_251_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame252": {"output_dir": "bowser/frames", "rom_offset": "0x5F86A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_252_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame253": {"output_dir": "bowser/frames", "rom_offset": "0x5F8E98", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_253_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame254": {"output_dir": "bowser/frames", "rom_offset": "0x5F96AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_254_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame255": {"output_dir": "bowser/frames", "rom_offset": "0x5F9EEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_255_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame256": {"output_dir": "bowser/frames", "rom_offset": "0x5FA764", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_256_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame257": {"output_dir": "bowser/frames", "rom_offset": "0x5FAFE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_257_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame258": {"output_dir": "bowser/frames", "rom_offset": "0x5FB858", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_258_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame259": {"output_dir": "bowser/frames", "rom_offset": "0x5FC0EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_259_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame260": {"output_dir": "bowser/frames", "rom_offset": "0x5FC988", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_260_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame261": {"output_dir": "bowser/frames", "rom_offset": "0x5FD220", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_261_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame262": {"output_dir": "bowser/frames", "rom_offset": "0x5FDA90", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_262_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame263": {"output_dir": "bowser/frames", "rom_offset": "0x5FE2D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_263_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame264": {"output_dir": "bowser/frames", "rom_offset": "0x5FEAFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_264_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame265": {"output_dir": "bowser/frames", "rom_offset": "0x5FF304", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_265_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame266": {"output_dir": "bowser/frames", "rom_offset": "0x5FFAD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_266_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame267": {"output_dir": "bowser/frames", "rom_offset": "0x60027C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_267_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame268": {"output_dir": "bowser/frames", "rom_offset": "0x600A14", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_268_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame269": {"output_dir": "bowser/frames", "rom_offset": "0x601184", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_269_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame270": {"output_dir": "bowser/frames", "rom_offset": "0x601930", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_270_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame271": {"output_dir": "bowser/frames", "rom_offset": "0x6020F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_271_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame272": {"output_dir": "bowser/frames", "rom_offset": "0x6028D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_272_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame273": {"output_dir": "bowser/frames", "rom_offset": "0x6030F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_273_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame274": {"output_dir": "bowser/frames", "rom_offset": "0x603940", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_274_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame275": {"output_dir": "bowser/frames", "rom_offset": "0x6041D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_275_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame276": {"output_dir": "bowser/frames", "rom_offset": "0x604A6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_276_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame277": {"output_dir": "bowser/frames", "rom_offset": "0x605310", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_277_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame278": {"output_dir": "bowser/frames", "rom_offset": "0x605B90", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_278_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame279": {"output_dir": "bowser/frames", "rom_offset": "0x606428", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_279_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame280": {"output_dir": "bowser/frames", "rom_offset": "0x606C90", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_280_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame281": {"output_dir": "bowser/frames", "rom_offset": "0x6074F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_281_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame282": {"output_dir": "bowser/frames", "rom_offset": "0x607D54", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_282_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame283": {"output_dir": "bowser/frames", "rom_offset": "0x608564", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_283_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame284": {"output_dir": "bowser/frames", "rom_offset": "0x608D34", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_284_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame285": {"output_dir": "bowser/frames", "rom_offset": "0x6094DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_285_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame286": {"output_dir": "bowser/frames", "rom_offset": "0x609C48", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_286_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame287": {"output_dir": "bowser/frames", "rom_offset": "0x60A380", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_287_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame288": {"output_dir": "bowser/frames", "rom_offset": "0x60AAAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_288_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame289": {"output_dir": "bowser/frames", "rom_offset": "0x60B1A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame290": {"output_dir": "bowser/frames", "rom_offset": "0x60B80C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame291": {"output_dir": "bowser/frames", "rom_offset": "0x60BE98", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame292": {"output_dir": "bowser/frames", "rom_offset": "0x60C5B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame293": {"output_dir": "bowser/frames", "rom_offset": "0x60CD70", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame294": {"output_dir": "bowser/frames", "rom_offset": "0x60D470", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame295": {"output_dir": "bowser/frames", "rom_offset": "0x60DC1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame296": {"output_dir": "bowser/frames", "rom_offset": "0x60E3FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame297": {"output_dir": "bowser/frames", "rom_offset": "0x60EBC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame298": {"output_dir": "bowser/frames", "rom_offset": "0x60F2D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame299": {"output_dir": "bowser/frames", "rom_offset": "0x60FA04", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame300": {"output_dir": "bowser/frames", "rom_offset": "0x610168", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame301": {"output_dir": "bowser/frames", "rom_offset": "0x6108E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame302": {"output_dir": "bowser/frames", "rom_offset": "0x61109C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame303": {"output_dir": "bowser/frames", "rom_offset": "0x6118D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame304": {"output_dir": "bowser/frames", "rom_offset": "0x6120AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame305": {"output_dir": "bowser/frames", "rom_offset": "0x6127F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame306": {"output_dir": "bowser/frames", "rom_offset": "0x612DC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame307": {"output_dir": "bowser/frames", "rom_offset": "0x6134D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame308": {"output_dir": "bowser/frames", "rom_offset": "0x613C60", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame309": {"output_dir": "bowser/frames", "rom_offset": "0x614440", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame310": {"output_dir": "bowser/frames", "rom_offset": "0x614B7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame311": {"output_dir": "bowser/frames", "rom_offset": "0x615334", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame312": {"output_dir": "bowser/frames", "rom_offset": "0x615B2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame313": {"output_dir": "bowser/frames", "rom_offset": "0x6162C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame314": {"output_dir": "bowser/frames", "rom_offset": "0x6169DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame315": {"output_dir": "bowser/frames", "rom_offset": "0x61710C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame316": {"output_dir": "bowser/frames", "rom_offset": "0x617854", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame317": {"output_dir": "bowser/frames", "rom_offset": "0x617FDC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame318": {"output_dir": "bowser/frames", "rom_offset": "0x61873C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame319": {"output_dir": "bowser/frames", "rom_offset": "0x618F40", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"bowser_kart_frame320": {"output_dir": "bowser/frames", "rom_offset": "0x619730", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"kart_000_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x619EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x619F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x619FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61A078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61A0F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61A178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61A1F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61A278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61A2F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61A378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61A3F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61A478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61A4F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61A578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61A5F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61A678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61A6F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61A778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61A7F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61A878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61A8F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61A978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61A9F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61AA78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61AAF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61AB78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61ABF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61AC78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61ACF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61AD78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61ADF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61AE78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61AEF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61AF78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61AFF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61B078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61B0F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61B178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61B1F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61B278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61B2F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61B378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61B3F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61B478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61B4F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61B578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61B5F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61B678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61B6F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61B778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61B7F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61B878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61B8F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61B978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61B9F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61BA78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61BAF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61BB78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61BBF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61BC78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61BCF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61BD78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61BDF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61BE78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61BEF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61BF78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61BFF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61C078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61C0F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61C178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61C1F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61C278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61C2F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61C378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61C3F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61C478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61C4F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61C578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61C5F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61C678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61C6F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61C778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61C7F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61C878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61C8F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61C978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61C9F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61CA78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61CAF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61CB78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61CBF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61CC78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61CCF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61CD78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61CDF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61CE78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61CEF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61CF78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61CFF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61D078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61D0F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61D178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61D1F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61D278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61D2F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61D378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61D3F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61D478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61D4F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61D578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61D5F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61D678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61D6F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61D778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61D7F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61D878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61D8F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61D978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61D9F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61DA78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61DAF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61DB78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61DBF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61DC78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61DCF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61DD78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61DDF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61DE78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61DEF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61DF78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61DFF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61E078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61E0F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61E178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61E1F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61E278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61E2F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61E378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61E3F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61E478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61E4F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61E578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61E5F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61E678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61E6F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61E778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61E7F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61E878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61E8F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61E978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61E9F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61EA78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61EAF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61EB78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61EBF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61EC78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61ECF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61ED78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61EDF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61EE78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61EEF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61EF78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61EFF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61F078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61F0F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61F178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61F1F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61F278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61F2F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61F378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61F3F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61F478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61F4F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61F578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61F5F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61F678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61F6F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61F778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61F7F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61F878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61F8F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61F978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61F9F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61FA78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61FAF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61FB78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61FBF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61FC78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61FCF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61FD78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61FDF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61FE78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61FEF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61FF78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61FFF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x620078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6200F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x620178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6201F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x620278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6202F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x620378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6203F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x620478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6204F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x620578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6205F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x620678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6206F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x620778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6207F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x620878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6208F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x620978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6209F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x620A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x620AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x620B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x620BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x620C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x620CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x620D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x620DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x620E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x620EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x620F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x620FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x621078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6210F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x621178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6211F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x621278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6212F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x621378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6213F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x621478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6214F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x621578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6215F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x621678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6216F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x621778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6217F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x621878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6218F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x621978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6219F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x621A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x621AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x621B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x621BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x621C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x621CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x621D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x621DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x621E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x621EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x621F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x621FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x622078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6220F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x622178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6221F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x622278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6222F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x622378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6223F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x622478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6224F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x622578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6225F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x622678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6226F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x622778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6227F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x622878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6228F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x622978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6229F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x622A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x622AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x622B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x622BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x622C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x622CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x622D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x622DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x622E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x622EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x622F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x622FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x623078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6230F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x623178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6231F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x623278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6232F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x623378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6233F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x623478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6234F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x623578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6235F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x623678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6236F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x623778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6237F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x623878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6238F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x623978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6239F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x623A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x623AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x623B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x623BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x623C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x623CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x623D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x623DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x623E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x623EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x623F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x623FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x624078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6240F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x624178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6241F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x624278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6242F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x624378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6243F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x624478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6244F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x624578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6245F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x624678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6246F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x624778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6247F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x624878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6248F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x624978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6249F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x624A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x624AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x624B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x624BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x624C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x624CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x624D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x624DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x624E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x624EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x624F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x624FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x625078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6250F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x625178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6251F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x625278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6252F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x625378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6253F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x625478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6254F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x625578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6255F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x625678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6256F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x625778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6257F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x625878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6258F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x625978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6259F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x625A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x625AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x625B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x625BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x625C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x625CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x625D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x625DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x625E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x625EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x625F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x625FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x626078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6260F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x626178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6261F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x626278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6262F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x626378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6263F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x626478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6264F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x626578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6265F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x626678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6266F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x626778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6267F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x626878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6268F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x626978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6269F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x626A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x626AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x626B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x626BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x626C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x626CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x626D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x626DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x626E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x626EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x626F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x626FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x627078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6270F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x627178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6271F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x627278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6272F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x627378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6273F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x627478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6274F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x627578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6275F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x627678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6276F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x627778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6277F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x627878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6278F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x627978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6279F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x627A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x627AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x627B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x627BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x627C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x627CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x627D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x627DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x627E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x627EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x627F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x627FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x628078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6280F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x628178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6281F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x628278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6282F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x628378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6283F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x628478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6284F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x628578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6285F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x628678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6286F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x628778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6287F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x628878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6288F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x628978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6289F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x628A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x628AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x628B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x628BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x628C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x628CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x628D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x628DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x628E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x628EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x628F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x628FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x629078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6290F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x629178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6291F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x629278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6292F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x629378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6293F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x629478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6294F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x629578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6295F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x629678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6296F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x629778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6297F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x629878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6298F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x629978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6299F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x629A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x629AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x629B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x629BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x629C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x629CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x629D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x629DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x629E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x629EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x629F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x629FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62A078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62A0F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62A178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62A1F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62A278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62A2F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62A378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62A3F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62A478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62A4F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62A578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62A5F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62A678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62A6F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62A778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62A7F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62A878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62A8F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62A978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62A9F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62AA78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62AAF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62AB78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62ABF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62AC78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62ACF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62AD78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62ADF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62AE78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62AEF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62AF78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62AFF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62B078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62B0F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62B178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62B1F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62B278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62B2F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62B378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62B3F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62B478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62B4F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62B578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62B5F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62B678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62B6F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62B778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62B7F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62B878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62B8F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62B978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62B9F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62BA78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62BAF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62BB78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62BBF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62BC78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62BCF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62BD78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62BDF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62BE78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62BEF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62BF78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62BFF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62C078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62C0F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62C178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62C1F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62C278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62C2F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62C378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62C3F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62C478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62C4F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62C578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62C5F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62C678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62C6F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62C778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62C7F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62C878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62C8F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62C978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62C9F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62CA78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62CAF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62CB78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62CBF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62CC78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62CCF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62CD78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62CDF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62CE78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62CEF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62CF78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62CFF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62D078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62D0F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62D178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62D1F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62D278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62D2F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62D378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62D3F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62D478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62D4F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62D578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62D5F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62D678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62D6F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62D778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62D7F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62D878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62D8F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62D978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62D9F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62DA78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62DAF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62DB78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62DBF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62DC78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62DCF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62DD78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62DDF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62DE78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62DEF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62DF78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62DFF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62E078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62E0F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62E178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62E1F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62E278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62E2F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62E378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62E3F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62E478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62E4F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62E578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62E5F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62E678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62E6F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62E778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62E7F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62E878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62E8F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62E978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62E9F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62EA78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62EAF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62EB78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62EBF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62EC78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62ECF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62ED78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62EDF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62EE78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62EEF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62EF78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62EFF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62F078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62F0F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62F178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62F1F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62F278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62F2F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62F378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62F3F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62F478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62F4F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62F578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62F5F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62F678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62F6F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62F778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62F7F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62F878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62F8F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62F978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62F9F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62FA78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62FAF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62FB78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62FBF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62FC78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62FCF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62FD78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62FDF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62FE78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62FEF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62FF78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62FFF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x630078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6300F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x630178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6301F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x630278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6302F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x630378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6303F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x630478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6304F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x630578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6305F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x630678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6306F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x630778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6307F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x630878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6308F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x630978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6309F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x630A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x630AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x630B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x630BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x630C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x630CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x630D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x630DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x630E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x630EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x630F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x630FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x631078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6310F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x631178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6311F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x631278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6312F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x631378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6313F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x631478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6314F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x631578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6315F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x631678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6316F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x631778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6317F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x631878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6318F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x631978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6319F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x631A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x631AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x631B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x631BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x631C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x631CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x631D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x631DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x631E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x631EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x631F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x631FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x632078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6320F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x632178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6321F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x632278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6322F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x632378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6323F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x632478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6324F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x632578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6325F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x632678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6326F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x632778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6327F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x632878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6328F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x632978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6329F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x632A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x632AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x632B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x632BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x632C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x632CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x632D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x632DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x632E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x632EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x632F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x632FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x633078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6330F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x633178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6331F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x633278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6332F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x633378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6333F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x633478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6334F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x633578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6335F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x633678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6336F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x633778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6337F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x633878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6338F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x633978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6339F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x633A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x633AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x633B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x633BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x633C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x633CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x633D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x633DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x633E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x633EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x633F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x633FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x634078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6340F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x634178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6341F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x634278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6342F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x634378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6343F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x634478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6344F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x634578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6345F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x634678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6346F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x634778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6347F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x634878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6348F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x634978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6349F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x634A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x634AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x634B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x634BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x634C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x634CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x634D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x634DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x634E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x634EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x634F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x634FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x635078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6350F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x635178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6351F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x635278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6352F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x635378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6353F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x635478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6354F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x635578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6355F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x635678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6356F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x635778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6357F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x635878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6358F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x635978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6359F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x635A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x635AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x635B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x635BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x635C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x635CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x635D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x635DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x635E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x635EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x635F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x635FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x636078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6360F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x636178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6361F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x636278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6362F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x636378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6363F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x636478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6364F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x636578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6365F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x636678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6366F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x636778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6367F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x636878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6368F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x636978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6369F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x636A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x636AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x636B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x636BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x636C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x636CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x636D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x636DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x636E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x636EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x636F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x636FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x637078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6370F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x637178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6371F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x637278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6372F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x637378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6373F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x637478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6374F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x637578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6375F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x637678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6376F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x637778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6377F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x637878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6378F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x637978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6379F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x637A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x637AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x637B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x637BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x637C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x637CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x637D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x637DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x637E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x637EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x637F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x637FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x638078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6380F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x638178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6381F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x638278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6382F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x638378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6383F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x638478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6384F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x638578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6385F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x638678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6386F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x638778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6387F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x638878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6388F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x638978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6389F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x638A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x638AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x638B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x638BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x638C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x638CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x638D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x638DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x638E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x638EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x638F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x638FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x639078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6390F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x639178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6391F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x639278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6392F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x639378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6393F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x639478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6394F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x639578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6395F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x639678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6396F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x639778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6397F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x639878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6398F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x639978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6399F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x639A78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x639AF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x639B78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x639BF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x639C78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x639CF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x639D78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x639DF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x639E78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x639EF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x639F78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x639FF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63A078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63A0F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63A178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63A1F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63A278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63A2F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63A378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63A3F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63A478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63A4F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63A578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63A5F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63A678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63A6F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63A778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63A7F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63A878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63A8F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63A978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63A9F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63AA78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63AAF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63AB78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63ABF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63AC78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63ACF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63AD78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63ADF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63AE78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63AEF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63AF78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63AFF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63B078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63B0F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63B178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63B1F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63B278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63B2F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63B378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63B3F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63B478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63B4F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63B578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63B5F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63B678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63B6F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63B778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63B7F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63B878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63B8F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63B978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63B9F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63BA78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63BAF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63BB78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63BBF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63BC78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63BCF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63BD78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63BDF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63BE78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63BEF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63BF78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63BFF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63C078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63C0F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63C178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63C1F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63C278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63C2F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63C378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63C3F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63C478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63C4F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63C578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63C5F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63C678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63C6F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63C778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63C7F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63C878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63C8F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63C978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63C9F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63CA78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63CAF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63CB78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63CBF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63CC78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63CCF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63CD78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63CDF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63CE78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63CEF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63CF78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63CFF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63D078", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63D0F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63D178", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63D1F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63D278", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63D2F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63D378", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63D3F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63D478", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63D4F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63D578", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63D5F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63D678", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63D6F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63D778", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63D7F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63D878", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63D8F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63D978", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63D9F8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63DA78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63DAF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63DB78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63DBF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63DC78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63DCF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63DD78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63DDF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63DE78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63DEF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63DF78", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63DFF8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63E078", "width": 16, "height": 4, "type": "rgba16"}, -"bowser_kart_palette": {"output_dir": "bowser/palettes", "rom_offset": "0x63E0F8", "width": 16, "height": 12, "type": "rgba16"} +"bowser_kart_frame000": {"output_dir": "bowser/frames", "rom_offset": "0x57DE70", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x583EA0"}}, +"bowser_kart_frame001": {"output_dir": "bowser/frames", "rom_offset": "0x57E4C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_001_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5844F8"}}, +"bowser_kart_frame002": {"output_dir": "bowser/frames", "rom_offset": "0x57EB4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_002_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x584B7C"}}, +"bowser_kart_frame003": {"output_dir": "bowser/frames", "rom_offset": "0x57F1CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_003_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5851FC"}}, +"bowser_kart_frame004": {"output_dir": "bowser/frames", "rom_offset": "0x57F830", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_004_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x585860"}}, +"bowser_kart_frame005": {"output_dir": "bowser/frames", "rom_offset": "0x57FED0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_005_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x585F00"}}, +"bowser_kart_frame006": {"output_dir": "bowser/frames", "rom_offset": "0x580580", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_006_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5865B0"}}, +"bowser_kart_frame007": {"output_dir": "bowser/frames", "rom_offset": "0x580C64", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_007_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x586C94"}}, +"bowser_kart_frame008": {"output_dir": "bowser/frames", "rom_offset": "0x581380", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_008_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5873B0"}}, +"bowser_kart_frame009": {"output_dir": "bowser/frames", "rom_offset": "0x581AAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_009_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x587ADC"}}, +"bowser_kart_frame010": {"output_dir": "bowser/frames", "rom_offset": "0x5821F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_010_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x588228"}}, +"bowser_kart_frame011": {"output_dir": "bowser/frames", "rom_offset": "0x582964", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_011_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x588994"}}, +"bowser_kart_frame012": {"output_dir": "bowser/frames", "rom_offset": "0x5830DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_012_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x58910C"}}, +"bowser_kart_frame013": {"output_dir": "bowser/frames", "rom_offset": "0x583858", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_013_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x589888"}}, +"bowser_kart_frame014": {"output_dir": "bowser/frames", "rom_offset": "0x583FF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_014_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x58A028"}}, +"bowser_kart_frame015": {"output_dir": "bowser/frames", "rom_offset": "0x5847AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_015_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x58A7DC"}}, +"bowser_kart_frame016": {"output_dir": "bowser/frames", "rom_offset": "0x584F64", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_016_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x58AF94"}}, +"bowser_kart_frame017": {"output_dir": "bowser/frames", "rom_offset": "0x585734", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_017_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x58B764"}}, +"bowser_kart_frame018": {"output_dir": "bowser/frames", "rom_offset": "0x585EF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_018_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x58BF24"}}, +"bowser_kart_frame019": {"output_dir": "bowser/frames", "rom_offset": "0x5866A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_019_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x58C6D8"}}, +"bowser_kart_frame020": {"output_dir": "bowser/frames", "rom_offset": "0x586E84", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_020_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x58CEB4"}}, +"bowser_kart_frame021": {"output_dir": "bowser/frames", "rom_offset": "0x587658", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_021_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x58D688"}}, +"bowser_kart_frame022": {"output_dir": "bowser/frames", "rom_offset": "0x587CCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_022_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x58DCFC"}}, +"bowser_kart_frame023": {"output_dir": "bowser/frames", "rom_offset": "0x58836C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_023_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x58E39C"}}, +"bowser_kart_frame024": {"output_dir": "bowser/frames", "rom_offset": "0x5889F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_024_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x58EA24"}}, +"bowser_kart_frame025": {"output_dir": "bowser/frames", "rom_offset": "0x589078", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_025_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x58F0A8"}}, +"bowser_kart_frame026": {"output_dir": "bowser/frames", "rom_offset": "0x589708", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_026_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x58F738"}}, +"bowser_kart_frame027": {"output_dir": "bowser/frames", "rom_offset": "0x589DC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_027_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x58FDF8"}}, +"bowser_kart_frame028": {"output_dir": "bowser/frames", "rom_offset": "0x58A4E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_028_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x590510"}}, +"bowser_kart_frame029": {"output_dir": "bowser/frames", "rom_offset": "0x58AC10", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_029_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x590C40"}}, +"bowser_kart_frame030": {"output_dir": "bowser/frames", "rom_offset": "0x58B35C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_030_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59138C"}}, +"bowser_kart_frame031": {"output_dir": "bowser/frames", "rom_offset": "0x58BAC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_031_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x591AF0"}}, +"bowser_kart_frame032": {"output_dir": "bowser/frames", "rom_offset": "0x58C24C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_032_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59227C"}}, +"bowser_kart_frame033": {"output_dir": "bowser/frames", "rom_offset": "0x58C9DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_033_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x592A0C"}}, +"bowser_kart_frame034": {"output_dir": "bowser/frames", "rom_offset": "0x58D198", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_034_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5931C8"}}, +"bowser_kart_frame035": {"output_dir": "bowser/frames", "rom_offset": "0x58D95C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_035_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59398C"}}, +"bowser_kart_frame036": {"output_dir": "bowser/frames", "rom_offset": "0x58E12C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_036_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59415C"}}, +"bowser_kart_frame037": {"output_dir": "bowser/frames", "rom_offset": "0x58E8F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_037_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x594920"}}, +"bowser_kart_frame038": {"output_dir": "bowser/frames", "rom_offset": "0x58F0C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_038_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5950F4"}}, +"bowser_kart_frame039": {"output_dir": "bowser/frames", "rom_offset": "0x58F890", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_039_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5958C0"}}, +"bowser_kart_frame040": {"output_dir": "bowser/frames", "rom_offset": "0x590078", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_040_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5960A8"}}, +"bowser_kart_frame041": {"output_dir": "bowser/frames", "rom_offset": "0x590854", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_041_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x596884"}}, +"bowser_kart_frame042": {"output_dir": "bowser/frames", "rom_offset": "0x59105C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_042_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59708C"}}, +"bowser_kart_frame043": {"output_dir": "bowser/frames", "rom_offset": "0x5916FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_043_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59772C"}}, +"bowser_kart_frame044": {"output_dir": "bowser/frames", "rom_offset": "0x591DB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_044_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x597DE8"}}, +"bowser_kart_frame045": {"output_dir": "bowser/frames", "rom_offset": "0x592464", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_045_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x598494"}}, +"bowser_kart_frame046": {"output_dir": "bowser/frames", "rom_offset": "0x592B24", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_046_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x598B54"}}, +"bowser_kart_frame047": {"output_dir": "bowser/frames", "rom_offset": "0x593204", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_047_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x599234"}}, +"bowser_kart_frame048": {"output_dir": "bowser/frames", "rom_offset": "0x5938EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_048_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59991C"}}, +"bowser_kart_frame049": {"output_dir": "bowser/frames", "rom_offset": "0x594010", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_049_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59A040"}}, +"bowser_kart_frame050": {"output_dir": "bowser/frames", "rom_offset": "0x594774", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_050_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59A7A4"}}, +"bowser_kart_frame051": {"output_dir": "bowser/frames", "rom_offset": "0x594EE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_051_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59AF18"}}, +"bowser_kart_frame052": {"output_dir": "bowser/frames", "rom_offset": "0x595698", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_052_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59B6C8"}}, +"bowser_kart_frame053": {"output_dir": "bowser/frames", "rom_offset": "0x595E3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_053_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59BE6C"}}, +"bowser_kart_frame054": {"output_dir": "bowser/frames", "rom_offset": "0x596604", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_054_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59C634"}}, +"bowser_kart_frame055": {"output_dir": "bowser/frames", "rom_offset": "0x596DD0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_055_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59CE00"}}, +"bowser_kart_frame056": {"output_dir": "bowser/frames", "rom_offset": "0x597590", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_056_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59D5C0"}}, +"bowser_kart_frame057": {"output_dir": "bowser/frames", "rom_offset": "0x597D80", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_057_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59DDB0"}}, +"bowser_kart_frame058": {"output_dir": "bowser/frames", "rom_offset": "0x59855C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_058_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59E58C"}}, +"bowser_kart_frame059": {"output_dir": "bowser/frames", "rom_offset": "0x598D40", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_059_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59ED70"}}, +"bowser_kart_frame060": {"output_dir": "bowser/frames", "rom_offset": "0x599528", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_060_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59F558"}}, +"bowser_kart_frame061": {"output_dir": "bowser/frames", "rom_offset": "0x599D24", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_061_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x59FD54"}}, +"bowser_kart_frame062": {"output_dir": "bowser/frames", "rom_offset": "0x59A53C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_062_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A056C"}}, +"bowser_kart_frame063": {"output_dir": "bowser/frames", "rom_offset": "0x59AD60", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_063_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A0D90"}}, +"bowser_kart_frame064": {"output_dir": "bowser/frames", "rom_offset": "0x59B42C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_064_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A145C"}}, +"bowser_kart_frame065": {"output_dir": "bowser/frames", "rom_offset": "0x59BB08", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_065_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A1B38"}}, +"bowser_kart_frame066": {"output_dir": "bowser/frames", "rom_offset": "0x59C208", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_066_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A2238"}}, +"bowser_kart_frame067": {"output_dir": "bowser/frames", "rom_offset": "0x59C8E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_067_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A2918"}}, +"bowser_kart_frame068": {"output_dir": "bowser/frames", "rom_offset": "0x59CFBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_068_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A2FEC"}}, +"bowser_kart_frame069": {"output_dir": "bowser/frames", "rom_offset": "0x59D6DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_069_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A370C"}}, +"bowser_kart_frame070": {"output_dir": "bowser/frames", "rom_offset": "0x59DE2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_070_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A3E5C"}}, +"bowser_kart_frame071": {"output_dir": "bowser/frames", "rom_offset": "0x59E594", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_071_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A45C4"}}, +"bowser_kart_frame072": {"output_dir": "bowser/frames", "rom_offset": "0x59ED14", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_072_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A4D44"}}, +"bowser_kart_frame073": {"output_dir": "bowser/frames", "rom_offset": "0x59F4D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_073_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A5508"}}, +"bowser_kart_frame074": {"output_dir": "bowser/frames", "rom_offset": "0x59FC98", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_074_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A5CC8"}}, +"bowser_kart_frame075": {"output_dir": "bowser/frames", "rom_offset": "0x5A046C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_075_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A649C"}}, +"bowser_kart_frame076": {"output_dir": "bowser/frames", "rom_offset": "0x5A0C44", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_076_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A6C74"}}, +"bowser_kart_frame077": {"output_dir": "bowser/frames", "rom_offset": "0x5A142C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_077_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A745C"}}, +"bowser_kart_frame078": {"output_dir": "bowser/frames", "rom_offset": "0x5A1C2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_078_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A7C5C"}}, +"bowser_kart_frame079": {"output_dir": "bowser/frames", "rom_offset": "0x5A2444", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_079_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A8474"}}, +"bowser_kart_frame080": {"output_dir": "bowser/frames", "rom_offset": "0x5A2C48", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_080_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A8C78"}}, +"bowser_kart_frame081": {"output_dir": "bowser/frames", "rom_offset": "0x5A3460", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_081_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A9490"}}, +"bowser_kart_frame082": {"output_dir": "bowser/frames", "rom_offset": "0x5A3C74", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_082_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5A9CA4"}}, +"bowser_kart_frame083": {"output_dir": "bowser/frames", "rom_offset": "0x5A4494", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_083_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5AA4C4"}}, +"bowser_kart_frame084": {"output_dir": "bowser/frames", "rom_offset": "0x5A4CB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_084_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5AACE8"}}, +"bowser_kart_frame085": {"output_dir": "bowser/frames", "rom_offset": "0x5A5394", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_085_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5AB3C4"}}, +"bowser_kart_frame086": {"output_dir": "bowser/frames", "rom_offset": "0x5A5A78", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_086_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5ABAA8"}}, +"bowser_kart_frame087": {"output_dir": "bowser/frames", "rom_offset": "0x5A6178", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_087_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5AC1A8"}}, +"bowser_kart_frame088": {"output_dir": "bowser/frames", "rom_offset": "0x5A6864", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_088_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5AC894"}}, +"bowser_kart_frame089": {"output_dir": "bowser/frames", "rom_offset": "0x5A6F78", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_089_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5ACFA8"}}, +"bowser_kart_frame090": {"output_dir": "bowser/frames", "rom_offset": "0x5A76B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_090_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5AD6E0"}}, +"bowser_kart_frame091": {"output_dir": "bowser/frames", "rom_offset": "0x5A7E10", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_091_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5ADE40"}}, +"bowser_kart_frame092": {"output_dir": "bowser/frames", "rom_offset": "0x5A85A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_092_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5AE5D4"}}, +"bowser_kart_frame093": {"output_dir": "bowser/frames", "rom_offset": "0x5A8D4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_093_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5AED7C"}}, +"bowser_kart_frame094": {"output_dir": "bowser/frames", "rom_offset": "0x5A9528", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_094_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5AF558"}}, +"bowser_kart_frame095": {"output_dir": "bowser/frames", "rom_offset": "0x5A9D0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_095_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5AFD3C"}}, +"bowser_kart_frame096": {"output_dir": "bowser/frames", "rom_offset": "0x5AA500", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_096_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B0530"}}, +"bowser_kart_frame097": {"output_dir": "bowser/frames", "rom_offset": "0x5AAD04", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_097_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B0D34"}}, +"bowser_kart_frame098": {"output_dir": "bowser/frames", "rom_offset": "0x5AB514", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_098_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B1544"}}, +"bowser_kart_frame099": {"output_dir": "bowser/frames", "rom_offset": "0x5ABD2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_099_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B1D5C"}}, +"bowser_kart_frame100": {"output_dir": "bowser/frames", "rom_offset": "0x5AC540", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_100_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B2570"}}, +"bowser_kart_frame101": {"output_dir": "bowser/frames", "rom_offset": "0x5ACD5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_101_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B2D8C"}}, +"bowser_kart_frame102": {"output_dir": "bowser/frames", "rom_offset": "0x5AD590", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_102_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B35C0"}}, +"bowser_kart_frame103": {"output_dir": "bowser/frames", "rom_offset": "0x5ADDC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_103_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B3DF4"}}, +"bowser_kart_frame104": {"output_dir": "bowser/frames", "rom_offset": "0x5AE5F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_104_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B4628"}}, +"bowser_kart_frame105": {"output_dir": "bowser/frames", "rom_offset": "0x5AEE40", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_105_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B4E70"}}, +"bowser_kart_frame106": {"output_dir": "bowser/frames", "rom_offset": "0x5AF528", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_106_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B5558"}}, +"bowser_kart_frame107": {"output_dir": "bowser/frames", "rom_offset": "0x5AFC38", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_107_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B5C68"}}, +"bowser_kart_frame108": {"output_dir": "bowser/frames", "rom_offset": "0x5B0348", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_108_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B6378"}}, +"bowser_kart_frame109": {"output_dir": "bowser/frames", "rom_offset": "0x5B0A6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_109_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B6A9C"}}, +"bowser_kart_frame110": {"output_dir": "bowser/frames", "rom_offset": "0x5B1190", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_110_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B71C0"}}, +"bowser_kart_frame111": {"output_dir": "bowser/frames", "rom_offset": "0x5B1904", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_111_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B7934"}}, +"bowser_kart_frame112": {"output_dir": "bowser/frames", "rom_offset": "0x5B2094", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_112_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B80C4"}}, +"bowser_kart_frame113": {"output_dir": "bowser/frames", "rom_offset": "0x5B2844", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_113_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B8874"}}, +"bowser_kart_frame114": {"output_dir": "bowser/frames", "rom_offset": "0x5B3008", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_114_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B9038"}}, +"bowser_kart_frame115": {"output_dir": "bowser/frames", "rom_offset": "0x5B37E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_115_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B9810"}}, +"bowser_kart_frame116": {"output_dir": "bowser/frames", "rom_offset": "0x5B3FC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_116_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5B9FF0"}}, +"bowser_kart_frame117": {"output_dir": "bowser/frames", "rom_offset": "0x5B47E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_117_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5BA810"}}, +"bowser_kart_frame118": {"output_dir": "bowser/frames", "rom_offset": "0x5B4FE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_118_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5BB014"}}, +"bowser_kart_frame119": {"output_dir": "bowser/frames", "rom_offset": "0x5B5808", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_119_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5BB838"}}, +"bowser_kart_frame120": {"output_dir": "bowser/frames", "rom_offset": "0x5B6040", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_120_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5BC070"}}, +"bowser_kart_frame121": {"output_dir": "bowser/frames", "rom_offset": "0x5B6868", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_121_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5BC898"}}, +"bowser_kart_frame122": {"output_dir": "bowser/frames", "rom_offset": "0x5B70A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_122_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5BD0D4"}}, +"bowser_kart_frame123": {"output_dir": "bowser/frames", "rom_offset": "0x5B78C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_123_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5BD8F8"}}, +"bowser_kart_frame124": {"output_dir": "bowser/frames", "rom_offset": "0x5B8118", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_124_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5BE148"}}, +"bowser_kart_frame125": {"output_dir": "bowser/frames", "rom_offset": "0x5B8938", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_125_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5BE968"}}, +"bowser_kart_frame126": {"output_dir": "bowser/frames", "rom_offset": "0x5B91A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_126_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5BF1D8"}}, +"bowser_kart_frame127": {"output_dir": "bowser/frames", "rom_offset": "0x5B98B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_127_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5BF8E4"}}, +"bowser_kart_frame128": {"output_dir": "bowser/frames", "rom_offset": "0x5B9FEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_128_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C001C"}}, +"bowser_kart_frame129": {"output_dir": "bowser/frames", "rom_offset": "0x5BA714", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_129_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C0744"}}, +"bowser_kart_frame130": {"output_dir": "bowser/frames", "rom_offset": "0x5BAE50", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_130_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C0E80"}}, +"bowser_kart_frame131": {"output_dir": "bowser/frames", "rom_offset": "0x5BB5B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_131_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C15E0"}}, +"bowser_kart_frame132": {"output_dir": "bowser/frames", "rom_offset": "0x5BBD24", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_132_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C1D54"}}, +"bowser_kart_frame133": {"output_dir": "bowser/frames", "rom_offset": "0x5BC4CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_133_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C24FC"}}, +"bowser_kart_frame134": {"output_dir": "bowser/frames", "rom_offset": "0x5BCC94", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_134_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C2CC4"}}, +"bowser_kart_frame135": {"output_dir": "bowser/frames", "rom_offset": "0x5BD464", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_135_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C3494"}}, +"bowser_kart_frame136": {"output_dir": "bowser/frames", "rom_offset": "0x5BDC5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_136_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C3C8C"}}, +"bowser_kart_frame137": {"output_dir": "bowser/frames", "rom_offset": "0x5BE450", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_137_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C4480"}}, +"bowser_kart_frame138": {"output_dir": "bowser/frames", "rom_offset": "0x5BEC74", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_138_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C4CA4"}}, +"bowser_kart_frame139": {"output_dir": "bowser/frames", "rom_offset": "0x5BF4AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_139_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C54DC"}}, +"bowser_kart_frame140": {"output_dir": "bowser/frames", "rom_offset": "0x5BFCE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_140_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C5D18"}}, +"bowser_kart_frame141": {"output_dir": "bowser/frames", "rom_offset": "0x5C0534", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_141_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C6564"}}, +"bowser_kart_frame142": {"output_dir": "bowser/frames", "rom_offset": "0x5C0D74", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_142_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C6DA4"}}, +"bowser_kart_frame143": {"output_dir": "bowser/frames", "rom_offset": "0x5C15B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_143_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C75E4"}}, +"bowser_kart_frame144": {"output_dir": "bowser/frames", "rom_offset": "0x5C1E08", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_144_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C7E38"}}, +"bowser_kart_frame145": {"output_dir": "bowser/frames", "rom_offset": "0x5C2670", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_145_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C86A0"}}, +"bowser_kart_frame146": {"output_dir": "bowser/frames", "rom_offset": "0x5C2EC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_146_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C8EF0"}}, +"bowser_kart_frame147": {"output_dir": "bowser/frames", "rom_offset": "0x5C373C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_147_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C976C"}}, +"bowser_kart_frame148": {"output_dir": "bowser/frames", "rom_offset": "0x5C3E7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_148_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5C9EAC"}}, +"bowser_kart_frame149": {"output_dir": "bowser/frames", "rom_offset": "0x5C45C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_149_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5CA5F4"}}, +"bowser_kart_frame150": {"output_dir": "bowser/frames", "rom_offset": "0x5C4D20", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_150_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5CAD50"}}, +"bowser_kart_frame151": {"output_dir": "bowser/frames", "rom_offset": "0x5C5484", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_151_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5CB4B4"}}, +"bowser_kart_frame152": {"output_dir": "bowser/frames", "rom_offset": "0x5C5C04", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_152_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5CBC34"}}, +"bowser_kart_frame153": {"output_dir": "bowser/frames", "rom_offset": "0x5C63BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_153_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5CC3EC"}}, +"bowser_kart_frame154": {"output_dir": "bowser/frames", "rom_offset": "0x5C6B98", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_154_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5CCBC8"}}, +"bowser_kart_frame155": {"output_dir": "bowser/frames", "rom_offset": "0x5C738C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_155_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5CD3BC"}}, +"bowser_kart_frame156": {"output_dir": "bowser/frames", "rom_offset": "0x5C7B90", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_156_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5CDBC0"}}, +"bowser_kart_frame157": {"output_dir": "bowser/frames", "rom_offset": "0x5C837C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_157_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5CE3AC"}}, +"bowser_kart_frame158": {"output_dir": "bowser/frames", "rom_offset": "0x5C8B7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_158_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5CEBAC"}}, +"bowser_kart_frame159": {"output_dir": "bowser/frames", "rom_offset": "0x5C93B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_159_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5CF3E4"}}, +"bowser_kart_frame160": {"output_dir": "bowser/frames", "rom_offset": "0x5C9BF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_160_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5CFC20"}}, +"bowser_kart_frame161": {"output_dir": "bowser/frames", "rom_offset": "0x5CA460", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_161_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D0490"}}, +"bowser_kart_frame162": {"output_dir": "bowser/frames", "rom_offset": "0x5CACCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_162_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D0CFC"}}, +"bowser_kart_frame163": {"output_dir": "bowser/frames", "rom_offset": "0x5CB514", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_163_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D1544"}}, +"bowser_kart_frame164": {"output_dir": "bowser/frames", "rom_offset": "0x5CBD84", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_164_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D1DB4"}}, +"bowser_kart_frame165": {"output_dir": "bowser/frames", "rom_offset": "0x5CC5F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_165_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D2628"}}, +"bowser_kart_frame166": {"output_dir": "bowser/frames", "rom_offset": "0x5CCE98", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_166_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D2EC8"}}, +"bowser_kart_frame167": {"output_dir": "bowser/frames", "rom_offset": "0x5CD720", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_167_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D3750"}}, +"bowser_kart_frame168": {"output_dir": "bowser/frames", "rom_offset": "0x5CDFB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_168_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D3FE8"}}, +"bowser_kart_frame169": {"output_dir": "bowser/frames", "rom_offset": "0x5CE70C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_169_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D473C"}}, +"bowser_kart_frame170": {"output_dir": "bowser/frames", "rom_offset": "0x5CEE84", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_170_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D4EB4"}}, +"bowser_kart_frame171": {"output_dir": "bowser/frames", "rom_offset": "0x5CF600", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_171_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D5630"}}, +"bowser_kart_frame172": {"output_dir": "bowser/frames", "rom_offset": "0x5CFD90", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_172_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D5DC0"}}, +"bowser_kart_frame173": {"output_dir": "bowser/frames", "rom_offset": "0x5D0564", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_173_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D6594"}}, +"bowser_kart_frame174": {"output_dir": "bowser/frames", "rom_offset": "0x5D0D2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_174_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D6D5C"}}, +"bowser_kart_frame175": {"output_dir": "bowser/frames", "rom_offset": "0x5D151C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_175_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D754C"}}, +"bowser_kart_frame176": {"output_dir": "bowser/frames", "rom_offset": "0x5D1D28", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_176_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D7D58"}}, +"bowser_kart_frame177": {"output_dir": "bowser/frames", "rom_offset": "0x5D252C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_177_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D855C"}}, +"bowser_kart_frame178": {"output_dir": "bowser/frames", "rom_offset": "0x5D2D54", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_178_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D8D84"}}, +"bowser_kart_frame179": {"output_dir": "bowser/frames", "rom_offset": "0x5D3588", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_179_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D95B8"}}, +"bowser_kart_frame180": {"output_dir": "bowser/frames", "rom_offset": "0x5D3DD0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_180_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5D9E00"}}, +"bowser_kart_frame181": {"output_dir": "bowser/frames", "rom_offset": "0x5D4634", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_181_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5DA664"}}, +"bowser_kart_frame182": {"output_dir": "bowser/frames", "rom_offset": "0x5D4EA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_182_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5DAED8"}}, +"bowser_kart_frame183": {"output_dir": "bowser/frames", "rom_offset": "0x5D573C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_183_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5DB76C"}}, +"bowser_kart_frame184": {"output_dir": "bowser/frames", "rom_offset": "0x5D5FC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_184_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5DBFF8"}}, +"bowser_kart_frame185": {"output_dir": "bowser/frames", "rom_offset": "0x5D6874", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_185_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5DC8A4"}}, +"bowser_kart_frame186": {"output_dir": "bowser/frames", "rom_offset": "0x5D70F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_186_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5DD128"}}, +"bowser_kart_frame187": {"output_dir": "bowser/frames", "rom_offset": "0x5D799C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_187_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5DD9CC"}}, +"bowser_kart_frame188": {"output_dir": "bowser/frames", "rom_offset": "0x5D8238", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_188_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5DE268"}}, +"bowser_kart_frame189": {"output_dir": "bowser/frames", "rom_offset": "0x5D8AE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_189_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5DEB18"}}, +"bowser_kart_frame190": {"output_dir": "bowser/frames", "rom_offset": "0x5D9160", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_190_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5DF190"}}, +"bowser_kart_frame191": {"output_dir": "bowser/frames", "rom_offset": "0x5D981C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_191_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5DF84C"}}, +"bowser_kart_frame192": {"output_dir": "bowser/frames", "rom_offset": "0x5D9F44", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_192_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5DFF74"}}, +"bowser_kart_frame193": {"output_dir": "bowser/frames", "rom_offset": "0x5DA694", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_193_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E06C4"}}, +"bowser_kart_frame194": {"output_dir": "bowser/frames", "rom_offset": "0x5DAE20", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_194_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E0E50"}}, +"bowser_kart_frame195": {"output_dir": "bowser/frames", "rom_offset": "0x5DB5C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_195_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E15F8"}}, +"bowser_kart_frame196": {"output_dir": "bowser/frames", "rom_offset": "0x5DBDAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_196_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E1DDC"}}, +"bowser_kart_frame197": {"output_dir": "bowser/frames", "rom_offset": "0x5DC5C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_197_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E25F0"}}, +"bowser_kart_frame198": {"output_dir": "bowser/frames", "rom_offset": "0x5DCDEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_198_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E2E1C"}}, +"bowser_kart_frame199": {"output_dir": "bowser/frames", "rom_offset": "0x5DD680", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_199_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E36B0"}}, +"bowser_kart_frame200": {"output_dir": "bowser/frames", "rom_offset": "0x5DDF28", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_200_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E3F58"}}, +"bowser_kart_frame201": {"output_dir": "bowser/frames", "rom_offset": "0x5DE7FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_201_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E482C"}}, +"bowser_kart_frame202": {"output_dir": "bowser/frames", "rom_offset": "0x5DF0CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_202_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E50FC"}}, +"bowser_kart_frame203": {"output_dir": "bowser/frames", "rom_offset": "0x5DF9B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_203_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E59E4"}}, +"bowser_kart_frame204": {"output_dir": "bowser/frames", "rom_offset": "0x5E0288", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_204_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E62B8"}}, +"bowser_kart_frame205": {"output_dir": "bowser/frames", "rom_offset": "0x5E0B48", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_205_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E6B78"}}, +"bowser_kart_frame206": {"output_dir": "bowser/frames", "rom_offset": "0x5E13A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_206_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E73D8"}}, +"bowser_kart_frame207": {"output_dir": "bowser/frames", "rom_offset": "0x5E1BE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_207_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E7C18"}}, +"bowser_kart_frame208": {"output_dir": "bowser/frames", "rom_offset": "0x5E2430", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_208_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E8460"}}, +"bowser_kart_frame209": {"output_dir": "bowser/frames", "rom_offset": "0x5E2C60", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_209_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E8C90"}}, +"bowser_kart_frame210": {"output_dir": "bowser/frames", "rom_offset": "0x5E3320", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_210_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E9350"}}, +"bowser_kart_frame211": {"output_dir": "bowser/frames", "rom_offset": "0x5E3A34", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_211_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5E9A64"}}, +"bowser_kart_frame212": {"output_dir": "bowser/frames", "rom_offset": "0x5E41B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_212_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5EA1E4"}}, +"bowser_kart_frame213": {"output_dir": "bowser/frames", "rom_offset": "0x5E4968", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_213_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5EA998"}}, +"bowser_kart_frame214": {"output_dir": "bowser/frames", "rom_offset": "0x5E5108", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_214_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5EB138"}}, +"bowser_kart_frame215": {"output_dir": "bowser/frames", "rom_offset": "0x5E58E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_215_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5EB910"}}, +"bowser_kart_frame216": {"output_dir": "bowser/frames", "rom_offset": "0x5E6114", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_216_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5EC144"}}, +"bowser_kart_frame217": {"output_dir": "bowser/frames", "rom_offset": "0x5E6958", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_217_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5EC988"}}, +"bowser_kart_frame218": {"output_dir": "bowser/frames", "rom_offset": "0x5E71C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_218_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5ED1F4"}}, +"bowser_kart_frame219": {"output_dir": "bowser/frames", "rom_offset": "0x5E7A3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_219_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5EDA6C"}}, +"bowser_kart_frame220": {"output_dir": "bowser/frames", "rom_offset": "0x5E82B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_220_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5EE2E4"}}, +"bowser_kart_frame221": {"output_dir": "bowser/frames", "rom_offset": "0x5E8B70", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_221_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5EEBA0"}}, +"bowser_kart_frame222": {"output_dir": "bowser/frames", "rom_offset": "0x5E942C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_222_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5EF45C"}}, +"bowser_kart_frame223": {"output_dir": "bowser/frames", "rom_offset": "0x5E9CD0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_223_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5EFD00"}}, +"bowser_kart_frame224": {"output_dir": "bowser/frames", "rom_offset": "0x5EA570", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_224_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F05A0"}}, +"bowser_kart_frame225": {"output_dir": "bowser/frames", "rom_offset": "0x5EADF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_225_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F0E20"}}, +"bowser_kart_frame226": {"output_dir": "bowser/frames", "rom_offset": "0x5EB620", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_226_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F1650"}}, +"bowser_kart_frame227": {"output_dir": "bowser/frames", "rom_offset": "0x5EBE3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_227_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F1E6C"}}, +"bowser_kart_frame228": {"output_dir": "bowser/frames", "rom_offset": "0x5EC658", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_228_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F2688"}}, +"bowser_kart_frame229": {"output_dir": "bowser/frames", "rom_offset": "0x5ECE34", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_229_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F2E64"}}, +"bowser_kart_frame230": {"output_dir": "bowser/frames", "rom_offset": "0x5ED528", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_230_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F3558"}}, +"bowser_kart_frame231": {"output_dir": "bowser/frames", "rom_offset": "0x5EDC88", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_231_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F3CB8"}}, +"bowser_kart_frame232": {"output_dir": "bowser/frames", "rom_offset": "0x5EE434", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_232_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F4464"}}, +"bowser_kart_frame233": {"output_dir": "bowser/frames", "rom_offset": "0x5EEC04", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_233_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F4C34"}}, +"bowser_kart_frame234": {"output_dir": "bowser/frames", "rom_offset": "0x5EF408", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_234_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F5438"}}, +"bowser_kart_frame235": {"output_dir": "bowser/frames", "rom_offset": "0x5EFC30", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_235_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F5C60"}}, +"bowser_kart_frame236": {"output_dir": "bowser/frames", "rom_offset": "0x5F0478", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_236_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F64A8"}}, +"bowser_kart_frame237": {"output_dir": "bowser/frames", "rom_offset": "0x5F0CD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_237_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F6D04"}}, +"bowser_kart_frame238": {"output_dir": "bowser/frames", "rom_offset": "0x5F153C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_238_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F756C"}}, +"bowser_kart_frame239": {"output_dir": "bowser/frames", "rom_offset": "0x5F1DBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_239_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F7DEC"}}, +"bowser_kart_frame240": {"output_dir": "bowser/frames", "rom_offset": "0x5F2654", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_240_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F8684"}}, +"bowser_kart_frame241": {"output_dir": "bowser/frames", "rom_offset": "0x5F2F04", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_241_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F8F34"}}, +"bowser_kart_frame242": {"output_dir": "bowser/frames", "rom_offset": "0x5F3754", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_242_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5F9784"}}, +"bowser_kart_frame243": {"output_dir": "bowser/frames", "rom_offset": "0x5F3FE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_243_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5FA014"}}, +"bowser_kart_frame244": {"output_dir": "bowser/frames", "rom_offset": "0x5F485C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_244_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5FA88C"}}, +"bowser_kart_frame245": {"output_dir": "bowser/frames", "rom_offset": "0x5F5098", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_245_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5FB0C8"}}, +"bowser_kart_frame246": {"output_dir": "bowser/frames", "rom_offset": "0x5F5898", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_246_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5FB8C8"}}, +"bowser_kart_frame247": {"output_dir": "bowser/frames", "rom_offset": "0x5F6070", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_247_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5FC0A0"}}, +"bowser_kart_frame248": {"output_dir": "bowser/frames", "rom_offset": "0x5F6850", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_248_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5FC880"}}, +"bowser_kart_frame249": {"output_dir": "bowser/frames", "rom_offset": "0x5F700C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_249_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5FD03C"}}, +"bowser_kart_frame250": {"output_dir": "bowser/frames", "rom_offset": "0x5F774C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_250_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5FD77C"}}, +"bowser_kart_frame251": {"output_dir": "bowser/frames", "rom_offset": "0x5F7EDC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_251_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5FDF0C"}}, +"bowser_kart_frame252": {"output_dir": "bowser/frames", "rom_offset": "0x5F86A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_252_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5FE6D0"}}, +"bowser_kart_frame253": {"output_dir": "bowser/frames", "rom_offset": "0x5F8E98", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_253_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5FEEC8"}}, +"bowser_kart_frame254": {"output_dir": "bowser/frames", "rom_offset": "0x5F96AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_254_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5FF6DC"}}, +"bowser_kart_frame255": {"output_dir": "bowser/frames", "rom_offset": "0x5F9EEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_255_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5FFF1C"}}, +"bowser_kart_frame256": {"output_dir": "bowser/frames", "rom_offset": "0x5FA764", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_256_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x600794"}}, +"bowser_kart_frame257": {"output_dir": "bowser/frames", "rom_offset": "0x5FAFE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_257_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x601018"}}, +"bowser_kart_frame258": {"output_dir": "bowser/frames", "rom_offset": "0x5FB858", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_258_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x601888"}}, +"bowser_kart_frame259": {"output_dir": "bowser/frames", "rom_offset": "0x5FC0EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_259_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x60211C"}}, +"bowser_kart_frame260": {"output_dir": "bowser/frames", "rom_offset": "0x5FC988", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_260_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x6029B8"}}, +"bowser_kart_frame261": {"output_dir": "bowser/frames", "rom_offset": "0x5FD220", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_261_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x603250"}}, +"bowser_kart_frame262": {"output_dir": "bowser/frames", "rom_offset": "0x5FDA90", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_262_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x603AC0"}}, +"bowser_kart_frame263": {"output_dir": "bowser/frames", "rom_offset": "0x5FE2D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_263_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x604300"}}, +"bowser_kart_frame264": {"output_dir": "bowser/frames", "rom_offset": "0x5FEAFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_264_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x604B2C"}}, +"bowser_kart_frame265": {"output_dir": "bowser/frames", "rom_offset": "0x5FF304", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_265_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x605334"}}, +"bowser_kart_frame266": {"output_dir": "bowser/frames", "rom_offset": "0x5FFAD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_266_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x605B08"}}, +"bowser_kart_frame267": {"output_dir": "bowser/frames", "rom_offset": "0x60027C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_267_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x6062AC"}}, +"bowser_kart_frame268": {"output_dir": "bowser/frames", "rom_offset": "0x600A14", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_268_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x606A44"}}, +"bowser_kart_frame269": {"output_dir": "bowser/frames", "rom_offset": "0x601184", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_269_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x6071B4"}}, +"bowser_kart_frame270": {"output_dir": "bowser/frames", "rom_offset": "0x601930", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_270_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x607960"}}, +"bowser_kart_frame271": {"output_dir": "bowser/frames", "rom_offset": "0x6020F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_271_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x608128"}}, +"bowser_kart_frame272": {"output_dir": "bowser/frames", "rom_offset": "0x6028D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_272_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x608908"}}, +"bowser_kart_frame273": {"output_dir": "bowser/frames", "rom_offset": "0x6030F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_273_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x609128"}}, +"bowser_kart_frame274": {"output_dir": "bowser/frames", "rom_offset": "0x603940", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_274_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x609970"}}, +"bowser_kart_frame275": {"output_dir": "bowser/frames", "rom_offset": "0x6041D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_275_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x60A200"}}, +"bowser_kart_frame276": {"output_dir": "bowser/frames", "rom_offset": "0x604A6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_276_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x60AA9C"}}, +"bowser_kart_frame277": {"output_dir": "bowser/frames", "rom_offset": "0x605310", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_277_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x60B340"}}, +"bowser_kart_frame278": {"output_dir": "bowser/frames", "rom_offset": "0x605B90", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_278_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x60BBC0"}}, +"bowser_kart_frame279": {"output_dir": "bowser/frames", "rom_offset": "0x606428", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_279_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x60C458"}}, +"bowser_kart_frame280": {"output_dir": "bowser/frames", "rom_offset": "0x606C90", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_280_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x60CCC0"}}, +"bowser_kart_frame281": {"output_dir": "bowser/frames", "rom_offset": "0x6074F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_281_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x60D524"}}, +"bowser_kart_frame282": {"output_dir": "bowser/frames", "rom_offset": "0x607D54", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_282_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x60DD84"}}, +"bowser_kart_frame283": {"output_dir": "bowser/frames", "rom_offset": "0x608564", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_283_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x60E594"}}, +"bowser_kart_frame284": {"output_dir": "bowser/frames", "rom_offset": "0x608D34", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_284_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x60ED64"}}, +"bowser_kart_frame285": {"output_dir": "bowser/frames", "rom_offset": "0x6094DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_285_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x60F50C"}}, +"bowser_kart_frame286": {"output_dir": "bowser/frames", "rom_offset": "0x609C48", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_286_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x60FC78"}}, +"bowser_kart_frame287": {"output_dir": "bowser/frames", "rom_offset": "0x60A380", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_287_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x6103B0"}}, +"bowser_kart_frame288": {"output_dir": "bowser/frames", "rom_offset": "0x60AAAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_288_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x610ADC"}}, +"bowser_kart_frame289": {"output_dir": "bowser/frames", "rom_offset": "0x60B1A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x6111D8"}}, +"bowser_kart_frame290": {"output_dir": "bowser/frames", "rom_offset": "0x60B80C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x61183C"}}, +"bowser_kart_frame291": {"output_dir": "bowser/frames", "rom_offset": "0x60BE98", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x611EC8"}}, +"bowser_kart_frame292": {"output_dir": "bowser/frames", "rom_offset": "0x60C5B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x6125E0"}}, +"bowser_kart_frame293": {"output_dir": "bowser/frames", "rom_offset": "0x60CD70", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x612DA0"}}, +"bowser_kart_frame294": {"output_dir": "bowser/frames", "rom_offset": "0x60D470", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x6134A0"}}, +"bowser_kart_frame295": {"output_dir": "bowser/frames", "rom_offset": "0x60DC1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x613C4C"}}, +"bowser_kart_frame296": {"output_dir": "bowser/frames", "rom_offset": "0x60E3FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x61442C"}}, +"bowser_kart_frame297": {"output_dir": "bowser/frames", "rom_offset": "0x60EBC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x614BF0"}}, +"bowser_kart_frame298": {"output_dir": "bowser/frames", "rom_offset": "0x60F2D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x615300"}}, +"bowser_kart_frame299": {"output_dir": "bowser/frames", "rom_offset": "0x60FA04", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x615A34"}}, +"bowser_kart_frame300": {"output_dir": "bowser/frames", "rom_offset": "0x610168", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x616198"}}, +"bowser_kart_frame301": {"output_dir": "bowser/frames", "rom_offset": "0x6108E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x616918"}}, +"bowser_kart_frame302": {"output_dir": "bowser/frames", "rom_offset": "0x61109C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x6170CC"}}, +"bowser_kart_frame303": {"output_dir": "bowser/frames", "rom_offset": "0x6118D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x617904"}}, +"bowser_kart_frame304": {"output_dir": "bowser/frames", "rom_offset": "0x6120AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x6180DC"}}, +"bowser_kart_frame305": {"output_dir": "bowser/frames", "rom_offset": "0x6127F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x618828"}}, +"bowser_kart_frame306": {"output_dir": "bowser/frames", "rom_offset": "0x612DC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x618DF8"}}, +"bowser_kart_frame307": {"output_dir": "bowser/frames", "rom_offset": "0x6134D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x619500"}}, +"bowser_kart_frame308": {"output_dir": "bowser/frames", "rom_offset": "0x613C60", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x619C90"}}, +"bowser_kart_frame309": {"output_dir": "bowser/frames", "rom_offset": "0x614440", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x61A470"}}, +"bowser_kart_frame310": {"output_dir": "bowser/frames", "rom_offset": "0x614B7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x61ABAC"}}, +"bowser_kart_frame311": {"output_dir": "bowser/frames", "rom_offset": "0x615334", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x61B364"}}, +"bowser_kart_frame312": {"output_dir": "bowser/frames", "rom_offset": "0x615B2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x61BB5C"}}, +"bowser_kart_frame313": {"output_dir": "bowser/frames", "rom_offset": "0x6162C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x61C2F4"}}, +"bowser_kart_frame314": {"output_dir": "bowser/frames", "rom_offset": "0x6169DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x61CA0C"}}, +"bowser_kart_frame315": {"output_dir": "bowser/frames", "rom_offset": "0x61710C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x61D13C"}}, +"bowser_kart_frame316": {"output_dir": "bowser/frames", "rom_offset": "0x617854", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x61D884"}}, +"bowser_kart_frame317": {"output_dir": "bowser/frames", "rom_offset": "0x617FDC", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x61E00C"}}, +"bowser_kart_frame318": {"output_dir": "bowser/frames", "rom_offset": "0x61873C", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x61E76C"}}, +"bowser_kart_frame319": {"output_dir": "bowser/frames", "rom_offset": "0x618F40", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x61EF70"}}, +"bowser_kart_frame320": {"output_dir": "bowser/frames", "rom_offset": "0x619730", "width": 64, "height": 64, "type": "ci8", "tlut": ["bowser_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x61F760"}}, +"kart_000_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x619EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x61FF28"}}, +"kart_000_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x619F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x61FFA8"}}, +"kart_000_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x619FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620028"}}, +"kart_000_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61A078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6200A8"}}, +"kart_001_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61A0F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620128"}}, +"kart_001_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61A178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6201A8"}}, +"kart_001_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61A1F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620228"}}, +"kart_001_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61A278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6202A8"}}, +"kart_002_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61A2F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620328"}}, +"kart_002_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61A378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6203A8"}}, +"kart_002_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61A3F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620428"}}, +"kart_002_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61A478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6204A8"}}, +"kart_003_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61A4F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620528"}}, +"kart_003_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61A578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6205A8"}}, +"kart_003_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61A5F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620628"}}, +"kart_003_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61A678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6206A8"}}, +"kart_004_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61A6F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620728"}}, +"kart_004_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61A778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6207A8"}}, +"kart_004_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61A7F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620828"}}, +"kart_004_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61A878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6208A8"}}, +"kart_005_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61A8F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620928"}}, +"kart_005_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61A978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6209A8"}}, +"kart_005_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61A9F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620A28"}}, +"kart_005_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61AA78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620AA8"}}, +"kart_006_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61AAF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620B28"}}, +"kart_006_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61AB78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620BA8"}}, +"kart_006_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61ABF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620C28"}}, +"kart_006_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61AC78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620CA8"}}, +"kart_007_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61ACF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620D28"}}, +"kart_007_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61AD78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620DA8"}}, +"kart_007_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61ADF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620E28"}}, +"kart_007_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61AE78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620EA8"}}, +"kart_008_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61AEF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620F28"}}, +"kart_008_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61AF78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x620FA8"}}, +"kart_008_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61AFF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621028"}}, +"kart_008_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61B078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6210A8"}}, +"kart_009_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61B0F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621128"}}, +"kart_009_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61B178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6211A8"}}, +"kart_009_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61B1F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621228"}}, +"kart_009_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61B278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6212A8"}}, +"kart_010_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61B2F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621328"}}, +"kart_010_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61B378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6213A8"}}, +"kart_010_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61B3F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621428"}}, +"kart_010_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61B478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6214A8"}}, +"kart_011_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61B4F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621528"}}, +"kart_011_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61B578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6215A8"}}, +"kart_011_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61B5F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621628"}}, +"kart_011_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61B678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6216A8"}}, +"kart_012_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61B6F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621728"}}, +"kart_012_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61B778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6217A8"}}, +"kart_012_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61B7F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621828"}}, +"kart_012_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61B878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6218A8"}}, +"kart_013_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61B8F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621928"}}, +"kart_013_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61B978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6219A8"}}, +"kart_013_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61B9F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621A28"}}, +"kart_013_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61BA78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621AA8"}}, +"kart_014_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61BAF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621B28"}}, +"kart_014_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61BB78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621BA8"}}, +"kart_014_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61BBF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621C28"}}, +"kart_014_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61BC78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621CA8"}}, +"kart_015_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61BCF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621D28"}}, +"kart_015_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61BD78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621DA8"}}, +"kart_015_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61BDF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621E28"}}, +"kart_015_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61BE78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621EA8"}}, +"kart_016_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61BEF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621F28"}}, +"kart_016_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61BF78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x621FA8"}}, +"kart_016_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61BFF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622028"}}, +"kart_016_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61C078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6220A8"}}, +"kart_017_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61C0F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622128"}}, +"kart_017_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61C178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6221A8"}}, +"kart_017_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61C1F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622228"}}, +"kart_017_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61C278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6222A8"}}, +"kart_018_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61C2F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622328"}}, +"kart_018_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61C378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6223A8"}}, +"kart_018_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61C3F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622428"}}, +"kart_018_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61C478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6224A8"}}, +"kart_019_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61C4F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622528"}}, +"kart_019_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61C578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6225A8"}}, +"kart_019_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61C5F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622628"}}, +"kart_019_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61C678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6226A8"}}, +"kart_020_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61C6F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622728"}}, +"kart_020_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61C778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6227A8"}}, +"kart_020_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61C7F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622828"}}, +"kart_020_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61C878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6228A8"}}, +"kart_021_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61C8F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622928"}}, +"kart_021_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61C978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6229A8"}}, +"kart_021_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61C9F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622A28"}}, +"kart_021_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61CA78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622AA8"}}, +"kart_022_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61CAF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622B28"}}, +"kart_022_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61CB78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622BA8"}}, +"kart_022_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61CBF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622C28"}}, +"kart_022_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61CC78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622CA8"}}, +"kart_023_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61CCF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622D28"}}, +"kart_023_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61CD78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622DA8"}}, +"kart_023_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61CDF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622E28"}}, +"kart_023_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61CE78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622EA8"}}, +"kart_024_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61CEF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622F28"}}, +"kart_024_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61CF78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x622FA8"}}, +"kart_024_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61CFF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623028"}}, +"kart_024_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61D078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6230A8"}}, +"kart_025_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61D0F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623128"}}, +"kart_025_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61D178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6231A8"}}, +"kart_025_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61D1F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623228"}}, +"kart_025_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61D278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6232A8"}}, +"kart_026_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61D2F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623328"}}, +"kart_026_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61D378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6233A8"}}, +"kart_026_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61D3F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623428"}}, +"kart_026_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61D478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6234A8"}}, +"kart_027_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61D4F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623528"}}, +"kart_027_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61D578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6235A8"}}, +"kart_027_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61D5F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623628"}}, +"kart_027_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61D678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6236A8"}}, +"kart_028_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61D6F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623728"}}, +"kart_028_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61D778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6237A8"}}, +"kart_028_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61D7F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623828"}}, +"kart_028_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61D878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6238A8"}}, +"kart_029_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61D8F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623928"}}, +"kart_029_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61D978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6239A8"}}, +"kart_029_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61D9F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623A28"}}, +"kart_029_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61DA78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623AA8"}}, +"kart_030_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61DAF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623B28"}}, +"kart_030_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61DB78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623BA8"}}, +"kart_030_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61DBF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623C28"}}, +"kart_030_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61DC78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623CA8"}}, +"kart_031_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61DCF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623D28"}}, +"kart_031_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61DD78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623DA8"}}, +"kart_031_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61DDF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623E28"}}, +"kart_031_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61DE78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623EA8"}}, +"kart_032_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61DEF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623F28"}}, +"kart_032_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61DF78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x623FA8"}}, +"kart_032_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61DFF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624028"}}, +"kart_032_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61E078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6240A8"}}, +"kart_033_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61E0F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624128"}}, +"kart_033_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61E178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6241A8"}}, +"kart_033_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61E1F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624228"}}, +"kart_033_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61E278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6242A8"}}, +"kart_034_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61E2F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624328"}}, +"kart_034_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61E378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6243A8"}}, +"kart_034_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61E3F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624428"}}, +"kart_034_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61E478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6244A8"}}, +"kart_035_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61E4F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624528"}}, +"kart_035_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61E578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6245A8"}}, +"kart_035_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61E5F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624628"}}, +"kart_035_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61E678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6246A8"}}, +"kart_036_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61E6F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624728"}}, +"kart_036_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61E778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6247A8"}}, +"kart_036_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61E7F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624828"}}, +"kart_036_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61E878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6248A8"}}, +"kart_037_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61E8F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624928"}}, +"kart_037_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61E978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6249A8"}}, +"kart_037_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61E9F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624A28"}}, +"kart_037_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61EA78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624AA8"}}, +"kart_038_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61EAF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624B28"}}, +"kart_038_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61EB78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624BA8"}}, +"kart_038_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61EBF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624C28"}}, +"kart_038_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61EC78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624CA8"}}, +"kart_039_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61ECF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624D28"}}, +"kart_039_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61ED78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624DA8"}}, +"kart_039_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61EDF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624E28"}}, +"kart_039_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61EE78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624EA8"}}, +"kart_040_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61EEF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624F28"}}, +"kart_040_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61EF78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x624FA8"}}, +"kart_040_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61EFF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625028"}}, +"kart_040_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61F078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6250A8"}}, +"kart_041_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61F0F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625128"}}, +"kart_041_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61F178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6251A8"}}, +"kart_041_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61F1F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625228"}}, +"kart_041_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61F278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6252A8"}}, +"kart_042_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61F2F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625328"}}, +"kart_042_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61F378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6253A8"}}, +"kart_042_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61F3F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625428"}}, +"kart_042_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61F478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6254A8"}}, +"kart_043_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61F4F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625528"}}, +"kart_043_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61F578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6255A8"}}, +"kart_043_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61F5F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625628"}}, +"kart_043_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61F678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6256A8"}}, +"kart_044_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61F6F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625728"}}, +"kart_044_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61F778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6257A8"}}, +"kart_044_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61F7F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625828"}}, +"kart_044_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61F878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6258A8"}}, +"kart_045_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61F8F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625928"}}, +"kart_045_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61F978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6259A8"}}, +"kart_045_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61F9F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625A28"}}, +"kart_045_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61FA78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625AA8"}}, +"kart_046_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61FAF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625B28"}}, +"kart_046_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61FB78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625BA8"}}, +"kart_046_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61FBF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625C28"}}, +"kart_046_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61FC78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625CA8"}}, +"kart_047_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61FCF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625D28"}}, +"kart_047_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61FD78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625DA8"}}, +"kart_047_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61FDF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625E28"}}, +"kart_047_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x61FE78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625EA8"}}, +"kart_048_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x61FEF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625F28"}}, +"kart_048_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x61FF78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x625FA8"}}, +"kart_048_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x61FFF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626028"}}, +"kart_048_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x620078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6260A8"}}, +"kart_049_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6200F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626128"}}, +"kart_049_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x620178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6261A8"}}, +"kart_049_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6201F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626228"}}, +"kart_049_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x620278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6262A8"}}, +"kart_050_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6202F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626328"}}, +"kart_050_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x620378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6263A8"}}, +"kart_050_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6203F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626428"}}, +"kart_050_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x620478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6264A8"}}, +"kart_051_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6204F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626528"}}, +"kart_051_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x620578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6265A8"}}, +"kart_051_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6205F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626628"}}, +"kart_051_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x620678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6266A8"}}, +"kart_052_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6206F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626728"}}, +"kart_052_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x620778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6267A8"}}, +"kart_052_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6207F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626828"}}, +"kart_052_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x620878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6268A8"}}, +"kart_053_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6208F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626928"}}, +"kart_053_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x620978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6269A8"}}, +"kart_053_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6209F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626A28"}}, +"kart_053_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x620A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626AA8"}}, +"kart_054_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x620AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626B28"}}, +"kart_054_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x620B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626BA8"}}, +"kart_054_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x620BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626C28"}}, +"kart_054_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x620C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626CA8"}}, +"kart_055_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x620CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626D28"}}, +"kart_055_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x620D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626DA8"}}, +"kart_055_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x620DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626E28"}}, +"kart_055_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x620E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626EA8"}}, +"kart_056_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x620EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626F28"}}, +"kart_056_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x620F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x626FA8"}}, +"kart_056_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x620FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627028"}}, +"kart_056_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x621078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6270A8"}}, +"kart_057_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6210F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627128"}}, +"kart_057_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x621178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6271A8"}}, +"kart_057_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6211F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627228"}}, +"kart_057_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x621278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6272A8"}}, +"kart_058_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6212F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627328"}}, +"kart_058_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x621378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6273A8"}}, +"kart_058_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6213F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627428"}}, +"kart_058_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x621478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6274A8"}}, +"kart_059_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6214F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627528"}}, +"kart_059_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x621578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6275A8"}}, +"kart_059_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6215F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627628"}}, +"kart_059_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x621678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6276A8"}}, +"kart_060_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6216F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627728"}}, +"kart_060_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x621778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6277A8"}}, +"kart_060_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6217F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627828"}}, +"kart_060_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x621878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6278A8"}}, +"kart_061_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6218F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627928"}}, +"kart_061_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x621978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6279A8"}}, +"kart_061_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6219F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627A28"}}, +"kart_061_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x621A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627AA8"}}, +"kart_062_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x621AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627B28"}}, +"kart_062_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x621B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627BA8"}}, +"kart_062_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x621BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627C28"}}, +"kart_062_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x621C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627CA8"}}, +"kart_063_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x621CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627D28"}}, +"kart_063_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x621D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627DA8"}}, +"kart_063_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x621DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627E28"}}, +"kart_063_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x621E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627EA8"}}, +"kart_064_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x621EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627F28"}}, +"kart_064_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x621F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x627FA8"}}, +"kart_064_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x621FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628028"}}, +"kart_064_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x622078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6280A8"}}, +"kart_065_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6220F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628128"}}, +"kart_065_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x622178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6281A8"}}, +"kart_065_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6221F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628228"}}, +"kart_065_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x622278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6282A8"}}, +"kart_066_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6222F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628328"}}, +"kart_066_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x622378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6283A8"}}, +"kart_066_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6223F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628428"}}, +"kart_066_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x622478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6284A8"}}, +"kart_067_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6224F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628528"}}, +"kart_067_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x622578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6285A8"}}, +"kart_067_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6225F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628628"}}, +"kart_067_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x622678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6286A8"}}, +"kart_068_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6226F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628728"}}, +"kart_068_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x622778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6287A8"}}, +"kart_068_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6227F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628828"}}, +"kart_068_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x622878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6288A8"}}, +"kart_069_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6228F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628928"}}, +"kart_069_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x622978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6289A8"}}, +"kart_069_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6229F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628A28"}}, +"kart_069_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x622A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628AA8"}}, +"kart_070_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x622AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628B28"}}, +"kart_070_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x622B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628BA8"}}, +"kart_070_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x622BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628C28"}}, +"kart_070_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x622C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628CA8"}}, +"kart_071_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x622CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628D28"}}, +"kart_071_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x622D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628DA8"}}, +"kart_071_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x622DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628E28"}}, +"kart_071_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x622E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628EA8"}}, +"kart_072_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x622EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628F28"}}, +"kart_072_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x622F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x628FA8"}}, +"kart_072_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x622FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629028"}}, +"kart_072_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x623078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6290A8"}}, +"kart_073_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6230F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629128"}}, +"kart_073_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x623178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6291A8"}}, +"kart_073_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6231F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629228"}}, +"kart_073_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x623278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6292A8"}}, +"kart_074_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6232F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629328"}}, +"kart_074_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x623378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6293A8"}}, +"kart_074_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6233F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629428"}}, +"kart_074_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x623478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6294A8"}}, +"kart_075_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6234F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629528"}}, +"kart_075_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x623578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6295A8"}}, +"kart_075_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6235F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629628"}}, +"kart_075_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x623678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6296A8"}}, +"kart_076_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6236F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629728"}}, +"kart_076_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x623778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6297A8"}}, +"kart_076_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6237F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629828"}}, +"kart_076_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x623878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6298A8"}}, +"kart_077_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6238F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629928"}}, +"kart_077_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x623978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6299A8"}}, +"kart_077_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6239F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629A28"}}, +"kart_077_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x623A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629AA8"}}, +"kart_078_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x623AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629B28"}}, +"kart_078_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x623B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629BA8"}}, +"kart_078_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x623BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629C28"}}, +"kart_078_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x623C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629CA8"}}, +"kart_079_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x623CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629D28"}}, +"kart_079_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x623D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629DA8"}}, +"kart_079_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x623DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629E28"}}, +"kart_079_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x623E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629EA8"}}, +"kart_080_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x623EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629F28"}}, +"kart_080_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x623F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x629FA8"}}, +"kart_080_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x623FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A028"}}, +"kart_080_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x624078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A0A8"}}, +"kart_081_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6240F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A128"}}, +"kart_081_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x624178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A1A8"}}, +"kart_081_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6241F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A228"}}, +"kart_081_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x624278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A2A8"}}, +"kart_082_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6242F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A328"}}, +"kart_082_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x624378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A3A8"}}, +"kart_082_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6243F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A428"}}, +"kart_082_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x624478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A4A8"}}, +"kart_083_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6244F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A528"}}, +"kart_083_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x624578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A5A8"}}, +"kart_083_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6245F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A628"}}, +"kart_083_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x624678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A6A8"}}, +"kart_084_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6246F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A728"}}, +"kart_084_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x624778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A7A8"}}, +"kart_084_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6247F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A828"}}, +"kart_084_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x624878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A8A8"}}, +"kart_085_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6248F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A928"}}, +"kart_085_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x624978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62A9A8"}}, +"kart_085_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6249F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62AA28"}}, +"kart_085_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x624A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62AAA8"}}, +"kart_086_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x624AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62AB28"}}, +"kart_086_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x624B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62ABA8"}}, +"kart_086_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x624BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62AC28"}}, +"kart_086_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x624C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62ACA8"}}, +"kart_087_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x624CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62AD28"}}, +"kart_087_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x624D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62ADA8"}}, +"kart_087_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x624DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62AE28"}}, +"kart_087_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x624E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62AEA8"}}, +"kart_088_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x624EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62AF28"}}, +"kart_088_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x624F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62AFA8"}}, +"kart_088_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x624FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B028"}}, +"kart_088_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x625078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B0A8"}}, +"kart_089_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6250F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B128"}}, +"kart_089_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x625178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B1A8"}}, +"kart_089_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6251F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B228"}}, +"kart_089_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x625278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B2A8"}}, +"kart_090_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6252F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B328"}}, +"kart_090_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x625378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B3A8"}}, +"kart_090_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6253F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B428"}}, +"kart_090_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x625478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B4A8"}}, +"kart_091_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6254F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B528"}}, +"kart_091_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x625578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B5A8"}}, +"kart_091_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6255F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B628"}}, +"kart_091_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x625678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B6A8"}}, +"kart_092_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6256F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B728"}}, +"kart_092_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x625778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B7A8"}}, +"kart_092_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6257F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B828"}}, +"kart_092_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x625878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B8A8"}}, +"kart_093_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6258F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B928"}}, +"kart_093_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x625978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62B9A8"}}, +"kart_093_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6259F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62BA28"}}, +"kart_093_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x625A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62BAA8"}}, +"kart_094_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x625AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62BB28"}}, +"kart_094_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x625B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62BBA8"}}, +"kart_094_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x625BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62BC28"}}, +"kart_094_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x625C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62BCA8"}}, +"kart_095_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x625CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62BD28"}}, +"kart_095_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x625D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62BDA8"}}, +"kart_095_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x625DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62BE28"}}, +"kart_095_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x625E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62BEA8"}}, +"kart_096_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x625EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62BF28"}}, +"kart_096_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x625F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62BFA8"}}, +"kart_096_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x625FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C028"}}, +"kart_096_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x626078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C0A8"}}, +"kart_097_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6260F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C128"}}, +"kart_097_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x626178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C1A8"}}, +"kart_097_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6261F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C228"}}, +"kart_097_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x626278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C2A8"}}, +"kart_098_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6262F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C328"}}, +"kart_098_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x626378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C3A8"}}, +"kart_098_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6263F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C428"}}, +"kart_098_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x626478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C4A8"}}, +"kart_099_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6264F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C528"}}, +"kart_099_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x626578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C5A8"}}, +"kart_099_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6265F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C628"}}, +"kart_099_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x626678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C6A8"}}, +"kart_100_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6266F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C728"}}, +"kart_100_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x626778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C7A8"}}, +"kart_100_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6267F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C828"}}, +"kart_100_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x626878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C8A8"}}, +"kart_101_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6268F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C928"}}, +"kart_101_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x626978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62C9A8"}}, +"kart_101_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6269F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62CA28"}}, +"kart_101_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x626A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62CAA8"}}, +"kart_102_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x626AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62CB28"}}, +"kart_102_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x626B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62CBA8"}}, +"kart_102_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x626BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62CC28"}}, +"kart_102_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x626C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62CCA8"}}, +"kart_103_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x626CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62CD28"}}, +"kart_103_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x626D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62CDA8"}}, +"kart_103_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x626DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62CE28"}}, +"kart_103_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x626E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62CEA8"}}, +"kart_104_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x626EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62CF28"}}, +"kart_104_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x626F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62CFA8"}}, +"kart_104_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x626FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D028"}}, +"kart_104_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x627078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D0A8"}}, +"kart_105_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6270F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D128"}}, +"kart_105_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x627178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D1A8"}}, +"kart_105_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6271F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D228"}}, +"kart_105_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x627278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D2A8"}}, +"kart_106_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6272F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D328"}}, +"kart_106_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x627378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D3A8"}}, +"kart_106_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6273F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D428"}}, +"kart_106_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x627478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D4A8"}}, +"kart_107_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6274F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D528"}}, +"kart_107_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x627578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D5A8"}}, +"kart_107_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6275F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D628"}}, +"kart_107_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x627678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D6A8"}}, +"kart_108_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6276F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D728"}}, +"kart_108_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x627778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D7A8"}}, +"kart_108_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6277F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D828"}}, +"kart_108_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x627878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D8A8"}}, +"kart_109_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6278F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D928"}}, +"kart_109_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x627978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62D9A8"}}, +"kart_109_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6279F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62DA28"}}, +"kart_109_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x627A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62DAA8"}}, +"kart_110_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x627AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62DB28"}}, +"kart_110_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x627B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62DBA8"}}, +"kart_110_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x627BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62DC28"}}, +"kart_110_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x627C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62DCA8"}}, +"kart_111_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x627CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62DD28"}}, +"kart_111_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x627D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62DDA8"}}, +"kart_111_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x627DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62DE28"}}, +"kart_111_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x627E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62DEA8"}}, +"kart_112_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x627EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62DF28"}}, +"kart_112_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x627F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62DFA8"}}, +"kart_112_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x627FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E028"}}, +"kart_112_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x628078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E0A8"}}, +"kart_113_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6280F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E128"}}, +"kart_113_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x628178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E1A8"}}, +"kart_113_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6281F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E228"}}, +"kart_113_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x628278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E2A8"}}, +"kart_114_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6282F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E328"}}, +"kart_114_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x628378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E3A8"}}, +"kart_114_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6283F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E428"}}, +"kart_114_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x628478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E4A8"}}, +"kart_115_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6284F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E528"}}, +"kart_115_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x628578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E5A8"}}, +"kart_115_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6285F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E628"}}, +"kart_115_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x628678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E6A8"}}, +"kart_116_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6286F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E728"}}, +"kart_116_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x628778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E7A8"}}, +"kart_116_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6287F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E828"}}, +"kart_116_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x628878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E8A8"}}, +"kart_117_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6288F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E928"}}, +"kart_117_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x628978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62E9A8"}}, +"kart_117_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6289F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62EA28"}}, +"kart_117_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x628A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62EAA8"}}, +"kart_118_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x628AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62EB28"}}, +"kart_118_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x628B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62EBA8"}}, +"kart_118_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x628BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62EC28"}}, +"kart_118_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x628C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62ECA8"}}, +"kart_119_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x628CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62ED28"}}, +"kart_119_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x628D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62EDA8"}}, +"kart_119_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x628DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62EE28"}}, +"kart_119_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x628E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62EEA8"}}, +"kart_120_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x628EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62EF28"}}, +"kart_120_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x628F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62EFA8"}}, +"kart_120_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x628FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F028"}}, +"kart_120_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x629078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F0A8"}}, +"kart_121_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6290F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F128"}}, +"kart_121_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x629178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F1A8"}}, +"kart_121_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6291F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F228"}}, +"kart_121_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x629278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F2A8"}}, +"kart_122_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6292F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F328"}}, +"kart_122_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x629378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F3A8"}}, +"kart_122_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6293F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F428"}}, +"kart_122_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x629478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F4A8"}}, +"kart_123_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6294F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F528"}}, +"kart_123_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x629578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F5A8"}}, +"kart_123_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6295F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F628"}}, +"kart_123_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x629678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F6A8"}}, +"kart_124_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6296F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F728"}}, +"kart_124_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x629778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F7A8"}}, +"kart_124_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6297F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F828"}}, +"kart_124_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x629878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F8A8"}}, +"kart_125_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6298F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F928"}}, +"kart_125_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x629978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62F9A8"}}, +"kart_125_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6299F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62FA28"}}, +"kart_125_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x629A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62FAA8"}}, +"kart_126_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x629AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62FB28"}}, +"kart_126_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x629B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62FBA8"}}, +"kart_126_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x629BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62FC28"}}, +"kart_126_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x629C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62FCA8"}}, +"kart_127_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x629CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62FD28"}}, +"kart_127_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x629D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62FDA8"}}, +"kart_127_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x629DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62FE28"}}, +"kart_127_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x629E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62FEA8"}}, +"kart_128_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x629EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62FF28"}}, +"kart_128_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x629F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x62FFA8"}}, +"kart_128_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x629FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630028"}}, +"kart_128_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62A078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6300A8"}}, +"kart_129_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62A0F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630128"}}, +"kart_129_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62A178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6301A8"}}, +"kart_129_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62A1F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630228"}}, +"kart_129_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62A278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6302A8"}}, +"kart_130_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62A2F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630328"}}, +"kart_130_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62A378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6303A8"}}, +"kart_130_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62A3F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630428"}}, +"kart_130_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62A478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6304A8"}}, +"kart_131_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62A4F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630528"}}, +"kart_131_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62A578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6305A8"}}, +"kart_131_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62A5F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630628"}}, +"kart_131_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62A678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6306A8"}}, +"kart_132_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62A6F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630728"}}, +"kart_132_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62A778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6307A8"}}, +"kart_132_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62A7F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630828"}}, +"kart_132_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62A878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6308A8"}}, +"kart_133_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62A8F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630928"}}, +"kart_133_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62A978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6309A8"}}, +"kart_133_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62A9F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630A28"}}, +"kart_133_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62AA78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630AA8"}}, +"kart_134_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62AAF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630B28"}}, +"kart_134_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62AB78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630BA8"}}, +"kart_134_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62ABF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630C28"}}, +"kart_134_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62AC78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630CA8"}}, +"kart_135_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62ACF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630D28"}}, +"kart_135_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62AD78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630DA8"}}, +"kart_135_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62ADF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630E28"}}, +"kart_135_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62AE78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630EA8"}}, +"kart_136_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62AEF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630F28"}}, +"kart_136_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62AF78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x630FA8"}}, +"kart_136_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62AFF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631028"}}, +"kart_136_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62B078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6310A8"}}, +"kart_137_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62B0F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631128"}}, +"kart_137_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62B178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6311A8"}}, +"kart_137_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62B1F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631228"}}, +"kart_137_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62B278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6312A8"}}, +"kart_138_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62B2F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631328"}}, +"kart_138_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62B378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6313A8"}}, +"kart_138_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62B3F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631428"}}, +"kart_138_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62B478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6314A8"}}, +"kart_139_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62B4F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631528"}}, +"kart_139_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62B578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6315A8"}}, +"kart_139_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62B5F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631628"}}, +"kart_139_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62B678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6316A8"}}, +"kart_140_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62B6F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631728"}}, +"kart_140_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62B778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6317A8"}}, +"kart_140_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62B7F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631828"}}, +"kart_140_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62B878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6318A8"}}, +"kart_141_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62B8F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631928"}}, +"kart_141_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62B978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6319A8"}}, +"kart_141_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62B9F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631A28"}}, +"kart_141_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62BA78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631AA8"}}, +"kart_142_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62BAF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631B28"}}, +"kart_142_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62BB78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631BA8"}}, +"kart_142_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62BBF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631C28"}}, +"kart_142_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62BC78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631CA8"}}, +"kart_143_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62BCF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631D28"}}, +"kart_143_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62BD78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631DA8"}}, +"kart_143_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62BDF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631E28"}}, +"kart_143_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62BE78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631EA8"}}, +"kart_144_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62BEF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631F28"}}, +"kart_144_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62BF78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x631FA8"}}, +"kart_144_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62BFF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632028"}}, +"kart_144_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62C078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6320A8"}}, +"kart_145_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62C0F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632128"}}, +"kart_145_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62C178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6321A8"}}, +"kart_145_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62C1F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632228"}}, +"kart_145_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62C278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6322A8"}}, +"kart_146_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62C2F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632328"}}, +"kart_146_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62C378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6323A8"}}, +"kart_146_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62C3F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632428"}}, +"kart_146_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62C478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6324A8"}}, +"kart_147_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62C4F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632528"}}, +"kart_147_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62C578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6325A8"}}, +"kart_147_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62C5F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632628"}}, +"kart_147_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62C678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6326A8"}}, +"kart_148_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62C6F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632728"}}, +"kart_148_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62C778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6327A8"}}, +"kart_148_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62C7F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632828"}}, +"kart_148_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62C878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6328A8"}}, +"kart_149_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62C8F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632928"}}, +"kart_149_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62C978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6329A8"}}, +"kart_149_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62C9F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632A28"}}, +"kart_149_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62CA78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632AA8"}}, +"kart_150_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62CAF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632B28"}}, +"kart_150_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62CB78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632BA8"}}, +"kart_150_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62CBF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632C28"}}, +"kart_150_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62CC78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632CA8"}}, +"kart_151_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62CCF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632D28"}}, +"kart_151_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62CD78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632DA8"}}, +"kart_151_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62CDF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632E28"}}, +"kart_151_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62CE78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632EA8"}}, +"kart_152_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62CEF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632F28"}}, +"kart_152_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62CF78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x632FA8"}}, +"kart_152_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62CFF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633028"}}, +"kart_152_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62D078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6330A8"}}, +"kart_153_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62D0F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633128"}}, +"kart_153_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62D178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6331A8"}}, +"kart_153_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62D1F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633228"}}, +"kart_153_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62D278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6332A8"}}, +"kart_154_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62D2F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633328"}}, +"kart_154_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62D378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6333A8"}}, +"kart_154_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62D3F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633428"}}, +"kart_154_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62D478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6334A8"}}, +"kart_155_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62D4F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633528"}}, +"kart_155_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62D578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6335A8"}}, +"kart_155_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62D5F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633628"}}, +"kart_155_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62D678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6336A8"}}, +"kart_156_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62D6F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633728"}}, +"kart_156_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62D778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6337A8"}}, +"kart_156_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62D7F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633828"}}, +"kart_156_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62D878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6338A8"}}, +"kart_157_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62D8F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633928"}}, +"kart_157_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62D978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6339A8"}}, +"kart_157_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62D9F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633A28"}}, +"kart_157_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62DA78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633AA8"}}, +"kart_158_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62DAF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633B28"}}, +"kart_158_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62DB78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633BA8"}}, +"kart_158_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62DBF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633C28"}}, +"kart_158_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62DC78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633CA8"}}, +"kart_159_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62DCF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633D28"}}, +"kart_159_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62DD78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633DA8"}}, +"kart_159_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62DDF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633E28"}}, +"kart_159_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62DE78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633EA8"}}, +"kart_160_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62DEF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633F28"}}, +"kart_160_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62DF78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x633FA8"}}, +"kart_160_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62DFF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634028"}}, +"kart_160_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62E078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6340A8"}}, +"kart_161_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62E0F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634128"}}, +"kart_161_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62E178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6341A8"}}, +"kart_161_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62E1F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634228"}}, +"kart_161_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62E278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6342A8"}}, +"kart_162_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62E2F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634328"}}, +"kart_162_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62E378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6343A8"}}, +"kart_162_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62E3F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634428"}}, +"kart_162_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62E478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6344A8"}}, +"kart_163_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62E4F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634528"}}, +"kart_163_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62E578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6345A8"}}, +"kart_163_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62E5F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634628"}}, +"kart_163_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62E678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6346A8"}}, +"kart_164_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62E6F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634728"}}, +"kart_164_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62E778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6347A8"}}, +"kart_164_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62E7F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634828"}}, +"kart_164_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62E878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6348A8"}}, +"kart_165_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62E8F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634928"}}, +"kart_165_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62E978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6349A8"}}, +"kart_165_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62E9F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634A28"}}, +"kart_165_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62EA78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634AA8"}}, +"kart_166_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62EAF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634B28"}}, +"kart_166_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62EB78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634BA8"}}, +"kart_166_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62EBF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634C28"}}, +"kart_166_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62EC78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634CA8"}}, +"kart_167_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62ECF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634D28"}}, +"kart_167_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62ED78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634DA8"}}, +"kart_167_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62EDF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634E28"}}, +"kart_167_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62EE78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634EA8"}}, +"kart_168_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62EEF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634F28"}}, +"kart_168_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62EF78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x634FA8"}}, +"kart_168_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62EFF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635028"}}, +"kart_168_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62F078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6350A8"}}, +"kart_169_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62F0F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635128"}}, +"kart_169_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62F178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6351A8"}}, +"kart_169_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62F1F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635228"}}, +"kart_169_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62F278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6352A8"}}, +"kart_170_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62F2F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635328"}}, +"kart_170_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62F378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6353A8"}}, +"kart_170_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62F3F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635428"}}, +"kart_170_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62F478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6354A8"}}, +"kart_171_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62F4F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635528"}}, +"kart_171_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62F578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6355A8"}}, +"kart_171_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62F5F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635628"}}, +"kart_171_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62F678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6356A8"}}, +"kart_172_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62F6F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635728"}}, +"kart_172_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62F778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6357A8"}}, +"kart_172_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62F7F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635828"}}, +"kart_172_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62F878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6358A8"}}, +"kart_173_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62F8F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635928"}}, +"kart_173_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62F978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6359A8"}}, +"kart_173_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62F9F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635A28"}}, +"kart_173_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62FA78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635AA8"}}, +"kart_174_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62FAF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635B28"}}, +"kart_174_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62FB78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635BA8"}}, +"kart_174_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62FBF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635C28"}}, +"kart_174_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62FC78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635CA8"}}, +"kart_175_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62FCF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635D28"}}, +"kart_175_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62FD78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635DA8"}}, +"kart_175_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62FDF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635E28"}}, +"kart_175_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x62FE78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635EA8"}}, +"kart_176_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x62FEF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635F28"}}, +"kart_176_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x62FF78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x635FA8"}}, +"kart_176_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x62FFF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636028"}}, +"kart_176_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x630078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6360A8"}}, +"kart_177_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6300F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636128"}}, +"kart_177_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x630178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6361A8"}}, +"kart_177_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6301F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636228"}}, +"kart_177_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x630278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6362A8"}}, +"kart_178_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6302F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636328"}}, +"kart_178_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x630378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6363A8"}}, +"kart_178_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6303F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636428"}}, +"kart_178_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x630478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6364A8"}}, +"kart_179_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6304F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636528"}}, +"kart_179_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x630578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6365A8"}}, +"kart_179_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6305F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636628"}}, +"kart_179_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x630678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6366A8"}}, +"kart_180_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6306F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636728"}}, +"kart_180_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x630778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6367A8"}}, +"kart_180_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6307F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636828"}}, +"kart_180_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x630878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6368A8"}}, +"kart_181_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6308F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636928"}}, +"kart_181_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x630978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6369A8"}}, +"kart_181_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6309F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636A28"}}, +"kart_181_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x630A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636AA8"}}, +"kart_182_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x630AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636B28"}}, +"kart_182_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x630B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636BA8"}}, +"kart_182_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x630BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636C28"}}, +"kart_182_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x630C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636CA8"}}, +"kart_183_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x630CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636D28"}}, +"kart_183_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x630D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636DA8"}}, +"kart_183_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x630DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636E28"}}, +"kart_183_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x630E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636EA8"}}, +"kart_184_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x630EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636F28"}}, +"kart_184_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x630F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x636FA8"}}, +"kart_184_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x630FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637028"}}, +"kart_184_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x631078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6370A8"}}, +"kart_185_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6310F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637128"}}, +"kart_185_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x631178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6371A8"}}, +"kart_185_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6311F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637228"}}, +"kart_185_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x631278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6372A8"}}, +"kart_186_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6312F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637328"}}, +"kart_186_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x631378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6373A8"}}, +"kart_186_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6313F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637428"}}, +"kart_186_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x631478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6374A8"}}, +"kart_187_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6314F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637528"}}, +"kart_187_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x631578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6375A8"}}, +"kart_187_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6315F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637628"}}, +"kart_187_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x631678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6376A8"}}, +"kart_188_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6316F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637728"}}, +"kart_188_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x631778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6377A8"}}, +"kart_188_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6317F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637828"}}, +"kart_188_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x631878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6378A8"}}, +"kart_189_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6318F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637928"}}, +"kart_189_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x631978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6379A8"}}, +"kart_189_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6319F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637A28"}}, +"kart_189_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x631A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637AA8"}}, +"kart_190_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x631AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637B28"}}, +"kart_190_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x631B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637BA8"}}, +"kart_190_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x631BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637C28"}}, +"kart_190_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x631C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637CA8"}}, +"kart_191_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x631CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637D28"}}, +"kart_191_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x631D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637DA8"}}, +"kart_191_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x631DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637E28"}}, +"kart_191_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x631E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637EA8"}}, +"kart_192_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x631EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637F28"}}, +"kart_192_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x631F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x637FA8"}}, +"kart_192_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x631FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638028"}}, +"kart_192_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x632078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6380A8"}}, +"kart_193_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6320F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638128"}}, +"kart_193_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x632178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6381A8"}}, +"kart_193_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6321F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638228"}}, +"kart_193_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x632278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6382A8"}}, +"kart_194_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6322F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638328"}}, +"kart_194_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x632378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6383A8"}}, +"kart_194_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6323F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638428"}}, +"kart_194_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x632478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6384A8"}}, +"kart_195_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6324F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638528"}}, +"kart_195_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x632578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6385A8"}}, +"kart_195_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6325F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638628"}}, +"kart_195_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x632678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6386A8"}}, +"kart_196_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6326F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638728"}}, +"kart_196_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x632778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6387A8"}}, +"kart_196_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6327F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638828"}}, +"kart_196_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x632878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6388A8"}}, +"kart_197_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6328F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638928"}}, +"kart_197_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x632978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6389A8"}}, +"kart_197_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6329F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638A28"}}, +"kart_197_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x632A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638AA8"}}, +"kart_198_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x632AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638B28"}}, +"kart_198_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x632B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638BA8"}}, +"kart_198_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x632BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638C28"}}, +"kart_198_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x632C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638CA8"}}, +"kart_199_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x632CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638D28"}}, +"kart_199_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x632D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638DA8"}}, +"kart_199_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x632DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638E28"}}, +"kart_199_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x632E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638EA8"}}, +"kart_200_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x632EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638F28"}}, +"kart_200_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x632F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x638FA8"}}, +"kart_200_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x632FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639028"}}, +"kart_200_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x633078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6390A8"}}, +"kart_201_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6330F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639128"}}, +"kart_201_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x633178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6391A8"}}, +"kart_201_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6331F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639228"}}, +"kart_201_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x633278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6392A8"}}, +"kart_202_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6332F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639328"}}, +"kart_202_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x633378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6393A8"}}, +"kart_202_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6333F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639428"}}, +"kart_202_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x633478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6394A8"}}, +"kart_203_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6334F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639528"}}, +"kart_203_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x633578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6395A8"}}, +"kart_203_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6335F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639628"}}, +"kart_203_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x633678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6396A8"}}, +"kart_204_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6336F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639728"}}, +"kart_204_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x633778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6397A8"}}, +"kart_204_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6337F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639828"}}, +"kart_204_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x633878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6398A8"}}, +"kart_205_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6338F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639928"}}, +"kart_205_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x633978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6399A8"}}, +"kart_205_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6339F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639A28"}}, +"kart_205_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x633A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639AA8"}}, +"kart_206_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x633AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639B28"}}, +"kart_206_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x633B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639BA8"}}, +"kart_206_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x633BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639C28"}}, +"kart_206_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x633C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639CA8"}}, +"kart_207_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x633CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639D28"}}, +"kart_207_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x633D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639DA8"}}, +"kart_207_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x633DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639E28"}}, +"kart_207_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x633E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639EA8"}}, +"kart_208_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x633EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639F28"}}, +"kart_208_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x633F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x639FA8"}}, +"kart_208_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x633FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A028"}}, +"kart_208_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x634078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A0A8"}}, +"kart_209_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6340F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A128"}}, +"kart_209_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x634178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A1A8"}}, +"kart_209_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6341F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A228"}}, +"kart_209_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x634278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A2A8"}}, +"kart_210_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6342F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A328"}}, +"kart_210_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x634378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A3A8"}}, +"kart_210_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6343F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A428"}}, +"kart_210_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x634478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A4A8"}}, +"kart_211_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6344F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A528"}}, +"kart_211_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x634578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A5A8"}}, +"kart_211_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6345F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A628"}}, +"kart_211_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x634678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A6A8"}}, +"kart_212_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6346F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A728"}}, +"kart_212_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x634778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A7A8"}}, +"kart_212_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6347F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A828"}}, +"kart_212_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x634878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A8A8"}}, +"kart_213_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6348F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A928"}}, +"kart_213_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x634978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63A9A8"}}, +"kart_213_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6349F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63AA28"}}, +"kart_213_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x634A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63AAA8"}}, +"kart_214_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x634AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63AB28"}}, +"kart_214_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x634B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63ABA8"}}, +"kart_214_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x634BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63AC28"}}, +"kart_214_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x634C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63ACA8"}}, +"kart_215_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x634CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63AD28"}}, +"kart_215_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x634D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63ADA8"}}, +"kart_215_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x634DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63AE28"}}, +"kart_215_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x634E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63AEA8"}}, +"kart_216_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x634EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63AF28"}}, +"kart_216_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x634F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63AFA8"}}, +"kart_216_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x634FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B028"}}, +"kart_216_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x635078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B0A8"}}, +"kart_217_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6350F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B128"}}, +"kart_217_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x635178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B1A8"}}, +"kart_217_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6351F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B228"}}, +"kart_217_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x635278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B2A8"}}, +"kart_218_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6352F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B328"}}, +"kart_218_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x635378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B3A8"}}, +"kart_218_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6353F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B428"}}, +"kart_218_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x635478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B4A8"}}, +"kart_219_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6354F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B528"}}, +"kart_219_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x635578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B5A8"}}, +"kart_219_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6355F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B628"}}, +"kart_219_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x635678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B6A8"}}, +"kart_220_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6356F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B728"}}, +"kart_220_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x635778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B7A8"}}, +"kart_220_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6357F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B828"}}, +"kart_220_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x635878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B8A8"}}, +"kart_221_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6358F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B928"}}, +"kart_221_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x635978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63B9A8"}}, +"kart_221_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6359F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63BA28"}}, +"kart_221_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x635A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63BAA8"}}, +"kart_222_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x635AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63BB28"}}, +"kart_222_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x635B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63BBA8"}}, +"kart_222_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x635BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63BC28"}}, +"kart_222_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x635C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63BCA8"}}, +"kart_223_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x635CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63BD28"}}, +"kart_223_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x635D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63BDA8"}}, +"kart_223_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x635DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63BE28"}}, +"kart_223_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x635E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63BEA8"}}, +"kart_224_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x635EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63BF28"}}, +"kart_224_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x635F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63BFA8"}}, +"kart_224_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x635FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C028"}}, +"kart_224_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x636078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C0A8"}}, +"kart_225_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6360F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C128"}}, +"kart_225_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x636178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C1A8"}}, +"kart_225_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6361F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C228"}}, +"kart_225_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x636278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C2A8"}}, +"kart_226_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6362F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C328"}}, +"kart_226_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x636378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C3A8"}}, +"kart_226_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6363F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C428"}}, +"kart_226_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x636478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C4A8"}}, +"kart_227_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6364F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C528"}}, +"kart_227_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x636578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C5A8"}}, +"kart_227_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6365F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C628"}}, +"kart_227_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x636678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C6A8"}}, +"kart_228_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6366F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C728"}}, +"kart_228_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x636778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C7A8"}}, +"kart_228_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6367F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C828"}}, +"kart_228_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x636878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C8A8"}}, +"kart_229_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6368F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C928"}}, +"kart_229_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x636978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63C9A8"}}, +"kart_229_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6369F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63CA28"}}, +"kart_229_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x636A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63CAA8"}}, +"kart_230_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x636AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63CB28"}}, +"kart_230_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x636B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63CBA8"}}, +"kart_230_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x636BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63CC28"}}, +"kart_230_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x636C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63CCA8"}}, +"kart_231_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x636CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63CD28"}}, +"kart_231_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x636D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63CDA8"}}, +"kart_231_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x636DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63CE28"}}, +"kart_231_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x636E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63CEA8"}}, +"kart_232_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x636EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63CF28"}}, +"kart_232_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x636F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63CFA8"}}, +"kart_232_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x636FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D028"}}, +"kart_232_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x637078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D0A8"}}, +"kart_233_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6370F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D128"}}, +"kart_233_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x637178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D1A8"}}, +"kart_233_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6371F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D228"}}, +"kart_233_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x637278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D2A8"}}, +"kart_234_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6372F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D328"}}, +"kart_234_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x637378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D3A8"}}, +"kart_234_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6373F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D428"}}, +"kart_234_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x637478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D4A8"}}, +"kart_235_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6374F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D528"}}, +"kart_235_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x637578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D5A8"}}, +"kart_235_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6375F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D628"}}, +"kart_235_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x637678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D6A8"}}, +"kart_236_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6376F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D728"}}, +"kart_236_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x637778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D7A8"}}, +"kart_236_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6377F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D828"}}, +"kart_236_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x637878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D8A8"}}, +"kart_237_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6378F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D928"}}, +"kart_237_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x637978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63D9A8"}}, +"kart_237_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6379F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63DA28"}}, +"kart_237_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x637A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63DAA8"}}, +"kart_238_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x637AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63DB28"}}, +"kart_238_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x637B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63DBA8"}}, +"kart_238_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x637BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63DC28"}}, +"kart_238_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x637C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63DCA8"}}, +"kart_239_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x637CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63DD28"}}, +"kart_239_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x637D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63DDA8"}}, +"kart_239_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x637DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63DE28"}}, +"kart_239_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x637E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63DEA8"}}, +"kart_240_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x637EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63DF28"}}, +"kart_240_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x637F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63DFA8"}}, +"kart_240_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x637FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E028"}}, +"kart_240_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x638078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E0A8"}}, +"kart_241_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6380F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E128"}}, +"kart_241_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x638178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E1A8"}}, +"kart_241_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6381F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E228"}}, +"kart_241_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x638278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E2A8"}}, +"kart_242_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6382F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E328"}}, +"kart_242_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x638378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E3A8"}}, +"kart_242_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6383F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E428"}}, +"kart_242_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x638478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E4A8"}}, +"kart_243_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6384F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E528"}}, +"kart_243_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x638578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E5A8"}}, +"kart_243_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6385F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E628"}}, +"kart_243_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x638678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E6A8"}}, +"kart_244_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6386F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E728"}}, +"kart_244_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x638778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E7A8"}}, +"kart_244_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6387F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E828"}}, +"kart_244_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x638878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E8A8"}}, +"kart_245_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6388F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E928"}}, +"kart_245_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x638978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63E9A8"}}, +"kart_245_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6389F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63EA28"}}, +"kart_245_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x638A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63EAA8"}}, +"kart_246_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x638AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63EB28"}}, +"kart_246_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x638B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63EBA8"}}, +"kart_246_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x638BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63EC28"}}, +"kart_246_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x638C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63ECA8"}}, +"kart_247_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x638CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63ED28"}}, +"kart_247_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x638D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63EDA8"}}, +"kart_247_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x638DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63EE28"}}, +"kart_247_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x638E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63EEA8"}}, +"kart_248_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x638EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63EF28"}}, +"kart_248_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x638F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63EFA8"}}, +"kart_248_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x638FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F028"}}, +"kart_248_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x639078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F0A8"}}, +"kart_249_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6390F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F128"}}, +"kart_249_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x639178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F1A8"}}, +"kart_249_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6391F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F228"}}, +"kart_249_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x639278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F2A8"}}, +"kart_250_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6392F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F328"}}, +"kart_250_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x639378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F3A8"}}, +"kart_250_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6393F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F428"}}, +"kart_250_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x639478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F4A8"}}, +"kart_251_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6394F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F528"}}, +"kart_251_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x639578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F5A8"}}, +"kart_251_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6395F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F628"}}, +"kart_251_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x639678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F6A8"}}, +"kart_252_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6396F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F728"}}, +"kart_252_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x639778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F7A8"}}, +"kart_252_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6397F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F828"}}, +"kart_252_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x639878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F8A8"}}, +"kart_253_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x6398F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F928"}}, +"kart_253_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x639978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63F9A8"}}, +"kart_253_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x6399F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63FA28"}}, +"kart_253_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x639A78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63FAA8"}}, +"kart_254_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x639AF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63FB28"}}, +"kart_254_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x639B78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63FBA8"}}, +"kart_254_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x639BF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63FC28"}}, +"kart_254_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x639C78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63FCA8"}}, +"kart_255_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x639CF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63FD28"}}, +"kart_255_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x639D78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63FDA8"}}, +"kart_255_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x639DF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63FE28"}}, +"kart_255_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x639E78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63FEA8"}}, +"kart_256_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x639EF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63FF28"}}, +"kart_256_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x639F78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x63FFA8"}}, +"kart_256_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x639FF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640028"}}, +"kart_256_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63A078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6400A8"}}, +"kart_257_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63A0F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640128"}}, +"kart_257_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63A178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6401A8"}}, +"kart_257_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63A1F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640228"}}, +"kart_257_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63A278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6402A8"}}, +"kart_258_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63A2F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640328"}}, +"kart_258_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63A378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6403A8"}}, +"kart_258_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63A3F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640428"}}, +"kart_258_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63A478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6404A8"}}, +"kart_259_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63A4F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640528"}}, +"kart_259_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63A578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6405A8"}}, +"kart_259_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63A5F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640628"}}, +"kart_259_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63A678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6406A8"}}, +"kart_260_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63A6F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640728"}}, +"kart_260_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63A778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6407A8"}}, +"kart_260_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63A7F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640828"}}, +"kart_260_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63A878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6408A8"}}, +"kart_261_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63A8F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640928"}}, +"kart_261_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63A978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6409A8"}}, +"kart_261_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63A9F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640A28"}}, +"kart_261_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63AA78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640AA8"}}, +"kart_262_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63AAF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640B28"}}, +"kart_262_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63AB78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640BA8"}}, +"kart_262_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63ABF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640C28"}}, +"kart_262_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63AC78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640CA8"}}, +"kart_263_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63ACF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640D28"}}, +"kart_263_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63AD78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640DA8"}}, +"kart_263_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63ADF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640E28"}}, +"kart_263_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63AE78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640EA8"}}, +"kart_264_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63AEF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640F28"}}, +"kart_264_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63AF78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x640FA8"}}, +"kart_264_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63AFF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641028"}}, +"kart_264_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63B078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6410A8"}}, +"kart_265_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63B0F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641128"}}, +"kart_265_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63B178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6411A8"}}, +"kart_265_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63B1F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641228"}}, +"kart_265_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63B278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6412A8"}}, +"kart_266_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63B2F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641328"}}, +"kart_266_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63B378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6413A8"}}, +"kart_266_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63B3F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641428"}}, +"kart_266_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63B478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6414A8"}}, +"kart_267_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63B4F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641528"}}, +"kart_267_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63B578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6415A8"}}, +"kart_267_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63B5F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641628"}}, +"kart_267_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63B678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6416A8"}}, +"kart_268_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63B6F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641728"}}, +"kart_268_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63B778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6417A8"}}, +"kart_268_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63B7F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641828"}}, +"kart_268_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63B878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6418A8"}}, +"kart_269_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63B8F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641928"}}, +"kart_269_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63B978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6419A8"}}, +"kart_269_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63B9F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641A28"}}, +"kart_269_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63BA78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641AA8"}}, +"kart_270_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63BAF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641B28"}}, +"kart_270_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63BB78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641BA8"}}, +"kart_270_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63BBF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641C28"}}, +"kart_270_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63BC78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641CA8"}}, +"kart_271_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63BCF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641D28"}}, +"kart_271_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63BD78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641DA8"}}, +"kart_271_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63BDF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641E28"}}, +"kart_271_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63BE78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641EA8"}}, +"kart_272_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63BEF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641F28"}}, +"kart_272_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63BF78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x641FA8"}}, +"kart_272_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63BFF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642028"}}, +"kart_272_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63C078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6420A8"}}, +"kart_273_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63C0F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642128"}}, +"kart_273_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63C178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6421A8"}}, +"kart_273_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63C1F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642228"}}, +"kart_273_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63C278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6422A8"}}, +"kart_274_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63C2F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642328"}}, +"kart_274_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63C378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6423A8"}}, +"kart_274_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63C3F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642428"}}, +"kart_274_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63C478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6424A8"}}, +"kart_275_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63C4F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642528"}}, +"kart_275_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63C578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6425A8"}}, +"kart_275_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63C5F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642628"}}, +"kart_275_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63C678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6426A8"}}, +"kart_276_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63C6F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642728"}}, +"kart_276_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63C778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6427A8"}}, +"kart_276_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63C7F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642828"}}, +"kart_276_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63C878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6428A8"}}, +"kart_277_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63C8F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642928"}}, +"kart_277_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63C978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6429A8"}}, +"kart_277_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63C9F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642A28"}}, +"kart_277_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63CA78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642AA8"}}, +"kart_278_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63CAF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642B28"}}, +"kart_278_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63CB78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642BA8"}}, +"kart_278_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63CBF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642C28"}}, +"kart_278_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63CC78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642CA8"}}, +"kart_279_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63CCF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642D28"}}, +"kart_279_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63CD78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642DA8"}}, +"kart_279_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63CDF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642E28"}}, +"kart_279_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63CE78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642EA8"}}, +"kart_280_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63CEF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642F28"}}, +"kart_280_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63CF78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x642FA8"}}, +"kart_280_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63CFF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643028"}}, +"kart_280_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63D078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6430A8"}}, +"kart_281_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63D0F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643128"}}, +"kart_281_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63D178", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6431A8"}}, +"kart_281_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63D1F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643228"}}, +"kart_281_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63D278", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6432A8"}}, +"kart_282_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63D2F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643328"}}, +"kart_282_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63D378", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6433A8"}}, +"kart_282_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63D3F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643428"}}, +"kart_282_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63D478", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6434A8"}}, +"kart_283_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63D4F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643528"}}, +"kart_283_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63D578", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6435A8"}}, +"kart_283_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63D5F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643628"}}, +"kart_283_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63D678", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6436A8"}}, +"kart_284_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63D6F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643728"}}, +"kart_284_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63D778", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6437A8"}}, +"kart_284_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63D7F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643828"}}, +"kart_284_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63D878", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6438A8"}}, +"kart_285_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63D8F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643928"}}, +"kart_285_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63D978", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6439A8"}}, +"kart_285_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63D9F8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643A28"}}, +"kart_285_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63DA78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643AA8"}}, +"kart_286_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63DAF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643B28"}}, +"kart_286_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63DB78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643BA8"}}, +"kart_286_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63DBF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643C28"}}, +"kart_286_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63DC78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643CA8"}}, +"kart_287_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63DCF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643D28"}}, +"kart_287_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63DD78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643DA8"}}, +"kart_287_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63DDF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643E28"}}, +"kart_287_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63DE78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643EA8"}}, +"kart_288_wheel_0": {"output_dir": "bowser/palettes", "rom_offset": "0x63DEF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643F28"}}, +"kart_288_wheel_1": {"output_dir": "bowser/palettes", "rom_offset": "0x63DF78", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x643FA8"}}, +"kart_288_wheel_2": {"output_dir": "bowser/palettes", "rom_offset": "0x63DFF8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x644028"}}, +"kart_288_wheel_3": {"output_dir": "bowser/palettes", "rom_offset": "0x63E078", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x6440A8"}}, +"bowser_kart_palette": {"output_dir": "bowser/palettes", "rom_offset": "0x63E0F8", "width": 16, "height": 12, "type": "rgba16", "jp.v11": {"rom_offset": "0x644128"}} } \ No newline at end of file diff --git a/assets/karts/donkeykong_kart.json b/assets/karts/donkeykong_kart.json index 794fca8689..a5ef76e085 100644 --- a/assets/karts/donkeykong_kart.json +++ b/assets/karts/donkeykong_kart.json @@ -1,1480 +1,1480 @@ { -"donkeykong_kart_frame000": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CBE50", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame001": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CC514", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_001_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame002": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CCBCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_002_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame003": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CD270", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_003_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame004": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CD918", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_004_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame005": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CDF90", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_005_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame006": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CE634", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_006_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame007": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CECC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_007_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame008": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CF348", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_008_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame009": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CF9DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_009_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame010": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D009C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_010_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame011": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D0764", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_011_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame012": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D0E24", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_012_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame013": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D14DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_013_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame014": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D1BA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_014_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame015": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D226C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_015_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame016": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D2954", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_016_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame017": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D305C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_017_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame018": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D375C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_018_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame019": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D3E6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_019_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame020": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D457C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_020_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame021": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D4CA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_021_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame022": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D5398", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_022_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame023": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D5A68", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_023_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame024": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D6100", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_024_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame025": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D67B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_025_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame026": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D6E60", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_026_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame027": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D750C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_027_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame028": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D7BC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_028_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame029": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D8280", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_029_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame030": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D8958", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_030_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame031": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D900C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_031_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame032": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D96CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_032_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame033": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D9D90", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_033_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame034": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DA45C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_034_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame035": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DAB40", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_035_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame036": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DB224", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_036_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame037": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DB908", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_037_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame038": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DC00C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_038_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame039": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DC720", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_039_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame040": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DCE48", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_040_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame041": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DD56C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_041_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame042": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DDCA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_042_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame043": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DE388", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_043_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame044": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DEA74", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_044_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame045": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DF140", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_045_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame046": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DF81C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_046_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame047": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DFEFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_047_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame048": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E05D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_048_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame049": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E0C98", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_049_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame050": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E1360", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_050_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame051": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E1A10", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_051_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame052": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E20EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_052_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame053": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E27C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_053_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame054": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E2E90", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_054_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame055": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E355C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_055_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame056": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E3C38", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_056_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame057": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E4324", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_057_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame058": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E4A18", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_058_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame059": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E511C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_059_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame060": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E5828", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_060_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame061": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E5F54", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_061_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame062": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E6670", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_062_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame063": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E6DA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_063_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame064": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E74B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_064_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame065": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E7BC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_065_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame066": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E82B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_066_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame067": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E89AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_067_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame068": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E90AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_068_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame069": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E9788", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_069_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame070": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E9E54", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_070_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame071": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EA538", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_071_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame072": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EAC04", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_072_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame073": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EB2D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_073_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame074": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EB9A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_074_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame075": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EC080", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_075_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame076": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EC758", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_076_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame077": {"output_dir": "donkeykong/frames", "rom_offset": "0x4ECE38", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_077_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame078": {"output_dir": "donkeykong/frames", "rom_offset": "0x4ED524", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_078_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame079": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EDC24", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_079_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame080": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EE34C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_080_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame081": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EEA7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_081_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame082": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EF1B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_082_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame083": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EF8EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_083_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame084": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F002C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_084_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame085": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F0728", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_085_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame086": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F0E2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_086_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame087": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F1510", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_087_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame088": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F1C20", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_088_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame089": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F2310", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_089_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame090": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F2A08", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_090_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame091": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F30FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_091_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame092": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F37E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_092_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame093": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F3EC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_093_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame094": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F45A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_094_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame095": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F4C80", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_095_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame096": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F5364", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_096_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame097": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F5A44", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_097_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame098": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F613C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_098_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame099": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F6844", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_099_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame100": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F6F4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_100_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame101": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F767C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_101_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame102": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F7DCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_102_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame103": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F84FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_103_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame104": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F8C34", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_104_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame105": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F9384", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_105_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame106": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F9A90", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_106_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame107": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FA1AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_107_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame108": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FA8CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_108_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame109": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FAFF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_109_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame110": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FB70C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_110_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame111": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FBE28", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_111_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame112": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FC520", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_112_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame113": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FCC10", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_113_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame114": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FD310", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_114_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame115": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FD9F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_115_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame116": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FE0DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_116_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame117": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FE7BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_117_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame118": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FEEBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_118_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame119": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FF5B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_119_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame120": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FFCC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_120_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame121": {"output_dir": "donkeykong/frames", "rom_offset": "0x5003D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_121_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame122": {"output_dir": "donkeykong/frames", "rom_offset": "0x500AFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_122_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame123": {"output_dir": "donkeykong/frames", "rom_offset": "0x501224", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_123_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame124": {"output_dir": "donkeykong/frames", "rom_offset": "0x501958", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_124_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame125": {"output_dir": "donkeykong/frames", "rom_offset": "0x502090", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_125_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame126": {"output_dir": "donkeykong/frames", "rom_offset": "0x5027E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_126_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame127": {"output_dir": "donkeykong/frames", "rom_offset": "0x502F1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_127_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame128": {"output_dir": "donkeykong/frames", "rom_offset": "0x503648", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_128_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame129": {"output_dir": "donkeykong/frames", "rom_offset": "0x503D88", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_129_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame130": {"output_dir": "donkeykong/frames", "rom_offset": "0x5044A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_130_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame131": {"output_dir": "donkeykong/frames", "rom_offset": "0x504BB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_131_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame132": {"output_dir": "donkeykong/frames", "rom_offset": "0x5052BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_132_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame133": {"output_dir": "donkeykong/frames", "rom_offset": "0x5059CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_133_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame134": {"output_dir": "donkeykong/frames", "rom_offset": "0x5060CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_134_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame135": {"output_dir": "donkeykong/frames", "rom_offset": "0x5067CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_135_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame136": {"output_dir": "donkeykong/frames", "rom_offset": "0x506EC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_136_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame137": {"output_dir": "donkeykong/frames", "rom_offset": "0x5075A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_137_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame138": {"output_dir": "donkeykong/frames", "rom_offset": "0x507C88", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_138_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame139": {"output_dir": "donkeykong/frames", "rom_offset": "0x508374", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_139_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame140": {"output_dir": "donkeykong/frames", "rom_offset": "0x508A64", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_140_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame141": {"output_dir": "donkeykong/frames", "rom_offset": "0x509168", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_141_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame142": {"output_dir": "donkeykong/frames", "rom_offset": "0x50988C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_142_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame143": {"output_dir": "donkeykong/frames", "rom_offset": "0x509FC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_143_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame144": {"output_dir": "donkeykong/frames", "rom_offset": "0x50A6F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_144_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame145": {"output_dir": "donkeykong/frames", "rom_offset": "0x50AE34", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_145_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame146": {"output_dir": "donkeykong/frames", "rom_offset": "0x50B578", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_146_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame147": {"output_dir": "donkeykong/frames", "rom_offset": "0x50BCD0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_147_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame148": {"output_dir": "donkeykong/frames", "rom_offset": "0x50C41C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_148_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame149": {"output_dir": "donkeykong/frames", "rom_offset": "0x50CB5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_149_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame150": {"output_dir": "donkeykong/frames", "rom_offset": "0x50D290", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_150_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame151": {"output_dir": "donkeykong/frames", "rom_offset": "0x50D9AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_151_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame152": {"output_dir": "donkeykong/frames", "rom_offset": "0x50E0CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_152_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame153": {"output_dir": "donkeykong/frames", "rom_offset": "0x50E7F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_153_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame154": {"output_dir": "donkeykong/frames", "rom_offset": "0x50EF24", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_154_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame155": {"output_dir": "donkeykong/frames", "rom_offset": "0x50F644", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_155_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame156": {"output_dir": "donkeykong/frames", "rom_offset": "0x50FD44", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_156_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame157": {"output_dir": "donkeykong/frames", "rom_offset": "0x510434", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_157_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame158": {"output_dir": "donkeykong/frames", "rom_offset": "0x510B28", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_158_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame159": {"output_dir": "donkeykong/frames", "rom_offset": "0x511224", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_159_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame160": {"output_dir": "donkeykong/frames", "rom_offset": "0x511920", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_160_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame161": {"output_dir": "donkeykong/frames", "rom_offset": "0x512020", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_161_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame162": {"output_dir": "donkeykong/frames", "rom_offset": "0x512744", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_162_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame163": {"output_dir": "donkeykong/frames", "rom_offset": "0x512E74", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_163_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame164": {"output_dir": "donkeykong/frames", "rom_offset": "0x5135A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_164_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame165": {"output_dir": "donkeykong/frames", "rom_offset": "0x513CEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_165_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame166": {"output_dir": "donkeykong/frames", "rom_offset": "0x514450", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_166_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame167": {"output_dir": "donkeykong/frames", "rom_offset": "0x514BA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_167_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame168": {"output_dir": "donkeykong/frames", "rom_offset": "0x515308", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_168_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame169": {"output_dir": "donkeykong/frames", "rom_offset": "0x515A48", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_169_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame170": {"output_dir": "donkeykong/frames", "rom_offset": "0x516194", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_170_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame171": {"output_dir": "donkeykong/frames", "rom_offset": "0x5168D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_171_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame172": {"output_dir": "donkeykong/frames", "rom_offset": "0x51700C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_172_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame173": {"output_dir": "donkeykong/frames", "rom_offset": "0x517728", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_173_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame174": {"output_dir": "donkeykong/frames", "rom_offset": "0x517E38", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_174_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame175": {"output_dir": "donkeykong/frames", "rom_offset": "0x518568", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_175_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame176": {"output_dir": "donkeykong/frames", "rom_offset": "0x518C70", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_176_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame177": {"output_dir": "donkeykong/frames", "rom_offset": "0x519360", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_177_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame178": {"output_dir": "donkeykong/frames", "rom_offset": "0x519A58", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_178_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame179": {"output_dir": "donkeykong/frames", "rom_offset": "0x51A154", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_179_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame180": {"output_dir": "donkeykong/frames", "rom_offset": "0x51A844", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_180_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame181": {"output_dir": "donkeykong/frames", "rom_offset": "0x51AF44", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_181_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame182": {"output_dir": "donkeykong/frames", "rom_offset": "0x51B640", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_182_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame183": {"output_dir": "donkeykong/frames", "rom_offset": "0x51BD58", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_183_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame184": {"output_dir": "donkeykong/frames", "rom_offset": "0x51C484", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_184_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame185": {"output_dir": "donkeykong/frames", "rom_offset": "0x51CBDC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_185_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame186": {"output_dir": "donkeykong/frames", "rom_offset": "0x51D330", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_186_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame187": {"output_dir": "donkeykong/frames", "rom_offset": "0x51DAA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_187_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame188": {"output_dir": "donkeykong/frames", "rom_offset": "0x51E228", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_188_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame189": {"output_dir": "donkeykong/frames", "rom_offset": "0x51E9A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_189_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame190": {"output_dir": "donkeykong/frames", "rom_offset": "0x51F068", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_190_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame191": {"output_dir": "donkeykong/frames", "rom_offset": "0x51F758", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_191_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame192": {"output_dir": "donkeykong/frames", "rom_offset": "0x51FE58", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_192_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame193": {"output_dir": "donkeykong/frames", "rom_offset": "0x520580", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_193_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame194": {"output_dir": "donkeykong/frames", "rom_offset": "0x520C9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_194_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame195": {"output_dir": "donkeykong/frames", "rom_offset": "0x5213B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_195_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame196": {"output_dir": "donkeykong/frames", "rom_offset": "0x521AD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_196_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame197": {"output_dir": "donkeykong/frames", "rom_offset": "0x522210", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_197_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame198": {"output_dir": "donkeykong/frames", "rom_offset": "0x522930", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_198_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame199": {"output_dir": "donkeykong/frames", "rom_offset": "0x523070", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_199_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame200": {"output_dir": "donkeykong/frames", "rom_offset": "0x5237D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_200_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame201": {"output_dir": "donkeykong/frames", "rom_offset": "0x523F70", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_201_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame202": {"output_dir": "donkeykong/frames", "rom_offset": "0x524728", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_202_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame203": {"output_dir": "donkeykong/frames", "rom_offset": "0x524EF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_203_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame204": {"output_dir": "donkeykong/frames", "rom_offset": "0x5256BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_204_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame205": {"output_dir": "donkeykong/frames", "rom_offset": "0x525E6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_205_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame206": {"output_dir": "donkeykong/frames", "rom_offset": "0x526650", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_206_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame207": {"output_dir": "donkeykong/frames", "rom_offset": "0x526E2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_207_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame208": {"output_dir": "donkeykong/frames", "rom_offset": "0x5275E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_208_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame209": {"output_dir": "donkeykong/frames", "rom_offset": "0x527D98", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_209_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame210": {"output_dir": "donkeykong/frames", "rom_offset": "0x528490", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_210_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame211": {"output_dir": "donkeykong/frames", "rom_offset": "0x528BA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_211_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame212": {"output_dir": "donkeykong/frames", "rom_offset": "0x5292EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_212_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame213": {"output_dir": "donkeykong/frames", "rom_offset": "0x529A3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_213_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame214": {"output_dir": "donkeykong/frames", "rom_offset": "0x52A150", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_214_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame215": {"output_dir": "donkeykong/frames", "rom_offset": "0x52A880", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_215_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame216": {"output_dir": "donkeykong/frames", "rom_offset": "0x52AFCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_216_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame217": {"output_dir": "donkeykong/frames", "rom_offset": "0x52B708", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_217_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame218": {"output_dir": "donkeykong/frames", "rom_offset": "0x52BE20", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_218_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame219": {"output_dir": "donkeykong/frames", "rom_offset": "0x52C550", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_219_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame220": {"output_dir": "donkeykong/frames", "rom_offset": "0x52CC94", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_220_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame221": {"output_dir": "donkeykong/frames", "rom_offset": "0x52D3E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_221_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame222": {"output_dir": "donkeykong/frames", "rom_offset": "0x52DB4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_222_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame223": {"output_dir": "donkeykong/frames", "rom_offset": "0x52E2D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_223_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame224": {"output_dir": "donkeykong/frames", "rom_offset": "0x52EA4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_224_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame225": {"output_dir": "donkeykong/frames", "rom_offset": "0x52F1CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_225_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame226": {"output_dir": "donkeykong/frames", "rom_offset": "0x52F95C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_226_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame227": {"output_dir": "donkeykong/frames", "rom_offset": "0x5300CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_227_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame228": {"output_dir": "donkeykong/frames", "rom_offset": "0x530848", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_228_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame229": {"output_dir": "donkeykong/frames", "rom_offset": "0x530F9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_229_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame230": {"output_dir": "donkeykong/frames", "rom_offset": "0x5316B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_230_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame231": {"output_dir": "donkeykong/frames", "rom_offset": "0x531E1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_231_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame232": {"output_dir": "donkeykong/frames", "rom_offset": "0x532578", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_232_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame233": {"output_dir": "donkeykong/frames", "rom_offset": "0x532CD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_233_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame234": {"output_dir": "donkeykong/frames", "rom_offset": "0x533428", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_234_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame235": {"output_dir": "donkeykong/frames", "rom_offset": "0x533B70", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_235_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame236": {"output_dir": "donkeykong/frames", "rom_offset": "0x5342C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_236_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame237": {"output_dir": "donkeykong/frames", "rom_offset": "0x534A0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_237_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame238": {"output_dir": "donkeykong/frames", "rom_offset": "0x535148", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_238_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame239": {"output_dir": "donkeykong/frames", "rom_offset": "0x53586C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_239_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame240": {"output_dir": "donkeykong/frames", "rom_offset": "0x535F98", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_240_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame241": {"output_dir": "donkeykong/frames", "rom_offset": "0x5366F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_241_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame242": {"output_dir": "donkeykong/frames", "rom_offset": "0x536E5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_242_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame243": {"output_dir": "donkeykong/frames", "rom_offset": "0x5375BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_243_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame244": {"output_dir": "donkeykong/frames", "rom_offset": "0x537D24", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_244_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame245": {"output_dir": "donkeykong/frames", "rom_offset": "0x53846C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_245_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame246": {"output_dir": "donkeykong/frames", "rom_offset": "0x538BC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_246_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame247": {"output_dir": "donkeykong/frames", "rom_offset": "0x539300", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_247_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame248": {"output_dir": "donkeykong/frames", "rom_offset": "0x539A24", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_248_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame249": {"output_dir": "donkeykong/frames", "rom_offset": "0x53A130", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_249_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame250": {"output_dir": "donkeykong/frames", "rom_offset": "0x53A84C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_250_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame251": {"output_dir": "donkeykong/frames", "rom_offset": "0x53AFA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_251_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame252": {"output_dir": "donkeykong/frames", "rom_offset": "0x53B6FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_252_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame253": {"output_dir": "donkeykong/frames", "rom_offset": "0x53BE4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_253_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame254": {"output_dir": "donkeykong/frames", "rom_offset": "0x53C590", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_254_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame255": {"output_dir": "donkeykong/frames", "rom_offset": "0x53CCE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_255_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame256": {"output_dir": "donkeykong/frames", "rom_offset": "0x53D434", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_256_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame257": {"output_dir": "donkeykong/frames", "rom_offset": "0x53DB8C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_257_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame258": {"output_dir": "donkeykong/frames", "rom_offset": "0x53E2B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_258_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame259": {"output_dir": "donkeykong/frames", "rom_offset": "0x53E9EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_259_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame260": {"output_dir": "donkeykong/frames", "rom_offset": "0x53F130", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_260_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame261": {"output_dir": "donkeykong/frames", "rom_offset": "0x53F870", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_261_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame262": {"output_dir": "donkeykong/frames", "rom_offset": "0x53FFB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_262_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame263": {"output_dir": "donkeykong/frames", "rom_offset": "0x5406CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_263_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame264": {"output_dir": "donkeykong/frames", "rom_offset": "0x540DD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_264_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame265": {"output_dir": "donkeykong/frames", "rom_offset": "0x541504", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_265_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame266": {"output_dir": "donkeykong/frames", "rom_offset": "0x541C24", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_266_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame267": {"output_dir": "donkeykong/frames", "rom_offset": "0x542314", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_267_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame268": {"output_dir": "donkeykong/frames", "rom_offset": "0x542A00", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_268_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame269": {"output_dir": "donkeykong/frames", "rom_offset": "0x5430BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_269_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame270": {"output_dir": "donkeykong/frames", "rom_offset": "0x5437F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_270_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame271": {"output_dir": "donkeykong/frames", "rom_offset": "0x543F6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_271_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame272": {"output_dir": "donkeykong/frames", "rom_offset": "0x5446D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_272_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame273": {"output_dir": "donkeykong/frames", "rom_offset": "0x544E60", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_273_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame274": {"output_dir": "donkeykong/frames", "rom_offset": "0x5455C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_274_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame275": {"output_dir": "donkeykong/frames", "rom_offset": "0x545D40", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_275_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame276": {"output_dir": "donkeykong/frames", "rom_offset": "0x54649C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_276_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame277": {"output_dir": "donkeykong/frames", "rom_offset": "0x546BFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_277_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame278": {"output_dir": "donkeykong/frames", "rom_offset": "0x547340", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_278_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame279": {"output_dir": "donkeykong/frames", "rom_offset": "0x547A74", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_279_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame280": {"output_dir": "donkeykong/frames", "rom_offset": "0x5481B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_280_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame281": {"output_dir": "donkeykong/frames", "rom_offset": "0x5488E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_281_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame282": {"output_dir": "donkeykong/frames", "rom_offset": "0x549008", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_282_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame283": {"output_dir": "donkeykong/frames", "rom_offset": "0x549704", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_283_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame284": {"output_dir": "donkeykong/frames", "rom_offset": "0x549DF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_284_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame285": {"output_dir": "donkeykong/frames", "rom_offset": "0x54A4D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_285_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame286": {"output_dir": "donkeykong/frames", "rom_offset": "0x54AB84", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_286_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame287": {"output_dir": "donkeykong/frames", "rom_offset": "0x54B200", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_287_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame288": {"output_dir": "donkeykong/frames", "rom_offset": "0x54B85C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_288_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame289": {"output_dir": "donkeykong/frames", "rom_offset": "0x54BEA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame290": {"output_dir": "donkeykong/frames", "rom_offset": "0x54C558", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame291": {"output_dir": "donkeykong/frames", "rom_offset": "0x54CC18", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame292": {"output_dir": "donkeykong/frames", "rom_offset": "0x54D2BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame293": {"output_dir": "donkeykong/frames", "rom_offset": "0x54D98C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame294": {"output_dir": "donkeykong/frames", "rom_offset": "0x54DFE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame295": {"output_dir": "donkeykong/frames", "rom_offset": "0x54E668", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame296": {"output_dir": "donkeykong/frames", "rom_offset": "0x54ED50", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame297": {"output_dir": "donkeykong/frames", "rom_offset": "0x54F494", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame298": {"output_dir": "donkeykong/frames", "rom_offset": "0x54FB6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame299": {"output_dir": "donkeykong/frames", "rom_offset": "0x5502B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame300": {"output_dir": "donkeykong/frames", "rom_offset": "0x55099C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame301": {"output_dir": "donkeykong/frames", "rom_offset": "0x551038", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame302": {"output_dir": "donkeykong/frames", "rom_offset": "0x551700", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame303": {"output_dir": "donkeykong/frames", "rom_offset": "0x551E20", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame304": {"output_dir": "donkeykong/frames", "rom_offset": "0x55258C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame305": {"output_dir": "donkeykong/frames", "rom_offset": "0x552D04", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame306": {"output_dir": "donkeykong/frames", "rom_offset": "0x553308", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame307": {"output_dir": "donkeykong/frames", "rom_offset": "0x5539F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame308": {"output_dir": "donkeykong/frames", "rom_offset": "0x5540B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame309": {"output_dir": "donkeykong/frames", "rom_offset": "0x554758", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame310": {"output_dir": "donkeykong/frames", "rom_offset": "0x554DE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame311": {"output_dir": "donkeykong/frames", "rom_offset": "0x555450", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame312": {"output_dir": "donkeykong/frames", "rom_offset": "0x555B68", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame313": {"output_dir": "donkeykong/frames", "rom_offset": "0x556284", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame314": {"output_dir": "donkeykong/frames", "rom_offset": "0x556960", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame315": {"output_dir": "donkeykong/frames", "rom_offset": "0x5570D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame316": {"output_dir": "donkeykong/frames", "rom_offset": "0x5577FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame317": {"output_dir": "donkeykong/frames", "rom_offset": "0x557E8C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame318": {"output_dir": "donkeykong/frames", "rom_offset": "0x558554", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame319": {"output_dir": "donkeykong/frames", "rom_offset": "0x558C1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"donkeykong_kart_frame320": {"output_dir": "donkeykong/frames", "rom_offset": "0x559374", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"kart_000_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A0E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A1E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A2E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A3E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A4E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A5E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A6E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A7E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A8E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A9E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55AA64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55AAE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55AB64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55ABE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55AC64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55ACE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55AD64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55ADE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55AE64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55AEE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55AF64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55AFE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B0E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B1E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B2E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B3E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B4E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B5E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B6E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B7E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B8E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B9E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BA64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BAE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BB64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BBE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BC64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BCE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BD64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BDE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BE64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BEE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BF64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BFE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C0E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C1E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C2E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C3E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C4E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C5E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C6E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C7E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C8E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C9E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CA64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CAE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CB64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CBE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CC64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CCE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CD64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CDE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CE64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CEE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CF64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CFE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D0E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D1E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D2E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D3E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D4E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D5E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D6E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D7E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D8E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D9E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DA64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DAE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DB64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DBE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DC64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DCE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DD64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DDE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DE64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DEE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DF64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DFE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E0E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E1E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E2E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E3E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E4E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E5E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E6E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E7E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E8E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E9E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EA64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EAE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EB64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EBE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EC64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55ECE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55ED64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EDE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EE64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EEE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EF64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EFE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F0E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F1E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F2E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F3E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F4E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F5E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F6E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F7E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F8E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F9E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FA64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FAE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FB64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FBE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FC64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FCE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FD64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FDE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FE64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FEE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FF64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FFE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5600E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5601E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5602E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5603E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5604E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5605E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5606E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5607E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5608E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5609E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5610E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5611E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5612E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5613E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5614E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5615E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5616E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5617E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5618E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5619E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5620E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5621E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5622E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5623E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5624E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5625E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5626E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5627E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5628E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5629E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5630E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5631E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5632E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5633E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5634E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5635E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5636E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5637E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5638E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5639E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5640E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5641E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5642E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5643E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5644E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5645E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5646E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5647E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5648E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5649E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5650E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5651E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5652E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5653E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5654E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5655E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5656E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5657E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5658E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5659E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5660E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5661E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5662E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5663E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5664E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5665E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5666E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5667E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5668E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5669E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5670E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5671E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5672E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5673E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5674E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5675E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5676E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5677E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5678E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5679E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5680E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5681E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5682E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5683E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5684E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5685E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5686E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5687E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5688E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5689E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5690E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5691E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5692E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5693E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5694E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5695E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5696E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5697E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5698E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5699E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A0E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A1E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A2E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A3E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A4E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A5E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A6E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A7E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A8E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A9E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56AA64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56AAE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56AB64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56ABE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56AC64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56ACE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56AD64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56ADE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56AE64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56AEE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56AF64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56AFE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B0E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B1E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B2E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B3E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B4E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B5E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B6E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B7E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B8E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B9E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BA64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BAE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BB64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BBE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BC64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BCE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BD64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BDE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BE64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BEE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BF64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BFE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C0E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C1E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C2E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C3E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C4E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C5E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C6E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C7E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C8E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C9E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CA64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CAE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CB64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CBE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CC64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CCE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CD64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CDE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CE64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CEE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CF64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CFE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D0E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D1E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D2E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D3E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D4E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D5E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D6E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D7E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D8E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D9E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DA64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DAE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DB64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DBE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DC64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DCE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DD64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DDE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DE64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DEE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DF64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DFE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E0E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E1E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E2E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E3E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E4E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E5E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E6E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E7E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E8E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E9E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EA64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EAE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EB64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EBE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EC64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56ECE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56ED64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EDE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EE64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EEE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EF64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EFE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F0E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F1E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F2E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F3E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F4E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F5E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F6E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F7E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F8E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F9E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FA64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FAE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FB64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FBE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FC64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FCE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FD64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FDE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FE64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FEE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FF64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FFE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5700E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5701E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5702E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5703E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5704E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5705E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5706E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5707E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5708E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5709E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5710E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5711E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5712E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5713E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5714E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5715E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5716E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5717E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5718E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5719E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5720E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5721E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5722E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5723E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5724E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5725E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5726E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5727E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5728E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5729E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5730E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5731E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5732E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5733E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5734E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5735E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5736E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5737E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5738E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5739E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5740E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5741E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5742E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5743E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5744E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5745E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5746E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5747E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5748E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5749E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5750E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5751E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5752E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5753E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5754E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5755E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5756E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5757E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5758E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5759E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5760E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5761E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5762E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5763E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5764E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5765E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5766E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5767E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5768E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5769E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5770E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5771E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5772E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5773E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5774E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5775E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5776E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5777E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5778E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5779E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5780E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5781E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5782E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5783E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5784E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5785E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5786E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5787E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5788E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5789E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5790E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5791E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5792E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5793E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5794E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5795E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5796E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5797E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5798E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5799E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579A64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579AE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579B64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579BE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579C64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579CE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579D64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579DE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579E64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579EE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579F64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579FE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A0E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A1E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A2E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A3E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A4E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A5E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A6E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A7E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A8E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A9E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57AA64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57AAE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57AB64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57ABE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57AC64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57ACE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57AD64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57ADE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57AE64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57AEE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57AF64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57AFE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B0E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B1E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B2E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B3E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B4E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B5E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B6E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B7E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B8E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B9E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BA64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BAE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BB64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BBE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BC64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BCE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BD64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BDE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BE64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BEE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BF64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BFE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C0E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C1E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C2E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C3E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C4E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C5E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C6E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C7E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C8E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C9E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CA64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CAE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CB64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CBE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CC64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CCE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CD64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CDE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CE64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CEE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CF64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CFE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D064", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D0E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D164", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D1E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D264", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D2E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D364", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D3E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D464", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D4E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D564", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D5E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D664", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D6E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D764", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D7E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D864", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D8E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D964", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D9E4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57DA64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57DAE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57DB64", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57DBE4", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57DC64", "width": 16, "height": 4, "type": "rgba16"}, -"donkeykong_kart_palette": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57DCE4", "width": 16, "height": 12, "type": "rgba16"} +"donkeykong_kart_frame000": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CBE50", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D1E80"}}, +"donkeykong_kart_frame001": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CC514", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_001_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D2544"}}, +"donkeykong_kart_frame002": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CCBCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_002_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D2BFC"}}, +"donkeykong_kart_frame003": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CD270", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_003_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D32A0"}}, +"donkeykong_kart_frame004": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CD918", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_004_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D3948"}}, +"donkeykong_kart_frame005": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CDF90", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_005_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D3FC0"}}, +"donkeykong_kart_frame006": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CE634", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_006_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D4664"}}, +"donkeykong_kart_frame007": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CECC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_007_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D4CF4"}}, +"donkeykong_kart_frame008": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CF348", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_008_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D5378"}}, +"donkeykong_kart_frame009": {"output_dir": "donkeykong/frames", "rom_offset": "0x4CF9DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_009_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D5A0C"}}, +"donkeykong_kart_frame010": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D009C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_010_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D60CC"}}, +"donkeykong_kart_frame011": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D0764", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_011_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D6794"}}, +"donkeykong_kart_frame012": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D0E24", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_012_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D6E54"}}, +"donkeykong_kart_frame013": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D14DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_013_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D750C"}}, +"donkeykong_kart_frame014": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D1BA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_014_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D7BD8"}}, +"donkeykong_kart_frame015": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D226C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_015_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D829C"}}, +"donkeykong_kart_frame016": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D2954", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_016_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D8984"}}, +"donkeykong_kart_frame017": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D305C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_017_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D908C"}}, +"donkeykong_kart_frame018": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D375C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_018_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D978C"}}, +"donkeykong_kart_frame019": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D3E6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_019_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4D9E9C"}}, +"donkeykong_kart_frame020": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D457C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_020_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4DA5AC"}}, +"donkeykong_kart_frame021": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D4CA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_021_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4DACD8"}}, +"donkeykong_kart_frame022": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D5398", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_022_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4DB3C8"}}, +"donkeykong_kart_frame023": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D5A68", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_023_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4DBA98"}}, +"donkeykong_kart_frame024": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D6100", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_024_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4DC130"}}, +"donkeykong_kart_frame025": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D67B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_025_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4DC7E8"}}, +"donkeykong_kart_frame026": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D6E60", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_026_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4DCE90"}}, +"donkeykong_kart_frame027": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D750C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_027_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4DD53C"}}, +"donkeykong_kart_frame028": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D7BC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_028_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4DDBF0"}}, +"donkeykong_kart_frame029": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D8280", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_029_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4DE2B0"}}, +"donkeykong_kart_frame030": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D8958", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_030_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4DE988"}}, +"donkeykong_kart_frame031": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D900C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_031_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4DF03C"}}, +"donkeykong_kart_frame032": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D96CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_032_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4DF6FC"}}, +"donkeykong_kart_frame033": {"output_dir": "donkeykong/frames", "rom_offset": "0x4D9D90", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_033_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4DFDC0"}}, +"donkeykong_kart_frame034": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DA45C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_034_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E048C"}}, +"donkeykong_kart_frame035": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DAB40", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_035_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E0B70"}}, +"donkeykong_kart_frame036": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DB224", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_036_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E1254"}}, +"donkeykong_kart_frame037": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DB908", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_037_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E1938"}}, +"donkeykong_kart_frame038": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DC00C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_038_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E203C"}}, +"donkeykong_kart_frame039": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DC720", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_039_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E2750"}}, +"donkeykong_kart_frame040": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DCE48", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_040_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E2E78"}}, +"donkeykong_kart_frame041": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DD56C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_041_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E359C"}}, +"donkeykong_kart_frame042": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DDCA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_042_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E3CD0"}}, +"donkeykong_kart_frame043": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DE388", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_043_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E43B8"}}, +"donkeykong_kart_frame044": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DEA74", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_044_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E4AA4"}}, +"donkeykong_kart_frame045": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DF140", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_045_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E5170"}}, +"donkeykong_kart_frame046": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DF81C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_046_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E584C"}}, +"donkeykong_kart_frame047": {"output_dir": "donkeykong/frames", "rom_offset": "0x4DFEFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_047_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E5F2C"}}, +"donkeykong_kart_frame048": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E05D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_048_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E6600"}}, +"donkeykong_kart_frame049": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E0C98", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_049_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E6CC8"}}, +"donkeykong_kart_frame050": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E1360", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_050_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E7390"}}, +"donkeykong_kart_frame051": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E1A10", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_051_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E7A40"}}, +"donkeykong_kart_frame052": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E20EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_052_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E811C"}}, +"donkeykong_kart_frame053": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E27C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_053_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E87F8"}}, +"donkeykong_kart_frame054": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E2E90", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_054_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E8EC0"}}, +"donkeykong_kart_frame055": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E355C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_055_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E958C"}}, +"donkeykong_kart_frame056": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E3C38", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_056_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4E9C68"}}, +"donkeykong_kart_frame057": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E4324", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_057_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4EA354"}}, +"donkeykong_kart_frame058": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E4A18", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_058_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4EAA48"}}, +"donkeykong_kart_frame059": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E511C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_059_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4EB14C"}}, +"donkeykong_kart_frame060": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E5828", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_060_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4EB858"}}, +"donkeykong_kart_frame061": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E5F54", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_061_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4EBF84"}}, +"donkeykong_kart_frame062": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E6670", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_062_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4EC6A0"}}, +"donkeykong_kart_frame063": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E6DA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_063_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4ECDD8"}}, +"donkeykong_kart_frame064": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E74B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_064_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4ED4E0"}}, +"donkeykong_kart_frame065": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E7BC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_065_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4EDBF0"}}, +"donkeykong_kart_frame066": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E82B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_066_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4EE2E0"}}, +"donkeykong_kart_frame067": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E89AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_067_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4EE9DC"}}, +"donkeykong_kart_frame068": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E90AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_068_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4EF0DC"}}, +"donkeykong_kart_frame069": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E9788", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_069_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4EF7B8"}}, +"donkeykong_kart_frame070": {"output_dir": "donkeykong/frames", "rom_offset": "0x4E9E54", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_070_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4EFE84"}}, +"donkeykong_kart_frame071": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EA538", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_071_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F0568"}}, +"donkeykong_kart_frame072": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EAC04", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_072_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F0C34"}}, +"donkeykong_kart_frame073": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EB2D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_073_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F1304"}}, +"donkeykong_kart_frame074": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EB9A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_074_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F19D8"}}, +"donkeykong_kart_frame075": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EC080", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_075_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F20B0"}}, +"donkeykong_kart_frame076": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EC758", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_076_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F2788"}}, +"donkeykong_kart_frame077": {"output_dir": "donkeykong/frames", "rom_offset": "0x4ECE38", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_077_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F2E68"}}, +"donkeykong_kart_frame078": {"output_dir": "donkeykong/frames", "rom_offset": "0x4ED524", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_078_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F3554"}}, +"donkeykong_kart_frame079": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EDC24", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_079_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F3C54"}}, +"donkeykong_kart_frame080": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EE34C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_080_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F437C"}}, +"donkeykong_kart_frame081": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EEA7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_081_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F4AAC"}}, +"donkeykong_kart_frame082": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EF1B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_082_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F51E0"}}, +"donkeykong_kart_frame083": {"output_dir": "donkeykong/frames", "rom_offset": "0x4EF8EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_083_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F591C"}}, +"donkeykong_kart_frame084": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F002C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_084_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F605C"}}, +"donkeykong_kart_frame085": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F0728", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_085_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F6758"}}, +"donkeykong_kart_frame086": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F0E2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_086_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F6E5C"}}, +"donkeykong_kart_frame087": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F1510", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_087_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F7540"}}, +"donkeykong_kart_frame088": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F1C20", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_088_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F7C50"}}, +"donkeykong_kart_frame089": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F2310", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_089_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F8340"}}, +"donkeykong_kart_frame090": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F2A08", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_090_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F8A38"}}, +"donkeykong_kart_frame091": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F30FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_091_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F912C"}}, +"donkeykong_kart_frame092": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F37E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_092_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F9818"}}, +"donkeykong_kart_frame093": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F3EC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_093_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4F9EF4"}}, +"donkeykong_kart_frame094": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F45A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_094_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4FA5D8"}}, +"donkeykong_kart_frame095": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F4C80", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_095_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4FACB0"}}, +"donkeykong_kart_frame096": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F5364", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_096_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4FB394"}}, +"donkeykong_kart_frame097": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F5A44", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_097_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4FBA74"}}, +"donkeykong_kart_frame098": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F613C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_098_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4FC16C"}}, +"donkeykong_kart_frame099": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F6844", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_099_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4FC874"}}, +"donkeykong_kart_frame100": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F6F4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_100_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4FCF7C"}}, +"donkeykong_kart_frame101": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F767C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_101_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4FD6AC"}}, +"donkeykong_kart_frame102": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F7DCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_102_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4FDDFC"}}, +"donkeykong_kart_frame103": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F84FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_103_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4FE52C"}}, +"donkeykong_kart_frame104": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F8C34", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_104_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4FEC64"}}, +"donkeykong_kart_frame105": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F9384", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_105_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4FF3B4"}}, +"donkeykong_kart_frame106": {"output_dir": "donkeykong/frames", "rom_offset": "0x4F9A90", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_106_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4FFAC0"}}, +"donkeykong_kart_frame107": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FA1AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_107_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5001DC"}}, +"donkeykong_kart_frame108": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FA8CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_108_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5008FC"}}, +"donkeykong_kart_frame109": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FAFF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_109_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x501020"}}, +"donkeykong_kart_frame110": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FB70C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_110_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x50173C"}}, +"donkeykong_kart_frame111": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FBE28", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_111_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x501E58"}}, +"donkeykong_kart_frame112": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FC520", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_112_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x502550"}}, +"donkeykong_kart_frame113": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FCC10", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_113_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x502C40"}}, +"donkeykong_kart_frame114": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FD310", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_114_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x503340"}}, +"donkeykong_kart_frame115": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FD9F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_115_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x503A20"}}, +"donkeykong_kart_frame116": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FE0DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_116_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x50410C"}}, +"donkeykong_kart_frame117": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FE7BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_117_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5047EC"}}, +"donkeykong_kart_frame118": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FEEBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_118_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x504EEC"}}, +"donkeykong_kart_frame119": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FF5B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_119_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5055E4"}}, +"donkeykong_kart_frame120": {"output_dir": "donkeykong/frames", "rom_offset": "0x4FFCC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_120_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x505CF0"}}, +"donkeykong_kart_frame121": {"output_dir": "donkeykong/frames", "rom_offset": "0x5003D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_121_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x506404"}}, +"donkeykong_kart_frame122": {"output_dir": "donkeykong/frames", "rom_offset": "0x500AFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_122_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x506B2C"}}, +"donkeykong_kart_frame123": {"output_dir": "donkeykong/frames", "rom_offset": "0x501224", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_123_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x507254"}}, +"donkeykong_kart_frame124": {"output_dir": "donkeykong/frames", "rom_offset": "0x501958", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_124_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x507988"}}, +"donkeykong_kart_frame125": {"output_dir": "donkeykong/frames", "rom_offset": "0x502090", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_125_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5080C0"}}, +"donkeykong_kart_frame126": {"output_dir": "donkeykong/frames", "rom_offset": "0x5027E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_126_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x508818"}}, +"donkeykong_kart_frame127": {"output_dir": "donkeykong/frames", "rom_offset": "0x502F1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_127_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x508F4C"}}, +"donkeykong_kart_frame128": {"output_dir": "donkeykong/frames", "rom_offset": "0x503648", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_128_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x509678"}}, +"donkeykong_kart_frame129": {"output_dir": "donkeykong/frames", "rom_offset": "0x503D88", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_129_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x509DB8"}}, +"donkeykong_kart_frame130": {"output_dir": "donkeykong/frames", "rom_offset": "0x5044A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_130_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x50A4D8"}}, +"donkeykong_kart_frame131": {"output_dir": "donkeykong/frames", "rom_offset": "0x504BB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_131_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x50ABE8"}}, +"donkeykong_kart_frame132": {"output_dir": "donkeykong/frames", "rom_offset": "0x5052BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_132_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x50B2EC"}}, +"donkeykong_kart_frame133": {"output_dir": "donkeykong/frames", "rom_offset": "0x5059CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_133_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x50B9FC"}}, +"donkeykong_kart_frame134": {"output_dir": "donkeykong/frames", "rom_offset": "0x5060CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_134_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x50C0FC"}}, +"donkeykong_kart_frame135": {"output_dir": "donkeykong/frames", "rom_offset": "0x5067CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_135_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x50C7FC"}}, +"donkeykong_kart_frame136": {"output_dir": "donkeykong/frames", "rom_offset": "0x506EC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_136_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x50CEF4"}}, +"donkeykong_kart_frame137": {"output_dir": "donkeykong/frames", "rom_offset": "0x5075A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_137_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x50D5D8"}}, +"donkeykong_kart_frame138": {"output_dir": "donkeykong/frames", "rom_offset": "0x507C88", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_138_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x50DCB8"}}, +"donkeykong_kart_frame139": {"output_dir": "donkeykong/frames", "rom_offset": "0x508374", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_139_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x50E3A4"}}, +"donkeykong_kart_frame140": {"output_dir": "donkeykong/frames", "rom_offset": "0x508A64", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_140_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x50EA94"}}, +"donkeykong_kart_frame141": {"output_dir": "donkeykong/frames", "rom_offset": "0x509168", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_141_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x50F198"}}, +"donkeykong_kart_frame142": {"output_dir": "donkeykong/frames", "rom_offset": "0x50988C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_142_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x50F8BC"}}, +"donkeykong_kart_frame143": {"output_dir": "donkeykong/frames", "rom_offset": "0x509FC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_143_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x50FFF4"}}, +"donkeykong_kart_frame144": {"output_dir": "donkeykong/frames", "rom_offset": "0x50A6F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_144_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x510728"}}, +"donkeykong_kart_frame145": {"output_dir": "donkeykong/frames", "rom_offset": "0x50AE34", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_145_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x510E64"}}, +"donkeykong_kart_frame146": {"output_dir": "donkeykong/frames", "rom_offset": "0x50B578", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_146_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5115A8"}}, +"donkeykong_kart_frame147": {"output_dir": "donkeykong/frames", "rom_offset": "0x50BCD0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_147_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x511D00"}}, +"donkeykong_kart_frame148": {"output_dir": "donkeykong/frames", "rom_offset": "0x50C41C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_148_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x51244C"}}, +"donkeykong_kart_frame149": {"output_dir": "donkeykong/frames", "rom_offset": "0x50CB5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_149_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x512B8C"}}, +"donkeykong_kart_frame150": {"output_dir": "donkeykong/frames", "rom_offset": "0x50D290", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_150_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5132C0"}}, +"donkeykong_kart_frame151": {"output_dir": "donkeykong/frames", "rom_offset": "0x50D9AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_151_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5139DC"}}, +"donkeykong_kart_frame152": {"output_dir": "donkeykong/frames", "rom_offset": "0x50E0CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_152_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5140FC"}}, +"donkeykong_kart_frame153": {"output_dir": "donkeykong/frames", "rom_offset": "0x50E7F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_153_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x514824"}}, +"donkeykong_kart_frame154": {"output_dir": "donkeykong/frames", "rom_offset": "0x50EF24", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_154_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x514F54"}}, +"donkeykong_kart_frame155": {"output_dir": "donkeykong/frames", "rom_offset": "0x50F644", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_155_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x515674"}}, +"donkeykong_kart_frame156": {"output_dir": "donkeykong/frames", "rom_offset": "0x50FD44", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_156_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x515D74"}}, +"donkeykong_kart_frame157": {"output_dir": "donkeykong/frames", "rom_offset": "0x510434", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_157_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x516464"}}, +"donkeykong_kart_frame158": {"output_dir": "donkeykong/frames", "rom_offset": "0x510B28", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_158_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x516B58"}}, +"donkeykong_kart_frame159": {"output_dir": "donkeykong/frames", "rom_offset": "0x511224", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_159_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x517254"}}, +"donkeykong_kart_frame160": {"output_dir": "donkeykong/frames", "rom_offset": "0x511920", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_160_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x517950"}}, +"donkeykong_kart_frame161": {"output_dir": "donkeykong/frames", "rom_offset": "0x512020", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_161_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x518050"}}, +"donkeykong_kart_frame162": {"output_dir": "donkeykong/frames", "rom_offset": "0x512744", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_162_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x518774"}}, +"donkeykong_kart_frame163": {"output_dir": "donkeykong/frames", "rom_offset": "0x512E74", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_163_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x518EA4"}}, +"donkeykong_kart_frame164": {"output_dir": "donkeykong/frames", "rom_offset": "0x5135A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_164_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5195D4"}}, +"donkeykong_kart_frame165": {"output_dir": "donkeykong/frames", "rom_offset": "0x513CEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_165_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x519D1C"}}, +"donkeykong_kart_frame166": {"output_dir": "donkeykong/frames", "rom_offset": "0x514450", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_166_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x51A480"}}, +"donkeykong_kart_frame167": {"output_dir": "donkeykong/frames", "rom_offset": "0x514BA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_167_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x51ABD8"}}, +"donkeykong_kart_frame168": {"output_dir": "donkeykong/frames", "rom_offset": "0x515308", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_168_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x51B338"}}, +"donkeykong_kart_frame169": {"output_dir": "donkeykong/frames", "rom_offset": "0x515A48", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_169_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x51BA78"}}, +"donkeykong_kart_frame170": {"output_dir": "donkeykong/frames", "rom_offset": "0x516194", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_170_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x51C1C4"}}, +"donkeykong_kart_frame171": {"output_dir": "donkeykong/frames", "rom_offset": "0x5168D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_171_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x51C904"}}, +"donkeykong_kart_frame172": {"output_dir": "donkeykong/frames", "rom_offset": "0x51700C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_172_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x51D03C"}}, +"donkeykong_kart_frame173": {"output_dir": "donkeykong/frames", "rom_offset": "0x517728", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_173_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x51D758"}}, +"donkeykong_kart_frame174": {"output_dir": "donkeykong/frames", "rom_offset": "0x517E38", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_174_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x51DE68"}}, +"donkeykong_kart_frame175": {"output_dir": "donkeykong/frames", "rom_offset": "0x518568", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_175_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x51E598"}}, +"donkeykong_kart_frame176": {"output_dir": "donkeykong/frames", "rom_offset": "0x518C70", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_176_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x51ECA0"}}, +"donkeykong_kart_frame177": {"output_dir": "donkeykong/frames", "rom_offset": "0x519360", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_177_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x51F390"}}, +"donkeykong_kart_frame178": {"output_dir": "donkeykong/frames", "rom_offset": "0x519A58", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_178_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x51FA88"}}, +"donkeykong_kart_frame179": {"output_dir": "donkeykong/frames", "rom_offset": "0x51A154", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_179_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x520184"}}, +"donkeykong_kart_frame180": {"output_dir": "donkeykong/frames", "rom_offset": "0x51A844", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_180_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x520874"}}, +"donkeykong_kart_frame181": {"output_dir": "donkeykong/frames", "rom_offset": "0x51AF44", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_181_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x520F74"}}, +"donkeykong_kart_frame182": {"output_dir": "donkeykong/frames", "rom_offset": "0x51B640", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_182_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x521670"}}, +"donkeykong_kart_frame183": {"output_dir": "donkeykong/frames", "rom_offset": "0x51BD58", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_183_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x521D88"}}, +"donkeykong_kart_frame184": {"output_dir": "donkeykong/frames", "rom_offset": "0x51C484", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_184_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5224B4"}}, +"donkeykong_kart_frame185": {"output_dir": "donkeykong/frames", "rom_offset": "0x51CBDC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_185_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x522C0C"}}, +"donkeykong_kart_frame186": {"output_dir": "donkeykong/frames", "rom_offset": "0x51D330", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_186_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x523360"}}, +"donkeykong_kart_frame187": {"output_dir": "donkeykong/frames", "rom_offset": "0x51DAA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_187_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x523AD0"}}, +"donkeykong_kart_frame188": {"output_dir": "donkeykong/frames", "rom_offset": "0x51E228", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_188_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x524258"}}, +"donkeykong_kart_frame189": {"output_dir": "donkeykong/frames", "rom_offset": "0x51E9A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_189_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5249D4"}}, +"donkeykong_kart_frame190": {"output_dir": "donkeykong/frames", "rom_offset": "0x51F068", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_190_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x525098"}}, +"donkeykong_kart_frame191": {"output_dir": "donkeykong/frames", "rom_offset": "0x51F758", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_191_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x525788"}}, +"donkeykong_kart_frame192": {"output_dir": "donkeykong/frames", "rom_offset": "0x51FE58", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_192_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x525E88"}}, +"donkeykong_kart_frame193": {"output_dir": "donkeykong/frames", "rom_offset": "0x520580", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_193_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5265B0"}}, +"donkeykong_kart_frame194": {"output_dir": "donkeykong/frames", "rom_offset": "0x520C9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_194_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x526CCC"}}, +"donkeykong_kart_frame195": {"output_dir": "donkeykong/frames", "rom_offset": "0x5213B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_195_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5273E8"}}, +"donkeykong_kart_frame196": {"output_dir": "donkeykong/frames", "rom_offset": "0x521AD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_196_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x527B08"}}, +"donkeykong_kart_frame197": {"output_dir": "donkeykong/frames", "rom_offset": "0x522210", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_197_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x528240"}}, +"donkeykong_kart_frame198": {"output_dir": "donkeykong/frames", "rom_offset": "0x522930", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_198_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x528960"}}, +"donkeykong_kart_frame199": {"output_dir": "donkeykong/frames", "rom_offset": "0x523070", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_199_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5290A0"}}, +"donkeykong_kart_frame200": {"output_dir": "donkeykong/frames", "rom_offset": "0x5237D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_200_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x529804"}}, +"donkeykong_kart_frame201": {"output_dir": "donkeykong/frames", "rom_offset": "0x523F70", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_201_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x529FA0"}}, +"donkeykong_kart_frame202": {"output_dir": "donkeykong/frames", "rom_offset": "0x524728", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_202_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x52A758"}}, +"donkeykong_kart_frame203": {"output_dir": "donkeykong/frames", "rom_offset": "0x524EF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_203_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x52AF28"}}, +"donkeykong_kart_frame204": {"output_dir": "donkeykong/frames", "rom_offset": "0x5256BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_204_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x52B6EC"}}, +"donkeykong_kart_frame205": {"output_dir": "donkeykong/frames", "rom_offset": "0x525E6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_205_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x52BE9C"}}, +"donkeykong_kart_frame206": {"output_dir": "donkeykong/frames", "rom_offset": "0x526650", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_206_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x52C680"}}, +"donkeykong_kart_frame207": {"output_dir": "donkeykong/frames", "rom_offset": "0x526E2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_207_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x52CE5C"}}, +"donkeykong_kart_frame208": {"output_dir": "donkeykong/frames", "rom_offset": "0x5275E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_208_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x52D610"}}, +"donkeykong_kart_frame209": {"output_dir": "donkeykong/frames", "rom_offset": "0x527D98", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_209_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x52DDC8"}}, +"donkeykong_kart_frame210": {"output_dir": "donkeykong/frames", "rom_offset": "0x528490", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_210_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x52E4C0"}}, +"donkeykong_kart_frame211": {"output_dir": "donkeykong/frames", "rom_offset": "0x528BA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_211_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x52EBD4"}}, +"donkeykong_kart_frame212": {"output_dir": "donkeykong/frames", "rom_offset": "0x5292EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_212_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x52F31C"}}, +"donkeykong_kart_frame213": {"output_dir": "donkeykong/frames", "rom_offset": "0x529A3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_213_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x52FA6C"}}, +"donkeykong_kart_frame214": {"output_dir": "donkeykong/frames", "rom_offset": "0x52A150", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_214_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x530180"}}, +"donkeykong_kart_frame215": {"output_dir": "donkeykong/frames", "rom_offset": "0x52A880", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_215_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5308B0"}}, +"donkeykong_kart_frame216": {"output_dir": "donkeykong/frames", "rom_offset": "0x52AFCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_216_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x530FFC"}}, +"donkeykong_kart_frame217": {"output_dir": "donkeykong/frames", "rom_offset": "0x52B708", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_217_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x531738"}}, +"donkeykong_kart_frame218": {"output_dir": "donkeykong/frames", "rom_offset": "0x52BE20", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_218_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x531E50"}}, +"donkeykong_kart_frame219": {"output_dir": "donkeykong/frames", "rom_offset": "0x52C550", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_219_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x532580"}}, +"donkeykong_kart_frame220": {"output_dir": "donkeykong/frames", "rom_offset": "0x52CC94", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_220_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x532CC4"}}, +"donkeykong_kart_frame221": {"output_dir": "donkeykong/frames", "rom_offset": "0x52D3E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_221_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x533418"}}, +"donkeykong_kart_frame222": {"output_dir": "donkeykong/frames", "rom_offset": "0x52DB4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_222_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x533B7C"}}, +"donkeykong_kart_frame223": {"output_dir": "donkeykong/frames", "rom_offset": "0x52E2D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_223_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x534300"}}, +"donkeykong_kart_frame224": {"output_dir": "donkeykong/frames", "rom_offset": "0x52EA4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_224_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x534A7C"}}, +"donkeykong_kart_frame225": {"output_dir": "donkeykong/frames", "rom_offset": "0x52F1CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_225_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5351FC"}}, +"donkeykong_kart_frame226": {"output_dir": "donkeykong/frames", "rom_offset": "0x52F95C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_226_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x53598C"}}, +"donkeykong_kart_frame227": {"output_dir": "donkeykong/frames", "rom_offset": "0x5300CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_227_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5360FC"}}, +"donkeykong_kart_frame228": {"output_dir": "donkeykong/frames", "rom_offset": "0x530848", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_228_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x536878"}}, +"donkeykong_kart_frame229": {"output_dir": "donkeykong/frames", "rom_offset": "0x530F9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_229_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x536FCC"}}, +"donkeykong_kart_frame230": {"output_dir": "donkeykong/frames", "rom_offset": "0x5316B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_230_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5376E8"}}, +"donkeykong_kart_frame231": {"output_dir": "donkeykong/frames", "rom_offset": "0x531E1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_231_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x537E4C"}}, +"donkeykong_kart_frame232": {"output_dir": "donkeykong/frames", "rom_offset": "0x532578", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_232_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5385A8"}}, +"donkeykong_kart_frame233": {"output_dir": "donkeykong/frames", "rom_offset": "0x532CD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_233_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x538D08"}}, +"donkeykong_kart_frame234": {"output_dir": "donkeykong/frames", "rom_offset": "0x533428", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_234_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x539458"}}, +"donkeykong_kart_frame235": {"output_dir": "donkeykong/frames", "rom_offset": "0x533B70", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_235_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x539BA0"}}, +"donkeykong_kart_frame236": {"output_dir": "donkeykong/frames", "rom_offset": "0x5342C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_236_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x53A2F8"}}, +"donkeykong_kart_frame237": {"output_dir": "donkeykong/frames", "rom_offset": "0x534A0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_237_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x53AA3C"}}, +"donkeykong_kart_frame238": {"output_dir": "donkeykong/frames", "rom_offset": "0x535148", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_238_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x53B178"}}, +"donkeykong_kart_frame239": {"output_dir": "donkeykong/frames", "rom_offset": "0x53586C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_239_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x53B89C"}}, +"donkeykong_kart_frame240": {"output_dir": "donkeykong/frames", "rom_offset": "0x535F98", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_240_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x53BFC8"}}, +"donkeykong_kart_frame241": {"output_dir": "donkeykong/frames", "rom_offset": "0x5366F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_241_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x53C728"}}, +"donkeykong_kart_frame242": {"output_dir": "donkeykong/frames", "rom_offset": "0x536E5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_242_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x53CE8C"}}, +"donkeykong_kart_frame243": {"output_dir": "donkeykong/frames", "rom_offset": "0x5375BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_243_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x53D5EC"}}, +"donkeykong_kart_frame244": {"output_dir": "donkeykong/frames", "rom_offset": "0x537D24", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_244_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x53DD54"}}, +"donkeykong_kart_frame245": {"output_dir": "donkeykong/frames", "rom_offset": "0x53846C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_245_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x53E49C"}}, +"donkeykong_kart_frame246": {"output_dir": "donkeykong/frames", "rom_offset": "0x538BC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_246_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x53EBF8"}}, +"donkeykong_kart_frame247": {"output_dir": "donkeykong/frames", "rom_offset": "0x539300", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_247_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x53F330"}}, +"donkeykong_kart_frame248": {"output_dir": "donkeykong/frames", "rom_offset": "0x539A24", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_248_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x53FA54"}}, +"donkeykong_kart_frame249": {"output_dir": "donkeykong/frames", "rom_offset": "0x53A130", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_249_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x540160"}}, +"donkeykong_kart_frame250": {"output_dir": "donkeykong/frames", "rom_offset": "0x53A84C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_250_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x54087C"}}, +"donkeykong_kart_frame251": {"output_dir": "donkeykong/frames", "rom_offset": "0x53AFA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_251_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x540FD4"}}, +"donkeykong_kart_frame252": {"output_dir": "donkeykong/frames", "rom_offset": "0x53B6FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_252_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x54172C"}}, +"donkeykong_kart_frame253": {"output_dir": "donkeykong/frames", "rom_offset": "0x53BE4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_253_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x541E7C"}}, +"donkeykong_kart_frame254": {"output_dir": "donkeykong/frames", "rom_offset": "0x53C590", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_254_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5425C0"}}, +"donkeykong_kart_frame255": {"output_dir": "donkeykong/frames", "rom_offset": "0x53CCE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_255_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x542D18"}}, +"donkeykong_kart_frame256": {"output_dir": "donkeykong/frames", "rom_offset": "0x53D434", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_256_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x543464"}}, +"donkeykong_kart_frame257": {"output_dir": "donkeykong/frames", "rom_offset": "0x53DB8C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_257_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x543BBC"}}, +"donkeykong_kart_frame258": {"output_dir": "donkeykong/frames", "rom_offset": "0x53E2B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_258_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5442E4"}}, +"donkeykong_kart_frame259": {"output_dir": "donkeykong/frames", "rom_offset": "0x53E9EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_259_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x544A1C"}}, +"donkeykong_kart_frame260": {"output_dir": "donkeykong/frames", "rom_offset": "0x53F130", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_260_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x545160"}}, +"donkeykong_kart_frame261": {"output_dir": "donkeykong/frames", "rom_offset": "0x53F870", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_261_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5458A0"}}, +"donkeykong_kart_frame262": {"output_dir": "donkeykong/frames", "rom_offset": "0x53FFB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_262_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x545FE0"}}, +"donkeykong_kart_frame263": {"output_dir": "donkeykong/frames", "rom_offset": "0x5406CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_263_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5466FC"}}, +"donkeykong_kart_frame264": {"output_dir": "donkeykong/frames", "rom_offset": "0x540DD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_264_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x546E08"}}, +"donkeykong_kart_frame265": {"output_dir": "donkeykong/frames", "rom_offset": "0x541504", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_265_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x547534"}}, +"donkeykong_kart_frame266": {"output_dir": "donkeykong/frames", "rom_offset": "0x541C24", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_266_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x547C54"}}, +"donkeykong_kart_frame267": {"output_dir": "donkeykong/frames", "rom_offset": "0x542314", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_267_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x548344"}}, +"donkeykong_kart_frame268": {"output_dir": "donkeykong/frames", "rom_offset": "0x542A00", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_268_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x548A30"}}, +"donkeykong_kart_frame269": {"output_dir": "donkeykong/frames", "rom_offset": "0x5430BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_269_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5490EC"}}, +"donkeykong_kart_frame270": {"output_dir": "donkeykong/frames", "rom_offset": "0x5437F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_270_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x549828"}}, +"donkeykong_kart_frame271": {"output_dir": "donkeykong/frames", "rom_offset": "0x543F6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_271_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x549F9C"}}, +"donkeykong_kart_frame272": {"output_dir": "donkeykong/frames", "rom_offset": "0x5446D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_272_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x54A704"}}, +"donkeykong_kart_frame273": {"output_dir": "donkeykong/frames", "rom_offset": "0x544E60", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_273_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x54AE90"}}, +"donkeykong_kart_frame274": {"output_dir": "donkeykong/frames", "rom_offset": "0x5455C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_274_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x54B5F4"}}, +"donkeykong_kart_frame275": {"output_dir": "donkeykong/frames", "rom_offset": "0x545D40", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_275_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x54BD70"}}, +"donkeykong_kart_frame276": {"output_dir": "donkeykong/frames", "rom_offset": "0x54649C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_276_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x54C4CC"}}, +"donkeykong_kart_frame277": {"output_dir": "donkeykong/frames", "rom_offset": "0x546BFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_277_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x54CC2C"}}, +"donkeykong_kart_frame278": {"output_dir": "donkeykong/frames", "rom_offset": "0x547340", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_278_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x54D370"}}, +"donkeykong_kart_frame279": {"output_dir": "donkeykong/frames", "rom_offset": "0x547A74", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_279_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x54DAA4"}}, +"donkeykong_kart_frame280": {"output_dir": "donkeykong/frames", "rom_offset": "0x5481B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_280_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x54E1E4"}}, +"donkeykong_kart_frame281": {"output_dir": "donkeykong/frames", "rom_offset": "0x5488E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_281_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x54E914"}}, +"donkeykong_kart_frame282": {"output_dir": "donkeykong/frames", "rom_offset": "0x549008", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_282_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x54F038"}}, +"donkeykong_kart_frame283": {"output_dir": "donkeykong/frames", "rom_offset": "0x549704", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_283_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x54F734"}}, +"donkeykong_kart_frame284": {"output_dir": "donkeykong/frames", "rom_offset": "0x549DF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_284_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x54FE28"}}, +"donkeykong_kart_frame285": {"output_dir": "donkeykong/frames", "rom_offset": "0x54A4D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_285_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x550504"}}, +"donkeykong_kart_frame286": {"output_dir": "donkeykong/frames", "rom_offset": "0x54AB84", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_286_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x550BB4"}}, +"donkeykong_kart_frame287": {"output_dir": "donkeykong/frames", "rom_offset": "0x54B200", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_287_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x551230"}}, +"donkeykong_kart_frame288": {"output_dir": "donkeykong/frames", "rom_offset": "0x54B85C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_288_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x55188C"}}, +"donkeykong_kart_frame289": {"output_dir": "donkeykong/frames", "rom_offset": "0x54BEA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x551ED8"}}, +"donkeykong_kart_frame290": {"output_dir": "donkeykong/frames", "rom_offset": "0x54C558", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x552588"}}, +"donkeykong_kart_frame291": {"output_dir": "donkeykong/frames", "rom_offset": "0x54CC18", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x552C48"}}, +"donkeykong_kart_frame292": {"output_dir": "donkeykong/frames", "rom_offset": "0x54D2BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5532EC"}}, +"donkeykong_kart_frame293": {"output_dir": "donkeykong/frames", "rom_offset": "0x54D98C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5539BC"}}, +"donkeykong_kart_frame294": {"output_dir": "donkeykong/frames", "rom_offset": "0x54DFE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x554010"}}, +"donkeykong_kart_frame295": {"output_dir": "donkeykong/frames", "rom_offset": "0x54E668", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x554698"}}, +"donkeykong_kart_frame296": {"output_dir": "donkeykong/frames", "rom_offset": "0x54ED50", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x554D80"}}, +"donkeykong_kart_frame297": {"output_dir": "donkeykong/frames", "rom_offset": "0x54F494", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5554C4"}}, +"donkeykong_kart_frame298": {"output_dir": "donkeykong/frames", "rom_offset": "0x54FB6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x555B9C"}}, +"donkeykong_kart_frame299": {"output_dir": "donkeykong/frames", "rom_offset": "0x5502B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5562E8"}}, +"donkeykong_kart_frame300": {"output_dir": "donkeykong/frames", "rom_offset": "0x55099C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5569CC"}}, +"donkeykong_kart_frame301": {"output_dir": "donkeykong/frames", "rom_offset": "0x551038", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x557068"}}, +"donkeykong_kart_frame302": {"output_dir": "donkeykong/frames", "rom_offset": "0x551700", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x557730"}}, +"donkeykong_kart_frame303": {"output_dir": "donkeykong/frames", "rom_offset": "0x551E20", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x557E50"}}, +"donkeykong_kart_frame304": {"output_dir": "donkeykong/frames", "rom_offset": "0x55258C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x5585BC"}}, +"donkeykong_kart_frame305": {"output_dir": "donkeykong/frames", "rom_offset": "0x552D04", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x558D34"}}, +"donkeykong_kart_frame306": {"output_dir": "donkeykong/frames", "rom_offset": "0x553308", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x559338"}}, +"donkeykong_kart_frame307": {"output_dir": "donkeykong/frames", "rom_offset": "0x5539F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x559A20"}}, +"donkeykong_kart_frame308": {"output_dir": "donkeykong/frames", "rom_offset": "0x5540B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x55A0E4"}}, +"donkeykong_kart_frame309": {"output_dir": "donkeykong/frames", "rom_offset": "0x554758", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x55A788"}}, +"donkeykong_kart_frame310": {"output_dir": "donkeykong/frames", "rom_offset": "0x554DE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x55AE14"}}, +"donkeykong_kart_frame311": {"output_dir": "donkeykong/frames", "rom_offset": "0x555450", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x55B480"}}, +"donkeykong_kart_frame312": {"output_dir": "donkeykong/frames", "rom_offset": "0x555B68", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x55BB98"}}, +"donkeykong_kart_frame313": {"output_dir": "donkeykong/frames", "rom_offset": "0x556284", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x55C2B4"}}, +"donkeykong_kart_frame314": {"output_dir": "donkeykong/frames", "rom_offset": "0x556960", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x55C990"}}, +"donkeykong_kart_frame315": {"output_dir": "donkeykong/frames", "rom_offset": "0x5570D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x55D104"}}, +"donkeykong_kart_frame316": {"output_dir": "donkeykong/frames", "rom_offset": "0x5577FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x55D82C"}}, +"donkeykong_kart_frame317": {"output_dir": "donkeykong/frames", "rom_offset": "0x557E8C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x55DEBC"}}, +"donkeykong_kart_frame318": {"output_dir": "donkeykong/frames", "rom_offset": "0x558554", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x55E584"}}, +"donkeykong_kart_frame319": {"output_dir": "donkeykong/frames", "rom_offset": "0x558C1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x55EC4C"}}, +"donkeykong_kart_frame320": {"output_dir": "donkeykong/frames", "rom_offset": "0x559374", "width": 64, "height": 64, "type": "ci8", "tlut": ["donkeykong_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x55F3A4"}}, +"kart_000_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x55FB14"}}, +"kart_000_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x55FB94"}}, +"kart_000_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x55FC14"}}, +"kart_000_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x55FC94"}}, +"kart_001_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x55FD14"}}, +"kart_001_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x55FD94"}}, +"kart_001_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x55FE14"}}, +"kart_001_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x55FE94"}}, +"kart_002_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x55FF14"}}, +"kart_002_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x55FF94"}}, +"kart_002_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x559FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560014"}}, +"kart_002_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560094"}}, +"kart_003_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A0E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560114"}}, +"kart_003_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560194"}}, +"kart_003_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A1E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560214"}}, +"kart_003_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560294"}}, +"kart_004_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A2E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560314"}}, +"kart_004_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560394"}}, +"kart_004_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A3E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560414"}}, +"kart_004_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560494"}}, +"kart_005_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A4E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560514"}}, +"kart_005_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560594"}}, +"kart_005_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A5E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560614"}}, +"kart_005_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560694"}}, +"kart_006_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A6E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560714"}}, +"kart_006_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560794"}}, +"kart_006_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A7E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560814"}}, +"kart_006_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560894"}}, +"kart_007_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A8E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560914"}}, +"kart_007_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560994"}}, +"kart_007_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55A9E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560A14"}}, +"kart_007_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55AA64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560A94"}}, +"kart_008_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55AAE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560B14"}}, +"kart_008_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55AB64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560B94"}}, +"kart_008_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55ABE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560C14"}}, +"kart_008_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55AC64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560C94"}}, +"kart_009_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55ACE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560D14"}}, +"kart_009_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55AD64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560D94"}}, +"kart_009_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55ADE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560E14"}}, +"kart_009_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55AE64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560E94"}}, +"kart_010_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55AEE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560F14"}}, +"kart_010_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55AF64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x560F94"}}, +"kart_010_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55AFE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561014"}}, +"kart_010_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561094"}}, +"kart_011_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B0E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561114"}}, +"kart_011_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561194"}}, +"kart_011_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B1E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561214"}}, +"kart_011_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561294"}}, +"kart_012_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B2E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561314"}}, +"kart_012_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561394"}}, +"kart_012_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B3E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561414"}}, +"kart_012_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561494"}}, +"kart_013_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B4E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561514"}}, +"kart_013_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561594"}}, +"kart_013_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B5E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561614"}}, +"kart_013_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561694"}}, +"kart_014_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B6E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561714"}}, +"kart_014_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561794"}}, +"kart_014_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B7E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561814"}}, +"kart_014_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561894"}}, +"kart_015_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B8E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561914"}}, +"kart_015_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561994"}}, +"kart_015_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55B9E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561A14"}}, +"kart_015_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BA64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561A94"}}, +"kart_016_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BAE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561B14"}}, +"kart_016_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BB64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561B94"}}, +"kart_016_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BBE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561C14"}}, +"kart_016_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BC64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561C94"}}, +"kart_017_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BCE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561D14"}}, +"kart_017_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BD64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561D94"}}, +"kart_017_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BDE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561E14"}}, +"kart_017_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BE64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561E94"}}, +"kart_018_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BEE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561F14"}}, +"kart_018_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BF64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x561F94"}}, +"kart_018_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55BFE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562014"}}, +"kart_018_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562094"}}, +"kart_019_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C0E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562114"}}, +"kart_019_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562194"}}, +"kart_019_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C1E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562214"}}, +"kart_019_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562294"}}, +"kart_020_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C2E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562314"}}, +"kart_020_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562394"}}, +"kart_020_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C3E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562414"}}, +"kart_020_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562494"}}, +"kart_021_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C4E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562514"}}, +"kart_021_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562594"}}, +"kart_021_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C5E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562614"}}, +"kart_021_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562694"}}, +"kart_022_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C6E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562714"}}, +"kart_022_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562794"}}, +"kart_022_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C7E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562814"}}, +"kart_022_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562894"}}, +"kart_023_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C8E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562914"}}, +"kart_023_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562994"}}, +"kart_023_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55C9E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562A14"}}, +"kart_023_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CA64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562A94"}}, +"kart_024_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CAE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562B14"}}, +"kart_024_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CB64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562B94"}}, +"kart_024_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CBE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562C14"}}, +"kart_024_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CC64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562C94"}}, +"kart_025_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CCE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562D14"}}, +"kart_025_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CD64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562D94"}}, +"kart_025_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CDE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562E14"}}, +"kart_025_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CE64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562E94"}}, +"kart_026_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CEE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562F14"}}, +"kart_026_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CF64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x562F94"}}, +"kart_026_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55CFE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563014"}}, +"kart_026_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563094"}}, +"kart_027_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D0E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563114"}}, +"kart_027_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563194"}}, +"kart_027_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D1E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563214"}}, +"kart_027_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563294"}}, +"kart_028_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D2E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563314"}}, +"kart_028_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563394"}}, +"kart_028_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D3E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563414"}}, +"kart_028_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563494"}}, +"kart_029_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D4E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563514"}}, +"kart_029_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563594"}}, +"kart_029_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D5E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563614"}}, +"kart_029_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563694"}}, +"kart_030_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D6E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563714"}}, +"kart_030_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563794"}}, +"kart_030_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D7E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563814"}}, +"kart_030_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563894"}}, +"kart_031_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D8E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563914"}}, +"kart_031_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563994"}}, +"kart_031_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55D9E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563A14"}}, +"kart_031_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DA64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563A94"}}, +"kart_032_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DAE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563B14"}}, +"kart_032_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DB64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563B94"}}, +"kart_032_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DBE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563C14"}}, +"kart_032_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DC64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563C94"}}, +"kart_033_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DCE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563D14"}}, +"kart_033_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DD64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563D94"}}, +"kart_033_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DDE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563E14"}}, +"kart_033_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DE64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563E94"}}, +"kart_034_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DEE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563F14"}}, +"kart_034_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DF64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x563F94"}}, +"kart_034_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55DFE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564014"}}, +"kart_034_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564094"}}, +"kart_035_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E0E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564114"}}, +"kart_035_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564194"}}, +"kart_035_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E1E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564214"}}, +"kart_035_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564294"}}, +"kart_036_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E2E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564314"}}, +"kart_036_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564394"}}, +"kart_036_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E3E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564414"}}, +"kart_036_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564494"}}, +"kart_037_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E4E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564514"}}, +"kart_037_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564594"}}, +"kart_037_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E5E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564614"}}, +"kart_037_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564694"}}, +"kart_038_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E6E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564714"}}, +"kart_038_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564794"}}, +"kart_038_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E7E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564814"}}, +"kart_038_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564894"}}, +"kart_039_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E8E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564914"}}, +"kart_039_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564994"}}, +"kart_039_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55E9E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564A14"}}, +"kart_039_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EA64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564A94"}}, +"kart_040_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EAE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564B14"}}, +"kart_040_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EB64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564B94"}}, +"kart_040_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EBE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564C14"}}, +"kart_040_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EC64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564C94"}}, +"kart_041_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55ECE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564D14"}}, +"kart_041_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55ED64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564D94"}}, +"kart_041_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EDE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564E14"}}, +"kart_041_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EE64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564E94"}}, +"kart_042_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EEE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564F14"}}, +"kart_042_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EF64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x564F94"}}, +"kart_042_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55EFE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565014"}}, +"kart_042_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565094"}}, +"kart_043_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F0E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565114"}}, +"kart_043_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565194"}}, +"kart_043_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F1E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565214"}}, +"kart_043_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565294"}}, +"kart_044_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F2E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565314"}}, +"kart_044_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565394"}}, +"kart_044_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F3E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565414"}}, +"kart_044_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565494"}}, +"kart_045_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F4E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565514"}}, +"kart_045_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565594"}}, +"kart_045_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F5E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565614"}}, +"kart_045_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565694"}}, +"kart_046_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F6E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565714"}}, +"kart_046_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565794"}}, +"kart_046_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F7E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565814"}}, +"kart_046_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565894"}}, +"kart_047_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F8E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565914"}}, +"kart_047_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565994"}}, +"kart_047_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55F9E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565A14"}}, +"kart_047_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FA64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565A94"}}, +"kart_048_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FAE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565B14"}}, +"kart_048_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FB64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565B94"}}, +"kart_048_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FBE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565C14"}}, +"kart_048_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FC64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565C94"}}, +"kart_049_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FCE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565D14"}}, +"kart_049_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FD64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565D94"}}, +"kart_049_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FDE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565E14"}}, +"kart_049_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FE64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565E94"}}, +"kart_050_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FEE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565F14"}}, +"kart_050_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FF64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x565F94"}}, +"kart_050_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x55FFE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566014"}}, +"kart_050_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566094"}}, +"kart_051_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5600E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566114"}}, +"kart_051_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566194"}}, +"kart_051_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5601E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566214"}}, +"kart_051_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566294"}}, +"kart_052_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5602E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566314"}}, +"kart_052_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566394"}}, +"kart_052_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5603E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566414"}}, +"kart_052_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566494"}}, +"kart_053_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5604E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566514"}}, +"kart_053_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566594"}}, +"kart_053_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5605E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566614"}}, +"kart_053_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566694"}}, +"kart_054_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5606E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566714"}}, +"kart_054_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566794"}}, +"kart_054_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5607E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566814"}}, +"kart_054_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566894"}}, +"kart_055_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5608E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566914"}}, +"kart_055_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566994"}}, +"kart_055_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5609E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566A14"}}, +"kart_055_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566A94"}}, +"kart_056_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566B14"}}, +"kart_056_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566B94"}}, +"kart_056_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566C14"}}, +"kart_056_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566C94"}}, +"kart_057_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566D14"}}, +"kart_057_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566D94"}}, +"kart_057_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566E14"}}, +"kart_057_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566E94"}}, +"kart_058_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566F14"}}, +"kart_058_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x566F94"}}, +"kart_058_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x560FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567014"}}, +"kart_058_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567094"}}, +"kart_059_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5610E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567114"}}, +"kart_059_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567194"}}, +"kart_059_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5611E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567214"}}, +"kart_059_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567294"}}, +"kart_060_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5612E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567314"}}, +"kart_060_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567394"}}, +"kart_060_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5613E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567414"}}, +"kart_060_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567494"}}, +"kart_061_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5614E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567514"}}, +"kart_061_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567594"}}, +"kart_061_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5615E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567614"}}, +"kart_061_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567694"}}, +"kart_062_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5616E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567714"}}, +"kart_062_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567794"}}, +"kart_062_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5617E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567814"}}, +"kart_062_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567894"}}, +"kart_063_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5618E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567914"}}, +"kart_063_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567994"}}, +"kart_063_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5619E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567A14"}}, +"kart_063_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567A94"}}, +"kart_064_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567B14"}}, +"kart_064_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567B94"}}, +"kart_064_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567C14"}}, +"kart_064_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567C94"}}, +"kart_065_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567D14"}}, +"kart_065_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567D94"}}, +"kart_065_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567E14"}}, +"kart_065_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567E94"}}, +"kart_066_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567F14"}}, +"kart_066_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x567F94"}}, +"kart_066_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x561FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568014"}}, +"kart_066_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568094"}}, +"kart_067_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5620E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568114"}}, +"kart_067_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568194"}}, +"kart_067_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5621E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568214"}}, +"kart_067_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568294"}}, +"kart_068_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5622E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568314"}}, +"kart_068_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568394"}}, +"kart_068_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5623E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568414"}}, +"kart_068_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568494"}}, +"kart_069_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5624E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568514"}}, +"kart_069_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568594"}}, +"kart_069_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5625E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568614"}}, +"kart_069_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568694"}}, +"kart_070_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5626E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568714"}}, +"kart_070_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568794"}}, +"kart_070_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5627E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568814"}}, +"kart_070_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568894"}}, +"kart_071_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5628E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568914"}}, +"kart_071_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568994"}}, +"kart_071_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5629E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568A14"}}, +"kart_071_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568A94"}}, +"kart_072_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568B14"}}, +"kart_072_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568B94"}}, +"kart_072_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568C14"}}, +"kart_072_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568C94"}}, +"kart_073_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568D14"}}, +"kart_073_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568D94"}}, +"kart_073_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568E14"}}, +"kart_073_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568E94"}}, +"kart_074_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568F14"}}, +"kart_074_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x568F94"}}, +"kart_074_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x562FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569014"}}, +"kart_074_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569094"}}, +"kart_075_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5630E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569114"}}, +"kart_075_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569194"}}, +"kart_075_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5631E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569214"}}, +"kart_075_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569294"}}, +"kart_076_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5632E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569314"}}, +"kart_076_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569394"}}, +"kart_076_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5633E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569414"}}, +"kart_076_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569494"}}, +"kart_077_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5634E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569514"}}, +"kart_077_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569594"}}, +"kart_077_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5635E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569614"}}, +"kart_077_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569694"}}, +"kart_078_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5636E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569714"}}, +"kart_078_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569794"}}, +"kart_078_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5637E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569814"}}, +"kart_078_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569894"}}, +"kart_079_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5638E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569914"}}, +"kart_079_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569994"}}, +"kart_079_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5639E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569A14"}}, +"kart_079_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569A94"}}, +"kart_080_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569B14"}}, +"kart_080_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569B94"}}, +"kart_080_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569C14"}}, +"kart_080_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569C94"}}, +"kart_081_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569D14"}}, +"kart_081_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569D94"}}, +"kart_081_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569E14"}}, +"kart_081_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569E94"}}, +"kart_082_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569F14"}}, +"kart_082_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x569F94"}}, +"kart_082_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x563FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A014"}}, +"kart_082_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A094"}}, +"kart_083_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5640E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A114"}}, +"kart_083_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A194"}}, +"kart_083_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5641E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A214"}}, +"kart_083_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A294"}}, +"kart_084_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5642E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A314"}}, +"kart_084_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A394"}}, +"kart_084_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5643E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A414"}}, +"kart_084_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A494"}}, +"kart_085_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5644E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A514"}}, +"kart_085_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A594"}}, +"kart_085_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5645E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A614"}}, +"kart_085_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A694"}}, +"kart_086_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5646E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A714"}}, +"kart_086_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A794"}}, +"kart_086_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5647E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A814"}}, +"kart_086_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A894"}}, +"kart_087_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5648E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A914"}}, +"kart_087_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56A994"}}, +"kart_087_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5649E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56AA14"}}, +"kart_087_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56AA94"}}, +"kart_088_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56AB14"}}, +"kart_088_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56AB94"}}, +"kart_088_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56AC14"}}, +"kart_088_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56AC94"}}, +"kart_089_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56AD14"}}, +"kart_089_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56AD94"}}, +"kart_089_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56AE14"}}, +"kart_089_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56AE94"}}, +"kart_090_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56AF14"}}, +"kart_090_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56AF94"}}, +"kart_090_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x564FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B014"}}, +"kart_090_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B094"}}, +"kart_091_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5650E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B114"}}, +"kart_091_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B194"}}, +"kart_091_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5651E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B214"}}, +"kart_091_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B294"}}, +"kart_092_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5652E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B314"}}, +"kart_092_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B394"}}, +"kart_092_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5653E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B414"}}, +"kart_092_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B494"}}, +"kart_093_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5654E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B514"}}, +"kart_093_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B594"}}, +"kart_093_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5655E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B614"}}, +"kart_093_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B694"}}, +"kart_094_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5656E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B714"}}, +"kart_094_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B794"}}, +"kart_094_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5657E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B814"}}, +"kart_094_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B894"}}, +"kart_095_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5658E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B914"}}, +"kart_095_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56B994"}}, +"kart_095_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5659E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56BA14"}}, +"kart_095_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56BA94"}}, +"kart_096_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56BB14"}}, +"kart_096_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56BB94"}}, +"kart_096_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56BC14"}}, +"kart_096_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56BC94"}}, +"kart_097_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56BD14"}}, +"kart_097_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56BD94"}}, +"kart_097_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56BE14"}}, +"kart_097_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56BE94"}}, +"kart_098_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56BF14"}}, +"kart_098_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56BF94"}}, +"kart_098_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x565FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C014"}}, +"kart_098_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C094"}}, +"kart_099_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5660E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C114"}}, +"kart_099_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C194"}}, +"kart_099_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5661E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C214"}}, +"kart_099_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C294"}}, +"kart_100_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5662E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C314"}}, +"kart_100_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C394"}}, +"kart_100_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5663E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C414"}}, +"kart_100_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C494"}}, +"kart_101_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5664E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C514"}}, +"kart_101_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C594"}}, +"kart_101_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5665E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C614"}}, +"kart_101_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C694"}}, +"kart_102_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5666E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C714"}}, +"kart_102_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C794"}}, +"kart_102_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5667E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C814"}}, +"kart_102_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C894"}}, +"kart_103_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5668E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C914"}}, +"kart_103_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56C994"}}, +"kart_103_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5669E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56CA14"}}, +"kart_103_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56CA94"}}, +"kart_104_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56CB14"}}, +"kart_104_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56CB94"}}, +"kart_104_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56CC14"}}, +"kart_104_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56CC94"}}, +"kart_105_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56CD14"}}, +"kart_105_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56CD94"}}, +"kart_105_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56CE14"}}, +"kart_105_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56CE94"}}, +"kart_106_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56CF14"}}, +"kart_106_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56CF94"}}, +"kart_106_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x566FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D014"}}, +"kart_106_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D094"}}, +"kart_107_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5670E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D114"}}, +"kart_107_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D194"}}, +"kart_107_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5671E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D214"}}, +"kart_107_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D294"}}, +"kart_108_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5672E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D314"}}, +"kart_108_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D394"}}, +"kart_108_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5673E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D414"}}, +"kart_108_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D494"}}, +"kart_109_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5674E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D514"}}, +"kart_109_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D594"}}, +"kart_109_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5675E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D614"}}, +"kart_109_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D694"}}, +"kart_110_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5676E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D714"}}, +"kart_110_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D794"}}, +"kart_110_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5677E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D814"}}, +"kart_110_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D894"}}, +"kart_111_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5678E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D914"}}, +"kart_111_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56D994"}}, +"kart_111_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5679E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56DA14"}}, +"kart_111_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56DA94"}}, +"kart_112_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56DB14"}}, +"kart_112_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56DB94"}}, +"kart_112_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56DC14"}}, +"kart_112_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56DC94"}}, +"kart_113_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56DD14"}}, +"kart_113_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56DD94"}}, +"kart_113_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56DE14"}}, +"kart_113_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56DE94"}}, +"kart_114_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56DF14"}}, +"kart_114_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56DF94"}}, +"kart_114_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x567FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E014"}}, +"kart_114_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E094"}}, +"kart_115_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5680E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E114"}}, +"kart_115_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E194"}}, +"kart_115_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5681E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E214"}}, +"kart_115_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E294"}}, +"kart_116_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5682E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E314"}}, +"kart_116_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E394"}}, +"kart_116_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5683E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E414"}}, +"kart_116_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E494"}}, +"kart_117_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5684E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E514"}}, +"kart_117_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E594"}}, +"kart_117_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5685E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E614"}}, +"kart_117_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E694"}}, +"kart_118_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5686E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E714"}}, +"kart_118_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E794"}}, +"kart_118_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5687E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E814"}}, +"kart_118_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E894"}}, +"kart_119_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5688E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E914"}}, +"kart_119_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56E994"}}, +"kart_119_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5689E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56EA14"}}, +"kart_119_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56EA94"}}, +"kart_120_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56EB14"}}, +"kart_120_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56EB94"}}, +"kart_120_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56EC14"}}, +"kart_120_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56EC94"}}, +"kart_121_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56ED14"}}, +"kart_121_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56ED94"}}, +"kart_121_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56EE14"}}, +"kart_121_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56EE94"}}, +"kart_122_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56EF14"}}, +"kart_122_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56EF94"}}, +"kart_122_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x568FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F014"}}, +"kart_122_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F094"}}, +"kart_123_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5690E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F114"}}, +"kart_123_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F194"}}, +"kart_123_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5691E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F214"}}, +"kart_123_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F294"}}, +"kart_124_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5692E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F314"}}, +"kart_124_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F394"}}, +"kart_124_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5693E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F414"}}, +"kart_124_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F494"}}, +"kart_125_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5694E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F514"}}, +"kart_125_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F594"}}, +"kart_125_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5695E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F614"}}, +"kart_125_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F694"}}, +"kart_126_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5696E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F714"}}, +"kart_126_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F794"}}, +"kart_126_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5697E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F814"}}, +"kart_126_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F894"}}, +"kart_127_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5698E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F914"}}, +"kart_127_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56F994"}}, +"kart_127_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5699E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56FA14"}}, +"kart_127_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56FA94"}}, +"kart_128_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56FB14"}}, +"kart_128_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56FB94"}}, +"kart_128_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56FC14"}}, +"kart_128_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56FC94"}}, +"kart_129_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56FD14"}}, +"kart_129_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56FD94"}}, +"kart_129_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56FE14"}}, +"kart_129_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56FE94"}}, +"kart_130_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56FF14"}}, +"kart_130_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x56FF94"}}, +"kart_130_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x569FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570014"}}, +"kart_130_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570094"}}, +"kart_131_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A0E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570114"}}, +"kart_131_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570194"}}, +"kart_131_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A1E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570214"}}, +"kart_131_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570294"}}, +"kart_132_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A2E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570314"}}, +"kart_132_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570394"}}, +"kart_132_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A3E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570414"}}, +"kart_132_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570494"}}, +"kart_133_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A4E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570514"}}, +"kart_133_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570594"}}, +"kart_133_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A5E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570614"}}, +"kart_133_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570694"}}, +"kart_134_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A6E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570714"}}, +"kart_134_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570794"}}, +"kart_134_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A7E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570814"}}, +"kart_134_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570894"}}, +"kart_135_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A8E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570914"}}, +"kart_135_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570994"}}, +"kart_135_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56A9E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570A14"}}, +"kart_135_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56AA64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570A94"}}, +"kart_136_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56AAE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570B14"}}, +"kart_136_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56AB64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570B94"}}, +"kart_136_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56ABE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570C14"}}, +"kart_136_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56AC64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570C94"}}, +"kart_137_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56ACE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570D14"}}, +"kart_137_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56AD64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570D94"}}, +"kart_137_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56ADE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570E14"}}, +"kart_137_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56AE64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570E94"}}, +"kart_138_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56AEE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570F14"}}, +"kart_138_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56AF64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x570F94"}}, +"kart_138_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56AFE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571014"}}, +"kart_138_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571094"}}, +"kart_139_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B0E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571114"}}, +"kart_139_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571194"}}, +"kart_139_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B1E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571214"}}, +"kart_139_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571294"}}, +"kart_140_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B2E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571314"}}, +"kart_140_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571394"}}, +"kart_140_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B3E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571414"}}, +"kart_140_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571494"}}, +"kart_141_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B4E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571514"}}, +"kart_141_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571594"}}, +"kart_141_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B5E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571614"}}, +"kart_141_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571694"}}, +"kart_142_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B6E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571714"}}, +"kart_142_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571794"}}, +"kart_142_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B7E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571814"}}, +"kart_142_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571894"}}, +"kart_143_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B8E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571914"}}, +"kart_143_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571994"}}, +"kart_143_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56B9E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571A14"}}, +"kart_143_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BA64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571A94"}}, +"kart_144_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BAE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571B14"}}, +"kart_144_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BB64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571B94"}}, +"kart_144_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BBE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571C14"}}, +"kart_144_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BC64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571C94"}}, +"kart_145_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BCE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571D14"}}, +"kart_145_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BD64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571D94"}}, +"kart_145_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BDE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571E14"}}, +"kart_145_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BE64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571E94"}}, +"kart_146_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BEE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571F14"}}, +"kart_146_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BF64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x571F94"}}, +"kart_146_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56BFE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572014"}}, +"kart_146_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572094"}}, +"kart_147_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C0E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572114"}}, +"kart_147_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572194"}}, +"kart_147_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C1E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572214"}}, +"kart_147_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572294"}}, +"kart_148_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C2E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572314"}}, +"kart_148_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572394"}}, +"kart_148_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C3E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572414"}}, +"kart_148_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572494"}}, +"kart_149_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C4E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572514"}}, +"kart_149_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572594"}}, +"kart_149_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C5E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572614"}}, +"kart_149_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572694"}}, +"kart_150_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C6E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572714"}}, +"kart_150_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572794"}}, +"kart_150_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C7E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572814"}}, +"kart_150_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572894"}}, +"kart_151_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C8E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572914"}}, +"kart_151_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572994"}}, +"kart_151_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56C9E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572A14"}}, +"kart_151_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CA64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572A94"}}, +"kart_152_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CAE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572B14"}}, +"kart_152_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CB64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572B94"}}, +"kart_152_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CBE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572C14"}}, +"kart_152_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CC64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572C94"}}, +"kart_153_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CCE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572D14"}}, +"kart_153_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CD64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572D94"}}, +"kart_153_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CDE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572E14"}}, +"kart_153_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CE64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572E94"}}, +"kart_154_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CEE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572F14"}}, +"kart_154_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CF64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x572F94"}}, +"kart_154_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56CFE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573014"}}, +"kart_154_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573094"}}, +"kart_155_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D0E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573114"}}, +"kart_155_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573194"}}, +"kart_155_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D1E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573214"}}, +"kart_155_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573294"}}, +"kart_156_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D2E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573314"}}, +"kart_156_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573394"}}, +"kart_156_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D3E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573414"}}, +"kart_156_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573494"}}, +"kart_157_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D4E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573514"}}, +"kart_157_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573594"}}, +"kart_157_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D5E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573614"}}, +"kart_157_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573694"}}, +"kart_158_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D6E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573714"}}, +"kart_158_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573794"}}, +"kart_158_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D7E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573814"}}, +"kart_158_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573894"}}, +"kart_159_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D8E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573914"}}, +"kart_159_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573994"}}, +"kart_159_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56D9E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573A14"}}, +"kart_159_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DA64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573A94"}}, +"kart_160_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DAE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573B14"}}, +"kart_160_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DB64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573B94"}}, +"kart_160_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DBE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573C14"}}, +"kart_160_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DC64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573C94"}}, +"kart_161_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DCE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573D14"}}, +"kart_161_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DD64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573D94"}}, +"kart_161_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DDE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573E14"}}, +"kart_161_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DE64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573E94"}}, +"kart_162_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DEE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573F14"}}, +"kart_162_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DF64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x573F94"}}, +"kart_162_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56DFE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574014"}}, +"kart_162_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574094"}}, +"kart_163_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E0E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574114"}}, +"kart_163_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574194"}}, +"kart_163_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E1E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574214"}}, +"kart_163_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574294"}}, +"kart_164_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E2E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574314"}}, +"kart_164_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574394"}}, +"kart_164_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E3E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574414"}}, +"kart_164_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574494"}}, +"kart_165_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E4E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574514"}}, +"kart_165_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574594"}}, +"kart_165_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E5E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574614"}}, +"kart_165_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574694"}}, +"kart_166_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E6E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574714"}}, +"kart_166_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574794"}}, +"kart_166_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E7E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574814"}}, +"kart_166_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574894"}}, +"kart_167_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E8E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574914"}}, +"kart_167_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574994"}}, +"kart_167_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56E9E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574A14"}}, +"kart_167_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EA64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574A94"}}, +"kart_168_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EAE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574B14"}}, +"kart_168_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EB64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574B94"}}, +"kart_168_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EBE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574C14"}}, +"kart_168_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EC64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574C94"}}, +"kart_169_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56ECE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574D14"}}, +"kart_169_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56ED64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574D94"}}, +"kart_169_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EDE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574E14"}}, +"kart_169_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EE64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574E94"}}, +"kart_170_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EEE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574F14"}}, +"kart_170_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EF64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x574F94"}}, +"kart_170_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56EFE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575014"}}, +"kart_170_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575094"}}, +"kart_171_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F0E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575114"}}, +"kart_171_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575194"}}, +"kart_171_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F1E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575214"}}, +"kart_171_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575294"}}, +"kart_172_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F2E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575314"}}, +"kart_172_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575394"}}, +"kart_172_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F3E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575414"}}, +"kart_172_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575494"}}, +"kart_173_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F4E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575514"}}, +"kart_173_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575594"}}, +"kart_173_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F5E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575614"}}, +"kart_173_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575694"}}, +"kart_174_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F6E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575714"}}, +"kart_174_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575794"}}, +"kart_174_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F7E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575814"}}, +"kart_174_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575894"}}, +"kart_175_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F8E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575914"}}, +"kart_175_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575994"}}, +"kart_175_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56F9E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575A14"}}, +"kart_175_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FA64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575A94"}}, +"kart_176_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FAE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575B14"}}, +"kart_176_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FB64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575B94"}}, +"kart_176_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FBE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575C14"}}, +"kart_176_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FC64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575C94"}}, +"kart_177_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FCE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575D14"}}, +"kart_177_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FD64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575D94"}}, +"kart_177_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FDE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575E14"}}, +"kart_177_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FE64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575E94"}}, +"kart_178_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FEE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575F14"}}, +"kart_178_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FF64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x575F94"}}, +"kart_178_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x56FFE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576014"}}, +"kart_178_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576094"}}, +"kart_179_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5700E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576114"}}, +"kart_179_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576194"}}, +"kart_179_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5701E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576214"}}, +"kart_179_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576294"}}, +"kart_180_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5702E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576314"}}, +"kart_180_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576394"}}, +"kart_180_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5703E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576414"}}, +"kart_180_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576494"}}, +"kart_181_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5704E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576514"}}, +"kart_181_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576594"}}, +"kart_181_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5705E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576614"}}, +"kart_181_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576694"}}, +"kart_182_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5706E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576714"}}, +"kart_182_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576794"}}, +"kart_182_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5707E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576814"}}, +"kart_182_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576894"}}, +"kart_183_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5708E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576914"}}, +"kart_183_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576994"}}, +"kart_183_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5709E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576A14"}}, +"kart_183_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576A94"}}, +"kart_184_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576B14"}}, +"kart_184_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576B94"}}, +"kart_184_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576C14"}}, +"kart_184_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576C94"}}, +"kart_185_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576D14"}}, +"kart_185_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576D94"}}, +"kart_185_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576E14"}}, +"kart_185_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576E94"}}, +"kart_186_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576F14"}}, +"kart_186_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x576F94"}}, +"kart_186_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x570FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577014"}}, +"kart_186_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577094"}}, +"kart_187_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5710E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577114"}}, +"kart_187_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577194"}}, +"kart_187_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5711E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577214"}}, +"kart_187_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577294"}}, +"kart_188_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5712E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577314"}}, +"kart_188_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577394"}}, +"kart_188_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5713E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577414"}}, +"kart_188_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577494"}}, +"kart_189_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5714E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577514"}}, +"kart_189_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577594"}}, +"kart_189_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5715E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577614"}}, +"kart_189_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577694"}}, +"kart_190_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5716E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577714"}}, +"kart_190_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577794"}}, +"kart_190_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5717E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577814"}}, +"kart_190_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577894"}}, +"kart_191_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5718E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577914"}}, +"kart_191_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577994"}}, +"kart_191_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5719E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577A14"}}, +"kart_191_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577A94"}}, +"kart_192_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577B14"}}, +"kart_192_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577B94"}}, +"kart_192_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577C14"}}, +"kart_192_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577C94"}}, +"kart_193_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577D14"}}, +"kart_193_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577D94"}}, +"kart_193_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577E14"}}, +"kart_193_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577E94"}}, +"kart_194_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577F14"}}, +"kart_194_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x577F94"}}, +"kart_194_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x571FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578014"}}, +"kart_194_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578094"}}, +"kart_195_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5720E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578114"}}, +"kart_195_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578194"}}, +"kart_195_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5721E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578214"}}, +"kart_195_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578294"}}, +"kart_196_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5722E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578314"}}, +"kart_196_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578394"}}, +"kart_196_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5723E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578414"}}, +"kart_196_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578494"}}, +"kart_197_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5724E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578514"}}, +"kart_197_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578594"}}, +"kart_197_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5725E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578614"}}, +"kart_197_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578694"}}, +"kart_198_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5726E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578714"}}, +"kart_198_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578794"}}, +"kart_198_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5727E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578814"}}, +"kart_198_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578894"}}, +"kart_199_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5728E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578914"}}, +"kart_199_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578994"}}, +"kart_199_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5729E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578A14"}}, +"kart_199_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578A94"}}, +"kart_200_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578B14"}}, +"kart_200_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578B94"}}, +"kart_200_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578C14"}}, +"kart_200_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578C94"}}, +"kart_201_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578D14"}}, +"kart_201_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578D94"}}, +"kart_201_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578E14"}}, +"kart_201_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578E94"}}, +"kart_202_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578F14"}}, +"kart_202_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x578F94"}}, +"kart_202_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x572FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579014"}}, +"kart_202_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579094"}}, +"kart_203_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5730E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579114"}}, +"kart_203_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579194"}}, +"kart_203_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5731E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579214"}}, +"kart_203_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579294"}}, +"kart_204_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5732E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579314"}}, +"kart_204_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579394"}}, +"kart_204_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5733E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579414"}}, +"kart_204_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579494"}}, +"kart_205_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5734E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579514"}}, +"kart_205_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579594"}}, +"kart_205_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5735E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579614"}}, +"kart_205_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579694"}}, +"kart_206_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5736E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579714"}}, +"kart_206_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579794"}}, +"kart_206_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5737E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579814"}}, +"kart_206_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579894"}}, +"kart_207_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5738E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579914"}}, +"kart_207_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579994"}}, +"kart_207_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5739E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579A14"}}, +"kart_207_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579A94"}}, +"kart_208_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579B14"}}, +"kart_208_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579B94"}}, +"kart_208_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579C14"}}, +"kart_208_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579C94"}}, +"kart_209_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579D14"}}, +"kart_209_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579D94"}}, +"kart_209_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579E14"}}, +"kart_209_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579E94"}}, +"kart_210_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579F14"}}, +"kart_210_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x579F94"}}, +"kart_210_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x573FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A014"}}, +"kart_210_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A094"}}, +"kart_211_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5740E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A114"}}, +"kart_211_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A194"}}, +"kart_211_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5741E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A214"}}, +"kart_211_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A294"}}, +"kart_212_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5742E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A314"}}, +"kart_212_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A394"}}, +"kart_212_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5743E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A414"}}, +"kart_212_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A494"}}, +"kart_213_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5744E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A514"}}, +"kart_213_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A594"}}, +"kart_213_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5745E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A614"}}, +"kart_213_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A694"}}, +"kart_214_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5746E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A714"}}, +"kart_214_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A794"}}, +"kart_214_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5747E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A814"}}, +"kart_214_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A894"}}, +"kart_215_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5748E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A914"}}, +"kart_215_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57A994"}}, +"kart_215_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5749E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57AA14"}}, +"kart_215_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57AA94"}}, +"kart_216_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57AB14"}}, +"kart_216_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57AB94"}}, +"kart_216_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57AC14"}}, +"kart_216_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57AC94"}}, +"kart_217_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57AD14"}}, +"kart_217_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57AD94"}}, +"kart_217_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57AE14"}}, +"kart_217_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57AE94"}}, +"kart_218_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57AF14"}}, +"kart_218_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57AF94"}}, +"kart_218_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x574FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B014"}}, +"kart_218_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B094"}}, +"kart_219_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5750E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B114"}}, +"kart_219_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B194"}}, +"kart_219_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5751E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B214"}}, +"kart_219_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B294"}}, +"kart_220_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5752E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B314"}}, +"kart_220_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B394"}}, +"kart_220_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5753E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B414"}}, +"kart_220_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B494"}}, +"kart_221_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5754E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B514"}}, +"kart_221_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B594"}}, +"kart_221_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5755E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B614"}}, +"kart_221_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B694"}}, +"kart_222_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5756E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B714"}}, +"kart_222_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B794"}}, +"kart_222_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5757E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B814"}}, +"kart_222_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B894"}}, +"kart_223_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5758E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B914"}}, +"kart_223_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57B994"}}, +"kart_223_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5759E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57BA14"}}, +"kart_223_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57BA94"}}, +"kart_224_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57BB14"}}, +"kart_224_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57BB94"}}, +"kart_224_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57BC14"}}, +"kart_224_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57BC94"}}, +"kart_225_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57BD14"}}, +"kart_225_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57BD94"}}, +"kart_225_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57BE14"}}, +"kart_225_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57BE94"}}, +"kart_226_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57BF14"}}, +"kart_226_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57BF94"}}, +"kart_226_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x575FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C014"}}, +"kart_226_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C094"}}, +"kart_227_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5760E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C114"}}, +"kart_227_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C194"}}, +"kart_227_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5761E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C214"}}, +"kart_227_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C294"}}, +"kart_228_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5762E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C314"}}, +"kart_228_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C394"}}, +"kart_228_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5763E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C414"}}, +"kart_228_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C494"}}, +"kart_229_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5764E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C514"}}, +"kart_229_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C594"}}, +"kart_229_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5765E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C614"}}, +"kart_229_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C694"}}, +"kart_230_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5766E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C714"}}, +"kart_230_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C794"}}, +"kart_230_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5767E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C814"}}, +"kart_230_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C894"}}, +"kart_231_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5768E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C914"}}, +"kart_231_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57C994"}}, +"kart_231_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5769E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57CA14"}}, +"kart_231_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57CA94"}}, +"kart_232_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57CB14"}}, +"kart_232_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57CB94"}}, +"kart_232_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57CC14"}}, +"kart_232_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57CC94"}}, +"kart_233_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57CD14"}}, +"kart_233_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57CD94"}}, +"kart_233_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57CE14"}}, +"kart_233_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57CE94"}}, +"kart_234_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57CF14"}}, +"kart_234_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57CF94"}}, +"kart_234_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x576FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D014"}}, +"kart_234_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D094"}}, +"kart_235_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5770E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D114"}}, +"kart_235_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D194"}}, +"kart_235_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5771E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D214"}}, +"kart_235_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D294"}}, +"kart_236_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5772E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D314"}}, +"kart_236_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D394"}}, +"kart_236_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5773E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D414"}}, +"kart_236_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D494"}}, +"kart_237_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5774E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D514"}}, +"kart_237_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D594"}}, +"kart_237_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5775E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D614"}}, +"kart_237_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D694"}}, +"kart_238_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5776E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D714"}}, +"kart_238_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D794"}}, +"kart_238_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5777E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D814"}}, +"kart_238_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D894"}}, +"kart_239_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5778E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D914"}}, +"kart_239_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57D994"}}, +"kart_239_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5779E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57DA14"}}, +"kart_239_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57DA94"}}, +"kart_240_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57DB14"}}, +"kart_240_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57DB94"}}, +"kart_240_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57DC14"}}, +"kart_240_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57DC94"}}, +"kart_241_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57DD14"}}, +"kart_241_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57DD94"}}, +"kart_241_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57DE14"}}, +"kart_241_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57DE94"}}, +"kart_242_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57DF14"}}, +"kart_242_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57DF94"}}, +"kart_242_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x577FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E014"}}, +"kart_242_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E094"}}, +"kart_243_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5780E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E114"}}, +"kart_243_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E194"}}, +"kart_243_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5781E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E214"}}, +"kart_243_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E294"}}, +"kart_244_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5782E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E314"}}, +"kart_244_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E394"}}, +"kart_244_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5783E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E414"}}, +"kart_244_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E494"}}, +"kart_245_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5784E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E514"}}, +"kart_245_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E594"}}, +"kart_245_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5785E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E614"}}, +"kart_245_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E694"}}, +"kart_246_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5786E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E714"}}, +"kart_246_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E794"}}, +"kart_246_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5787E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E814"}}, +"kart_246_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E894"}}, +"kart_247_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5788E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E914"}}, +"kart_247_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57E994"}}, +"kart_247_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5789E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57EA14"}}, +"kart_247_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57EA94"}}, +"kart_248_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57EB14"}}, +"kart_248_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57EB94"}}, +"kart_248_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57EC14"}}, +"kart_248_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57EC94"}}, +"kart_249_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57ED14"}}, +"kart_249_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57ED94"}}, +"kart_249_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57EE14"}}, +"kart_249_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57EE94"}}, +"kart_250_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57EF14"}}, +"kart_250_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57EF94"}}, +"kart_250_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x578FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F014"}}, +"kart_250_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F094"}}, +"kart_251_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5790E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F114"}}, +"kart_251_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F194"}}, +"kart_251_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5791E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F214"}}, +"kart_251_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F294"}}, +"kart_252_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5792E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F314"}}, +"kart_252_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F394"}}, +"kart_252_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5793E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F414"}}, +"kart_252_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F494"}}, +"kart_253_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5794E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F514"}}, +"kart_253_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F594"}}, +"kart_253_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5795E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F614"}}, +"kart_253_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F694"}}, +"kart_254_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5796E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F714"}}, +"kart_254_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F794"}}, +"kart_254_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5797E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F814"}}, +"kart_254_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F894"}}, +"kart_255_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5798E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F914"}}, +"kart_255_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57F994"}}, +"kart_255_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x5799E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57FA14"}}, +"kart_255_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579A64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57FA94"}}, +"kart_256_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579AE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57FB14"}}, +"kart_256_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579B64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57FB94"}}, +"kart_256_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579BE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57FC14"}}, +"kart_256_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579C64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57FC94"}}, +"kart_257_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579CE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57FD14"}}, +"kart_257_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579D64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57FD94"}}, +"kart_257_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579DE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57FE14"}}, +"kart_257_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579E64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57FE94"}}, +"kart_258_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579EE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57FF14"}}, +"kart_258_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579F64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x57FF94"}}, +"kart_258_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x579FE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580014"}}, +"kart_258_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580094"}}, +"kart_259_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A0E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580114"}}, +"kart_259_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580194"}}, +"kart_259_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A1E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580214"}}, +"kart_259_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580294"}}, +"kart_260_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A2E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580314"}}, +"kart_260_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580394"}}, +"kart_260_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A3E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580414"}}, +"kart_260_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580494"}}, +"kart_261_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A4E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580514"}}, +"kart_261_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580594"}}, +"kart_261_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A5E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580614"}}, +"kart_261_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580694"}}, +"kart_262_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A6E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580714"}}, +"kart_262_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580794"}}, +"kart_262_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A7E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580814"}}, +"kart_262_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580894"}}, +"kart_263_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A8E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580914"}}, +"kart_263_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580994"}}, +"kart_263_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57A9E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580A14"}}, +"kart_263_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57AA64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580A94"}}, +"kart_264_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57AAE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580B14"}}, +"kart_264_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57AB64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580B94"}}, +"kart_264_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57ABE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580C14"}}, +"kart_264_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57AC64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580C94"}}, +"kart_265_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57ACE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580D14"}}, +"kart_265_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57AD64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580D94"}}, +"kart_265_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57ADE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580E14"}}, +"kart_265_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57AE64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580E94"}}, +"kart_266_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57AEE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580F14"}}, +"kart_266_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57AF64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x580F94"}}, +"kart_266_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57AFE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581014"}}, +"kart_266_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581094"}}, +"kart_267_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B0E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581114"}}, +"kart_267_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581194"}}, +"kart_267_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B1E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581214"}}, +"kart_267_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581294"}}, +"kart_268_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B2E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581314"}}, +"kart_268_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581394"}}, +"kart_268_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B3E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581414"}}, +"kart_268_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581494"}}, +"kart_269_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B4E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581514"}}, +"kart_269_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581594"}}, +"kart_269_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B5E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581614"}}, +"kart_269_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581694"}}, +"kart_270_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B6E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581714"}}, +"kart_270_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581794"}}, +"kart_270_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B7E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581814"}}, +"kart_270_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581894"}}, +"kart_271_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B8E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581914"}}, +"kart_271_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581994"}}, +"kart_271_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57B9E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581A14"}}, +"kart_271_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BA64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581A94"}}, +"kart_272_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BAE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581B14"}}, +"kart_272_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BB64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581B94"}}, +"kart_272_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BBE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581C14"}}, +"kart_272_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BC64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581C94"}}, +"kart_273_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BCE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581D14"}}, +"kart_273_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BD64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581D94"}}, +"kart_273_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BDE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581E14"}}, +"kart_273_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BE64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581E94"}}, +"kart_274_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BEE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581F14"}}, +"kart_274_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BF64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x581F94"}}, +"kart_274_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57BFE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582014"}}, +"kart_274_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582094"}}, +"kart_275_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C0E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582114"}}, +"kart_275_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582194"}}, +"kart_275_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C1E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582214"}}, +"kart_275_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582294"}}, +"kart_276_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C2E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582314"}}, +"kart_276_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582394"}}, +"kart_276_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C3E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582414"}}, +"kart_276_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582494"}}, +"kart_277_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C4E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582514"}}, +"kart_277_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582594"}}, +"kart_277_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C5E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582614"}}, +"kart_277_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582694"}}, +"kart_278_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C6E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582714"}}, +"kart_278_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582794"}}, +"kart_278_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C7E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582814"}}, +"kart_278_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582894"}}, +"kart_279_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C8E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582914"}}, +"kart_279_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582994"}}, +"kart_279_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57C9E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582A14"}}, +"kart_279_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CA64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582A94"}}, +"kart_280_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CAE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582B14"}}, +"kart_280_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CB64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582B94"}}, +"kart_280_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CBE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582C14"}}, +"kart_280_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CC64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582C94"}}, +"kart_281_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CCE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582D14"}}, +"kart_281_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CD64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582D94"}}, +"kart_281_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CDE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582E14"}}, +"kart_281_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CE64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582E94"}}, +"kart_282_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CEE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582F14"}}, +"kart_282_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CF64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x582F94"}}, +"kart_282_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57CFE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583014"}}, +"kart_282_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D064", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583094"}}, +"kart_283_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D0E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583114"}}, +"kart_283_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D164", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583194"}}, +"kart_283_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D1E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583214"}}, +"kart_283_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D264", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583294"}}, +"kart_284_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D2E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583314"}}, +"kart_284_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D364", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583394"}}, +"kart_284_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D3E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583414"}}, +"kart_284_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D464", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583494"}}, +"kart_285_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D4E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583514"}}, +"kart_285_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D564", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583594"}}, +"kart_285_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D5E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583614"}}, +"kart_285_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D664", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583694"}}, +"kart_286_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D6E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583714"}}, +"kart_286_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D764", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583794"}}, +"kart_286_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D7E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583814"}}, +"kart_286_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D864", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583894"}}, +"kart_287_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D8E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583914"}}, +"kart_287_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D964", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583994"}}, +"kart_287_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57D9E4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583A14"}}, +"kart_287_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57DA64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583A94"}}, +"kart_288_wheel_0": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57DAE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583B14"}}, +"kart_288_wheel_1": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57DB64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583B94"}}, +"kart_288_wheel_2": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57DBE4", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583C14"}}, +"kart_288_wheel_3": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57DC64", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x583C94"}}, +"donkeykong_kart_palette": {"output_dir": "donkeykong/palettes", "rom_offset": "0x57DCE4", "width": 16, "height": 12, "type": "rgba16", "jp.v11": {"rom_offset": "0x583D14"}} } \ No newline at end of file diff --git a/assets/karts/luigi_kart.json b/assets/karts/luigi_kart.json index cf2aa38e7e..9cf6bc890f 100644 --- a/assets/karts/luigi_kart.json +++ b/assets/karts/luigi_kart.json @@ -1,1480 +1,1480 @@ { -"luigi_kart_frame000": {"output_dir": "luigi/frames", "rom_offset": "0x145470", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame001": {"output_dir": "luigi/frames", "rom_offset": "0x145964", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_001_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame002": {"output_dir": "luigi/frames", "rom_offset": "0x145E64", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_002_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame003": {"output_dir": "luigi/frames", "rom_offset": "0x146368", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_003_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame004": {"output_dir": "luigi/frames", "rom_offset": "0x146888", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_004_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame005": {"output_dir": "luigi/frames", "rom_offset": "0x146DB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_005_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame006": {"output_dir": "luigi/frames", "rom_offset": "0x1472EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_006_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame007": {"output_dir": "luigi/frames", "rom_offset": "0x147840", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_007_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame008": {"output_dir": "luigi/frames", "rom_offset": "0x147DA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_008_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame009": {"output_dir": "luigi/frames", "rom_offset": "0x148328", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_009_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame010": {"output_dir": "luigi/frames", "rom_offset": "0x1488B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_010_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame011": {"output_dir": "luigi/frames", "rom_offset": "0x148E58", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_011_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame012": {"output_dir": "luigi/frames", "rom_offset": "0x149420", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_012_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame013": {"output_dir": "luigi/frames", "rom_offset": "0x1499F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_013_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame014": {"output_dir": "luigi/frames", "rom_offset": "0x149FC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_014_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame015": {"output_dir": "luigi/frames", "rom_offset": "0x14A5A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_015_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame016": {"output_dir": "luigi/frames", "rom_offset": "0x14ABA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_016_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame017": {"output_dir": "luigi/frames", "rom_offset": "0x14B1AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_017_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame018": {"output_dir": "luigi/frames", "rom_offset": "0x14B7C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_018_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame019": {"output_dir": "luigi/frames", "rom_offset": "0x14BDD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_019_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame020": {"output_dir": "luigi/frames", "rom_offset": "0x14C3E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_020_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame021": {"output_dir": "luigi/frames", "rom_offset": "0x14C9E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_021_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame022": {"output_dir": "luigi/frames", "rom_offset": "0x14CED4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_022_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame023": {"output_dir": "luigi/frames", "rom_offset": "0x14D3D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_023_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame024": {"output_dir": "luigi/frames", "rom_offset": "0x14D8D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_024_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame025": {"output_dir": "luigi/frames", "rom_offset": "0x14DDF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_025_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame026": {"output_dir": "luigi/frames", "rom_offset": "0x14E338", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_026_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame027": {"output_dir": "luigi/frames", "rom_offset": "0x14E878", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_027_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame028": {"output_dir": "luigi/frames", "rom_offset": "0x14EDE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_028_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame029": {"output_dir": "luigi/frames", "rom_offset": "0x14F364", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_029_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame030": {"output_dir": "luigi/frames", "rom_offset": "0x14F900", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_030_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame031": {"output_dir": "luigi/frames", "rom_offset": "0x14FEA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_031_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame032": {"output_dir": "luigi/frames", "rom_offset": "0x150470", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_032_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame033": {"output_dir": "luigi/frames", "rom_offset": "0x150A48", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_033_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame034": {"output_dir": "luigi/frames", "rom_offset": "0x151020", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_034_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame035": {"output_dir": "luigi/frames", "rom_offset": "0x151614", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_035_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame036": {"output_dir": "luigi/frames", "rom_offset": "0x151C1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_036_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame037": {"output_dir": "luigi/frames", "rom_offset": "0x152230", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_037_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame038": {"output_dir": "luigi/frames", "rom_offset": "0x152840", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_038_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame039": {"output_dir": "luigi/frames", "rom_offset": "0x152E54", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_039_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame040": {"output_dir": "luigi/frames", "rom_offset": "0x153478", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_040_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame041": {"output_dir": "luigi/frames", "rom_offset": "0x153A7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_041_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame042": {"output_dir": "luigi/frames", "rom_offset": "0x1540B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_042_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame043": {"output_dir": "luigi/frames", "rom_offset": "0x154598", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_043_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame044": {"output_dir": "luigi/frames", "rom_offset": "0x154A9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_044_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame045": {"output_dir": "luigi/frames", "rom_offset": "0x154FCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_045_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame046": {"output_dir": "luigi/frames", "rom_offset": "0x155508", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_046_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame047": {"output_dir": "luigi/frames", "rom_offset": "0x155A88", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_047_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame048": {"output_dir": "luigi/frames", "rom_offset": "0x155FF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_048_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame049": {"output_dir": "luigi/frames", "rom_offset": "0x156570", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_049_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame050": {"output_dir": "luigi/frames", "rom_offset": "0x156B0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_050_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame051": {"output_dir": "luigi/frames", "rom_offset": "0x1570B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_051_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame052": {"output_dir": "luigi/frames", "rom_offset": "0x157670", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_052_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame053": {"output_dir": "luigi/frames", "rom_offset": "0x157C54", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_053_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame054": {"output_dir": "luigi/frames", "rom_offset": "0x158248", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_054_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame055": {"output_dir": "luigi/frames", "rom_offset": "0x158824", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_055_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame056": {"output_dir": "luigi/frames", "rom_offset": "0x158E34", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_056_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame057": {"output_dir": "luigi/frames", "rom_offset": "0x159428", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_057_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame058": {"output_dir": "luigi/frames", "rom_offset": "0x159A30", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_058_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame059": {"output_dir": "luigi/frames", "rom_offset": "0x15A058", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_059_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame060": {"output_dir": "luigi/frames", "rom_offset": "0x15A690", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_060_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame061": {"output_dir": "luigi/frames", "rom_offset": "0x15ACC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_061_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame062": {"output_dir": "luigi/frames", "rom_offset": "0x15B308", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_062_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame063": {"output_dir": "luigi/frames", "rom_offset": "0x15B940", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_063_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame064": {"output_dir": "luigi/frames", "rom_offset": "0x15BE50", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_064_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame065": {"output_dir": "luigi/frames", "rom_offset": "0x15C364", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_065_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame066": {"output_dir": "luigi/frames", "rom_offset": "0x15C888", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_066_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame067": {"output_dir": "luigi/frames", "rom_offset": "0x15CDE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_067_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame068": {"output_dir": "luigi/frames", "rom_offset": "0x15D358", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_068_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame069": {"output_dir": "luigi/frames", "rom_offset": "0x15D8EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_069_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame070": {"output_dir": "luigi/frames", "rom_offset": "0x15DE84", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_070_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame071": {"output_dir": "luigi/frames", "rom_offset": "0x15E424", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_071_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame072": {"output_dir": "luigi/frames", "rom_offset": "0x15E9EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_072_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame073": {"output_dir": "luigi/frames", "rom_offset": "0x15EFC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_073_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame074": {"output_dir": "luigi/frames", "rom_offset": "0x15F5B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_074_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame075": {"output_dir": "luigi/frames", "rom_offset": "0x15FBA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_075_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame076": {"output_dir": "luigi/frames", "rom_offset": "0x16019C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_076_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame077": {"output_dir": "luigi/frames", "rom_offset": "0x1607AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_077_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame078": {"output_dir": "luigi/frames", "rom_offset": "0x160DCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_078_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame079": {"output_dir": "luigi/frames", "rom_offset": "0x1613F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_079_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame080": {"output_dir": "luigi/frames", "rom_offset": "0x161A14", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_080_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame081": {"output_dir": "luigi/frames", "rom_offset": "0x162054", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_081_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame082": {"output_dir": "luigi/frames", "rom_offset": "0x162694", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_082_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame083": {"output_dir": "luigi/frames", "rom_offset": "0x162CCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_083_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame084": {"output_dir": "luigi/frames", "rom_offset": "0x163300", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_084_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame085": {"output_dir": "luigi/frames", "rom_offset": "0x16380C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_085_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame086": {"output_dir": "luigi/frames", "rom_offset": "0x163D2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_086_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame087": {"output_dir": "luigi/frames", "rom_offset": "0x164278", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_087_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame088": {"output_dir": "luigi/frames", "rom_offset": "0x1647CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_088_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame089": {"output_dir": "luigi/frames", "rom_offset": "0x164D50", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_089_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame090": {"output_dir": "luigi/frames", "rom_offset": "0x1652DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_090_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame091": {"output_dir": "luigi/frames", "rom_offset": "0x165878", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_091_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame092": {"output_dir": "luigi/frames", "rom_offset": "0x165E24", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_092_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame093": {"output_dir": "luigi/frames", "rom_offset": "0x1663F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_093_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame094": {"output_dir": "luigi/frames", "rom_offset": "0x1669CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_094_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame095": {"output_dir": "luigi/frames", "rom_offset": "0x166FB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_095_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame096": {"output_dir": "luigi/frames", "rom_offset": "0x1675B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_096_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame097": {"output_dir": "luigi/frames", "rom_offset": "0x167BC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_097_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame098": {"output_dir": "luigi/frames", "rom_offset": "0x1681C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_098_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame099": {"output_dir": "luigi/frames", "rom_offset": "0x1687F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_099_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame100": {"output_dir": "luigi/frames", "rom_offset": "0x168E38", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_100_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame101": {"output_dir": "luigi/frames", "rom_offset": "0x16948C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_101_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame102": {"output_dir": "luigi/frames", "rom_offset": "0x169AD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_102_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame103": {"output_dir": "luigi/frames", "rom_offset": "0x16A120", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_103_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame104": {"output_dir": "luigi/frames", "rom_offset": "0x16A764", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_104_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame105": {"output_dir": "luigi/frames", "rom_offset": "0x16ADA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_105_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame106": {"output_dir": "luigi/frames", "rom_offset": "0x16B2C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_106_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame107": {"output_dir": "luigi/frames", "rom_offset": "0x16B7F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_107_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame108": {"output_dir": "luigi/frames", "rom_offset": "0x16BD5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_108_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame109": {"output_dir": "luigi/frames", "rom_offset": "0x16C2E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_109_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame110": {"output_dir": "luigi/frames", "rom_offset": "0x16C85C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_110_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame111": {"output_dir": "luigi/frames", "rom_offset": "0x16CDF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_111_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame112": {"output_dir": "luigi/frames", "rom_offset": "0x16D388", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_112_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame113": {"output_dir": "luigi/frames", "rom_offset": "0x16D94C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_113_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame114": {"output_dir": "luigi/frames", "rom_offset": "0x16DF20", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_114_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame115": {"output_dir": "luigi/frames", "rom_offset": "0x16E51C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_115_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame116": {"output_dir": "luigi/frames", "rom_offset": "0x16EB04", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_116_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame117": {"output_dir": "luigi/frames", "rom_offset": "0x16F11C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_117_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame118": {"output_dir": "luigi/frames", "rom_offset": "0x16F720", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_118_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame119": {"output_dir": "luigi/frames", "rom_offset": "0x16FD3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_119_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame120": {"output_dir": "luigi/frames", "rom_offset": "0x170364", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_120_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame121": {"output_dir": "luigi/frames", "rom_offset": "0x1709A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_121_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame122": {"output_dir": "luigi/frames", "rom_offset": "0x170FFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_122_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame123": {"output_dir": "luigi/frames", "rom_offset": "0x171640", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_123_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame124": {"output_dir": "luigi/frames", "rom_offset": "0x171C9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_124_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame125": {"output_dir": "luigi/frames", "rom_offset": "0x1722F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_125_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame126": {"output_dir": "luigi/frames", "rom_offset": "0x17293C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_126_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame127": {"output_dir": "luigi/frames", "rom_offset": "0x172E84", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_127_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame128": {"output_dir": "luigi/frames", "rom_offset": "0x1733C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_128_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame129": {"output_dir": "luigi/frames", "rom_offset": "0x173954", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_129_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame130": {"output_dir": "luigi/frames", "rom_offset": "0x173EB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_130_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame131": {"output_dir": "luigi/frames", "rom_offset": "0x174458", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_131_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame132": {"output_dir": "luigi/frames", "rom_offset": "0x174A04", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_132_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame133": {"output_dir": "luigi/frames", "rom_offset": "0x174FC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_133_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame134": {"output_dir": "luigi/frames", "rom_offset": "0x17557C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_134_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame135": {"output_dir": "luigi/frames", "rom_offset": "0x175B40", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_135_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame136": {"output_dir": "luigi/frames", "rom_offset": "0x176128", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_136_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame137": {"output_dir": "luigi/frames", "rom_offset": "0x17671C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_137_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame138": {"output_dir": "luigi/frames", "rom_offset": "0x176D20", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_138_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame139": {"output_dir": "luigi/frames", "rom_offset": "0x17733C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_139_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame140": {"output_dir": "luigi/frames", "rom_offset": "0x177964", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_140_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame141": {"output_dir": "luigi/frames", "rom_offset": "0x177FA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_141_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame142": {"output_dir": "luigi/frames", "rom_offset": "0x1785F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_142_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame143": {"output_dir": "luigi/frames", "rom_offset": "0x178C54", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_143_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame144": {"output_dir": "luigi/frames", "rom_offset": "0x1792B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_144_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame145": {"output_dir": "luigi/frames", "rom_offset": "0x179920", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_145_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame146": {"output_dir": "luigi/frames", "rom_offset": "0x179F80", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_146_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame147": {"output_dir": "luigi/frames", "rom_offset": "0x17A5F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_147_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame148": {"output_dir": "luigi/frames", "rom_offset": "0x17AB48", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_148_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame149": {"output_dir": "luigi/frames", "rom_offset": "0x17B0AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_149_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame150": {"output_dir": "luigi/frames", "rom_offset": "0x17B620", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_150_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame151": {"output_dir": "luigi/frames", "rom_offset": "0x17BBB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_151_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame152": {"output_dir": "luigi/frames", "rom_offset": "0x17C174", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_152_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame153": {"output_dir": "luigi/frames", "rom_offset": "0x17C744", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_153_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame154": {"output_dir": "luigi/frames", "rom_offset": "0x17CD10", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_154_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame155": {"output_dir": "luigi/frames", "rom_offset": "0x17D2D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_155_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame156": {"output_dir": "luigi/frames", "rom_offset": "0x17D8D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_156_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame157": {"output_dir": "luigi/frames", "rom_offset": "0x17DECC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_157_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame158": {"output_dir": "luigi/frames", "rom_offset": "0x17E4D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_158_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame159": {"output_dir": "luigi/frames", "rom_offset": "0x17EADC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_159_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame160": {"output_dir": "luigi/frames", "rom_offset": "0x17F0FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_160_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame161": {"output_dir": "luigi/frames", "rom_offset": "0x17F74C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_161_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame162": {"output_dir": "luigi/frames", "rom_offset": "0x17FDA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_162_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame163": {"output_dir": "luigi/frames", "rom_offset": "0x180400", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_163_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame164": {"output_dir": "luigi/frames", "rom_offset": "0x180A70", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_164_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame165": {"output_dir": "luigi/frames", "rom_offset": "0x1810EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_165_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame166": {"output_dir": "luigi/frames", "rom_offset": "0x181750", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_166_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame167": {"output_dir": "luigi/frames", "rom_offset": "0x181DDC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_167_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame168": {"output_dir": "luigi/frames", "rom_offset": "0x182458", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_168_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame169": {"output_dir": "luigi/frames", "rom_offset": "0x1829D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_169_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame170": {"output_dir": "luigi/frames", "rom_offset": "0x182F74", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_170_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame171": {"output_dir": "luigi/frames", "rom_offset": "0x183538", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_171_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame172": {"output_dir": "luigi/frames", "rom_offset": "0x183AEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_172_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame173": {"output_dir": "luigi/frames", "rom_offset": "0x18408C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_173_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame174": {"output_dir": "luigi/frames", "rom_offset": "0x184670", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_174_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame175": {"output_dir": "luigi/frames", "rom_offset": "0x184C48", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_175_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame176": {"output_dir": "luigi/frames", "rom_offset": "0x185218", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_176_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame177": {"output_dir": "luigi/frames", "rom_offset": "0x185808", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_177_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame178": {"output_dir": "luigi/frames", "rom_offset": "0x185E24", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_178_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame179": {"output_dir": "luigi/frames", "rom_offset": "0x186434", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_179_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame180": {"output_dir": "luigi/frames", "rom_offset": "0x186A50", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_180_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame181": {"output_dir": "luigi/frames", "rom_offset": "0x187080", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_181_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame182": {"output_dir": "luigi/frames", "rom_offset": "0x1876B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_182_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame183": {"output_dir": "luigi/frames", "rom_offset": "0x187CF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_183_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame184": {"output_dir": "luigi/frames", "rom_offset": "0x188340", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_184_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame185": {"output_dir": "luigi/frames", "rom_offset": "0x1889A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_185_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame186": {"output_dir": "luigi/frames", "rom_offset": "0x189030", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_186_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame187": {"output_dir": "luigi/frames", "rom_offset": "0x1896C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_187_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame188": {"output_dir": "luigi/frames", "rom_offset": "0x189D28", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_188_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame189": {"output_dir": "luigi/frames", "rom_offset": "0x18A3A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_189_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame190": {"output_dir": "luigi/frames", "rom_offset": "0x18A8BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_190_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame191": {"output_dir": "luigi/frames", "rom_offset": "0x18AE10", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_191_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame192": {"output_dir": "luigi/frames", "rom_offset": "0x18B398", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_192_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame193": {"output_dir": "luigi/frames", "rom_offset": "0x18B954", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_193_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame194": {"output_dir": "luigi/frames", "rom_offset": "0x18BF34", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_194_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame195": {"output_dir": "luigi/frames", "rom_offset": "0x18C534", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_195_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame196": {"output_dir": "luigi/frames", "rom_offset": "0x18CB50", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_196_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame197": {"output_dir": "luigi/frames", "rom_offset": "0x18D184", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_197_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame198": {"output_dir": "luigi/frames", "rom_offset": "0x18D7E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_198_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame199": {"output_dir": "luigi/frames", "rom_offset": "0x18DE4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_199_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame200": {"output_dir": "luigi/frames", "rom_offset": "0x18E4D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_200_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame201": {"output_dir": "luigi/frames", "rom_offset": "0x18EB7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_201_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame202": {"output_dir": "luigi/frames", "rom_offset": "0x18F234", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_202_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame203": {"output_dir": "luigi/frames", "rom_offset": "0x18F8E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_203_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame204": {"output_dir": "luigi/frames", "rom_offset": "0x18FF80", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_204_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame205": {"output_dir": "luigi/frames", "rom_offset": "0x190634", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_205_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame206": {"output_dir": "luigi/frames", "rom_offset": "0x190CB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_206_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame207": {"output_dir": "luigi/frames", "rom_offset": "0x191320", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_207_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame208": {"output_dir": "luigi/frames", "rom_offset": "0x191978", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_208_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame209": {"output_dir": "luigi/frames", "rom_offset": "0x191F94", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_209_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame210": {"output_dir": "luigi/frames", "rom_offset": "0x1924DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_210_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame211": {"output_dir": "luigi/frames", "rom_offset": "0x192A58", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_211_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame212": {"output_dir": "luigi/frames", "rom_offset": "0x193010", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_212_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame213": {"output_dir": "luigi/frames", "rom_offset": "0x1935E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_213_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame214": {"output_dir": "luigi/frames", "rom_offset": "0x193BE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_214_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame215": {"output_dir": "luigi/frames", "rom_offset": "0x194200", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_215_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame216": {"output_dir": "luigi/frames", "rom_offset": "0x194844", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_216_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame217": {"output_dir": "luigi/frames", "rom_offset": "0x194E9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_217_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame218": {"output_dir": "luigi/frames", "rom_offset": "0x1954F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_218_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame219": {"output_dir": "luigi/frames", "rom_offset": "0x195B4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_219_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame220": {"output_dir": "luigi/frames", "rom_offset": "0x1961BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_220_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame221": {"output_dir": "luigi/frames", "rom_offset": "0x196844", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_221_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame222": {"output_dir": "luigi/frames", "rom_offset": "0x196ECC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_222_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame223": {"output_dir": "luigi/frames", "rom_offset": "0x197564", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_223_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame224": {"output_dir": "luigi/frames", "rom_offset": "0x197BD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_224_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame225": {"output_dir": "luigi/frames", "rom_offset": "0x198248", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_225_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame226": {"output_dir": "luigi/frames", "rom_offset": "0x1988B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_226_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame227": {"output_dir": "luigi/frames", "rom_offset": "0x198ED8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_227_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame228": {"output_dir": "luigi/frames", "rom_offset": "0x1994C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_228_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame229": {"output_dir": "luigi/frames", "rom_offset": "0x199A74", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_229_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame230": {"output_dir": "luigi/frames", "rom_offset": "0x199FC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_230_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame231": {"output_dir": "luigi/frames", "rom_offset": "0x19A568", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_231_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame232": {"output_dir": "luigi/frames", "rom_offset": "0x19AB4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_232_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame233": {"output_dir": "luigi/frames", "rom_offset": "0x19B150", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_233_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame234": {"output_dir": "luigi/frames", "rom_offset": "0x19B780", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_234_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame235": {"output_dir": "luigi/frames", "rom_offset": "0x19BDC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_235_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame236": {"output_dir": "luigi/frames", "rom_offset": "0x19C414", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_236_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame237": {"output_dir": "luigi/frames", "rom_offset": "0x19CA74", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_237_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame238": {"output_dir": "luigi/frames", "rom_offset": "0x19D0DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_238_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame239": {"output_dir": "luigi/frames", "rom_offset": "0x19D730", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_239_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame240": {"output_dir": "luigi/frames", "rom_offset": "0x19DDAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_240_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame241": {"output_dir": "luigi/frames", "rom_offset": "0x19E414", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_241_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame242": {"output_dir": "luigi/frames", "rom_offset": "0x19EA78", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_242_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame243": {"output_dir": "luigi/frames", "rom_offset": "0x19F0E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_243_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame244": {"output_dir": "luigi/frames", "rom_offset": "0x19F718", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_244_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame245": {"output_dir": "luigi/frames", "rom_offset": "0x19FD2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_245_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame246": {"output_dir": "luigi/frames", "rom_offset": "0x1A0334", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_246_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame247": {"output_dir": "luigi/frames", "rom_offset": "0x1A091C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_247_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame248": {"output_dir": "luigi/frames", "rom_offset": "0x1A0EE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_248_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame249": {"output_dir": "luigi/frames", "rom_offset": "0x1A1464", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_249_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame250": {"output_dir": "luigi/frames", "rom_offset": "0x1A19E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_250_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame251": {"output_dir": "luigi/frames", "rom_offset": "0x1A1FAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_251_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame252": {"output_dir": "luigi/frames", "rom_offset": "0x1A259C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_252_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame253": {"output_dir": "luigi/frames", "rom_offset": "0x1A2BC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_253_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame254": {"output_dir": "luigi/frames", "rom_offset": "0x1A320C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_254_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame255": {"output_dir": "luigi/frames", "rom_offset": "0x1A385C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_255_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame256": {"output_dir": "luigi/frames", "rom_offset": "0x1A3ED8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_256_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame257": {"output_dir": "luigi/frames", "rom_offset": "0x1A4548", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_257_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame258": {"output_dir": "luigi/frames", "rom_offset": "0x1A4BAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_258_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame259": {"output_dir": "luigi/frames", "rom_offset": "0x1A5210", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_259_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame260": {"output_dir": "luigi/frames", "rom_offset": "0x1A586C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_260_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame261": {"output_dir": "luigi/frames", "rom_offset": "0x1A5EBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_261_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame262": {"output_dir": "luigi/frames", "rom_offset": "0x1A64F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_262_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame263": {"output_dir": "luigi/frames", "rom_offset": "0x1A6B14", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_263_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame264": {"output_dir": "luigi/frames", "rom_offset": "0x1A7110", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_264_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame265": {"output_dir": "luigi/frames", "rom_offset": "0x1A7710", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_265_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame266": {"output_dir": "luigi/frames", "rom_offset": "0x1A7CD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_266_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame267": {"output_dir": "luigi/frames", "rom_offset": "0x1A8280", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_267_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame268": {"output_dir": "luigi/frames", "rom_offset": "0x1A87F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_268_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame269": {"output_dir": "luigi/frames", "rom_offset": "0x1A8D20", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_269_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame270": {"output_dir": "luigi/frames", "rom_offset": "0x1A92C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_270_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame271": {"output_dir": "luigi/frames", "rom_offset": "0x1A98A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_271_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame272": {"output_dir": "luigi/frames", "rom_offset": "0x1A9EB4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_272_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame273": {"output_dir": "luigi/frames", "rom_offset": "0x1AA4F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_273_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame274": {"output_dir": "luigi/frames", "rom_offset": "0x1AAB40", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_274_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame275": {"output_dir": "luigi/frames", "rom_offset": "0x1AB1AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_275_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame276": {"output_dir": "luigi/frames", "rom_offset": "0x1AB834", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_276_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame277": {"output_dir": "luigi/frames", "rom_offset": "0x1ABEB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_277_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame278": {"output_dir": "luigi/frames", "rom_offset": "0x1AC514", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_278_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame279": {"output_dir": "luigi/frames", "rom_offset": "0x1ACB84", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_279_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame280": {"output_dir": "luigi/frames", "rom_offset": "0x1AD1DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_280_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame281": {"output_dir": "luigi/frames", "rom_offset": "0x1AD828", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_281_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame282": {"output_dir": "luigi/frames", "rom_offset": "0x1ADE34", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_282_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame283": {"output_dir": "luigi/frames", "rom_offset": "0x1AE438", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_283_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame284": {"output_dir": "luigi/frames", "rom_offset": "0x1AEA00", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_284_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame285": {"output_dir": "luigi/frames", "rom_offset": "0x1AEFB4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_285_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame286": {"output_dir": "luigi/frames", "rom_offset": "0x1AF528", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_286_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame287": {"output_dir": "luigi/frames", "rom_offset": "0x1AFA74", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_287_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame288": {"output_dir": "luigi/frames", "rom_offset": "0x1AFF80", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_288_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame289": {"output_dir": "luigi/frames", "rom_offset": "0x1B0438", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame290": {"output_dir": "luigi/frames", "rom_offset": "0x1B0934", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame291": {"output_dir": "luigi/frames", "rom_offset": "0x1B0EC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame292": {"output_dir": "luigi/frames", "rom_offset": "0x1B14A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame293": {"output_dir": "luigi/frames", "rom_offset": "0x1B1B4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame294": {"output_dir": "luigi/frames", "rom_offset": "0x1B21A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame295": {"output_dir": "luigi/frames", "rom_offset": "0x1B2800", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame296": {"output_dir": "luigi/frames", "rom_offset": "0x1B2E24", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame297": {"output_dir": "luigi/frames", "rom_offset": "0x1B33CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame298": {"output_dir": "luigi/frames", "rom_offset": "0x1B38FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame299": {"output_dir": "luigi/frames", "rom_offset": "0x1B3EB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame300": {"output_dir": "luigi/frames", "rom_offset": "0x1B4498", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame301": {"output_dir": "luigi/frames", "rom_offset": "0x1B4A60", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame302": {"output_dir": "luigi/frames", "rom_offset": "0x1B5020", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame303": {"output_dir": "luigi/frames", "rom_offset": "0x1B55F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame304": {"output_dir": "luigi/frames", "rom_offset": "0x1B5BC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame305": {"output_dir": "luigi/frames", "rom_offset": "0x1B6124", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame306": {"output_dir": "luigi/frames", "rom_offset": "0x1B65C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame307": {"output_dir": "luigi/frames", "rom_offset": "0x1B6BB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame308": {"output_dir": "luigi/frames", "rom_offset": "0x1B723C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame309": {"output_dir": "luigi/frames", "rom_offset": "0x1B78EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame310": {"output_dir": "luigi/frames", "rom_offset": "0x1B7F38", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame311": {"output_dir": "luigi/frames", "rom_offset": "0x1B8588", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame312": {"output_dir": "luigi/frames", "rom_offset": "0x1B8BA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame313": {"output_dir": "luigi/frames", "rom_offset": "0x1B9100", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame314": {"output_dir": "luigi/frames", "rom_offset": "0x1B9618", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame315": {"output_dir": "luigi/frames", "rom_offset": "0x1B9BD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame316": {"output_dir": "luigi/frames", "rom_offset": "0x1BA1AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame317": {"output_dir": "luigi/frames", "rom_offset": "0x1BA760", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame318": {"output_dir": "luigi/frames", "rom_offset": "0x1BAD10", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame319": {"output_dir": "luigi/frames", "rom_offset": "0x1BB2E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"luigi_kart_frame320": {"output_dir": "luigi/frames", "rom_offset": "0x1BB8B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"kart_000_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BBE6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BBEEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BBF6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BBFEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC06C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC0EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC16C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC1EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC26C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC2EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC36C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC3EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC46C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC4EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC56C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC5EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC66C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC6EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC76C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC7EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC86C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC8EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC96C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC9EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCA6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCAEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCB6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCBEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCC6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCCEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCD6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCDEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCE6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCEEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCF6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCFEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD06C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD0EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD16C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD1EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD26C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD2EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD36C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD3EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD46C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD4EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD56C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD5EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD66C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD6EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD76C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD7EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD86C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD8EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD96C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD9EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDA6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDAEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDB6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDBEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDC6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDCEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDD6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDDEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDE6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDEEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDF6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDFEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE06C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE0EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE16C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE1EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE26C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE2EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE36C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE3EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE46C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE4EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE56C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE5EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE66C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE6EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE76C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE7EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE86C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE8EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE96C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE9EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEA6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEAEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEB6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEBEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEC6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BECEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BED6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEDEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEE6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEEEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEF6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEFEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF06C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF0EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF16C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF1EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF26C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF2EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF36C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF3EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF46C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF4EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF56C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF5EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF66C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF6EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF76C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF7EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF86C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF8EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF96C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF9EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFA6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFAEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFB6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFBEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFC6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFCEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFD6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFDEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFE6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFEEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFF6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFFEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C006C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C00EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C016C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C01EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C026C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C02EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C036C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C03EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C046C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C04EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C056C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C05EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C066C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C06EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C076C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C07EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C086C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C08EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C096C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C09EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C106C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C10EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C116C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C11EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C126C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C12EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C136C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C13EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C146C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C14EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C156C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C15EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C166C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C16EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C176C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C17EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C186C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C18EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C196C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C19EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C206C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C20EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C216C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C21EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C226C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C22EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C236C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C23EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C246C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C24EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C256C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C25EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C266C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C26EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C276C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C27EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C286C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C28EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C296C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C29EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C306C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C30EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C316C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C31EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C326C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C32EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C336C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C33EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C346C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C34EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C356C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C35EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C366C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C36EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C376C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C37EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C386C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C38EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C396C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C39EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C406C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C40EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C416C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C41EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C426C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C42EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C436C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C43EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C446C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C44EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C456C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C45EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C466C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C46EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C476C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C47EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C486C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C48EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C496C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C49EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C506C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C50EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C516C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C51EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C526C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C52EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C536C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C53EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C546C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C54EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C556C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C55EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C566C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C56EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C576C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C57EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C586C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C58EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C596C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C59EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C606C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C60EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C616C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C61EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C626C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C62EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C636C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C63EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C646C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C64EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C656C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C65EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C666C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C66EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C676C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C67EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C686C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C68EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C696C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C69EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C706C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C70EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C716C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C71EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C726C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C72EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C736C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C73EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C746C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C74EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C756C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C75EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C766C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C76EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C776C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C77EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C786C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C78EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C796C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C79EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C806C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C80EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C816C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C81EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C826C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C82EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C836C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C83EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C846C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C84EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C856C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C85EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C866C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C86EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C876C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C87EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C886C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C88EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C896C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C89EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C906C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C90EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C916C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C91EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C926C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C92EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C936C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C93EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C946C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C94EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C956C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C95EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C966C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C96EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C976C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C97EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C986C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C98EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C996C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C99EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA06C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA0EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA16C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA1EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA26C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA2EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA36C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA3EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA46C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA4EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA56C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA5EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA66C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA6EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA76C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA7EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA86C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA8EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA96C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA9EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CAA6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CAAEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CAB6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CABEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CAC6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CACEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CAD6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CADEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CAE6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CAEEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CAF6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CAFEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB06C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB0EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB16C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB1EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB26C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB2EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB36C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB3EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB46C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB4EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB56C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB5EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB66C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB6EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB76C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB7EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB86C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB8EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB96C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB9EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBA6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBAEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBB6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBBEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBC6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBCEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBD6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBDEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBE6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBEEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBF6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBFEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC06C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC0EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC16C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC1EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC26C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC2EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC36C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC3EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC46C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC4EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC56C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC5EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC66C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC6EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC76C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC7EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC86C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC8EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC96C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC9EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCA6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCAEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCB6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCBEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCC6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCCEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCD6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCDEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCE6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCEEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCF6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCFEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD06C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD0EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD16C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD1EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD26C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD2EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD36C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD3EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD46C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD4EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD56C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD5EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD66C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD6EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD76C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD7EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD86C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD8EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD96C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD9EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDA6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDAEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDB6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDBEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDC6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDCEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDD6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDDEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDE6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDEEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDF6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDFEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE06C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE0EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE16C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE1EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE26C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE2EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE36C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE3EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE46C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE4EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE56C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE5EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE66C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE6EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE76C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE7EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE86C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE8EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE96C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE9EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEA6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEAEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEB6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEBEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEC6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CECEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CED6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEDEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEE6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEEEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEF6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEFEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF06C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF0EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF16C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF1EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF26C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF2EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF36C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF3EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF46C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF4EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF56C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF5EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF66C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF6EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF76C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF7EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF86C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF8EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF96C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF9EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFA6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFAEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFB6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFBEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFC6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFCEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFD6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFDEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFE6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFEEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFF6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFFEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D006C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D00EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D016C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D01EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D026C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D02EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D036C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D03EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D046C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D04EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D056C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D05EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D066C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D06EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D076C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D07EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D086C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D08EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D096C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D09EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D106C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D10EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D116C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D11EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D126C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D12EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D136C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D13EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D146C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D14EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D156C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D15EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D166C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D16EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D176C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D17EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D186C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D18EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D196C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D19EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D206C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D20EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D216C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D21EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D226C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D22EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D236C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D23EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D246C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D24EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D256C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D25EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D266C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D26EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D276C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D27EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D286C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D28EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D296C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D29EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D306C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D30EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D316C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D31EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D326C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D32EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D336C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D33EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D346C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D34EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D356C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D35EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D366C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D36EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D376C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D37EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D386C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D38EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D396C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D39EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D406C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D40EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D416C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D41EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D426C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D42EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D436C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D43EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D446C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D44EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D456C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D45EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D466C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D46EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D476C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D47EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D486C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D48EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D496C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D49EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D506C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D50EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D516C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D51EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D526C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D52EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D536C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D53EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D546C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D54EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D556C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D55EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D566C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D56EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D576C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D57EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D586C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D58EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D596C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D59EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D606C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D60EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D616C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D61EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D626C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D62EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D636C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D63EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D646C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D64EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D656C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D65EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D666C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D66EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D676C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D67EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D686C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D68EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D696C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D69EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D706C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D70EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D716C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D71EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D726C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D72EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D736C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D73EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D746C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D74EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D756C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D75EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D766C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D76EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D776C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D77EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D786C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D78EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D796C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D79EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D806C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D80EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D816C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D81EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D826C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D82EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D836C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D83EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D846C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D84EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D856C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D85EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D866C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D86EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D876C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D87EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D886C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D88EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D896C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D89EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D906C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D90EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D916C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D91EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D926C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D92EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D936C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D93EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D946C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D94EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D956C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D95EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D966C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D96EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D976C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D97EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D986C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D98EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D996C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D99EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9A6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9AEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9B6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9BEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9C6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9CEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9D6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9DEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9E6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9EEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9F6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9FEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA06C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA0EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA16C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA1EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA26C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA2EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA36C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA3EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA46C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA4EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA56C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA5EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA66C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA6EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA76C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA7EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA86C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA8EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA96C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA9EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DAA6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DAAEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DAB6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DABEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DAC6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DACEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DAD6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DADEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DAE6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DAEEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DAF6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DAFEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB06C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB0EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB16C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB1EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB26C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB2EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB36C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB3EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB46C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB4EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB56C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB5EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB66C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB6EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB76C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB7EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB86C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB8EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB96C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB9EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBA6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBAEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBB6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBBEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBC6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBCEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBD6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBDEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBE6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBEEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBF6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBFEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC06C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC0EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC16C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC1EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC26C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC2EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC36C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC3EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC46C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC4EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC56C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC5EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC66C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC6EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC76C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC7EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC86C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC8EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC96C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC9EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCA6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCAEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCB6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCBEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCC6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCCEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCD6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCDEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCE6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCEEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCF6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCFEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD06C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD0EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD16C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD1EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD26C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD2EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD36C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD3EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD46C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD4EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD56C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD5EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD66C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD6EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD76C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD7EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD86C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD8EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD96C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD9EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDA6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDAEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDB6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDBEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDC6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDCEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDD6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDDEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDE6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDEEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDF6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDFEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE06C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE0EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE16C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE1EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE26C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE2EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE36C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE3EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE46C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE4EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE56C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE5EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE66C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE6EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE76C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE7EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE86C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE8EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE96C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE9EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEA6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEAEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEB6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEBEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEC6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DECEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DED6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEDEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEE6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEEEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEF6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEFEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF06C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF0EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF16C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF1EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF26C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF2EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF36C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF3EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF46C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF4EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF56C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF5EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF66C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF6EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF76C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF7EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF86C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF8EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF96C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF9EC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFA6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFAEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFB6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFBEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFC6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFCEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFD6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFDEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFE6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFEEC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFF6C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFFEC", "width": 16, "height": 4, "type": "rgba16"}, -"luigi_kart_palette": {"output_dir": "luigi/palettes", "rom_offset": "0x1E006C", "width": 16, "height": 12, "type": "rgba16"} +"luigi_kart_frame000": {"output_dir": "luigi/frames", "rom_offset": "0x145470", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x14B4A0"}}, +"luigi_kart_frame001": {"output_dir": "luigi/frames", "rom_offset": "0x145964", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_001_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x14B994"}}, +"luigi_kart_frame002": {"output_dir": "luigi/frames", "rom_offset": "0x145E64", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_002_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x14BE94"}}, +"luigi_kart_frame003": {"output_dir": "luigi/frames", "rom_offset": "0x146368", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_003_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x14C398"}}, +"luigi_kart_frame004": {"output_dir": "luigi/frames", "rom_offset": "0x146888", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_004_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x14C8B8"}}, +"luigi_kart_frame005": {"output_dir": "luigi/frames", "rom_offset": "0x146DB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_005_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x14CDE0"}}, +"luigi_kart_frame006": {"output_dir": "luigi/frames", "rom_offset": "0x1472EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_006_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x14D31C"}}, +"luigi_kart_frame007": {"output_dir": "luigi/frames", "rom_offset": "0x147840", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_007_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x14D870"}}, +"luigi_kart_frame008": {"output_dir": "luigi/frames", "rom_offset": "0x147DA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_008_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x14DDD8"}}, +"luigi_kart_frame009": {"output_dir": "luigi/frames", "rom_offset": "0x148328", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_009_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x14E358"}}, +"luigi_kart_frame010": {"output_dir": "luigi/frames", "rom_offset": "0x1488B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_010_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x14E8E8"}}, +"luigi_kart_frame011": {"output_dir": "luigi/frames", "rom_offset": "0x148E58", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_011_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x14EE88"}}, +"luigi_kart_frame012": {"output_dir": "luigi/frames", "rom_offset": "0x149420", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_012_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x14F450"}}, +"luigi_kart_frame013": {"output_dir": "luigi/frames", "rom_offset": "0x1499F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_013_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x14FA20"}}, +"luigi_kart_frame014": {"output_dir": "luigi/frames", "rom_offset": "0x149FC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_014_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x14FFF4"}}, +"luigi_kart_frame015": {"output_dir": "luigi/frames", "rom_offset": "0x14A5A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_015_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1505D8"}}, +"luigi_kart_frame016": {"output_dir": "luigi/frames", "rom_offset": "0x14ABA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_016_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x150BD0"}}, +"luigi_kart_frame017": {"output_dir": "luigi/frames", "rom_offset": "0x14B1AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_017_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1511DC"}}, +"luigi_kart_frame018": {"output_dir": "luigi/frames", "rom_offset": "0x14B7C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_018_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1517F0"}}, +"luigi_kart_frame019": {"output_dir": "luigi/frames", "rom_offset": "0x14BDD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_019_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x151E08"}}, +"luigi_kart_frame020": {"output_dir": "luigi/frames", "rom_offset": "0x14C3E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_020_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x152410"}}, +"luigi_kart_frame021": {"output_dir": "luigi/frames", "rom_offset": "0x14C9E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_021_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x152A10"}}, +"luigi_kart_frame022": {"output_dir": "luigi/frames", "rom_offset": "0x14CED4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_022_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x152F04"}}, +"luigi_kart_frame023": {"output_dir": "luigi/frames", "rom_offset": "0x14D3D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_023_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x153400"}}, +"luigi_kart_frame024": {"output_dir": "luigi/frames", "rom_offset": "0x14D8D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_024_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x153900"}}, +"luigi_kart_frame025": {"output_dir": "luigi/frames", "rom_offset": "0x14DDF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_025_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x153E28"}}, +"luigi_kart_frame026": {"output_dir": "luigi/frames", "rom_offset": "0x14E338", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_026_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x154368"}}, +"luigi_kart_frame027": {"output_dir": "luigi/frames", "rom_offset": "0x14E878", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_027_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1548A8"}}, +"luigi_kart_frame028": {"output_dir": "luigi/frames", "rom_offset": "0x14EDE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_028_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x154E18"}}, +"luigi_kart_frame029": {"output_dir": "luigi/frames", "rom_offset": "0x14F364", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_029_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x155394"}}, +"luigi_kart_frame030": {"output_dir": "luigi/frames", "rom_offset": "0x14F900", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_030_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x155930"}}, +"luigi_kart_frame031": {"output_dir": "luigi/frames", "rom_offset": "0x14FEA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_031_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x155ED8"}}, +"luigi_kart_frame032": {"output_dir": "luigi/frames", "rom_offset": "0x150470", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_032_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1564A0"}}, +"luigi_kart_frame033": {"output_dir": "luigi/frames", "rom_offset": "0x150A48", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_033_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x156A78"}}, +"luigi_kart_frame034": {"output_dir": "luigi/frames", "rom_offset": "0x151020", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_034_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x157050"}}, +"luigi_kart_frame035": {"output_dir": "luigi/frames", "rom_offset": "0x151614", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_035_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x157644"}}, +"luigi_kart_frame036": {"output_dir": "luigi/frames", "rom_offset": "0x151C1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_036_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x157C4C"}}, +"luigi_kart_frame037": {"output_dir": "luigi/frames", "rom_offset": "0x152230", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_037_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x158260"}}, +"luigi_kart_frame038": {"output_dir": "luigi/frames", "rom_offset": "0x152840", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_038_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x158870"}}, +"luigi_kart_frame039": {"output_dir": "luigi/frames", "rom_offset": "0x152E54", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_039_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x158E84"}}, +"luigi_kart_frame040": {"output_dir": "luigi/frames", "rom_offset": "0x153478", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_040_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1594A8"}}, +"luigi_kart_frame041": {"output_dir": "luigi/frames", "rom_offset": "0x153A7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_041_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x159AAC"}}, +"luigi_kart_frame042": {"output_dir": "luigi/frames", "rom_offset": "0x1540B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_042_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x15A0E0"}}, +"luigi_kart_frame043": {"output_dir": "luigi/frames", "rom_offset": "0x154598", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_043_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x15A5C8"}}, +"luigi_kart_frame044": {"output_dir": "luigi/frames", "rom_offset": "0x154A9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_044_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x15AACC"}}, +"luigi_kart_frame045": {"output_dir": "luigi/frames", "rom_offset": "0x154FCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_045_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x15AFFC"}}, +"luigi_kart_frame046": {"output_dir": "luigi/frames", "rom_offset": "0x155508", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_046_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x15B538"}}, +"luigi_kart_frame047": {"output_dir": "luigi/frames", "rom_offset": "0x155A88", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_047_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x15BAB8"}}, +"luigi_kart_frame048": {"output_dir": "luigi/frames", "rom_offset": "0x155FF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_048_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x15C020"}}, +"luigi_kart_frame049": {"output_dir": "luigi/frames", "rom_offset": "0x156570", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_049_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x15C5A0"}}, +"luigi_kart_frame050": {"output_dir": "luigi/frames", "rom_offset": "0x156B0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_050_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x15CB3C"}}, +"luigi_kart_frame051": {"output_dir": "luigi/frames", "rom_offset": "0x1570B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_051_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x15D0E4"}}, +"luigi_kart_frame052": {"output_dir": "luigi/frames", "rom_offset": "0x157670", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_052_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x15D6A0"}}, +"luigi_kart_frame053": {"output_dir": "luigi/frames", "rom_offset": "0x157C54", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_053_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x15DC84"}}, +"luigi_kart_frame054": {"output_dir": "luigi/frames", "rom_offset": "0x158248", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_054_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x15E278"}}, +"luigi_kart_frame055": {"output_dir": "luigi/frames", "rom_offset": "0x158824", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_055_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x15E854"}}, +"luigi_kart_frame056": {"output_dir": "luigi/frames", "rom_offset": "0x158E34", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_056_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x15EE64"}}, +"luigi_kart_frame057": {"output_dir": "luigi/frames", "rom_offset": "0x159428", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_057_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x15F458"}}, +"luigi_kart_frame058": {"output_dir": "luigi/frames", "rom_offset": "0x159A30", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_058_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x15FA60"}}, +"luigi_kart_frame059": {"output_dir": "luigi/frames", "rom_offset": "0x15A058", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_059_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x160088"}}, +"luigi_kart_frame060": {"output_dir": "luigi/frames", "rom_offset": "0x15A690", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_060_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1606C0"}}, +"luigi_kart_frame061": {"output_dir": "luigi/frames", "rom_offset": "0x15ACC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_061_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x160CF0"}}, +"luigi_kart_frame062": {"output_dir": "luigi/frames", "rom_offset": "0x15B308", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_062_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x161338"}}, +"luigi_kart_frame063": {"output_dir": "luigi/frames", "rom_offset": "0x15B940", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_063_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x161970"}}, +"luigi_kart_frame064": {"output_dir": "luigi/frames", "rom_offset": "0x15BE50", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_064_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x161E80"}}, +"luigi_kart_frame065": {"output_dir": "luigi/frames", "rom_offset": "0x15C364", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_065_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x162394"}}, +"luigi_kart_frame066": {"output_dir": "luigi/frames", "rom_offset": "0x15C888", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_066_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1628B8"}}, +"luigi_kart_frame067": {"output_dir": "luigi/frames", "rom_offset": "0x15CDE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_067_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x162E18"}}, +"luigi_kart_frame068": {"output_dir": "luigi/frames", "rom_offset": "0x15D358", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_068_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x163388"}}, +"luigi_kart_frame069": {"output_dir": "luigi/frames", "rom_offset": "0x15D8EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_069_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x16391C"}}, +"luigi_kart_frame070": {"output_dir": "luigi/frames", "rom_offset": "0x15DE84", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_070_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x163EB4"}}, +"luigi_kart_frame071": {"output_dir": "luigi/frames", "rom_offset": "0x15E424", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_071_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x164454"}}, +"luigi_kart_frame072": {"output_dir": "luigi/frames", "rom_offset": "0x15E9EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_072_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x164A1C"}}, +"luigi_kart_frame073": {"output_dir": "luigi/frames", "rom_offset": "0x15EFC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_073_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x164FF0"}}, +"luigi_kart_frame074": {"output_dir": "luigi/frames", "rom_offset": "0x15F5B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_074_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1655E0"}}, +"luigi_kart_frame075": {"output_dir": "luigi/frames", "rom_offset": "0x15FBA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_075_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x165BD4"}}, +"luigi_kart_frame076": {"output_dir": "luigi/frames", "rom_offset": "0x16019C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_076_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1661CC"}}, +"luigi_kart_frame077": {"output_dir": "luigi/frames", "rom_offset": "0x1607AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_077_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1667DC"}}, +"luigi_kart_frame078": {"output_dir": "luigi/frames", "rom_offset": "0x160DCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_078_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x166DFC"}}, +"luigi_kart_frame079": {"output_dir": "luigi/frames", "rom_offset": "0x1613F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_079_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x167424"}}, +"luigi_kart_frame080": {"output_dir": "luigi/frames", "rom_offset": "0x161A14", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_080_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x167A44"}}, +"luigi_kart_frame081": {"output_dir": "luigi/frames", "rom_offset": "0x162054", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_081_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x168084"}}, +"luigi_kart_frame082": {"output_dir": "luigi/frames", "rom_offset": "0x162694", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_082_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1686C4"}}, +"luigi_kart_frame083": {"output_dir": "luigi/frames", "rom_offset": "0x162CCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_083_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x168CFC"}}, +"luigi_kart_frame084": {"output_dir": "luigi/frames", "rom_offset": "0x163300", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_084_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x169330"}}, +"luigi_kart_frame085": {"output_dir": "luigi/frames", "rom_offset": "0x16380C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_085_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x16983C"}}, +"luigi_kart_frame086": {"output_dir": "luigi/frames", "rom_offset": "0x163D2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_086_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x169D5C"}}, +"luigi_kart_frame087": {"output_dir": "luigi/frames", "rom_offset": "0x164278", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_087_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x16A2A8"}}, +"luigi_kart_frame088": {"output_dir": "luigi/frames", "rom_offset": "0x1647CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_088_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x16A7FC"}}, +"luigi_kart_frame089": {"output_dir": "luigi/frames", "rom_offset": "0x164D50", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_089_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x16AD80"}}, +"luigi_kart_frame090": {"output_dir": "luigi/frames", "rom_offset": "0x1652DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_090_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x16B30C"}}, +"luigi_kart_frame091": {"output_dir": "luigi/frames", "rom_offset": "0x165878", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_091_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x16B8A8"}}, +"luigi_kart_frame092": {"output_dir": "luigi/frames", "rom_offset": "0x165E24", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_092_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x16BE54"}}, +"luigi_kart_frame093": {"output_dir": "luigi/frames", "rom_offset": "0x1663F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_093_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x16C420"}}, +"luigi_kart_frame094": {"output_dir": "luigi/frames", "rom_offset": "0x1669CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_094_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x16C9FC"}}, +"luigi_kart_frame095": {"output_dir": "luigi/frames", "rom_offset": "0x166FB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_095_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x16CFE8"}}, +"luigi_kart_frame096": {"output_dir": "luigi/frames", "rom_offset": "0x1675B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_096_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x16D5E0"}}, +"luigi_kart_frame097": {"output_dir": "luigi/frames", "rom_offset": "0x167BC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_097_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x16DBF0"}}, +"luigi_kart_frame098": {"output_dir": "luigi/frames", "rom_offset": "0x1681C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_098_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x16E1F8"}}, +"luigi_kart_frame099": {"output_dir": "luigi/frames", "rom_offset": "0x1687F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_099_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x16E824"}}, +"luigi_kart_frame100": {"output_dir": "luigi/frames", "rom_offset": "0x168E38", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_100_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x16EE68"}}, +"luigi_kart_frame101": {"output_dir": "luigi/frames", "rom_offset": "0x16948C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_101_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x16F4BC"}}, +"luigi_kart_frame102": {"output_dir": "luigi/frames", "rom_offset": "0x169AD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_102_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x16FB04"}}, +"luigi_kart_frame103": {"output_dir": "luigi/frames", "rom_offset": "0x16A120", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_103_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x170150"}}, +"luigi_kart_frame104": {"output_dir": "luigi/frames", "rom_offset": "0x16A764", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_104_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x170794"}}, +"luigi_kart_frame105": {"output_dir": "luigi/frames", "rom_offset": "0x16ADA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_105_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x170DD0"}}, +"luigi_kart_frame106": {"output_dir": "luigi/frames", "rom_offset": "0x16B2C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_106_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1712F0"}}, +"luigi_kart_frame107": {"output_dir": "luigi/frames", "rom_offset": "0x16B7F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_107_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x171824"}}, +"luigi_kart_frame108": {"output_dir": "luigi/frames", "rom_offset": "0x16BD5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_108_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x171D8C"}}, +"luigi_kart_frame109": {"output_dir": "luigi/frames", "rom_offset": "0x16C2E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_109_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x172318"}}, +"luigi_kart_frame110": {"output_dir": "luigi/frames", "rom_offset": "0x16C85C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_110_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17288C"}}, +"luigi_kart_frame111": {"output_dir": "luigi/frames", "rom_offset": "0x16CDF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_111_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x172E20"}}, +"luigi_kart_frame112": {"output_dir": "luigi/frames", "rom_offset": "0x16D388", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_112_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1733B8"}}, +"luigi_kart_frame113": {"output_dir": "luigi/frames", "rom_offset": "0x16D94C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_113_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17397C"}}, +"luigi_kart_frame114": {"output_dir": "luigi/frames", "rom_offset": "0x16DF20", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_114_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x173F50"}}, +"luigi_kart_frame115": {"output_dir": "luigi/frames", "rom_offset": "0x16E51C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_115_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17454C"}}, +"luigi_kart_frame116": {"output_dir": "luigi/frames", "rom_offset": "0x16EB04", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_116_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x174B34"}}, +"luigi_kart_frame117": {"output_dir": "luigi/frames", "rom_offset": "0x16F11C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_117_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17514C"}}, +"luigi_kart_frame118": {"output_dir": "luigi/frames", "rom_offset": "0x16F720", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_118_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x175750"}}, +"luigi_kart_frame119": {"output_dir": "luigi/frames", "rom_offset": "0x16FD3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_119_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x175D6C"}}, +"luigi_kart_frame120": {"output_dir": "luigi/frames", "rom_offset": "0x170364", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_120_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x176394"}}, +"luigi_kart_frame121": {"output_dir": "luigi/frames", "rom_offset": "0x1709A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_121_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1769D4"}}, +"luigi_kart_frame122": {"output_dir": "luigi/frames", "rom_offset": "0x170FFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_122_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17702C"}}, +"luigi_kart_frame123": {"output_dir": "luigi/frames", "rom_offset": "0x171640", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_123_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x177670"}}, +"luigi_kart_frame124": {"output_dir": "luigi/frames", "rom_offset": "0x171C9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_124_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x177CCC"}}, +"luigi_kart_frame125": {"output_dir": "luigi/frames", "rom_offset": "0x1722F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_125_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x178324"}}, +"luigi_kart_frame126": {"output_dir": "luigi/frames", "rom_offset": "0x17293C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_126_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17896C"}}, +"luigi_kart_frame127": {"output_dir": "luigi/frames", "rom_offset": "0x172E84", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_127_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x178EB4"}}, +"luigi_kart_frame128": {"output_dir": "luigi/frames", "rom_offset": "0x1733C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_128_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1793F8"}}, +"luigi_kart_frame129": {"output_dir": "luigi/frames", "rom_offset": "0x173954", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_129_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x179984"}}, +"luigi_kart_frame130": {"output_dir": "luigi/frames", "rom_offset": "0x173EB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_130_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x179EE0"}}, +"luigi_kart_frame131": {"output_dir": "luigi/frames", "rom_offset": "0x174458", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_131_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17A488"}}, +"luigi_kart_frame132": {"output_dir": "luigi/frames", "rom_offset": "0x174A04", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_132_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17AA34"}}, +"luigi_kart_frame133": {"output_dir": "luigi/frames", "rom_offset": "0x174FC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_133_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17AFF8"}}, +"luigi_kart_frame134": {"output_dir": "luigi/frames", "rom_offset": "0x17557C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_134_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17B5AC"}}, +"luigi_kart_frame135": {"output_dir": "luigi/frames", "rom_offset": "0x175B40", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_135_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17BB70"}}, +"luigi_kart_frame136": {"output_dir": "luigi/frames", "rom_offset": "0x176128", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_136_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17C158"}}, +"luigi_kart_frame137": {"output_dir": "luigi/frames", "rom_offset": "0x17671C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_137_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17C74C"}}, +"luigi_kart_frame138": {"output_dir": "luigi/frames", "rom_offset": "0x176D20", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_138_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17CD50"}}, +"luigi_kart_frame139": {"output_dir": "luigi/frames", "rom_offset": "0x17733C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_139_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17D36C"}}, +"luigi_kart_frame140": {"output_dir": "luigi/frames", "rom_offset": "0x177964", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_140_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17D994"}}, +"luigi_kart_frame141": {"output_dir": "luigi/frames", "rom_offset": "0x177FA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_141_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17DFD8"}}, +"luigi_kart_frame142": {"output_dir": "luigi/frames", "rom_offset": "0x1785F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_142_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17E628"}}, +"luigi_kart_frame143": {"output_dir": "luigi/frames", "rom_offset": "0x178C54", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_143_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17EC84"}}, +"luigi_kart_frame144": {"output_dir": "luigi/frames", "rom_offset": "0x1792B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_144_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17F2E4"}}, +"luigi_kart_frame145": {"output_dir": "luigi/frames", "rom_offset": "0x179920", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_145_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17F950"}}, +"luigi_kart_frame146": {"output_dir": "luigi/frames", "rom_offset": "0x179F80", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_146_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x17FFB0"}}, +"luigi_kart_frame147": {"output_dir": "luigi/frames", "rom_offset": "0x17A5F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_147_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x180624"}}, +"luigi_kart_frame148": {"output_dir": "luigi/frames", "rom_offset": "0x17AB48", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_148_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x180B78"}}, +"luigi_kart_frame149": {"output_dir": "luigi/frames", "rom_offset": "0x17B0AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_149_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1810DC"}}, +"luigi_kart_frame150": {"output_dir": "luigi/frames", "rom_offset": "0x17B620", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_150_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x181650"}}, +"luigi_kart_frame151": {"output_dir": "luigi/frames", "rom_offset": "0x17BBB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_151_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x181BE8"}}, +"luigi_kart_frame152": {"output_dir": "luigi/frames", "rom_offset": "0x17C174", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_152_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1821A4"}}, +"luigi_kart_frame153": {"output_dir": "luigi/frames", "rom_offset": "0x17C744", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_153_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x182774"}}, +"luigi_kart_frame154": {"output_dir": "luigi/frames", "rom_offset": "0x17CD10", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_154_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x182D40"}}, +"luigi_kart_frame155": {"output_dir": "luigi/frames", "rom_offset": "0x17D2D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_155_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x183308"}}, +"luigi_kart_frame156": {"output_dir": "luigi/frames", "rom_offset": "0x17D8D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_156_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x183900"}}, +"luigi_kart_frame157": {"output_dir": "luigi/frames", "rom_offset": "0x17DECC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_157_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x183EFC"}}, +"luigi_kart_frame158": {"output_dir": "luigi/frames", "rom_offset": "0x17E4D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_158_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x184508"}}, +"luigi_kart_frame159": {"output_dir": "luigi/frames", "rom_offset": "0x17EADC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_159_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x184B0C"}}, +"luigi_kart_frame160": {"output_dir": "luigi/frames", "rom_offset": "0x17F0FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_160_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18512C"}}, +"luigi_kart_frame161": {"output_dir": "luigi/frames", "rom_offset": "0x17F74C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_161_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18577C"}}, +"luigi_kart_frame162": {"output_dir": "luigi/frames", "rom_offset": "0x17FDA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_162_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x185DD0"}}, +"luigi_kart_frame163": {"output_dir": "luigi/frames", "rom_offset": "0x180400", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_163_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x186430"}}, +"luigi_kart_frame164": {"output_dir": "luigi/frames", "rom_offset": "0x180A70", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_164_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x186AA0"}}, +"luigi_kart_frame165": {"output_dir": "luigi/frames", "rom_offset": "0x1810EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_165_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18711C"}}, +"luigi_kart_frame166": {"output_dir": "luigi/frames", "rom_offset": "0x181750", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_166_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x187780"}}, +"luigi_kart_frame167": {"output_dir": "luigi/frames", "rom_offset": "0x181DDC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_167_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x187E0C"}}, +"luigi_kart_frame168": {"output_dir": "luigi/frames", "rom_offset": "0x182458", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_168_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x188488"}}, +"luigi_kart_frame169": {"output_dir": "luigi/frames", "rom_offset": "0x1829D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_169_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x188A00"}}, +"luigi_kart_frame170": {"output_dir": "luigi/frames", "rom_offset": "0x182F74", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_170_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x188FA4"}}, +"luigi_kart_frame171": {"output_dir": "luigi/frames", "rom_offset": "0x183538", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_171_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x189568"}}, +"luigi_kart_frame172": {"output_dir": "luigi/frames", "rom_offset": "0x183AEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_172_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x189B1C"}}, +"luigi_kart_frame173": {"output_dir": "luigi/frames", "rom_offset": "0x18408C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_173_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18A0BC"}}, +"luigi_kart_frame174": {"output_dir": "luigi/frames", "rom_offset": "0x184670", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_174_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18A6A0"}}, +"luigi_kart_frame175": {"output_dir": "luigi/frames", "rom_offset": "0x184C48", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_175_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18AC78"}}, +"luigi_kart_frame176": {"output_dir": "luigi/frames", "rom_offset": "0x185218", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_176_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18B248"}}, +"luigi_kart_frame177": {"output_dir": "luigi/frames", "rom_offset": "0x185808", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_177_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18B838"}}, +"luigi_kart_frame178": {"output_dir": "luigi/frames", "rom_offset": "0x185E24", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_178_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18BE54"}}, +"luigi_kart_frame179": {"output_dir": "luigi/frames", "rom_offset": "0x186434", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_179_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18C464"}}, +"luigi_kart_frame180": {"output_dir": "luigi/frames", "rom_offset": "0x186A50", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_180_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18CA80"}}, +"luigi_kart_frame181": {"output_dir": "luigi/frames", "rom_offset": "0x187080", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_181_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18D0B0"}}, +"luigi_kart_frame182": {"output_dir": "luigi/frames", "rom_offset": "0x1876B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_182_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18D6E0"}}, +"luigi_kart_frame183": {"output_dir": "luigi/frames", "rom_offset": "0x187CF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_183_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18DD24"}}, +"luigi_kart_frame184": {"output_dir": "luigi/frames", "rom_offset": "0x188340", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_184_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18E370"}}, +"luigi_kart_frame185": {"output_dir": "luigi/frames", "rom_offset": "0x1889A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_185_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18E9D4"}}, +"luigi_kart_frame186": {"output_dir": "luigi/frames", "rom_offset": "0x189030", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_186_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18F060"}}, +"luigi_kart_frame187": {"output_dir": "luigi/frames", "rom_offset": "0x1896C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_187_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18F6F0"}}, +"luigi_kart_frame188": {"output_dir": "luigi/frames", "rom_offset": "0x189D28", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_188_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x18FD58"}}, +"luigi_kart_frame189": {"output_dir": "luigi/frames", "rom_offset": "0x18A3A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_189_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1903D8"}}, +"luigi_kart_frame190": {"output_dir": "luigi/frames", "rom_offset": "0x18A8BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_190_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1908EC"}}, +"luigi_kart_frame191": {"output_dir": "luigi/frames", "rom_offset": "0x18AE10", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_191_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x190E40"}}, +"luigi_kart_frame192": {"output_dir": "luigi/frames", "rom_offset": "0x18B398", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_192_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1913C8"}}, +"luigi_kart_frame193": {"output_dir": "luigi/frames", "rom_offset": "0x18B954", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_193_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x191984"}}, +"luigi_kart_frame194": {"output_dir": "luigi/frames", "rom_offset": "0x18BF34", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_194_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x191F64"}}, +"luigi_kart_frame195": {"output_dir": "luigi/frames", "rom_offset": "0x18C534", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_195_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x192564"}}, +"luigi_kart_frame196": {"output_dir": "luigi/frames", "rom_offset": "0x18CB50", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_196_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x192B80"}}, +"luigi_kart_frame197": {"output_dir": "luigi/frames", "rom_offset": "0x18D184", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_197_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1931B4"}}, +"luigi_kart_frame198": {"output_dir": "luigi/frames", "rom_offset": "0x18D7E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_198_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x193810"}}, +"luigi_kart_frame199": {"output_dir": "luigi/frames", "rom_offset": "0x18DE4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_199_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x193E7C"}}, +"luigi_kart_frame200": {"output_dir": "luigi/frames", "rom_offset": "0x18E4D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_200_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x194504"}}, +"luigi_kart_frame201": {"output_dir": "luigi/frames", "rom_offset": "0x18EB7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_201_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x194BAC"}}, +"luigi_kart_frame202": {"output_dir": "luigi/frames", "rom_offset": "0x18F234", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_202_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x195264"}}, +"luigi_kart_frame203": {"output_dir": "luigi/frames", "rom_offset": "0x18F8E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_203_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x195918"}}, +"luigi_kart_frame204": {"output_dir": "luigi/frames", "rom_offset": "0x18FF80", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_204_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x195FB0"}}, +"luigi_kart_frame205": {"output_dir": "luigi/frames", "rom_offset": "0x190634", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_205_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x196664"}}, +"luigi_kart_frame206": {"output_dir": "luigi/frames", "rom_offset": "0x190CB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_206_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x196CE8"}}, +"luigi_kart_frame207": {"output_dir": "luigi/frames", "rom_offset": "0x191320", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_207_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x197350"}}, +"luigi_kart_frame208": {"output_dir": "luigi/frames", "rom_offset": "0x191978", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_208_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1979A8"}}, +"luigi_kart_frame209": {"output_dir": "luigi/frames", "rom_offset": "0x191F94", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_209_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x197FC4"}}, +"luigi_kart_frame210": {"output_dir": "luigi/frames", "rom_offset": "0x1924DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_210_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x19850C"}}, +"luigi_kart_frame211": {"output_dir": "luigi/frames", "rom_offset": "0x192A58", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_211_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x198A88"}}, +"luigi_kart_frame212": {"output_dir": "luigi/frames", "rom_offset": "0x193010", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_212_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x199040"}}, +"luigi_kart_frame213": {"output_dir": "luigi/frames", "rom_offset": "0x1935E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_213_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x199618"}}, +"luigi_kart_frame214": {"output_dir": "luigi/frames", "rom_offset": "0x193BE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_214_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x199C18"}}, +"luigi_kart_frame215": {"output_dir": "luigi/frames", "rom_offset": "0x194200", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_215_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x19A230"}}, +"luigi_kart_frame216": {"output_dir": "luigi/frames", "rom_offset": "0x194844", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_216_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x19A874"}}, +"luigi_kart_frame217": {"output_dir": "luigi/frames", "rom_offset": "0x194E9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_217_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x19AECC"}}, +"luigi_kart_frame218": {"output_dir": "luigi/frames", "rom_offset": "0x1954F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_218_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x19B520"}}, +"luigi_kart_frame219": {"output_dir": "luigi/frames", "rom_offset": "0x195B4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_219_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x19BB7C"}}, +"luigi_kart_frame220": {"output_dir": "luigi/frames", "rom_offset": "0x1961BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_220_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x19C1EC"}}, +"luigi_kart_frame221": {"output_dir": "luigi/frames", "rom_offset": "0x196844", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_221_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x19C874"}}, +"luigi_kart_frame222": {"output_dir": "luigi/frames", "rom_offset": "0x196ECC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_222_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x19CEFC"}}, +"luigi_kart_frame223": {"output_dir": "luigi/frames", "rom_offset": "0x197564", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_223_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x19D594"}}, +"luigi_kart_frame224": {"output_dir": "luigi/frames", "rom_offset": "0x197BD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_224_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x19DC04"}}, +"luigi_kart_frame225": {"output_dir": "luigi/frames", "rom_offset": "0x198248", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_225_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x19E278"}}, +"luigi_kart_frame226": {"output_dir": "luigi/frames", "rom_offset": "0x1988B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_226_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x19E8E0"}}, +"luigi_kart_frame227": {"output_dir": "luigi/frames", "rom_offset": "0x198ED8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_227_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x19EF08"}}, +"luigi_kart_frame228": {"output_dir": "luigi/frames", "rom_offset": "0x1994C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_228_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x19F4F8"}}, +"luigi_kart_frame229": {"output_dir": "luigi/frames", "rom_offset": "0x199A74", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_229_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x19FAA4"}}, +"luigi_kart_frame230": {"output_dir": "luigi/frames", "rom_offset": "0x199FC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_230_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x19FFF8"}}, +"luigi_kart_frame231": {"output_dir": "luigi/frames", "rom_offset": "0x19A568", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_231_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A0598"}}, +"luigi_kart_frame232": {"output_dir": "luigi/frames", "rom_offset": "0x19AB4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_232_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A0B7C"}}, +"luigi_kart_frame233": {"output_dir": "luigi/frames", "rom_offset": "0x19B150", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_233_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A1180"}}, +"luigi_kart_frame234": {"output_dir": "luigi/frames", "rom_offset": "0x19B780", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_234_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A17B0"}}, +"luigi_kart_frame235": {"output_dir": "luigi/frames", "rom_offset": "0x19BDC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_235_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A1DF0"}}, +"luigi_kart_frame236": {"output_dir": "luigi/frames", "rom_offset": "0x19C414", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_236_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A2444"}}, +"luigi_kart_frame237": {"output_dir": "luigi/frames", "rom_offset": "0x19CA74", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_237_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A2AA4"}}, +"luigi_kart_frame238": {"output_dir": "luigi/frames", "rom_offset": "0x19D0DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_238_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A310C"}}, +"luigi_kart_frame239": {"output_dir": "luigi/frames", "rom_offset": "0x19D730", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_239_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A3760"}}, +"luigi_kart_frame240": {"output_dir": "luigi/frames", "rom_offset": "0x19DDAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_240_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A3DDC"}}, +"luigi_kart_frame241": {"output_dir": "luigi/frames", "rom_offset": "0x19E414", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_241_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A4444"}}, +"luigi_kart_frame242": {"output_dir": "luigi/frames", "rom_offset": "0x19EA78", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_242_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A4AA8"}}, +"luigi_kart_frame243": {"output_dir": "luigi/frames", "rom_offset": "0x19F0E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_243_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A5118"}}, +"luigi_kart_frame244": {"output_dir": "luigi/frames", "rom_offset": "0x19F718", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_244_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A5748"}}, +"luigi_kart_frame245": {"output_dir": "luigi/frames", "rom_offset": "0x19FD2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_245_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A5D5C"}}, +"luigi_kart_frame246": {"output_dir": "luigi/frames", "rom_offset": "0x1A0334", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_246_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A6364"}}, +"luigi_kart_frame247": {"output_dir": "luigi/frames", "rom_offset": "0x1A091C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_247_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A694C"}}, +"luigi_kart_frame248": {"output_dir": "luigi/frames", "rom_offset": "0x1A0EE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_248_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A6F14"}}, +"luigi_kart_frame249": {"output_dir": "luigi/frames", "rom_offset": "0x1A1464", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_249_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A7494"}}, +"luigi_kart_frame250": {"output_dir": "luigi/frames", "rom_offset": "0x1A19E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_250_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A7A10"}}, +"luigi_kart_frame251": {"output_dir": "luigi/frames", "rom_offset": "0x1A1FAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_251_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A7FDC"}}, +"luigi_kart_frame252": {"output_dir": "luigi/frames", "rom_offset": "0x1A259C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_252_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A85CC"}}, +"luigi_kart_frame253": {"output_dir": "luigi/frames", "rom_offset": "0x1A2BC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_253_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A8BF0"}}, +"luigi_kart_frame254": {"output_dir": "luigi/frames", "rom_offset": "0x1A320C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_254_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A923C"}}, +"luigi_kart_frame255": {"output_dir": "luigi/frames", "rom_offset": "0x1A385C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_255_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A988C"}}, +"luigi_kart_frame256": {"output_dir": "luigi/frames", "rom_offset": "0x1A3ED8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_256_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1A9F08"}}, +"luigi_kart_frame257": {"output_dir": "luigi/frames", "rom_offset": "0x1A4548", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_257_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1AA578"}}, +"luigi_kart_frame258": {"output_dir": "luigi/frames", "rom_offset": "0x1A4BAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_258_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1AABDC"}}, +"luigi_kart_frame259": {"output_dir": "luigi/frames", "rom_offset": "0x1A5210", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_259_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1AB240"}}, +"luigi_kart_frame260": {"output_dir": "luigi/frames", "rom_offset": "0x1A586C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_260_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1AB89C"}}, +"luigi_kart_frame261": {"output_dir": "luigi/frames", "rom_offset": "0x1A5EBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_261_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1ABEEC"}}, +"luigi_kart_frame262": {"output_dir": "luigi/frames", "rom_offset": "0x1A64F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_262_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1AC524"}}, +"luigi_kart_frame263": {"output_dir": "luigi/frames", "rom_offset": "0x1A6B14", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_263_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1ACB44"}}, +"luigi_kart_frame264": {"output_dir": "luigi/frames", "rom_offset": "0x1A7110", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_264_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1AD140"}}, +"luigi_kart_frame265": {"output_dir": "luigi/frames", "rom_offset": "0x1A7710", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_265_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1AD740"}}, +"luigi_kart_frame266": {"output_dir": "luigi/frames", "rom_offset": "0x1A7CD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_266_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1ADD04"}}, +"luigi_kart_frame267": {"output_dir": "luigi/frames", "rom_offset": "0x1A8280", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_267_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1AE2B0"}}, +"luigi_kart_frame268": {"output_dir": "luigi/frames", "rom_offset": "0x1A87F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_268_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1AE820"}}, +"luigi_kart_frame269": {"output_dir": "luigi/frames", "rom_offset": "0x1A8D20", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_269_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1AED50"}}, +"luigi_kart_frame270": {"output_dir": "luigi/frames", "rom_offset": "0x1A92C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_270_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1AF2F0"}}, +"luigi_kart_frame271": {"output_dir": "luigi/frames", "rom_offset": "0x1A98A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_271_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1AF8D0"}}, +"luigi_kart_frame272": {"output_dir": "luigi/frames", "rom_offset": "0x1A9EB4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_272_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1AFEE4"}}, +"luigi_kart_frame273": {"output_dir": "luigi/frames", "rom_offset": "0x1AA4F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_273_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B0524"}}, +"luigi_kart_frame274": {"output_dir": "luigi/frames", "rom_offset": "0x1AAB40", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_274_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B0B70"}}, +"luigi_kart_frame275": {"output_dir": "luigi/frames", "rom_offset": "0x1AB1AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_275_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B11DC"}}, +"luigi_kart_frame276": {"output_dir": "luigi/frames", "rom_offset": "0x1AB834", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_276_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B1864"}}, +"luigi_kart_frame277": {"output_dir": "luigi/frames", "rom_offset": "0x1ABEB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_277_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B1EE8"}}, +"luigi_kart_frame278": {"output_dir": "luigi/frames", "rom_offset": "0x1AC514", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_278_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B2544"}}, +"luigi_kart_frame279": {"output_dir": "luigi/frames", "rom_offset": "0x1ACB84", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_279_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B2BB4"}}, +"luigi_kart_frame280": {"output_dir": "luigi/frames", "rom_offset": "0x1AD1DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_280_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B320C"}}, +"luigi_kart_frame281": {"output_dir": "luigi/frames", "rom_offset": "0x1AD828", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_281_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B3858"}}, +"luigi_kart_frame282": {"output_dir": "luigi/frames", "rom_offset": "0x1ADE34", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_282_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B3E64"}}, +"luigi_kart_frame283": {"output_dir": "luigi/frames", "rom_offset": "0x1AE438", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_283_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B4468"}}, +"luigi_kart_frame284": {"output_dir": "luigi/frames", "rom_offset": "0x1AEA00", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_284_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B4A30"}}, +"luigi_kart_frame285": {"output_dir": "luigi/frames", "rom_offset": "0x1AEFB4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_285_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B4FE4"}}, +"luigi_kart_frame286": {"output_dir": "luigi/frames", "rom_offset": "0x1AF528", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_286_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B5558"}}, +"luigi_kart_frame287": {"output_dir": "luigi/frames", "rom_offset": "0x1AFA74", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_287_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B5AA4"}}, +"luigi_kart_frame288": {"output_dir": "luigi/frames", "rom_offset": "0x1AFF80", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_288_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B5FB0"}}, +"luigi_kart_frame289": {"output_dir": "luigi/frames", "rom_offset": "0x1B0438", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B6468"}}, +"luigi_kart_frame290": {"output_dir": "luigi/frames", "rom_offset": "0x1B0934", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B6964"}}, +"luigi_kart_frame291": {"output_dir": "luigi/frames", "rom_offset": "0x1B0EC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B6EF0"}}, +"luigi_kart_frame292": {"output_dir": "luigi/frames", "rom_offset": "0x1B14A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B74D0"}}, +"luigi_kart_frame293": {"output_dir": "luigi/frames", "rom_offset": "0x1B1B4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B7B7C"}}, +"luigi_kart_frame294": {"output_dir": "luigi/frames", "rom_offset": "0x1B21A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B81D8"}}, +"luigi_kart_frame295": {"output_dir": "luigi/frames", "rom_offset": "0x1B2800", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B8830"}}, +"luigi_kart_frame296": {"output_dir": "luigi/frames", "rom_offset": "0x1B2E24", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B8E54"}}, +"luigi_kart_frame297": {"output_dir": "luigi/frames", "rom_offset": "0x1B33CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B93FC"}}, +"luigi_kart_frame298": {"output_dir": "luigi/frames", "rom_offset": "0x1B38FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B992C"}}, +"luigi_kart_frame299": {"output_dir": "luigi/frames", "rom_offset": "0x1B3EB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1B9EE8"}}, +"luigi_kart_frame300": {"output_dir": "luigi/frames", "rom_offset": "0x1B4498", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1BA4C8"}}, +"luigi_kart_frame301": {"output_dir": "luigi/frames", "rom_offset": "0x1B4A60", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1BAA90"}}, +"luigi_kart_frame302": {"output_dir": "luigi/frames", "rom_offset": "0x1B5020", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1BB050"}}, +"luigi_kart_frame303": {"output_dir": "luigi/frames", "rom_offset": "0x1B55F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1BB628"}}, +"luigi_kart_frame304": {"output_dir": "luigi/frames", "rom_offset": "0x1B5BC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1BBBF0"}}, +"luigi_kart_frame305": {"output_dir": "luigi/frames", "rom_offset": "0x1B6124", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1BC154"}}, +"luigi_kart_frame306": {"output_dir": "luigi/frames", "rom_offset": "0x1B65C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1BC5F4"}}, +"luigi_kart_frame307": {"output_dir": "luigi/frames", "rom_offset": "0x1B6BB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1BCBE0"}}, +"luigi_kart_frame308": {"output_dir": "luigi/frames", "rom_offset": "0x1B723C", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1BD26C"}}, +"luigi_kart_frame309": {"output_dir": "luigi/frames", "rom_offset": "0x1B78EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1BD91C"}}, +"luigi_kart_frame310": {"output_dir": "luigi/frames", "rom_offset": "0x1B7F38", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1BDF68"}}, +"luigi_kart_frame311": {"output_dir": "luigi/frames", "rom_offset": "0x1B8588", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1BE5B8"}}, +"luigi_kart_frame312": {"output_dir": "luigi/frames", "rom_offset": "0x1B8BA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1BEBD0"}}, +"luigi_kart_frame313": {"output_dir": "luigi/frames", "rom_offset": "0x1B9100", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1BF130"}}, +"luigi_kart_frame314": {"output_dir": "luigi/frames", "rom_offset": "0x1B9618", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1BF648"}}, +"luigi_kart_frame315": {"output_dir": "luigi/frames", "rom_offset": "0x1B9BD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1BFC04"}}, +"luigi_kart_frame316": {"output_dir": "luigi/frames", "rom_offset": "0x1BA1AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1C01DC"}}, +"luigi_kart_frame317": {"output_dir": "luigi/frames", "rom_offset": "0x1BA760", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1C0790"}}, +"luigi_kart_frame318": {"output_dir": "luigi/frames", "rom_offset": "0x1BAD10", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1C0D40"}}, +"luigi_kart_frame319": {"output_dir": "luigi/frames", "rom_offset": "0x1BB2E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1C1310"}}, +"luigi_kart_frame320": {"output_dir": "luigi/frames", "rom_offset": "0x1BB8B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["luigi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1C18E8"}}, +"kart_000_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BBE6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C1E9C"}}, +"kart_000_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BBEEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C1F1C"}}, +"kart_000_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BBF6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C1F9C"}}, +"kart_000_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BBFEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C201C"}}, +"kart_001_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC06C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C209C"}}, +"kart_001_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC0EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C211C"}}, +"kart_001_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC16C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C219C"}}, +"kart_001_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC1EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C221C"}}, +"kart_002_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC26C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C229C"}}, +"kart_002_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC2EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C231C"}}, +"kart_002_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC36C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C239C"}}, +"kart_002_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC3EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C241C"}}, +"kart_003_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC46C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C249C"}}, +"kart_003_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC4EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C251C"}}, +"kart_003_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC56C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C259C"}}, +"kart_003_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC5EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C261C"}}, +"kart_004_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC66C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C269C"}}, +"kart_004_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC6EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C271C"}}, +"kart_004_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC76C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C279C"}}, +"kart_004_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC7EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C281C"}}, +"kart_005_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC86C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C289C"}}, +"kart_005_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC8EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C291C"}}, +"kart_005_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC96C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C299C"}}, +"kart_005_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BC9EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C2A1C"}}, +"kart_006_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCA6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C2A9C"}}, +"kart_006_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCAEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C2B1C"}}, +"kart_006_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCB6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C2B9C"}}, +"kart_006_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCBEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C2C1C"}}, +"kart_007_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCC6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C2C9C"}}, +"kart_007_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCCEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C2D1C"}}, +"kart_007_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCD6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C2D9C"}}, +"kart_007_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCDEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C2E1C"}}, +"kart_008_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCE6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C2E9C"}}, +"kart_008_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCEEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C2F1C"}}, +"kart_008_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCF6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C2F9C"}}, +"kart_008_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BCFEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C301C"}}, +"kart_009_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD06C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C309C"}}, +"kart_009_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD0EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C311C"}}, +"kart_009_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD16C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C319C"}}, +"kart_009_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD1EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C321C"}}, +"kart_010_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD26C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C329C"}}, +"kart_010_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD2EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C331C"}}, +"kart_010_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD36C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C339C"}}, +"kart_010_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD3EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C341C"}}, +"kart_011_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD46C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C349C"}}, +"kart_011_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD4EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C351C"}}, +"kart_011_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD56C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C359C"}}, +"kart_011_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD5EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C361C"}}, +"kart_012_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD66C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C369C"}}, +"kart_012_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD6EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C371C"}}, +"kart_012_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD76C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C379C"}}, +"kart_012_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD7EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C381C"}}, +"kart_013_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD86C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C389C"}}, +"kart_013_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD8EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C391C"}}, +"kart_013_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD96C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C399C"}}, +"kart_013_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BD9EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C3A1C"}}, +"kart_014_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDA6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C3A9C"}}, +"kart_014_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDAEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C3B1C"}}, +"kart_014_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDB6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C3B9C"}}, +"kart_014_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDBEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C3C1C"}}, +"kart_015_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDC6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C3C9C"}}, +"kart_015_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDCEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C3D1C"}}, +"kart_015_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDD6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C3D9C"}}, +"kart_015_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDDEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C3E1C"}}, +"kart_016_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDE6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C3E9C"}}, +"kart_016_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDEEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C3F1C"}}, +"kart_016_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDF6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C3F9C"}}, +"kart_016_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BDFEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C401C"}}, +"kart_017_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE06C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C409C"}}, +"kart_017_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE0EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C411C"}}, +"kart_017_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE16C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C419C"}}, +"kart_017_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE1EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C421C"}}, +"kart_018_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE26C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C429C"}}, +"kart_018_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE2EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C431C"}}, +"kart_018_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE36C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C439C"}}, +"kart_018_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE3EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C441C"}}, +"kart_019_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE46C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C449C"}}, +"kart_019_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE4EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C451C"}}, +"kart_019_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE56C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C459C"}}, +"kart_019_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE5EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C461C"}}, +"kart_020_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE66C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C469C"}}, +"kart_020_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE6EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C471C"}}, +"kart_020_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE76C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C479C"}}, +"kart_020_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE7EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C481C"}}, +"kart_021_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE86C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C489C"}}, +"kart_021_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE8EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C491C"}}, +"kart_021_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE96C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C499C"}}, +"kart_021_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BE9EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C4A1C"}}, +"kart_022_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEA6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C4A9C"}}, +"kart_022_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEAEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C4B1C"}}, +"kart_022_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEB6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C4B9C"}}, +"kart_022_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEBEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C4C1C"}}, +"kart_023_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEC6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C4C9C"}}, +"kart_023_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BECEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C4D1C"}}, +"kart_023_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BED6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C4D9C"}}, +"kart_023_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEDEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C4E1C"}}, +"kart_024_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEE6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C4E9C"}}, +"kart_024_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEEEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C4F1C"}}, +"kart_024_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEF6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C4F9C"}}, +"kart_024_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BEFEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C501C"}}, +"kart_025_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF06C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C509C"}}, +"kart_025_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF0EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C511C"}}, +"kart_025_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF16C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C519C"}}, +"kart_025_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF1EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C521C"}}, +"kart_026_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF26C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C529C"}}, +"kart_026_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF2EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C531C"}}, +"kart_026_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF36C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C539C"}}, +"kart_026_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF3EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C541C"}}, +"kart_027_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF46C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C549C"}}, +"kart_027_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF4EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C551C"}}, +"kart_027_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF56C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C559C"}}, +"kart_027_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF5EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C561C"}}, +"kart_028_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF66C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C569C"}}, +"kart_028_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF6EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C571C"}}, +"kart_028_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF76C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C579C"}}, +"kart_028_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF7EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C581C"}}, +"kart_029_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF86C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C589C"}}, +"kart_029_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF8EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C591C"}}, +"kart_029_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF96C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C599C"}}, +"kart_029_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BF9EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C5A1C"}}, +"kart_030_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFA6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C5A9C"}}, +"kart_030_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFAEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C5B1C"}}, +"kart_030_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFB6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C5B9C"}}, +"kart_030_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFBEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C5C1C"}}, +"kart_031_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFC6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C5C9C"}}, +"kart_031_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFCEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C5D1C"}}, +"kart_031_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFD6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C5D9C"}}, +"kart_031_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFDEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C5E1C"}}, +"kart_032_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFE6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C5E9C"}}, +"kart_032_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFEEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C5F1C"}}, +"kart_032_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFF6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C5F9C"}}, +"kart_032_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1BFFEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C601C"}}, +"kart_033_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C006C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C609C"}}, +"kart_033_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C00EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C611C"}}, +"kart_033_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C016C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C619C"}}, +"kart_033_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C01EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C621C"}}, +"kart_034_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C026C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C629C"}}, +"kart_034_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C02EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C631C"}}, +"kart_034_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C036C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C639C"}}, +"kart_034_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C03EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C641C"}}, +"kart_035_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C046C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C649C"}}, +"kart_035_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C04EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C651C"}}, +"kart_035_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C056C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C659C"}}, +"kart_035_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C05EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C661C"}}, +"kart_036_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C066C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C669C"}}, +"kart_036_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C06EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C671C"}}, +"kart_036_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C076C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C679C"}}, +"kart_036_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C07EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C681C"}}, +"kart_037_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C086C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C689C"}}, +"kart_037_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C08EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C691C"}}, +"kart_037_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C096C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C699C"}}, +"kart_037_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C09EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C6A1C"}}, +"kart_038_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C6A9C"}}, +"kart_038_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C6B1C"}}, +"kart_038_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C6B9C"}}, +"kart_038_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C6C1C"}}, +"kart_039_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C6C9C"}}, +"kart_039_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C6D1C"}}, +"kart_039_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C6D9C"}}, +"kart_039_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C6E1C"}}, +"kart_040_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C6E9C"}}, +"kart_040_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C6F1C"}}, +"kart_040_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C6F9C"}}, +"kart_040_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C0FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C701C"}}, +"kart_041_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C106C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C709C"}}, +"kart_041_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C10EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C711C"}}, +"kart_041_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C116C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C719C"}}, +"kart_041_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C11EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C721C"}}, +"kart_042_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C126C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C729C"}}, +"kart_042_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C12EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C731C"}}, +"kart_042_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C136C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C739C"}}, +"kart_042_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C13EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C741C"}}, +"kart_043_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C146C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C749C"}}, +"kart_043_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C14EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C751C"}}, +"kart_043_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C156C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C759C"}}, +"kart_043_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C15EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C761C"}}, +"kart_044_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C166C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C769C"}}, +"kart_044_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C16EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C771C"}}, +"kart_044_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C176C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C779C"}}, +"kart_044_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C17EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C781C"}}, +"kart_045_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C186C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C789C"}}, +"kart_045_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C18EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C791C"}}, +"kart_045_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C196C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C799C"}}, +"kart_045_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C19EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C7A1C"}}, +"kart_046_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C7A9C"}}, +"kart_046_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C7B1C"}}, +"kart_046_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C7B9C"}}, +"kart_046_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C7C1C"}}, +"kart_047_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C7C9C"}}, +"kart_047_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C7D1C"}}, +"kart_047_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C7D9C"}}, +"kart_047_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C7E1C"}}, +"kart_048_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C7E9C"}}, +"kart_048_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C7F1C"}}, +"kart_048_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C7F9C"}}, +"kart_048_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C1FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C801C"}}, +"kart_049_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C206C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C809C"}}, +"kart_049_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C20EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C811C"}}, +"kart_049_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C216C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C819C"}}, +"kart_049_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C21EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C821C"}}, +"kart_050_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C226C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C829C"}}, +"kart_050_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C22EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C831C"}}, +"kart_050_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C236C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C839C"}}, +"kart_050_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C23EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C841C"}}, +"kart_051_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C246C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C849C"}}, +"kart_051_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C24EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C851C"}}, +"kart_051_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C256C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C859C"}}, +"kart_051_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C25EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C861C"}}, +"kart_052_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C266C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C869C"}}, +"kart_052_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C26EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C871C"}}, +"kart_052_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C276C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C879C"}}, +"kart_052_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C27EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C881C"}}, +"kart_053_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C286C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C889C"}}, +"kart_053_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C28EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C891C"}}, +"kart_053_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C296C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C899C"}}, +"kart_053_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C29EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C8A1C"}}, +"kart_054_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C8A9C"}}, +"kart_054_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C8B1C"}}, +"kart_054_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C8B9C"}}, +"kart_054_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C8C1C"}}, +"kart_055_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C8C9C"}}, +"kart_055_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C8D1C"}}, +"kart_055_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C8D9C"}}, +"kart_055_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C8E1C"}}, +"kart_056_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C8E9C"}}, +"kart_056_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C8F1C"}}, +"kart_056_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C8F9C"}}, +"kart_056_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C2FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C901C"}}, +"kart_057_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C306C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C909C"}}, +"kart_057_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C30EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C911C"}}, +"kart_057_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C316C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C919C"}}, +"kart_057_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C31EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C921C"}}, +"kart_058_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C326C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C929C"}}, +"kart_058_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C32EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C931C"}}, +"kart_058_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C336C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C939C"}}, +"kart_058_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C33EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C941C"}}, +"kart_059_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C346C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C949C"}}, +"kart_059_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C34EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C951C"}}, +"kart_059_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C356C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C959C"}}, +"kart_059_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C35EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C961C"}}, +"kart_060_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C366C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C969C"}}, +"kart_060_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C36EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C971C"}}, +"kart_060_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C376C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C979C"}}, +"kart_060_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C37EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C981C"}}, +"kart_061_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C386C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C989C"}}, +"kart_061_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C38EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C991C"}}, +"kart_061_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C396C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C999C"}}, +"kart_061_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C39EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C9A1C"}}, +"kart_062_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C9A9C"}}, +"kart_062_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C9B1C"}}, +"kart_062_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C9B9C"}}, +"kart_062_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C9C1C"}}, +"kart_063_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C9C9C"}}, +"kart_063_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C9D1C"}}, +"kart_063_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C9D9C"}}, +"kart_063_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C9E1C"}}, +"kart_064_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C9E9C"}}, +"kart_064_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C9F1C"}}, +"kart_064_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1C9F9C"}}, +"kart_064_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C3FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA01C"}}, +"kart_065_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C406C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA09C"}}, +"kart_065_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C40EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA11C"}}, +"kart_065_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C416C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA19C"}}, +"kart_065_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C41EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA21C"}}, +"kart_066_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C426C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA29C"}}, +"kart_066_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C42EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA31C"}}, +"kart_066_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C436C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA39C"}}, +"kart_066_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C43EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA41C"}}, +"kart_067_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C446C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA49C"}}, +"kart_067_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C44EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA51C"}}, +"kart_067_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C456C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA59C"}}, +"kart_067_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C45EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA61C"}}, +"kart_068_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C466C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA69C"}}, +"kart_068_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C46EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA71C"}}, +"kart_068_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C476C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA79C"}}, +"kart_068_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C47EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA81C"}}, +"kart_069_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C486C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA89C"}}, +"kart_069_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C48EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA91C"}}, +"kart_069_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C496C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CA99C"}}, +"kart_069_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C49EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CAA1C"}}, +"kart_070_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CAA9C"}}, +"kart_070_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CAB1C"}}, +"kart_070_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CAB9C"}}, +"kart_070_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CAC1C"}}, +"kart_071_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CAC9C"}}, +"kart_071_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CAD1C"}}, +"kart_071_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CAD9C"}}, +"kart_071_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CAE1C"}}, +"kart_072_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CAE9C"}}, +"kart_072_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CAF1C"}}, +"kart_072_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CAF9C"}}, +"kart_072_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C4FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB01C"}}, +"kart_073_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C506C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB09C"}}, +"kart_073_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C50EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB11C"}}, +"kart_073_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C516C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB19C"}}, +"kart_073_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C51EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB21C"}}, +"kart_074_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C526C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB29C"}}, +"kart_074_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C52EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB31C"}}, +"kart_074_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C536C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB39C"}}, +"kart_074_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C53EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB41C"}}, +"kart_075_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C546C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB49C"}}, +"kart_075_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C54EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB51C"}}, +"kart_075_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C556C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB59C"}}, +"kart_075_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C55EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB61C"}}, +"kart_076_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C566C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB69C"}}, +"kart_076_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C56EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB71C"}}, +"kart_076_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C576C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB79C"}}, +"kart_076_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C57EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB81C"}}, +"kart_077_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C586C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB89C"}}, +"kart_077_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C58EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB91C"}}, +"kart_077_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C596C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CB99C"}}, +"kart_077_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C59EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CBA1C"}}, +"kart_078_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CBA9C"}}, +"kart_078_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CBB1C"}}, +"kart_078_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CBB9C"}}, +"kart_078_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CBC1C"}}, +"kart_079_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CBC9C"}}, +"kart_079_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CBD1C"}}, +"kart_079_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CBD9C"}}, +"kart_079_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CBE1C"}}, +"kart_080_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CBE9C"}}, +"kart_080_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CBF1C"}}, +"kart_080_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CBF9C"}}, +"kart_080_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C5FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC01C"}}, +"kart_081_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C606C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC09C"}}, +"kart_081_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C60EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC11C"}}, +"kart_081_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C616C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC19C"}}, +"kart_081_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C61EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC21C"}}, +"kart_082_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C626C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC29C"}}, +"kart_082_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C62EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC31C"}}, +"kart_082_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C636C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC39C"}}, +"kart_082_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C63EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC41C"}}, +"kart_083_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C646C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC49C"}}, +"kart_083_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C64EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC51C"}}, +"kart_083_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C656C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC59C"}}, +"kart_083_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C65EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC61C"}}, +"kart_084_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C666C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC69C"}}, +"kart_084_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C66EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC71C"}}, +"kart_084_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C676C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC79C"}}, +"kart_084_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C67EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC81C"}}, +"kart_085_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C686C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC89C"}}, +"kart_085_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C68EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC91C"}}, +"kart_085_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C696C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CC99C"}}, +"kart_085_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C69EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CCA1C"}}, +"kart_086_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CCA9C"}}, +"kart_086_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CCB1C"}}, +"kart_086_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CCB9C"}}, +"kart_086_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CCC1C"}}, +"kart_087_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CCC9C"}}, +"kart_087_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CCD1C"}}, +"kart_087_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CCD9C"}}, +"kart_087_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CCE1C"}}, +"kart_088_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CCE9C"}}, +"kart_088_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CCF1C"}}, +"kart_088_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CCF9C"}}, +"kart_088_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C6FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD01C"}}, +"kart_089_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C706C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD09C"}}, +"kart_089_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C70EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD11C"}}, +"kart_089_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C716C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD19C"}}, +"kart_089_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C71EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD21C"}}, +"kart_090_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C726C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD29C"}}, +"kart_090_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C72EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD31C"}}, +"kart_090_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C736C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD39C"}}, +"kart_090_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C73EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD41C"}}, +"kart_091_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C746C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD49C"}}, +"kart_091_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C74EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD51C"}}, +"kart_091_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C756C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD59C"}}, +"kart_091_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C75EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD61C"}}, +"kart_092_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C766C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD69C"}}, +"kart_092_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C76EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD71C"}}, +"kart_092_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C776C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD79C"}}, +"kart_092_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C77EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD81C"}}, +"kart_093_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C786C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD89C"}}, +"kart_093_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C78EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD91C"}}, +"kart_093_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C796C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CD99C"}}, +"kart_093_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C79EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CDA1C"}}, +"kart_094_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CDA9C"}}, +"kart_094_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CDB1C"}}, +"kart_094_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CDB9C"}}, +"kart_094_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CDC1C"}}, +"kart_095_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CDC9C"}}, +"kart_095_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CDD1C"}}, +"kart_095_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CDD9C"}}, +"kart_095_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CDE1C"}}, +"kart_096_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CDE9C"}}, +"kart_096_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CDF1C"}}, +"kart_096_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CDF9C"}}, +"kart_096_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C7FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE01C"}}, +"kart_097_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C806C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE09C"}}, +"kart_097_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C80EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE11C"}}, +"kart_097_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C816C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE19C"}}, +"kart_097_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C81EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE21C"}}, +"kart_098_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C826C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE29C"}}, +"kart_098_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C82EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE31C"}}, +"kart_098_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C836C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE39C"}}, +"kart_098_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C83EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE41C"}}, +"kart_099_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C846C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE49C"}}, +"kart_099_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C84EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE51C"}}, +"kart_099_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C856C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE59C"}}, +"kart_099_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C85EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE61C"}}, +"kart_100_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C866C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE69C"}}, +"kart_100_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C86EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE71C"}}, +"kart_100_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C876C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE79C"}}, +"kart_100_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C87EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE81C"}}, +"kart_101_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C886C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE89C"}}, +"kart_101_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C88EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE91C"}}, +"kart_101_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C896C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CE99C"}}, +"kart_101_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C89EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CEA1C"}}, +"kart_102_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CEA9C"}}, +"kart_102_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CEB1C"}}, +"kart_102_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CEB9C"}}, +"kart_102_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CEC1C"}}, +"kart_103_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CEC9C"}}, +"kart_103_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CED1C"}}, +"kart_103_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CED9C"}}, +"kart_103_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CEE1C"}}, +"kart_104_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CEE9C"}}, +"kart_104_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CEF1C"}}, +"kart_104_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CEF9C"}}, +"kart_104_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C8FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF01C"}}, +"kart_105_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C906C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF09C"}}, +"kart_105_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C90EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF11C"}}, +"kart_105_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C916C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF19C"}}, +"kart_105_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C91EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF21C"}}, +"kart_106_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C926C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF29C"}}, +"kart_106_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C92EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF31C"}}, +"kart_106_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C936C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF39C"}}, +"kart_106_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C93EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF41C"}}, +"kart_107_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C946C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF49C"}}, +"kart_107_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C94EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF51C"}}, +"kart_107_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C956C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF59C"}}, +"kart_107_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C95EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF61C"}}, +"kart_108_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C966C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF69C"}}, +"kart_108_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C96EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF71C"}}, +"kart_108_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C976C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF79C"}}, +"kart_108_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C97EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF81C"}}, +"kart_109_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C986C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF89C"}}, +"kart_109_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C98EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF91C"}}, +"kart_109_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C996C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CF99C"}}, +"kart_109_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C99EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CFA1C"}}, +"kart_110_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CFA9C"}}, +"kart_110_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CFB1C"}}, +"kart_110_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CFB9C"}}, +"kart_110_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CFC1C"}}, +"kart_111_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CFC9C"}}, +"kart_111_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CFD1C"}}, +"kart_111_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CFD9C"}}, +"kart_111_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CFE1C"}}, +"kart_112_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CFE9C"}}, +"kart_112_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CFF1C"}}, +"kart_112_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1CFF9C"}}, +"kart_112_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1C9FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D001C"}}, +"kart_113_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA06C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D009C"}}, +"kart_113_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA0EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D011C"}}, +"kart_113_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA16C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D019C"}}, +"kart_113_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA1EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D021C"}}, +"kart_114_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA26C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D029C"}}, +"kart_114_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA2EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D031C"}}, +"kart_114_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA36C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D039C"}}, +"kart_114_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA3EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D041C"}}, +"kart_115_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA46C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D049C"}}, +"kart_115_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA4EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D051C"}}, +"kart_115_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA56C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D059C"}}, +"kart_115_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA5EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D061C"}}, +"kart_116_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA66C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D069C"}}, +"kart_116_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA6EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D071C"}}, +"kart_116_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA76C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D079C"}}, +"kart_116_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA7EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D081C"}}, +"kart_117_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA86C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D089C"}}, +"kart_117_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA8EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D091C"}}, +"kart_117_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA96C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D099C"}}, +"kart_117_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CA9EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D0A1C"}}, +"kart_118_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CAA6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D0A9C"}}, +"kart_118_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CAAEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D0B1C"}}, +"kart_118_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CAB6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D0B9C"}}, +"kart_118_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CABEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D0C1C"}}, +"kart_119_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CAC6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D0C9C"}}, +"kart_119_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CACEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D0D1C"}}, +"kart_119_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CAD6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D0D9C"}}, +"kart_119_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CADEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D0E1C"}}, +"kart_120_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CAE6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D0E9C"}}, +"kart_120_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CAEEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D0F1C"}}, +"kart_120_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CAF6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D0F9C"}}, +"kart_120_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CAFEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D101C"}}, +"kart_121_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB06C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D109C"}}, +"kart_121_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB0EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D111C"}}, +"kart_121_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB16C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D119C"}}, +"kart_121_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB1EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D121C"}}, +"kart_122_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB26C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D129C"}}, +"kart_122_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB2EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D131C"}}, +"kart_122_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB36C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D139C"}}, +"kart_122_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB3EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D141C"}}, +"kart_123_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB46C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D149C"}}, +"kart_123_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB4EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D151C"}}, +"kart_123_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB56C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D159C"}}, +"kart_123_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB5EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D161C"}}, +"kart_124_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB66C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D169C"}}, +"kart_124_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB6EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D171C"}}, +"kart_124_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB76C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D179C"}}, +"kart_124_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB7EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D181C"}}, +"kart_125_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB86C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D189C"}}, +"kart_125_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB8EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D191C"}}, +"kart_125_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB96C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D199C"}}, +"kart_125_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CB9EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D1A1C"}}, +"kart_126_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBA6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D1A9C"}}, +"kart_126_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBAEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D1B1C"}}, +"kart_126_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBB6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D1B9C"}}, +"kart_126_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBBEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D1C1C"}}, +"kart_127_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBC6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D1C9C"}}, +"kart_127_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBCEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D1D1C"}}, +"kart_127_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBD6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D1D9C"}}, +"kart_127_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBDEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D1E1C"}}, +"kart_128_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBE6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D1E9C"}}, +"kart_128_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBEEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D1F1C"}}, +"kart_128_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBF6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D1F9C"}}, +"kart_128_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CBFEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D201C"}}, +"kart_129_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC06C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D209C"}}, +"kart_129_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC0EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D211C"}}, +"kart_129_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC16C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D219C"}}, +"kart_129_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC1EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D221C"}}, +"kart_130_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC26C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D229C"}}, +"kart_130_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC2EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D231C"}}, +"kart_130_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC36C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D239C"}}, +"kart_130_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC3EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D241C"}}, +"kart_131_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC46C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D249C"}}, +"kart_131_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC4EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D251C"}}, +"kart_131_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC56C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D259C"}}, +"kart_131_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC5EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D261C"}}, +"kart_132_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC66C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D269C"}}, +"kart_132_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC6EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D271C"}}, +"kart_132_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC76C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D279C"}}, +"kart_132_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC7EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D281C"}}, +"kart_133_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC86C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D289C"}}, +"kart_133_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC8EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D291C"}}, +"kart_133_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC96C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D299C"}}, +"kart_133_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CC9EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D2A1C"}}, +"kart_134_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCA6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D2A9C"}}, +"kart_134_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCAEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D2B1C"}}, +"kart_134_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCB6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D2B9C"}}, +"kart_134_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCBEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D2C1C"}}, +"kart_135_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCC6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D2C9C"}}, +"kart_135_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCCEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D2D1C"}}, +"kart_135_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCD6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D2D9C"}}, +"kart_135_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCDEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D2E1C"}}, +"kart_136_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCE6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D2E9C"}}, +"kart_136_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCEEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D2F1C"}}, +"kart_136_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCF6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D2F9C"}}, +"kart_136_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CCFEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D301C"}}, +"kart_137_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD06C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D309C"}}, +"kart_137_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD0EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D311C"}}, +"kart_137_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD16C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D319C"}}, +"kart_137_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD1EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D321C"}}, +"kart_138_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD26C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D329C"}}, +"kart_138_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD2EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D331C"}}, +"kart_138_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD36C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D339C"}}, +"kart_138_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD3EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D341C"}}, +"kart_139_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD46C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D349C"}}, +"kart_139_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD4EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D351C"}}, +"kart_139_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD56C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D359C"}}, +"kart_139_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD5EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D361C"}}, +"kart_140_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD66C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D369C"}}, +"kart_140_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD6EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D371C"}}, +"kart_140_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD76C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D379C"}}, +"kart_140_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD7EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D381C"}}, +"kart_141_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD86C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D389C"}}, +"kart_141_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD8EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D391C"}}, +"kart_141_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD96C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D399C"}}, +"kart_141_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CD9EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D3A1C"}}, +"kart_142_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDA6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D3A9C"}}, +"kart_142_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDAEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D3B1C"}}, +"kart_142_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDB6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D3B9C"}}, +"kart_142_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDBEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D3C1C"}}, +"kart_143_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDC6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D3C9C"}}, +"kart_143_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDCEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D3D1C"}}, +"kart_143_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDD6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D3D9C"}}, +"kart_143_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDDEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D3E1C"}}, +"kart_144_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDE6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D3E9C"}}, +"kart_144_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDEEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D3F1C"}}, +"kart_144_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDF6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D3F9C"}}, +"kart_144_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CDFEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D401C"}}, +"kart_145_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE06C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D409C"}}, +"kart_145_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE0EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D411C"}}, +"kart_145_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE16C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D419C"}}, +"kart_145_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE1EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D421C"}}, +"kart_146_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE26C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D429C"}}, +"kart_146_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE2EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D431C"}}, +"kart_146_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE36C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D439C"}}, +"kart_146_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE3EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D441C"}}, +"kart_147_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE46C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D449C"}}, +"kart_147_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE4EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D451C"}}, +"kart_147_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE56C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D459C"}}, +"kart_147_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE5EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D461C"}}, +"kart_148_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE66C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D469C"}}, +"kart_148_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE6EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D471C"}}, +"kart_148_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE76C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D479C"}}, +"kart_148_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE7EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D481C"}}, +"kart_149_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE86C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D489C"}}, +"kart_149_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE8EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D491C"}}, +"kart_149_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE96C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D499C"}}, +"kart_149_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CE9EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D4A1C"}}, +"kart_150_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEA6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D4A9C"}}, +"kart_150_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEAEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D4B1C"}}, +"kart_150_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEB6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D4B9C"}}, +"kart_150_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEBEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D4C1C"}}, +"kart_151_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEC6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D4C9C"}}, +"kart_151_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CECEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D4D1C"}}, +"kart_151_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CED6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D4D9C"}}, +"kart_151_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEDEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D4E1C"}}, +"kart_152_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEE6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D4E9C"}}, +"kart_152_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEEEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D4F1C"}}, +"kart_152_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEF6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D4F9C"}}, +"kart_152_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CEFEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D501C"}}, +"kart_153_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF06C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D509C"}}, +"kart_153_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF0EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D511C"}}, +"kart_153_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF16C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D519C"}}, +"kart_153_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF1EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D521C"}}, +"kart_154_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF26C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D529C"}}, +"kart_154_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF2EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D531C"}}, +"kart_154_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF36C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D539C"}}, +"kart_154_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF3EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D541C"}}, +"kart_155_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF46C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D549C"}}, +"kart_155_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF4EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D551C"}}, +"kart_155_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF56C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D559C"}}, +"kart_155_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF5EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D561C"}}, +"kart_156_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF66C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D569C"}}, +"kart_156_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF6EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D571C"}}, +"kart_156_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF76C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D579C"}}, +"kart_156_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF7EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D581C"}}, +"kart_157_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF86C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D589C"}}, +"kart_157_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF8EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D591C"}}, +"kart_157_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF96C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D599C"}}, +"kart_157_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CF9EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D5A1C"}}, +"kart_158_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFA6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D5A9C"}}, +"kart_158_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFAEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D5B1C"}}, +"kart_158_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFB6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D5B9C"}}, +"kart_158_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFBEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D5C1C"}}, +"kart_159_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFC6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D5C9C"}}, +"kart_159_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFCEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D5D1C"}}, +"kart_159_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFD6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D5D9C"}}, +"kart_159_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFDEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D5E1C"}}, +"kart_160_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFE6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D5E9C"}}, +"kart_160_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFEEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D5F1C"}}, +"kart_160_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFF6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D5F9C"}}, +"kart_160_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1CFFEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D601C"}}, +"kart_161_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D006C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D609C"}}, +"kart_161_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D00EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D611C"}}, +"kart_161_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D016C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D619C"}}, +"kart_161_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D01EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D621C"}}, +"kart_162_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D026C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D629C"}}, +"kart_162_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D02EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D631C"}}, +"kart_162_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D036C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D639C"}}, +"kart_162_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D03EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D641C"}}, +"kart_163_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D046C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D649C"}}, +"kart_163_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D04EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D651C"}}, +"kart_163_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D056C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D659C"}}, +"kart_163_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D05EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D661C"}}, +"kart_164_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D066C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D669C"}}, +"kart_164_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D06EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D671C"}}, +"kart_164_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D076C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D679C"}}, +"kart_164_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D07EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D681C"}}, +"kart_165_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D086C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D689C"}}, +"kart_165_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D08EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D691C"}}, +"kart_165_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D096C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D699C"}}, +"kart_165_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D09EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D6A1C"}}, +"kart_166_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D6A9C"}}, +"kart_166_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D6B1C"}}, +"kart_166_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D6B9C"}}, +"kart_166_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D6C1C"}}, +"kart_167_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D6C9C"}}, +"kart_167_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D6D1C"}}, +"kart_167_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D6D9C"}}, +"kart_167_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D6E1C"}}, +"kart_168_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D6E9C"}}, +"kart_168_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D6F1C"}}, +"kart_168_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D6F9C"}}, +"kart_168_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D0FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D701C"}}, +"kart_169_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D106C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D709C"}}, +"kart_169_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D10EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D711C"}}, +"kart_169_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D116C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D719C"}}, +"kart_169_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D11EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D721C"}}, +"kart_170_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D126C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D729C"}}, +"kart_170_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D12EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D731C"}}, +"kart_170_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D136C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D739C"}}, +"kart_170_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D13EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D741C"}}, +"kart_171_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D146C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D749C"}}, +"kart_171_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D14EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D751C"}}, +"kart_171_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D156C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D759C"}}, +"kart_171_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D15EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D761C"}}, +"kart_172_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D166C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D769C"}}, +"kart_172_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D16EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D771C"}}, +"kart_172_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D176C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D779C"}}, +"kart_172_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D17EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D781C"}}, +"kart_173_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D186C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D789C"}}, +"kart_173_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D18EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D791C"}}, +"kart_173_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D196C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D799C"}}, +"kart_173_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D19EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D7A1C"}}, +"kart_174_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D7A9C"}}, +"kart_174_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D7B1C"}}, +"kart_174_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D7B9C"}}, +"kart_174_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D7C1C"}}, +"kart_175_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D7C9C"}}, +"kart_175_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D7D1C"}}, +"kart_175_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D7D9C"}}, +"kart_175_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D7E1C"}}, +"kart_176_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D7E9C"}}, +"kart_176_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D7F1C"}}, +"kart_176_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D7F9C"}}, +"kart_176_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D1FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D801C"}}, +"kart_177_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D206C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D809C"}}, +"kart_177_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D20EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D811C"}}, +"kart_177_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D216C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D819C"}}, +"kart_177_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D21EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D821C"}}, +"kart_178_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D226C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D829C"}}, +"kart_178_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D22EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D831C"}}, +"kart_178_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D236C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D839C"}}, +"kart_178_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D23EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D841C"}}, +"kart_179_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D246C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D849C"}}, +"kart_179_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D24EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D851C"}}, +"kart_179_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D256C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D859C"}}, +"kart_179_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D25EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D861C"}}, +"kart_180_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D266C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D869C"}}, +"kart_180_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D26EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D871C"}}, +"kart_180_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D276C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D879C"}}, +"kart_180_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D27EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D881C"}}, +"kart_181_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D286C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D889C"}}, +"kart_181_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D28EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D891C"}}, +"kart_181_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D296C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D899C"}}, +"kart_181_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D29EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D8A1C"}}, +"kart_182_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D8A9C"}}, +"kart_182_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D8B1C"}}, +"kart_182_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D8B9C"}}, +"kart_182_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D8C1C"}}, +"kart_183_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D8C9C"}}, +"kart_183_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D8D1C"}}, +"kart_183_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D8D9C"}}, +"kart_183_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D8E1C"}}, +"kart_184_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D8E9C"}}, +"kart_184_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D8F1C"}}, +"kart_184_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D8F9C"}}, +"kart_184_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D2FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D901C"}}, +"kart_185_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D306C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D909C"}}, +"kart_185_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D30EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D911C"}}, +"kart_185_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D316C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D919C"}}, +"kart_185_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D31EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D921C"}}, +"kart_186_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D326C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D929C"}}, +"kart_186_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D32EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D931C"}}, +"kart_186_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D336C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D939C"}}, +"kart_186_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D33EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D941C"}}, +"kart_187_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D346C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D949C"}}, +"kart_187_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D34EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D951C"}}, +"kart_187_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D356C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D959C"}}, +"kart_187_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D35EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D961C"}}, +"kart_188_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D366C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D969C"}}, +"kart_188_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D36EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D971C"}}, +"kart_188_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D376C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D979C"}}, +"kart_188_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D37EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D981C"}}, +"kart_189_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D386C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D989C"}}, +"kart_189_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D38EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D991C"}}, +"kart_189_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D396C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D999C"}}, +"kart_189_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D39EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D9A1C"}}, +"kart_190_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D9A9C"}}, +"kart_190_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D9B1C"}}, +"kart_190_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D9B9C"}}, +"kart_190_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D9C1C"}}, +"kart_191_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D9C9C"}}, +"kart_191_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D9D1C"}}, +"kart_191_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D9D9C"}}, +"kart_191_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D9E1C"}}, +"kart_192_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D9E9C"}}, +"kart_192_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D9F1C"}}, +"kart_192_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1D9F9C"}}, +"kart_192_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D3FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA01C"}}, +"kart_193_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D406C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA09C"}}, +"kart_193_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D40EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA11C"}}, +"kart_193_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D416C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA19C"}}, +"kart_193_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D41EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA21C"}}, +"kart_194_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D426C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA29C"}}, +"kart_194_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D42EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA31C"}}, +"kart_194_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D436C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA39C"}}, +"kart_194_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D43EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA41C"}}, +"kart_195_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D446C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA49C"}}, +"kart_195_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D44EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA51C"}}, +"kart_195_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D456C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA59C"}}, +"kart_195_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D45EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA61C"}}, +"kart_196_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D466C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA69C"}}, +"kart_196_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D46EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA71C"}}, +"kart_196_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D476C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA79C"}}, +"kart_196_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D47EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA81C"}}, +"kart_197_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D486C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA89C"}}, +"kart_197_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D48EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA91C"}}, +"kart_197_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D496C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DA99C"}}, +"kart_197_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D49EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DAA1C"}}, +"kart_198_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DAA9C"}}, +"kart_198_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DAB1C"}}, +"kart_198_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DAB9C"}}, +"kart_198_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DAC1C"}}, +"kart_199_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DAC9C"}}, +"kart_199_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DAD1C"}}, +"kart_199_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DAD9C"}}, +"kart_199_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DAE1C"}}, +"kart_200_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DAE9C"}}, +"kart_200_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DAF1C"}}, +"kart_200_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DAF9C"}}, +"kart_200_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D4FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB01C"}}, +"kart_201_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D506C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB09C"}}, +"kart_201_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D50EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB11C"}}, +"kart_201_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D516C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB19C"}}, +"kart_201_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D51EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB21C"}}, +"kart_202_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D526C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB29C"}}, +"kart_202_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D52EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB31C"}}, +"kart_202_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D536C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB39C"}}, +"kart_202_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D53EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB41C"}}, +"kart_203_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D546C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB49C"}}, +"kart_203_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D54EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB51C"}}, +"kart_203_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D556C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB59C"}}, +"kart_203_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D55EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB61C"}}, +"kart_204_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D566C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB69C"}}, +"kart_204_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D56EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB71C"}}, +"kart_204_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D576C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB79C"}}, +"kart_204_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D57EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB81C"}}, +"kart_205_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D586C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB89C"}}, +"kart_205_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D58EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB91C"}}, +"kart_205_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D596C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DB99C"}}, +"kart_205_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D59EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DBA1C"}}, +"kart_206_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DBA9C"}}, +"kart_206_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DBB1C"}}, +"kart_206_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DBB9C"}}, +"kart_206_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DBC1C"}}, +"kart_207_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DBC9C"}}, +"kart_207_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DBD1C"}}, +"kart_207_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DBD9C"}}, +"kart_207_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DBE1C"}}, +"kart_208_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DBE9C"}}, +"kart_208_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DBF1C"}}, +"kart_208_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DBF9C"}}, +"kart_208_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D5FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC01C"}}, +"kart_209_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D606C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC09C"}}, +"kart_209_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D60EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC11C"}}, +"kart_209_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D616C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC19C"}}, +"kart_209_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D61EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC21C"}}, +"kart_210_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D626C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC29C"}}, +"kart_210_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D62EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC31C"}}, +"kart_210_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D636C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC39C"}}, +"kart_210_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D63EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC41C"}}, +"kart_211_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D646C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC49C"}}, +"kart_211_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D64EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC51C"}}, +"kart_211_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D656C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC59C"}}, +"kart_211_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D65EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC61C"}}, +"kart_212_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D666C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC69C"}}, +"kart_212_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D66EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC71C"}}, +"kart_212_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D676C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC79C"}}, +"kart_212_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D67EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC81C"}}, +"kart_213_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D686C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC89C"}}, +"kart_213_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D68EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC91C"}}, +"kart_213_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D696C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DC99C"}}, +"kart_213_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D69EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DCA1C"}}, +"kart_214_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DCA9C"}}, +"kart_214_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DCB1C"}}, +"kart_214_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DCB9C"}}, +"kart_214_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DCC1C"}}, +"kart_215_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DCC9C"}}, +"kart_215_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DCD1C"}}, +"kart_215_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DCD9C"}}, +"kart_215_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DCE1C"}}, +"kart_216_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DCE9C"}}, +"kart_216_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DCF1C"}}, +"kart_216_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DCF9C"}}, +"kart_216_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D6FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD01C"}}, +"kart_217_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D706C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD09C"}}, +"kart_217_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D70EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD11C"}}, +"kart_217_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D716C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD19C"}}, +"kart_217_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D71EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD21C"}}, +"kart_218_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D726C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD29C"}}, +"kart_218_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D72EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD31C"}}, +"kart_218_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D736C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD39C"}}, +"kart_218_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D73EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD41C"}}, +"kart_219_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D746C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD49C"}}, +"kart_219_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D74EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD51C"}}, +"kart_219_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D756C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD59C"}}, +"kart_219_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D75EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD61C"}}, +"kart_220_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D766C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD69C"}}, +"kart_220_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D76EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD71C"}}, +"kart_220_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D776C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD79C"}}, +"kart_220_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D77EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD81C"}}, +"kart_221_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D786C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD89C"}}, +"kart_221_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D78EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD91C"}}, +"kart_221_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D796C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DD99C"}}, +"kart_221_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D79EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DDA1C"}}, +"kart_222_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DDA9C"}}, +"kart_222_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DDB1C"}}, +"kart_222_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DDB9C"}}, +"kart_222_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DDC1C"}}, +"kart_223_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DDC9C"}}, +"kart_223_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DDD1C"}}, +"kart_223_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DDD9C"}}, +"kart_223_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DDE1C"}}, +"kart_224_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DDE9C"}}, +"kart_224_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DDF1C"}}, +"kart_224_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DDF9C"}}, +"kart_224_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D7FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE01C"}}, +"kart_225_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D806C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE09C"}}, +"kart_225_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D80EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE11C"}}, +"kart_225_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D816C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE19C"}}, +"kart_225_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D81EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE21C"}}, +"kart_226_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D826C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE29C"}}, +"kart_226_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D82EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE31C"}}, +"kart_226_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D836C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE39C"}}, +"kart_226_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D83EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE41C"}}, +"kart_227_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D846C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE49C"}}, +"kart_227_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D84EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE51C"}}, +"kart_227_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D856C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE59C"}}, +"kart_227_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D85EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE61C"}}, +"kart_228_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D866C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE69C"}}, +"kart_228_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D86EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE71C"}}, +"kart_228_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D876C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE79C"}}, +"kart_228_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D87EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE81C"}}, +"kart_229_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D886C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE89C"}}, +"kart_229_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D88EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE91C"}}, +"kart_229_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D896C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DE99C"}}, +"kart_229_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D89EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DEA1C"}}, +"kart_230_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DEA9C"}}, +"kart_230_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DEB1C"}}, +"kart_230_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DEB9C"}}, +"kart_230_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DEC1C"}}, +"kart_231_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DEC9C"}}, +"kart_231_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DED1C"}}, +"kart_231_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DED9C"}}, +"kart_231_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DEE1C"}}, +"kart_232_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DEE9C"}}, +"kart_232_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DEF1C"}}, +"kart_232_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DEF9C"}}, +"kart_232_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D8FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF01C"}}, +"kart_233_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D906C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF09C"}}, +"kart_233_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D90EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF11C"}}, +"kart_233_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D916C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF19C"}}, +"kart_233_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D91EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF21C"}}, +"kart_234_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D926C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF29C"}}, +"kart_234_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D92EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF31C"}}, +"kart_234_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D936C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF39C"}}, +"kart_234_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D93EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF41C"}}, +"kart_235_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D946C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF49C"}}, +"kart_235_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D94EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF51C"}}, +"kart_235_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D956C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF59C"}}, +"kart_235_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D95EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF61C"}}, +"kart_236_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D966C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF69C"}}, +"kart_236_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D96EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF71C"}}, +"kart_236_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D976C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF79C"}}, +"kart_236_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D97EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF81C"}}, +"kart_237_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D986C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF89C"}}, +"kart_237_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D98EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF91C"}}, +"kart_237_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D996C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DF99C"}}, +"kart_237_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D99EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DFA1C"}}, +"kart_238_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9A6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DFA9C"}}, +"kart_238_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9AEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DFB1C"}}, +"kart_238_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9B6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DFB9C"}}, +"kart_238_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9BEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DFC1C"}}, +"kart_239_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9C6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DFC9C"}}, +"kart_239_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9CEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DFD1C"}}, +"kart_239_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9D6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DFD9C"}}, +"kart_239_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9DEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DFE1C"}}, +"kart_240_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9E6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DFE9C"}}, +"kart_240_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9EEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DFF1C"}}, +"kart_240_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9F6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1DFF9C"}}, +"kart_240_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1D9FEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E001C"}}, +"kart_241_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA06C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E009C"}}, +"kart_241_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA0EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E011C"}}, +"kart_241_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA16C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E019C"}}, +"kart_241_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA1EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E021C"}}, +"kart_242_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA26C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E029C"}}, +"kart_242_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA2EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E031C"}}, +"kart_242_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA36C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E039C"}}, +"kart_242_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA3EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E041C"}}, +"kart_243_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA46C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E049C"}}, +"kart_243_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA4EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E051C"}}, +"kart_243_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA56C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E059C"}}, +"kart_243_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA5EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E061C"}}, +"kart_244_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA66C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E069C"}}, +"kart_244_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA6EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E071C"}}, +"kart_244_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA76C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E079C"}}, +"kart_244_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA7EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E081C"}}, +"kart_245_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA86C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E089C"}}, +"kart_245_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA8EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E091C"}}, +"kart_245_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA96C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E099C"}}, +"kart_245_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DA9EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E0A1C"}}, +"kart_246_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DAA6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E0A9C"}}, +"kart_246_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DAAEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E0B1C"}}, +"kart_246_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DAB6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E0B9C"}}, +"kart_246_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DABEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E0C1C"}}, +"kart_247_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DAC6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E0C9C"}}, +"kart_247_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DACEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E0D1C"}}, +"kart_247_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DAD6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E0D9C"}}, +"kart_247_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DADEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E0E1C"}}, +"kart_248_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DAE6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E0E9C"}}, +"kart_248_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DAEEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E0F1C"}}, +"kart_248_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DAF6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E0F9C"}}, +"kart_248_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DAFEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E101C"}}, +"kart_249_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB06C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E109C"}}, +"kart_249_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB0EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E111C"}}, +"kart_249_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB16C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E119C"}}, +"kart_249_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB1EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E121C"}}, +"kart_250_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB26C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E129C"}}, +"kart_250_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB2EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E131C"}}, +"kart_250_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB36C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E139C"}}, +"kart_250_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB3EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E141C"}}, +"kart_251_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB46C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E149C"}}, +"kart_251_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB4EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E151C"}}, +"kart_251_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB56C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E159C"}}, +"kart_251_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB5EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E161C"}}, +"kart_252_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB66C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E169C"}}, +"kart_252_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB6EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E171C"}}, +"kart_252_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB76C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E179C"}}, +"kart_252_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB7EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E181C"}}, +"kart_253_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB86C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E189C"}}, +"kart_253_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB8EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E191C"}}, +"kart_253_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB96C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E199C"}}, +"kart_253_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DB9EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E1A1C"}}, +"kart_254_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBA6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E1A9C"}}, +"kart_254_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBAEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E1B1C"}}, +"kart_254_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBB6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E1B9C"}}, +"kart_254_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBBEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E1C1C"}}, +"kart_255_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBC6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E1C9C"}}, +"kart_255_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBCEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E1D1C"}}, +"kart_255_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBD6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E1D9C"}}, +"kart_255_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBDEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E1E1C"}}, +"kart_256_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBE6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E1E9C"}}, +"kart_256_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBEEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E1F1C"}}, +"kart_256_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBF6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E1F9C"}}, +"kart_256_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DBFEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E201C"}}, +"kart_257_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC06C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E209C"}}, +"kart_257_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC0EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E211C"}}, +"kart_257_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC16C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E219C"}}, +"kart_257_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC1EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E221C"}}, +"kart_258_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC26C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E229C"}}, +"kart_258_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC2EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E231C"}}, +"kart_258_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC36C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E239C"}}, +"kart_258_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC3EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E241C"}}, +"kart_259_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC46C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E249C"}}, +"kart_259_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC4EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E251C"}}, +"kart_259_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC56C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E259C"}}, +"kart_259_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC5EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E261C"}}, +"kart_260_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC66C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E269C"}}, +"kart_260_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC6EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E271C"}}, +"kart_260_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC76C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E279C"}}, +"kart_260_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC7EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E281C"}}, +"kart_261_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC86C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E289C"}}, +"kart_261_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC8EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E291C"}}, +"kart_261_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC96C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E299C"}}, +"kart_261_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DC9EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E2A1C"}}, +"kart_262_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCA6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E2A9C"}}, +"kart_262_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCAEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E2B1C"}}, +"kart_262_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCB6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E2B9C"}}, +"kart_262_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCBEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E2C1C"}}, +"kart_263_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCC6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E2C9C"}}, +"kart_263_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCCEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E2D1C"}}, +"kart_263_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCD6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E2D9C"}}, +"kart_263_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCDEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E2E1C"}}, +"kart_264_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCE6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E2E9C"}}, +"kart_264_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCEEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E2F1C"}}, +"kart_264_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCF6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E2F9C"}}, +"kart_264_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DCFEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E301C"}}, +"kart_265_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD06C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E309C"}}, +"kart_265_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD0EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E311C"}}, +"kart_265_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD16C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E319C"}}, +"kart_265_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD1EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E321C"}}, +"kart_266_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD26C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E329C"}}, +"kart_266_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD2EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E331C"}}, +"kart_266_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD36C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E339C"}}, +"kart_266_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD3EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E341C"}}, +"kart_267_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD46C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E349C"}}, +"kart_267_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD4EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E351C"}}, +"kart_267_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD56C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E359C"}}, +"kart_267_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD5EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E361C"}}, +"kart_268_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD66C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E369C"}}, +"kart_268_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD6EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E371C"}}, +"kart_268_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD76C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E379C"}}, +"kart_268_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD7EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E381C"}}, +"kart_269_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD86C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E389C"}}, +"kart_269_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD8EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E391C"}}, +"kart_269_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD96C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E399C"}}, +"kart_269_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DD9EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E3A1C"}}, +"kart_270_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDA6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E3A9C"}}, +"kart_270_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDAEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E3B1C"}}, +"kart_270_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDB6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E3B9C"}}, +"kart_270_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDBEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E3C1C"}}, +"kart_271_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDC6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E3C9C"}}, +"kart_271_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDCEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E3D1C"}}, +"kart_271_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDD6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E3D9C"}}, +"kart_271_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDDEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E3E1C"}}, +"kart_272_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDE6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E3E9C"}}, +"kart_272_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDEEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E3F1C"}}, +"kart_272_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDF6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E3F9C"}}, +"kart_272_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DDFEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E401C"}}, +"kart_273_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE06C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E409C"}}, +"kart_273_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE0EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E411C"}}, +"kart_273_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE16C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E419C"}}, +"kart_273_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE1EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E421C"}}, +"kart_274_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE26C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E429C"}}, +"kart_274_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE2EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E431C"}}, +"kart_274_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE36C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E439C"}}, +"kart_274_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE3EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E441C"}}, +"kart_275_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE46C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E449C"}}, +"kart_275_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE4EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E451C"}}, +"kart_275_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE56C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E459C"}}, +"kart_275_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE5EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E461C"}}, +"kart_276_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE66C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E469C"}}, +"kart_276_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE6EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E471C"}}, +"kart_276_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE76C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E479C"}}, +"kart_276_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE7EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E481C"}}, +"kart_277_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE86C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E489C"}}, +"kart_277_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE8EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E491C"}}, +"kart_277_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE96C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E499C"}}, +"kart_277_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DE9EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E4A1C"}}, +"kart_278_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEA6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E4A9C"}}, +"kart_278_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEAEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E4B1C"}}, +"kart_278_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEB6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E4B9C"}}, +"kart_278_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEBEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E4C1C"}}, +"kart_279_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEC6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E4C9C"}}, +"kart_279_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DECEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E4D1C"}}, +"kart_279_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DED6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E4D9C"}}, +"kart_279_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEDEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E4E1C"}}, +"kart_280_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEE6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E4E9C"}}, +"kart_280_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEEEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E4F1C"}}, +"kart_280_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEF6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E4F9C"}}, +"kart_280_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DEFEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E501C"}}, +"kart_281_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF06C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E509C"}}, +"kart_281_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF0EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E511C"}}, +"kart_281_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF16C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E519C"}}, +"kart_281_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF1EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E521C"}}, +"kart_282_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF26C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E529C"}}, +"kart_282_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF2EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E531C"}}, +"kart_282_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF36C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E539C"}}, +"kart_282_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF3EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E541C"}}, +"kart_283_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF46C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E549C"}}, +"kart_283_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF4EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E551C"}}, +"kart_283_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF56C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E559C"}}, +"kart_283_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF5EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E561C"}}, +"kart_284_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF66C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E569C"}}, +"kart_284_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF6EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E571C"}}, +"kart_284_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF76C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E579C"}}, +"kart_284_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF7EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E581C"}}, +"kart_285_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF86C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E589C"}}, +"kart_285_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF8EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E591C"}}, +"kart_285_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF96C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E599C"}}, +"kart_285_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DF9EC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E5A1C"}}, +"kart_286_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFA6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E5A9C"}}, +"kart_286_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFAEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E5B1C"}}, +"kart_286_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFB6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E5B9C"}}, +"kart_286_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFBEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E5C1C"}}, +"kart_287_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFC6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E5C9C"}}, +"kart_287_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFCEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E5D1C"}}, +"kart_287_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFD6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E5D9C"}}, +"kart_287_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFDEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E5E1C"}}, +"kart_288_wheel_0": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFE6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E5E9C"}}, +"kart_288_wheel_1": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFEEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E5F1C"}}, +"kart_288_wheel_2": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFF6C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E5F9C"}}, +"kart_288_wheel_3": {"output_dir": "luigi/palettes", "rom_offset": "0x1DFFEC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E601C"}}, +"luigi_kart_palette": {"output_dir": "luigi/palettes", "rom_offset": "0x1E006C", "width": 16, "height": 12, "type": "rgba16", "jp.v11": {"rom_offset": "0x1E609C"}} } \ No newline at end of file diff --git a/assets/karts/mario_kart.json b/assets/karts/mario_kart.json index cea8a9722f..674a2e5dbe 100644 --- a/assets/karts/mario_kart.json +++ b/assets/karts/mario_kart.json @@ -1,1480 +1,1480 @@ { -"mario_kart_frame000": {"output_dir": "mario/frames", "rom_offset": "0x1E01F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame001": {"output_dir": "mario/frames", "rom_offset": "0x1E0680", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_001_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame002": {"output_dir": "mario/frames", "rom_offset": "0x1E0B18", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_002_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame003": {"output_dir": "mario/frames", "rom_offset": "0x1E0FB4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_003_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame004": {"output_dir": "mario/frames", "rom_offset": "0x1E1460", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_004_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame005": {"output_dir": "mario/frames", "rom_offset": "0x1E1918", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_005_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame006": {"output_dir": "mario/frames", "rom_offset": "0x1E1DD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_006_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame007": {"output_dir": "mario/frames", "rom_offset": "0x1E22B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_007_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame008": {"output_dir": "mario/frames", "rom_offset": "0x1E27A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_008_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame009": {"output_dir": "mario/frames", "rom_offset": "0x1E2CC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_009_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame010": {"output_dir": "mario/frames", "rom_offset": "0x1E31FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_010_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame011": {"output_dir": "mario/frames", "rom_offset": "0x1E372C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_011_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame012": {"output_dir": "mario/frames", "rom_offset": "0x1E3C74", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_012_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame013": {"output_dir": "mario/frames", "rom_offset": "0x1E41C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_013_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame014": {"output_dir": "mario/frames", "rom_offset": "0x1E472C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_014_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame015": {"output_dir": "mario/frames", "rom_offset": "0x1E4CA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_015_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame016": {"output_dir": "mario/frames", "rom_offset": "0x1E5228", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_016_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame017": {"output_dir": "mario/frames", "rom_offset": "0x1E57A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_017_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame018": {"output_dir": "mario/frames", "rom_offset": "0x1E5D28", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_018_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame019": {"output_dir": "mario/frames", "rom_offset": "0x1E62B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_019_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame020": {"output_dir": "mario/frames", "rom_offset": "0x1E6858", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_020_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame021": {"output_dir": "mario/frames", "rom_offset": "0x1E6DF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_021_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame022": {"output_dir": "mario/frames", "rom_offset": "0x1E7288", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_022_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame023": {"output_dir": "mario/frames", "rom_offset": "0x1E7740", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_023_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame024": {"output_dir": "mario/frames", "rom_offset": "0x1E7BD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_024_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame025": {"output_dir": "mario/frames", "rom_offset": "0x1E80A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_025_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame026": {"output_dir": "mario/frames", "rom_offset": "0x1E857C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_026_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame027": {"output_dir": "mario/frames", "rom_offset": "0x1E8A50", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_027_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame028": {"output_dir": "mario/frames", "rom_offset": "0x1E8F50", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_028_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame029": {"output_dir": "mario/frames", "rom_offset": "0x1E9458", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_029_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame030": {"output_dir": "mario/frames", "rom_offset": "0x1E9988", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_030_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame031": {"output_dir": "mario/frames", "rom_offset": "0x1E9EC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_031_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame032": {"output_dir": "mario/frames", "rom_offset": "0x1EA420", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_032_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame033": {"output_dir": "mario/frames", "rom_offset": "0x1EA984", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_033_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame034": {"output_dir": "mario/frames", "rom_offset": "0x1EAED8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_034_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame035": {"output_dir": "mario/frames", "rom_offset": "0x1EB458", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_035_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame036": {"output_dir": "mario/frames", "rom_offset": "0x1EB9C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_036_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame037": {"output_dir": "mario/frames", "rom_offset": "0x1EBF58", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_037_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame038": {"output_dir": "mario/frames", "rom_offset": "0x1EC4E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_038_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame039": {"output_dir": "mario/frames", "rom_offset": "0x1ECA6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_039_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame040": {"output_dir": "mario/frames", "rom_offset": "0x1ECFEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_040_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame041": {"output_dir": "mario/frames", "rom_offset": "0x1ED574", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_041_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame042": {"output_dir": "mario/frames", "rom_offset": "0x1EDB10", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_042_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame043": {"output_dir": "mario/frames", "rom_offset": "0x1EDFD0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_043_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame044": {"output_dir": "mario/frames", "rom_offset": "0x1EE494", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_044_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame045": {"output_dir": "mario/frames", "rom_offset": "0x1EE968", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_045_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame046": {"output_dir": "mario/frames", "rom_offset": "0x1EEE40", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_046_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame047": {"output_dir": "mario/frames", "rom_offset": "0x1EF33C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_047_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame048": {"output_dir": "mario/frames", "rom_offset": "0x1EF85C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_048_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame049": {"output_dir": "mario/frames", "rom_offset": "0x1EFD80", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_049_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame050": {"output_dir": "mario/frames", "rom_offset": "0x1F02A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_050_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame051": {"output_dir": "mario/frames", "rom_offset": "0x1F07EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_051_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame052": {"output_dir": "mario/frames", "rom_offset": "0x1F0D3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_052_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame053": {"output_dir": "mario/frames", "rom_offset": "0x1F12AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_053_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame054": {"output_dir": "mario/frames", "rom_offset": "0x1F1814", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_054_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame055": {"output_dir": "mario/frames", "rom_offset": "0x1F1D90", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_055_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame056": {"output_dir": "mario/frames", "rom_offset": "0x1F231C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_056_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame057": {"output_dir": "mario/frames", "rom_offset": "0x1F289C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_057_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame058": {"output_dir": "mario/frames", "rom_offset": "0x1F2E18", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_058_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame059": {"output_dir": "mario/frames", "rom_offset": "0x1F33A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_059_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame060": {"output_dir": "mario/frames", "rom_offset": "0x1F394C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_060_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame061": {"output_dir": "mario/frames", "rom_offset": "0x1F3F00", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_061_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame062": {"output_dir": "mario/frames", "rom_offset": "0x1F44AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_062_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame063": {"output_dir": "mario/frames", "rom_offset": "0x1F4A5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_063_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame064": {"output_dir": "mario/frames", "rom_offset": "0x1F4F1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_064_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame065": {"output_dir": "mario/frames", "rom_offset": "0x1F53F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_065_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame066": {"output_dir": "mario/frames", "rom_offset": "0x1F58D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_066_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame067": {"output_dir": "mario/frames", "rom_offset": "0x1F5DAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_067_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame068": {"output_dir": "mario/frames", "rom_offset": "0x1F62A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_068_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame069": {"output_dir": "mario/frames", "rom_offset": "0x1F67BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_069_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame070": {"output_dir": "mario/frames", "rom_offset": "0x1F6CE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_070_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame071": {"output_dir": "mario/frames", "rom_offset": "0x1F7228", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_071_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame072": {"output_dir": "mario/frames", "rom_offset": "0x1F7768", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_072_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame073": {"output_dir": "mario/frames", "rom_offset": "0x1F7CC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_073_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame074": {"output_dir": "mario/frames", "rom_offset": "0x1F8238", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_074_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame075": {"output_dir": "mario/frames", "rom_offset": "0x1F8794", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_075_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame076": {"output_dir": "mario/frames", "rom_offset": "0x1F8D10", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_076_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame077": {"output_dir": "mario/frames", "rom_offset": "0x1F9284", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_077_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame078": {"output_dir": "mario/frames", "rom_offset": "0x1F9810", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_078_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame079": {"output_dir": "mario/frames", "rom_offset": "0x1F9DB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_079_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame080": {"output_dir": "mario/frames", "rom_offset": "0x1FA360", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_080_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame081": {"output_dir": "mario/frames", "rom_offset": "0x1FA914", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_081_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame082": {"output_dir": "mario/frames", "rom_offset": "0x1FAED8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_082_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame083": {"output_dir": "mario/frames", "rom_offset": "0x1FB48C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_083_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame084": {"output_dir": "mario/frames", "rom_offset": "0x1FBA40", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_084_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame085": {"output_dir": "mario/frames", "rom_offset": "0x1FBEF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_085_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame086": {"output_dir": "mario/frames", "rom_offset": "0x1FC3D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_086_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame087": {"output_dir": "mario/frames", "rom_offset": "0x1FC8C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_087_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame088": {"output_dir": "mario/frames", "rom_offset": "0x1FCDBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_088_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame089": {"output_dir": "mario/frames", "rom_offset": "0x1FD2C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_089_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame090": {"output_dir": "mario/frames", "rom_offset": "0x1FD7EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_090_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame091": {"output_dir": "mario/frames", "rom_offset": "0x1FDD30", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_091_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame092": {"output_dir": "mario/frames", "rom_offset": "0x1FE290", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_092_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame093": {"output_dir": "mario/frames", "rom_offset": "0x1FE7FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_093_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame094": {"output_dir": "mario/frames", "rom_offset": "0x1FED70", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_094_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame095": {"output_dir": "mario/frames", "rom_offset": "0x1FF2EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_095_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame096": {"output_dir": "mario/frames", "rom_offset": "0x1FF86C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_096_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame097": {"output_dir": "mario/frames", "rom_offset": "0x1FFDF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_097_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame098": {"output_dir": "mario/frames", "rom_offset": "0x200378", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_098_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame099": {"output_dir": "mario/frames", "rom_offset": "0x20091C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_099_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame100": {"output_dir": "mario/frames", "rom_offset": "0x200EC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_100_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame101": {"output_dir": "mario/frames", "rom_offset": "0x20146C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_101_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame102": {"output_dir": "mario/frames", "rom_offset": "0x201A14", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_102_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame103": {"output_dir": "mario/frames", "rom_offset": "0x201FD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_103_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame104": {"output_dir": "mario/frames", "rom_offset": "0x202598", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_104_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame105": {"output_dir": "mario/frames", "rom_offset": "0x202B50", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_105_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame106": {"output_dir": "mario/frames", "rom_offset": "0x203030", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_106_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame107": {"output_dir": "mario/frames", "rom_offset": "0x203518", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_107_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame108": {"output_dir": "mario/frames", "rom_offset": "0x203A0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_108_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame109": {"output_dir": "mario/frames", "rom_offset": "0x203F1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_109_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame110": {"output_dir": "mario/frames", "rom_offset": "0x204424", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_110_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame111": {"output_dir": "mario/frames", "rom_offset": "0x204970", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_111_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame112": {"output_dir": "mario/frames", "rom_offset": "0x204EC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_112_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame113": {"output_dir": "mario/frames", "rom_offset": "0x205420", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_113_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame114": {"output_dir": "mario/frames", "rom_offset": "0x205990", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_114_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame115": {"output_dir": "mario/frames", "rom_offset": "0x205F00", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_115_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame116": {"output_dir": "mario/frames", "rom_offset": "0x206480", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_116_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame117": {"output_dir": "mario/frames", "rom_offset": "0x206A0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_117_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame118": {"output_dir": "mario/frames", "rom_offset": "0x206FA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_118_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame119": {"output_dir": "mario/frames", "rom_offset": "0x207538", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_119_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame120": {"output_dir": "mario/frames", "rom_offset": "0x207AFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_120_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame121": {"output_dir": "mario/frames", "rom_offset": "0x2080B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_121_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame122": {"output_dir": "mario/frames", "rom_offset": "0x208678", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_122_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame123": {"output_dir": "mario/frames", "rom_offset": "0x208C2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_123_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame124": {"output_dir": "mario/frames", "rom_offset": "0x20920C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_124_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame125": {"output_dir": "mario/frames", "rom_offset": "0x2097D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_125_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame126": {"output_dir": "mario/frames", "rom_offset": "0x209DA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_126_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame127": {"output_dir": "mario/frames", "rom_offset": "0x20A290", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_127_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame128": {"output_dir": "mario/frames", "rom_offset": "0x20A790", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_128_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame129": {"output_dir": "mario/frames", "rom_offset": "0x20ACAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_129_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame130": {"output_dir": "mario/frames", "rom_offset": "0x20B1BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_130_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame131": {"output_dir": "mario/frames", "rom_offset": "0x20B6EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_131_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame132": {"output_dir": "mario/frames", "rom_offset": "0x20BC28", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_132_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame133": {"output_dir": "mario/frames", "rom_offset": "0x20C174", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_133_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame134": {"output_dir": "mario/frames", "rom_offset": "0x20C6C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_134_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame135": {"output_dir": "mario/frames", "rom_offset": "0x20CC2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_135_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame136": {"output_dir": "mario/frames", "rom_offset": "0x20D190", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_136_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame137": {"output_dir": "mario/frames", "rom_offset": "0x20D720", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_137_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame138": {"output_dir": "mario/frames", "rom_offset": "0x20DCB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_138_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame139": {"output_dir": "mario/frames", "rom_offset": "0x20E24C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_139_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame140": {"output_dir": "mario/frames", "rom_offset": "0x20E7E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_140_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame141": {"output_dir": "mario/frames", "rom_offset": "0x20ED98", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_141_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame142": {"output_dir": "mario/frames", "rom_offset": "0x20F360", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_142_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame143": {"output_dir": "mario/frames", "rom_offset": "0x20F928", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_143_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame144": {"output_dir": "mario/frames", "rom_offset": "0x20FEE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_144_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame145": {"output_dir": "mario/frames", "rom_offset": "0x2104AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_145_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame146": {"output_dir": "mario/frames", "rom_offset": "0x210A74", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_146_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame147": {"output_dir": "mario/frames", "rom_offset": "0x211054", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_147_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame148": {"output_dir": "mario/frames", "rom_offset": "0x211570", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_148_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame149": {"output_dir": "mario/frames", "rom_offset": "0x211A8C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_149_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame150": {"output_dir": "mario/frames", "rom_offset": "0x211FB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_150_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame151": {"output_dir": "mario/frames", "rom_offset": "0x2124EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_151_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame152": {"output_dir": "mario/frames", "rom_offset": "0x212A38", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_152_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame153": {"output_dir": "mario/frames", "rom_offset": "0x212F70", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_153_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame154": {"output_dir": "mario/frames", "rom_offset": "0x2134D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_154_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame155": {"output_dir": "mario/frames", "rom_offset": "0x213A28", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_155_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame156": {"output_dir": "mario/frames", "rom_offset": "0x213FB4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_156_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame157": {"output_dir": "mario/frames", "rom_offset": "0x214540", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_157_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame158": {"output_dir": "mario/frames", "rom_offset": "0x214AEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_158_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame159": {"output_dir": "mario/frames", "rom_offset": "0x21509C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_159_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame160": {"output_dir": "mario/frames", "rom_offset": "0x215650", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_160_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame161": {"output_dir": "mario/frames", "rom_offset": "0x215BF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_161_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame162": {"output_dir": "mario/frames", "rom_offset": "0x2161A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_162_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame163": {"output_dir": "mario/frames", "rom_offset": "0x216774", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_163_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame164": {"output_dir": "mario/frames", "rom_offset": "0x216D38", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_164_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame165": {"output_dir": "mario/frames", "rom_offset": "0x217304", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_165_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame166": {"output_dir": "mario/frames", "rom_offset": "0x2178F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_166_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame167": {"output_dir": "mario/frames", "rom_offset": "0x217ECC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_167_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame168": {"output_dir": "mario/frames", "rom_offset": "0x2184B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_168_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame169": {"output_dir": "mario/frames", "rom_offset": "0x2189D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_169_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame170": {"output_dir": "mario/frames", "rom_offset": "0x218EFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_170_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame171": {"output_dir": "mario/frames", "rom_offset": "0x219450", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_171_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame172": {"output_dir": "mario/frames", "rom_offset": "0x219980", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_172_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame173": {"output_dir": "mario/frames", "rom_offset": "0x219EC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_173_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame174": {"output_dir": "mario/frames", "rom_offset": "0x21A420", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_174_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame175": {"output_dir": "mario/frames", "rom_offset": "0x21A99C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_175_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame176": {"output_dir": "mario/frames", "rom_offset": "0x21AF10", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_176_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame177": {"output_dir": "mario/frames", "rom_offset": "0x21B490", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_177_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame178": {"output_dir": "mario/frames", "rom_offset": "0x21BA24", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_178_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame179": {"output_dir": "mario/frames", "rom_offset": "0x21BFCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_179_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame180": {"output_dir": "mario/frames", "rom_offset": "0x21C578", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_180_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame181": {"output_dir": "mario/frames", "rom_offset": "0x21CB30", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_181_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame182": {"output_dir": "mario/frames", "rom_offset": "0x21D0E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_182_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame183": {"output_dir": "mario/frames", "rom_offset": "0x21D6B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_183_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame184": {"output_dir": "mario/frames", "rom_offset": "0x21DC8C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_184_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame185": {"output_dir": "mario/frames", "rom_offset": "0x21E270", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_185_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame186": {"output_dir": "mario/frames", "rom_offset": "0x21E850", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_186_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame187": {"output_dir": "mario/frames", "rom_offset": "0x21EE40", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_187_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame188": {"output_dir": "mario/frames", "rom_offset": "0x21F41C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_188_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame189": {"output_dir": "mario/frames", "rom_offset": "0x21FA14", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_189_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame190": {"output_dir": "mario/frames", "rom_offset": "0x21FEB4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_190_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame191": {"output_dir": "mario/frames", "rom_offset": "0x220388", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_191_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame192": {"output_dir": "mario/frames", "rom_offset": "0x220898", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_192_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame193": {"output_dir": "mario/frames", "rom_offset": "0x220DC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_193_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame194": {"output_dir": "mario/frames", "rom_offset": "0x221328", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_194_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame195": {"output_dir": "mario/frames", "rom_offset": "0x2218A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_195_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame196": {"output_dir": "mario/frames", "rom_offset": "0x221E20", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_196_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame197": {"output_dir": "mario/frames", "rom_offset": "0x2223D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_197_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame198": {"output_dir": "mario/frames", "rom_offset": "0x222984", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_198_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame199": {"output_dir": "mario/frames", "rom_offset": "0x222F70", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_199_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame200": {"output_dir": "mario/frames", "rom_offset": "0x22356C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_200_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame201": {"output_dir": "mario/frames", "rom_offset": "0x223B88", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_201_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame202": {"output_dir": "mario/frames", "rom_offset": "0x2241CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_202_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame203": {"output_dir": "mario/frames", "rom_offset": "0x224818", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_203_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame204": {"output_dir": "mario/frames", "rom_offset": "0x224E74", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_204_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame205": {"output_dir": "mario/frames", "rom_offset": "0x2254C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_205_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame206": {"output_dir": "mario/frames", "rom_offset": "0x225AF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_206_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame207": {"output_dir": "mario/frames", "rom_offset": "0x226124", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_207_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame208": {"output_dir": "mario/frames", "rom_offset": "0x226740", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_208_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame209": {"output_dir": "mario/frames", "rom_offset": "0x226D2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_209_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame210": {"output_dir": "mario/frames", "rom_offset": "0x22720C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_210_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame211": {"output_dir": "mario/frames", "rom_offset": "0x227734", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_211_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame212": {"output_dir": "mario/frames", "rom_offset": "0x227C74", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_212_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame213": {"output_dir": "mario/frames", "rom_offset": "0x2281DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_213_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame214": {"output_dir": "mario/frames", "rom_offset": "0x228748", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_214_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame215": {"output_dir": "mario/frames", "rom_offset": "0x228CE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_215_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame216": {"output_dir": "mario/frames", "rom_offset": "0x229298", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_216_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame217": {"output_dir": "mario/frames", "rom_offset": "0x229860", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_217_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame218": {"output_dir": "mario/frames", "rom_offset": "0x229E28", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_218_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame219": {"output_dir": "mario/frames", "rom_offset": "0x22A410", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_219_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame220": {"output_dir": "mario/frames", "rom_offset": "0x22A9E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_220_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame221": {"output_dir": "mario/frames", "rom_offset": "0x22AFC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_221_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame222": {"output_dir": "mario/frames", "rom_offset": "0x22B5E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_222_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame223": {"output_dir": "mario/frames", "rom_offset": "0x22BBF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_223_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame224": {"output_dir": "mario/frames", "rom_offset": "0x22C210", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_224_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame225": {"output_dir": "mario/frames", "rom_offset": "0x22C818", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_225_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame226": {"output_dir": "mario/frames", "rom_offset": "0x22CE2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_226_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame227": {"output_dir": "mario/frames", "rom_offset": "0x22D410", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_227_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame228": {"output_dir": "mario/frames", "rom_offset": "0x22D9E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_228_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame229": {"output_dir": "mario/frames", "rom_offset": "0x22DF84", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_229_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame230": {"output_dir": "mario/frames", "rom_offset": "0x22E460", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_230_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame231": {"output_dir": "mario/frames", "rom_offset": "0x22E990", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_231_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame232": {"output_dir": "mario/frames", "rom_offset": "0x22EEF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_232_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame233": {"output_dir": "mario/frames", "rom_offset": "0x22F46C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_233_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame234": {"output_dir": "mario/frames", "rom_offset": "0x22F9F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_234_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame235": {"output_dir": "mario/frames", "rom_offset": "0x22FF90", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_235_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame236": {"output_dir": "mario/frames", "rom_offset": "0x230558", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_236_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame237": {"output_dir": "mario/frames", "rom_offset": "0x230B38", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_237_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame238": {"output_dir": "mario/frames", "rom_offset": "0x23110C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_238_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame239": {"output_dir": "mario/frames", "rom_offset": "0x2316F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_239_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame240": {"output_dir": "mario/frames", "rom_offset": "0x231CB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_240_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame241": {"output_dir": "mario/frames", "rom_offset": "0x232298", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_241_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame242": {"output_dir": "mario/frames", "rom_offset": "0x232874", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_242_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame243": {"output_dir": "mario/frames", "rom_offset": "0x232E70", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_243_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame244": {"output_dir": "mario/frames", "rom_offset": "0x233460", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_244_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame245": {"output_dir": "mario/frames", "rom_offset": "0x233A30", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_245_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame246": {"output_dir": "mario/frames", "rom_offset": "0x234014", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_246_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame247": {"output_dir": "mario/frames", "rom_offset": "0x2345C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_247_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame248": {"output_dir": "mario/frames", "rom_offset": "0x234B58", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_248_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame249": {"output_dir": "mario/frames", "rom_offset": "0x2350A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_249_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame250": {"output_dir": "mario/frames", "rom_offset": "0x2355A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_250_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame251": {"output_dir": "mario/frames", "rom_offset": "0x235ADC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_251_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame252": {"output_dir": "mario/frames", "rom_offset": "0x236038", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_252_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame253": {"output_dir": "mario/frames", "rom_offset": "0x2365CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_253_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame254": {"output_dir": "mario/frames", "rom_offset": "0x236B5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_254_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame255": {"output_dir": "mario/frames", "rom_offset": "0x237118", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_255_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame256": {"output_dir": "mario/frames", "rom_offset": "0x2376FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_256_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame257": {"output_dir": "mario/frames", "rom_offset": "0x237CE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_257_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame258": {"output_dir": "mario/frames", "rom_offset": "0x2382D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_258_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame259": {"output_dir": "mario/frames", "rom_offset": "0x2388A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_259_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame260": {"output_dir": "mario/frames", "rom_offset": "0x238E68", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_260_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame261": {"output_dir": "mario/frames", "rom_offset": "0x239440", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_261_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame262": {"output_dir": "mario/frames", "rom_offset": "0x239A20", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_262_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame263": {"output_dir": "mario/frames", "rom_offset": "0x239FF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_263_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame264": {"output_dir": "mario/frames", "rom_offset": "0x23A59C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_264_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame265": {"output_dir": "mario/frames", "rom_offset": "0x23AB38", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_265_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame266": {"output_dir": "mario/frames", "rom_offset": "0x23B0CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_266_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame267": {"output_dir": "mario/frames", "rom_offset": "0x23B644", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_267_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame268": {"output_dir": "mario/frames", "rom_offset": "0x23BB9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_268_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame269": {"output_dir": "mario/frames", "rom_offset": "0x23C0AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_269_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame270": {"output_dir": "mario/frames", "rom_offset": "0x23C5FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_270_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame271": {"output_dir": "mario/frames", "rom_offset": "0x23CB50", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_271_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame272": {"output_dir": "mario/frames", "rom_offset": "0x23D0CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_272_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame273": {"output_dir": "mario/frames", "rom_offset": "0x23D658", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_273_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame274": {"output_dir": "mario/frames", "rom_offset": "0x23DC0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_274_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame275": {"output_dir": "mario/frames", "rom_offset": "0x23E1D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_275_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame276": {"output_dir": "mario/frames", "rom_offset": "0x23E7C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_276_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame277": {"output_dir": "mario/frames", "rom_offset": "0x23EDB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_277_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame278": {"output_dir": "mario/frames", "rom_offset": "0x23F37C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_278_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame279": {"output_dir": "mario/frames", "rom_offset": "0x23F960", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_279_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame280": {"output_dir": "mario/frames", "rom_offset": "0x23FF14", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_280_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame281": {"output_dir": "mario/frames", "rom_offset": "0x2404E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_281_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame282": {"output_dir": "mario/frames", "rom_offset": "0x240A88", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_282_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame283": {"output_dir": "mario/frames", "rom_offset": "0x241028", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_283_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame284": {"output_dir": "mario/frames", "rom_offset": "0x2415B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_284_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame285": {"output_dir": "mario/frames", "rom_offset": "0x241B30", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_285_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame286": {"output_dir": "mario/frames", "rom_offset": "0x24207C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_286_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame287": {"output_dir": "mario/frames", "rom_offset": "0x2425A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_287_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame288": {"output_dir": "mario/frames", "rom_offset": "0x242AB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_288_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame289": {"output_dir": "mario/frames", "rom_offset": "0x242F64", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame290": {"output_dir": "mario/frames", "rom_offset": "0x243434", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame291": {"output_dir": "mario/frames", "rom_offset": "0x2439A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame292": {"output_dir": "mario/frames", "rom_offset": "0x243F74", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame293": {"output_dir": "mario/frames", "rom_offset": "0x244620", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame294": {"output_dir": "mario/frames", "rom_offset": "0x244C58", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame295": {"output_dir": "mario/frames", "rom_offset": "0x245298", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame296": {"output_dir": "mario/frames", "rom_offset": "0x245864", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame297": {"output_dir": "mario/frames", "rom_offset": "0x245DEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame298": {"output_dir": "mario/frames", "rom_offset": "0x246304", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame299": {"output_dir": "mario/frames", "rom_offset": "0x2468C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame300": {"output_dir": "mario/frames", "rom_offset": "0x246E8C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame301": {"output_dir": "mario/frames", "rom_offset": "0x247478", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame302": {"output_dir": "mario/frames", "rom_offset": "0x247A18", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame303": {"output_dir": "mario/frames", "rom_offset": "0x247FB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame304": {"output_dir": "mario/frames", "rom_offset": "0x248550", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame305": {"output_dir": "mario/frames", "rom_offset": "0x248AA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame306": {"output_dir": "mario/frames", "rom_offset": "0x248F6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame307": {"output_dir": "mario/frames", "rom_offset": "0x249558", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame308": {"output_dir": "mario/frames", "rom_offset": "0x249BFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame309": {"output_dir": "mario/frames", "rom_offset": "0x24A298", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame310": {"output_dir": "mario/frames", "rom_offset": "0x24A8C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame311": {"output_dir": "mario/frames", "rom_offset": "0x24AEEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame312": {"output_dir": "mario/frames", "rom_offset": "0x24B4B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame313": {"output_dir": "mario/frames", "rom_offset": "0x24BA08", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame314": {"output_dir": "mario/frames", "rom_offset": "0x24BF18", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame315": {"output_dir": "mario/frames", "rom_offset": "0x24C4D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame316": {"output_dir": "mario/frames", "rom_offset": "0x24CAB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame317": {"output_dir": "mario/frames", "rom_offset": "0x24D068", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame318": {"output_dir": "mario/frames", "rom_offset": "0x24D60C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame319": {"output_dir": "mario/frames", "rom_offset": "0x24DBBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"mario_kart_frame320": {"output_dir": "mario/frames", "rom_offset": "0x24E134", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"kart_000_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24E6A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24E720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24E7A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24E820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24E8A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24E920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24E9A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24EA20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24EAA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24EB20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24EBA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24EC20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24ECA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24ED20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24EDA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24EE20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24EEA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24EF20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24EFA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24F020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24F0A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24F120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24F1A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24F220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24F2A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24F320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24F3A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24F420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24F4A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24F520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24F5A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24F620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24F6A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24F720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24F7A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24F820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24F8A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24F920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24F9A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24FA20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24FAA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24FB20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24FBA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24FC20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24FCA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24FD20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24FDA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24FE20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24FEA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24FF20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24FFA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x250020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2500A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x250120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2501A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x250220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2502A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x250320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2503A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x250420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2504A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x250520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2505A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x250620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2506A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x250720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2507A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x250820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2508A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x250920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2509A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x250A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x250AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x250B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x250BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x250C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x250CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x250D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x250DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x250E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x250EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x250F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x250FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x251020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2510A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x251120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2511A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x251220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2512A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x251320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2513A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x251420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2514A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x251520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2515A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x251620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2516A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x251720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2517A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x251820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2518A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x251920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2519A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x251A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x251AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x251B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x251BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x251C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x251CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x251D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x251DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x251E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x251EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x251F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x251FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x252020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2520A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x252120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2521A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x252220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2522A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x252320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2523A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x252420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2524A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x252520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2525A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x252620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2526A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x252720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2527A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x252820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2528A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x252920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2529A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x252A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x252AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x252B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x252BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x252C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x252CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x252D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x252DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x252E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x252EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x252F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x252FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x253020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2530A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x253120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2531A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x253220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2532A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x253320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2533A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x253420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2534A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x253520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2535A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x253620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2536A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x253720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2537A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x253820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2538A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x253920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2539A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x253A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x253AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x253B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x253BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x253C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x253CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x253D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x253DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x253E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x253EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x253F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x253FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x254020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2540A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x254120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2541A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x254220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2542A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x254320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2543A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x254420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2544A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x254520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2545A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x254620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2546A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x254720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2547A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x254820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2548A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x254920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2549A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x254A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x254AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x254B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x254BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x254C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x254CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x254D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x254DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x254E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x254EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x254F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x254FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x255020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2550A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x255120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2551A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x255220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2552A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x255320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2553A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x255420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2554A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x255520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2555A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x255620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2556A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x255720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2557A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x255820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2558A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x255920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2559A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x255A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x255AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x255B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x255BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x255C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x255CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x255D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x255DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x255E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x255EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x255F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x255FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x256020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2560A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x256120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2561A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x256220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2562A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x256320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2563A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x256420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2564A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x256520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2565A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x256620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2566A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x256720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2567A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x256820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2568A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x256920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2569A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x256A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x256AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x256B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x256BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x256C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x256CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x256D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x256DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x256E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x256EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x256F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x256FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x257020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2570A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x257120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2571A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x257220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2572A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x257320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2573A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x257420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2574A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x257520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2575A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x257620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2576A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x257720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2577A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x257820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2578A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x257920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2579A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x257A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x257AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x257B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x257BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x257C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x257CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x257D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x257DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x257E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x257EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x257F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x257FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x258020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2580A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x258120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2581A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x258220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2582A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x258320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2583A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x258420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2584A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x258520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2585A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x258620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2586A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x258720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2587A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x258820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2588A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x258920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2589A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x258A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x258AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x258B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x258BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x258C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x258CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x258D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x258DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x258E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x258EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x258F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x258FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x259020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2590A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x259120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2591A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x259220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2592A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x259320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2593A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x259420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2594A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x259520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2595A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x259620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2596A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x259720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2597A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x259820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2598A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x259920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2599A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x259A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x259AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x259B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x259BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x259C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x259CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x259D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x259DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x259E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x259EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x259F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x259FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25A020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25A0A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25A120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25A1A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25A220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25A2A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25A320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25A3A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25A420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25A4A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25A520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25A5A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25A620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25A6A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25A720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25A7A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25A820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25A8A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25A920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25A9A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25AA20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25AAA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25AB20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25ABA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25AC20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25ACA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25AD20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25ADA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25AE20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25AEA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25AF20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25AFA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25B020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25B0A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25B120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25B1A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25B220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25B2A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25B320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25B3A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25B420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25B4A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25B520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25B5A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25B620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25B6A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25B720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25B7A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25B820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25B8A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25B920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25B9A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25BA20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25BAA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25BB20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25BBA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25BC20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25BCA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25BD20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25BDA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25BE20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25BEA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25BF20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25BFA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25C020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25C0A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25C120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25C1A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25C220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25C2A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25C320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25C3A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25C420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25C4A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25C520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25C5A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25C620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25C6A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25C720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25C7A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25C820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25C8A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25C920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25C9A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25CA20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25CAA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25CB20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25CBA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25CC20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25CCA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25CD20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25CDA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25CE20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25CEA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25CF20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25CFA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25D020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25D0A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25D120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25D1A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25D220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25D2A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25D320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25D3A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25D420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25D4A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25D520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25D5A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25D620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25D6A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25D720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25D7A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25D820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25D8A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25D920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25D9A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25DA20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25DAA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25DB20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25DBA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25DC20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25DCA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25DD20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25DDA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25DE20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25DEA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25DF20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25DFA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25E020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25E0A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25E120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25E1A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25E220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25E2A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25E320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25E3A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25E420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25E4A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25E520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25E5A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25E620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25E6A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25E720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25E7A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25E820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25E8A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25E920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25E9A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25EA20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25EAA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25EB20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25EBA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25EC20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25ECA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25ED20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25EDA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25EE20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25EEA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25EF20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25EFA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25F020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25F0A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25F120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25F1A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25F220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25F2A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25F320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25F3A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25F420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25F4A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25F520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25F5A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25F620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25F6A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25F720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25F7A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25F820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25F8A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25F920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25F9A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25FA20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25FAA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25FB20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25FBA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25FC20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25FCA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25FD20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25FDA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25FE20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25FEA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25FF20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25FFA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x260020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2600A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x260120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2601A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x260220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2602A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x260320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2603A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x260420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2604A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x260520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2605A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x260620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2606A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x260720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2607A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x260820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2608A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x260920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2609A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x260A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x260AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x260B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x260BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x260C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x260CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x260D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x260DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x260E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x260EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x260F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x260FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x261020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2610A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x261120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2611A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x261220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2612A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x261320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2613A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x261420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2614A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x261520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2615A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x261620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2616A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x261720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2617A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x261820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2618A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x261920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2619A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x261A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x261AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x261B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x261BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x261C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x261CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x261D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x261DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x261E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x261EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x261F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x261FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x262020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2620A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x262120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2621A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x262220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2622A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x262320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2623A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x262420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2624A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x262520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2625A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x262620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2626A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x262720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2627A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x262820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2628A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x262920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2629A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x262A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x262AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x262B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x262BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x262C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x262CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x262D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x262DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x262E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x262EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x262F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x262FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x263020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2630A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x263120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2631A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x263220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2632A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x263320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2633A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x263420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2634A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x263520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2635A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x263620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2636A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x263720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2637A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x263820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2638A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x263920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2639A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x263A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x263AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x263B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x263BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x263C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x263CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x263D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x263DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x263E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x263EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x263F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x263FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x264020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2640A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x264120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2641A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x264220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2642A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x264320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2643A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x264420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2644A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x264520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2645A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x264620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2646A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x264720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2647A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x264820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2648A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x264920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2649A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x264A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x264AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x264B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x264BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x264C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x264CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x264D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x264DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x264E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x264EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x264F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x264FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x265020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2650A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x265120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2651A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x265220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2652A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x265320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2653A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x265420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2654A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x265520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2655A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x265620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2656A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x265720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2657A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x265820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2658A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x265920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2659A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x265A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x265AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x265B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x265BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x265C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x265CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x265D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x265DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x265E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x265EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x265F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x265FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x266020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2660A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x266120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2661A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x266220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2662A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x266320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2663A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x266420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2664A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x266520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2665A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x266620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2666A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x266720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2667A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x266820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2668A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x266920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2669A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x266A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x266AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x266B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x266BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x266C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x266CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x266D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x266DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x266E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x266EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x266F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x266FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x267020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2670A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x267120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2671A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x267220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2672A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x267320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2673A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x267420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2674A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x267520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2675A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x267620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2676A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x267720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2677A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x267820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2678A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x267920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2679A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x267A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x267AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x267B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x267BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x267C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x267CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x267D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x267DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x267E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x267EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x267F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x267FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x268020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2680A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x268120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2681A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x268220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2682A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x268320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2683A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x268420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2684A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x268520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2685A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x268620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2686A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x268720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2687A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x268820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2688A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x268920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2689A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x268A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x268AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x268B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x268BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x268C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x268CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x268D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x268DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x268E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x268EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x268F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x268FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x269020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2690A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x269120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2691A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x269220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2692A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x269320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2693A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x269420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2694A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x269520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2695A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x269620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2696A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x269720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2697A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x269820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2698A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x269920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2699A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x269A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x269AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x269B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x269BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x269C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x269CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x269D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x269DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x269E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x269EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x269F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x269FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26A020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26A0A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26A120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26A1A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26A220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26A2A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26A320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26A3A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26A420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26A4A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26A520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26A5A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26A620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26A6A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26A720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26A7A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26A820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26A8A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26A920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26A9A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26AA20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26AAA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26AB20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26ABA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26AC20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26ACA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26AD20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26ADA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26AE20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26AEA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26AF20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26AFA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26B020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26B0A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26B120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26B1A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26B220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26B2A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26B320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26B3A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26B420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26B4A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26B520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26B5A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26B620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26B6A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26B720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26B7A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26B820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26B8A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26B920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26B9A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26BA20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26BAA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26BB20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26BBA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26BC20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26BCA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26BD20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26BDA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26BE20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26BEA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26BF20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26BFA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26C020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26C0A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26C120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26C1A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26C220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26C2A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26C320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26C3A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26C420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26C4A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26C520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26C5A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26C620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26C6A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26C720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26C7A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26C820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26C8A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26C920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26C9A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26CA20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26CAA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26CB20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26CBA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26CC20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26CCA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26CD20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26CDA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26CE20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26CEA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26CF20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26CFA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26D020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26D0A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26D120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26D1A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26D220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26D2A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26D320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26D3A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26D420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26D4A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26D520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26D5A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26D620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26D6A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26D720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26D7A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26D820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26D8A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26D920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26D9A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26DA20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26DAA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26DB20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26DBA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26DC20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26DCA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26DD20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26DDA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26DE20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26DEA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26DF20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26DFA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26E020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26E0A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26E120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26E1A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26E220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26E2A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26E320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26E3A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26E420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26E4A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26E520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26E5A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26E620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26E6A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26E720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26E7A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26E820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26E8A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26E920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26E9A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26EA20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26EAA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26EB20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26EBA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26EC20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26ECA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26ED20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26EDA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26EE20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26EEA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26EF20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26EFA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26F020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26F0A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26F120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26F1A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26F220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26F2A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26F320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26F3A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26F420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26F4A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26F520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26F5A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26F620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26F6A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26F720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26F7A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26F820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26F8A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26F920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26F9A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26FA20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26FAA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26FB20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26FBA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26FC20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26FCA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26FD20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26FDA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26FE20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26FEA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26FF20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26FFA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x270020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2700A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x270120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2701A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x270220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2702A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x270320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2703A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x270420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2704A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x270520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2705A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x270620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2706A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x270720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2707A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x270820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2708A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x270920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2709A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x270A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x270AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x270B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x270BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x270C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x270CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x270D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x270DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x270E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x270EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x270F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x270FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x271020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2710A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x271120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2711A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x271220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2712A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x271320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2713A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x271420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2714A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x271520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2715A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x271620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2716A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x271720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2717A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x271820", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2718A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x271920", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2719A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x271A20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x271AA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x271B20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x271BA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x271C20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x271CA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x271D20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x271DA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x271E20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x271EA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x271F20", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x271FA0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x272020", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2720A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x272120", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2721A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x272220", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2722A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x272320", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2723A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x272420", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2724A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x272520", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2725A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x272620", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2726A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x272720", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2727A0", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x272820", "width": 16, "height": 4, "type": "rgba16"}, -"mario_kart_palette": {"output_dir": "mario/palettes", "rom_offset": "0x2728A0", "width": 16, "height": 12, "type": "rgba16"} +"mario_kart_frame000": {"output_dir": "mario/frames", "rom_offset": "0x1E01F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1E6220"}}, +"mario_kart_frame001": {"output_dir": "mario/frames", "rom_offset": "0x1E0680", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_001_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1E66B0"}}, +"mario_kart_frame002": {"output_dir": "mario/frames", "rom_offset": "0x1E0B18", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_002_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1E6B48"}}, +"mario_kart_frame003": {"output_dir": "mario/frames", "rom_offset": "0x1E0FB4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_003_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1E6FE4"}}, +"mario_kart_frame004": {"output_dir": "mario/frames", "rom_offset": "0x1E1460", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_004_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1E7490"}}, +"mario_kart_frame005": {"output_dir": "mario/frames", "rom_offset": "0x1E1918", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_005_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1E7948"}}, +"mario_kart_frame006": {"output_dir": "mario/frames", "rom_offset": "0x1E1DD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_006_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1E7E04"}}, +"mario_kart_frame007": {"output_dir": "mario/frames", "rom_offset": "0x1E22B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_007_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1E82E0"}}, +"mario_kart_frame008": {"output_dir": "mario/frames", "rom_offset": "0x1E27A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_008_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1E87D8"}}, +"mario_kart_frame009": {"output_dir": "mario/frames", "rom_offset": "0x1E2CC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_009_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1E8CF4"}}, +"mario_kart_frame010": {"output_dir": "mario/frames", "rom_offset": "0x1E31FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_010_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1E922C"}}, +"mario_kart_frame011": {"output_dir": "mario/frames", "rom_offset": "0x1E372C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_011_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1E975C"}}, +"mario_kart_frame012": {"output_dir": "mario/frames", "rom_offset": "0x1E3C74", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_012_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1E9CA4"}}, +"mario_kart_frame013": {"output_dir": "mario/frames", "rom_offset": "0x1E41C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_013_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1EA1F4"}}, +"mario_kart_frame014": {"output_dir": "mario/frames", "rom_offset": "0x1E472C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_014_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1EA75C"}}, +"mario_kart_frame015": {"output_dir": "mario/frames", "rom_offset": "0x1E4CA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_015_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1EACD0"}}, +"mario_kart_frame016": {"output_dir": "mario/frames", "rom_offset": "0x1E5228", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_016_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1EB258"}}, +"mario_kart_frame017": {"output_dir": "mario/frames", "rom_offset": "0x1E57A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_017_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1EB7D0"}}, +"mario_kart_frame018": {"output_dir": "mario/frames", "rom_offset": "0x1E5D28", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_018_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1EBD58"}}, +"mario_kart_frame019": {"output_dir": "mario/frames", "rom_offset": "0x1E62B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_019_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1EC2E4"}}, +"mario_kart_frame020": {"output_dir": "mario/frames", "rom_offset": "0x1E6858", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_020_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1EC888"}}, +"mario_kart_frame021": {"output_dir": "mario/frames", "rom_offset": "0x1E6DF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_021_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1ECE28"}}, +"mario_kart_frame022": {"output_dir": "mario/frames", "rom_offset": "0x1E7288", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_022_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1ED2B8"}}, +"mario_kart_frame023": {"output_dir": "mario/frames", "rom_offset": "0x1E7740", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_023_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1ED770"}}, +"mario_kart_frame024": {"output_dir": "mario/frames", "rom_offset": "0x1E7BD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_024_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1EDC08"}}, +"mario_kart_frame025": {"output_dir": "mario/frames", "rom_offset": "0x1E80A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_025_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1EE0D4"}}, +"mario_kart_frame026": {"output_dir": "mario/frames", "rom_offset": "0x1E857C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_026_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1EE5AC"}}, +"mario_kart_frame027": {"output_dir": "mario/frames", "rom_offset": "0x1E8A50", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_027_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1EEA80"}}, +"mario_kart_frame028": {"output_dir": "mario/frames", "rom_offset": "0x1E8F50", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_028_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1EEF80"}}, +"mario_kart_frame029": {"output_dir": "mario/frames", "rom_offset": "0x1E9458", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_029_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1EF488"}}, +"mario_kart_frame030": {"output_dir": "mario/frames", "rom_offset": "0x1E9988", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_030_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1EF9B8"}}, +"mario_kart_frame031": {"output_dir": "mario/frames", "rom_offset": "0x1E9EC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_031_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1EFEF8"}}, +"mario_kart_frame032": {"output_dir": "mario/frames", "rom_offset": "0x1EA420", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_032_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F0450"}}, +"mario_kart_frame033": {"output_dir": "mario/frames", "rom_offset": "0x1EA984", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_033_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F09B4"}}, +"mario_kart_frame034": {"output_dir": "mario/frames", "rom_offset": "0x1EAED8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_034_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F0F08"}}, +"mario_kart_frame035": {"output_dir": "mario/frames", "rom_offset": "0x1EB458", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_035_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F1488"}}, +"mario_kart_frame036": {"output_dir": "mario/frames", "rom_offset": "0x1EB9C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_036_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F19F8"}}, +"mario_kart_frame037": {"output_dir": "mario/frames", "rom_offset": "0x1EBF58", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_037_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F1F88"}}, +"mario_kart_frame038": {"output_dir": "mario/frames", "rom_offset": "0x1EC4E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_038_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F2514"}}, +"mario_kart_frame039": {"output_dir": "mario/frames", "rom_offset": "0x1ECA6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_039_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F2A9C"}}, +"mario_kart_frame040": {"output_dir": "mario/frames", "rom_offset": "0x1ECFEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_040_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F301C"}}, +"mario_kart_frame041": {"output_dir": "mario/frames", "rom_offset": "0x1ED574", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_041_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F35A4"}}, +"mario_kart_frame042": {"output_dir": "mario/frames", "rom_offset": "0x1EDB10", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_042_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F3B40"}}, +"mario_kart_frame043": {"output_dir": "mario/frames", "rom_offset": "0x1EDFD0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_043_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F4000"}}, +"mario_kart_frame044": {"output_dir": "mario/frames", "rom_offset": "0x1EE494", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_044_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F44C4"}}, +"mario_kart_frame045": {"output_dir": "mario/frames", "rom_offset": "0x1EE968", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_045_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F4998"}}, +"mario_kart_frame046": {"output_dir": "mario/frames", "rom_offset": "0x1EEE40", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_046_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F4E70"}}, +"mario_kart_frame047": {"output_dir": "mario/frames", "rom_offset": "0x1EF33C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_047_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F536C"}}, +"mario_kart_frame048": {"output_dir": "mario/frames", "rom_offset": "0x1EF85C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_048_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F588C"}}, +"mario_kart_frame049": {"output_dir": "mario/frames", "rom_offset": "0x1EFD80", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_049_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F5DB0"}}, +"mario_kart_frame050": {"output_dir": "mario/frames", "rom_offset": "0x1F02A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_050_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F62D8"}}, +"mario_kart_frame051": {"output_dir": "mario/frames", "rom_offset": "0x1F07EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_051_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F681C"}}, +"mario_kart_frame052": {"output_dir": "mario/frames", "rom_offset": "0x1F0D3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_052_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F6D6C"}}, +"mario_kart_frame053": {"output_dir": "mario/frames", "rom_offset": "0x1F12AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_053_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F72DC"}}, +"mario_kart_frame054": {"output_dir": "mario/frames", "rom_offset": "0x1F1814", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_054_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F7844"}}, +"mario_kart_frame055": {"output_dir": "mario/frames", "rom_offset": "0x1F1D90", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_055_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F7DC0"}}, +"mario_kart_frame056": {"output_dir": "mario/frames", "rom_offset": "0x1F231C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_056_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F834C"}}, +"mario_kart_frame057": {"output_dir": "mario/frames", "rom_offset": "0x1F289C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_057_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F88CC"}}, +"mario_kart_frame058": {"output_dir": "mario/frames", "rom_offset": "0x1F2E18", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_058_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F8E48"}}, +"mario_kart_frame059": {"output_dir": "mario/frames", "rom_offset": "0x1F33A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_059_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F93D8"}}, +"mario_kart_frame060": {"output_dir": "mario/frames", "rom_offset": "0x1F394C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_060_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F997C"}}, +"mario_kart_frame061": {"output_dir": "mario/frames", "rom_offset": "0x1F3F00", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_061_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1F9F30"}}, +"mario_kart_frame062": {"output_dir": "mario/frames", "rom_offset": "0x1F44AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_062_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1FA4DC"}}, +"mario_kart_frame063": {"output_dir": "mario/frames", "rom_offset": "0x1F4A5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_063_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1FAA8C"}}, +"mario_kart_frame064": {"output_dir": "mario/frames", "rom_offset": "0x1F4F1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_064_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1FAF4C"}}, +"mario_kart_frame065": {"output_dir": "mario/frames", "rom_offset": "0x1F53F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_065_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1FB424"}}, +"mario_kart_frame066": {"output_dir": "mario/frames", "rom_offset": "0x1F58D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_066_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1FB904"}}, +"mario_kart_frame067": {"output_dir": "mario/frames", "rom_offset": "0x1F5DAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_067_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1FBDDC"}}, +"mario_kart_frame068": {"output_dir": "mario/frames", "rom_offset": "0x1F62A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_068_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1FC2D8"}}, +"mario_kart_frame069": {"output_dir": "mario/frames", "rom_offset": "0x1F67BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_069_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1FC7EC"}}, +"mario_kart_frame070": {"output_dir": "mario/frames", "rom_offset": "0x1F6CE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_070_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1FCD10"}}, +"mario_kart_frame071": {"output_dir": "mario/frames", "rom_offset": "0x1F7228", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_071_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1FD258"}}, +"mario_kart_frame072": {"output_dir": "mario/frames", "rom_offset": "0x1F7768", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_072_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1FD798"}}, +"mario_kart_frame073": {"output_dir": "mario/frames", "rom_offset": "0x1F7CC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_073_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1FDCF4"}}, +"mario_kart_frame074": {"output_dir": "mario/frames", "rom_offset": "0x1F8238", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_074_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1FE268"}}, +"mario_kart_frame075": {"output_dir": "mario/frames", "rom_offset": "0x1F8794", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_075_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1FE7C4"}}, +"mario_kart_frame076": {"output_dir": "mario/frames", "rom_offset": "0x1F8D10", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_076_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1FED40"}}, +"mario_kart_frame077": {"output_dir": "mario/frames", "rom_offset": "0x1F9284", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_077_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1FF2B4"}}, +"mario_kart_frame078": {"output_dir": "mario/frames", "rom_offset": "0x1F9810", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_078_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1FF840"}}, +"mario_kart_frame079": {"output_dir": "mario/frames", "rom_offset": "0x1F9DB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_079_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x1FFDE0"}}, +"mario_kart_frame080": {"output_dir": "mario/frames", "rom_offset": "0x1FA360", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_080_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x200390"}}, +"mario_kart_frame081": {"output_dir": "mario/frames", "rom_offset": "0x1FA914", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_081_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x200944"}}, +"mario_kart_frame082": {"output_dir": "mario/frames", "rom_offset": "0x1FAED8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_082_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x200F08"}}, +"mario_kart_frame083": {"output_dir": "mario/frames", "rom_offset": "0x1FB48C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_083_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2014BC"}}, +"mario_kart_frame084": {"output_dir": "mario/frames", "rom_offset": "0x1FBA40", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_084_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x201A70"}}, +"mario_kart_frame085": {"output_dir": "mario/frames", "rom_offset": "0x1FBEF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_085_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x201F20"}}, +"mario_kart_frame086": {"output_dir": "mario/frames", "rom_offset": "0x1FC3D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_086_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x202404"}}, +"mario_kart_frame087": {"output_dir": "mario/frames", "rom_offset": "0x1FC8C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_087_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2028F8"}}, +"mario_kart_frame088": {"output_dir": "mario/frames", "rom_offset": "0x1FCDBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_088_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x202DEC"}}, +"mario_kart_frame089": {"output_dir": "mario/frames", "rom_offset": "0x1FD2C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_089_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2032F4"}}, +"mario_kart_frame090": {"output_dir": "mario/frames", "rom_offset": "0x1FD7EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_090_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20381C"}}, +"mario_kart_frame091": {"output_dir": "mario/frames", "rom_offset": "0x1FDD30", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_091_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x203D60"}}, +"mario_kart_frame092": {"output_dir": "mario/frames", "rom_offset": "0x1FE290", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_092_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2042C0"}}, +"mario_kart_frame093": {"output_dir": "mario/frames", "rom_offset": "0x1FE7FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_093_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20482C"}}, +"mario_kart_frame094": {"output_dir": "mario/frames", "rom_offset": "0x1FED70", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_094_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x204DA0"}}, +"mario_kart_frame095": {"output_dir": "mario/frames", "rom_offset": "0x1FF2EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_095_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20531C"}}, +"mario_kart_frame096": {"output_dir": "mario/frames", "rom_offset": "0x1FF86C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_096_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20589C"}}, +"mario_kart_frame097": {"output_dir": "mario/frames", "rom_offset": "0x1FFDF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_097_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x205E20"}}, +"mario_kart_frame098": {"output_dir": "mario/frames", "rom_offset": "0x200378", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_098_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2063A8"}}, +"mario_kart_frame099": {"output_dir": "mario/frames", "rom_offset": "0x20091C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_099_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20694C"}}, +"mario_kart_frame100": {"output_dir": "mario/frames", "rom_offset": "0x200EC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_100_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x206EF4"}}, +"mario_kart_frame101": {"output_dir": "mario/frames", "rom_offset": "0x20146C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_101_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20749C"}}, +"mario_kart_frame102": {"output_dir": "mario/frames", "rom_offset": "0x201A14", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_102_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x207A44"}}, +"mario_kart_frame103": {"output_dir": "mario/frames", "rom_offset": "0x201FD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_103_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x208004"}}, +"mario_kart_frame104": {"output_dir": "mario/frames", "rom_offset": "0x202598", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_104_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2085C8"}}, +"mario_kart_frame105": {"output_dir": "mario/frames", "rom_offset": "0x202B50", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_105_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x208B80"}}, +"mario_kart_frame106": {"output_dir": "mario/frames", "rom_offset": "0x203030", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_106_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x209060"}}, +"mario_kart_frame107": {"output_dir": "mario/frames", "rom_offset": "0x203518", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_107_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x209548"}}, +"mario_kart_frame108": {"output_dir": "mario/frames", "rom_offset": "0x203A0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_108_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x209A3C"}}, +"mario_kart_frame109": {"output_dir": "mario/frames", "rom_offset": "0x203F1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_109_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x209F4C"}}, +"mario_kart_frame110": {"output_dir": "mario/frames", "rom_offset": "0x204424", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_110_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20A454"}}, +"mario_kart_frame111": {"output_dir": "mario/frames", "rom_offset": "0x204970", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_111_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20A9A0"}}, +"mario_kart_frame112": {"output_dir": "mario/frames", "rom_offset": "0x204EC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_112_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20AEF0"}}, +"mario_kart_frame113": {"output_dir": "mario/frames", "rom_offset": "0x205420", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_113_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20B450"}}, +"mario_kart_frame114": {"output_dir": "mario/frames", "rom_offset": "0x205990", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_114_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20B9C0"}}, +"mario_kart_frame115": {"output_dir": "mario/frames", "rom_offset": "0x205F00", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_115_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20BF30"}}, +"mario_kart_frame116": {"output_dir": "mario/frames", "rom_offset": "0x206480", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_116_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20C4B0"}}, +"mario_kart_frame117": {"output_dir": "mario/frames", "rom_offset": "0x206A0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_117_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20CA3C"}}, +"mario_kart_frame118": {"output_dir": "mario/frames", "rom_offset": "0x206FA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_118_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20CFD4"}}, +"mario_kart_frame119": {"output_dir": "mario/frames", "rom_offset": "0x207538", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_119_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20D568"}}, +"mario_kart_frame120": {"output_dir": "mario/frames", "rom_offset": "0x207AFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_120_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20DB2C"}}, +"mario_kart_frame121": {"output_dir": "mario/frames", "rom_offset": "0x2080B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_121_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20E0E0"}}, +"mario_kart_frame122": {"output_dir": "mario/frames", "rom_offset": "0x208678", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_122_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20E6A8"}}, +"mario_kart_frame123": {"output_dir": "mario/frames", "rom_offset": "0x208C2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_123_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20EC5C"}}, +"mario_kart_frame124": {"output_dir": "mario/frames", "rom_offset": "0x20920C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_124_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20F23C"}}, +"mario_kart_frame125": {"output_dir": "mario/frames", "rom_offset": "0x2097D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_125_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20F804"}}, +"mario_kart_frame126": {"output_dir": "mario/frames", "rom_offset": "0x209DA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_126_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x20FDD4"}}, +"mario_kart_frame127": {"output_dir": "mario/frames", "rom_offset": "0x20A290", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_127_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2102C0"}}, +"mario_kart_frame128": {"output_dir": "mario/frames", "rom_offset": "0x20A790", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_128_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2107C0"}}, +"mario_kart_frame129": {"output_dir": "mario/frames", "rom_offset": "0x20ACAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_129_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x210CDC"}}, +"mario_kart_frame130": {"output_dir": "mario/frames", "rom_offset": "0x20B1BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_130_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2111EC"}}, +"mario_kart_frame131": {"output_dir": "mario/frames", "rom_offset": "0x20B6EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_131_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21171C"}}, +"mario_kart_frame132": {"output_dir": "mario/frames", "rom_offset": "0x20BC28", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_132_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x211C58"}}, +"mario_kart_frame133": {"output_dir": "mario/frames", "rom_offset": "0x20C174", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_133_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2121A4"}}, +"mario_kart_frame134": {"output_dir": "mario/frames", "rom_offset": "0x20C6C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_134_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2126F4"}}, +"mario_kart_frame135": {"output_dir": "mario/frames", "rom_offset": "0x20CC2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_135_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x212C5C"}}, +"mario_kart_frame136": {"output_dir": "mario/frames", "rom_offset": "0x20D190", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_136_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2131C0"}}, +"mario_kart_frame137": {"output_dir": "mario/frames", "rom_offset": "0x20D720", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_137_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x213750"}}, +"mario_kart_frame138": {"output_dir": "mario/frames", "rom_offset": "0x20DCB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_138_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x213CE8"}}, +"mario_kart_frame139": {"output_dir": "mario/frames", "rom_offset": "0x20E24C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_139_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21427C"}}, +"mario_kart_frame140": {"output_dir": "mario/frames", "rom_offset": "0x20E7E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_140_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x214818"}}, +"mario_kart_frame141": {"output_dir": "mario/frames", "rom_offset": "0x20ED98", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_141_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x214DC8"}}, +"mario_kart_frame142": {"output_dir": "mario/frames", "rom_offset": "0x20F360", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_142_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x215390"}}, +"mario_kart_frame143": {"output_dir": "mario/frames", "rom_offset": "0x20F928", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_143_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x215958"}}, +"mario_kart_frame144": {"output_dir": "mario/frames", "rom_offset": "0x20FEE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_144_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x215F10"}}, +"mario_kart_frame145": {"output_dir": "mario/frames", "rom_offset": "0x2104AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_145_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2164DC"}}, +"mario_kart_frame146": {"output_dir": "mario/frames", "rom_offset": "0x210A74", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_146_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x216AA4"}}, +"mario_kart_frame147": {"output_dir": "mario/frames", "rom_offset": "0x211054", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_147_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x217084"}}, +"mario_kart_frame148": {"output_dir": "mario/frames", "rom_offset": "0x211570", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_148_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2175A0"}}, +"mario_kart_frame149": {"output_dir": "mario/frames", "rom_offset": "0x211A8C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_149_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x217ABC"}}, +"mario_kart_frame150": {"output_dir": "mario/frames", "rom_offset": "0x211FB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_150_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x217FE0"}}, +"mario_kart_frame151": {"output_dir": "mario/frames", "rom_offset": "0x2124EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_151_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21851C"}}, +"mario_kart_frame152": {"output_dir": "mario/frames", "rom_offset": "0x212A38", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_152_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x218A68"}}, +"mario_kart_frame153": {"output_dir": "mario/frames", "rom_offset": "0x212F70", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_153_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x218FA0"}}, +"mario_kart_frame154": {"output_dir": "mario/frames", "rom_offset": "0x2134D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_154_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x219508"}}, +"mario_kart_frame155": {"output_dir": "mario/frames", "rom_offset": "0x213A28", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_155_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x219A58"}}, +"mario_kart_frame156": {"output_dir": "mario/frames", "rom_offset": "0x213FB4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_156_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x219FE4"}}, +"mario_kart_frame157": {"output_dir": "mario/frames", "rom_offset": "0x214540", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_157_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21A570"}}, +"mario_kart_frame158": {"output_dir": "mario/frames", "rom_offset": "0x214AEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_158_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21AB1C"}}, +"mario_kart_frame159": {"output_dir": "mario/frames", "rom_offset": "0x21509C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_159_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21B0CC"}}, +"mario_kart_frame160": {"output_dir": "mario/frames", "rom_offset": "0x215650", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_160_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21B680"}}, +"mario_kart_frame161": {"output_dir": "mario/frames", "rom_offset": "0x215BF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_161_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21BC24"}}, +"mario_kart_frame162": {"output_dir": "mario/frames", "rom_offset": "0x2161A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_162_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21C1D4"}}, +"mario_kart_frame163": {"output_dir": "mario/frames", "rom_offset": "0x216774", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_163_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21C7A4"}}, +"mario_kart_frame164": {"output_dir": "mario/frames", "rom_offset": "0x216D38", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_164_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21CD68"}}, +"mario_kart_frame165": {"output_dir": "mario/frames", "rom_offset": "0x217304", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_165_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21D334"}}, +"mario_kart_frame166": {"output_dir": "mario/frames", "rom_offset": "0x2178F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_166_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21D924"}}, +"mario_kart_frame167": {"output_dir": "mario/frames", "rom_offset": "0x217ECC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_167_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21DEFC"}}, +"mario_kart_frame168": {"output_dir": "mario/frames", "rom_offset": "0x2184B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_168_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21E4E8"}}, +"mario_kart_frame169": {"output_dir": "mario/frames", "rom_offset": "0x2189D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_169_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21EA00"}}, +"mario_kart_frame170": {"output_dir": "mario/frames", "rom_offset": "0x218EFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_170_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21EF2C"}}, +"mario_kart_frame171": {"output_dir": "mario/frames", "rom_offset": "0x219450", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_171_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21F480"}}, +"mario_kart_frame172": {"output_dir": "mario/frames", "rom_offset": "0x219980", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_172_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21F9B0"}}, +"mario_kart_frame173": {"output_dir": "mario/frames", "rom_offset": "0x219EC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_173_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x21FEF4"}}, +"mario_kart_frame174": {"output_dir": "mario/frames", "rom_offset": "0x21A420", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_174_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x220450"}}, +"mario_kart_frame175": {"output_dir": "mario/frames", "rom_offset": "0x21A99C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_175_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2209CC"}}, +"mario_kart_frame176": {"output_dir": "mario/frames", "rom_offset": "0x21AF10", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_176_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x220F40"}}, +"mario_kart_frame177": {"output_dir": "mario/frames", "rom_offset": "0x21B490", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_177_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2214C0"}}, +"mario_kart_frame178": {"output_dir": "mario/frames", "rom_offset": "0x21BA24", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_178_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x221A54"}}, +"mario_kart_frame179": {"output_dir": "mario/frames", "rom_offset": "0x21BFCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_179_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x221FFC"}}, +"mario_kart_frame180": {"output_dir": "mario/frames", "rom_offset": "0x21C578", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_180_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2225A8"}}, +"mario_kart_frame181": {"output_dir": "mario/frames", "rom_offset": "0x21CB30", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_181_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x222B60"}}, +"mario_kart_frame182": {"output_dir": "mario/frames", "rom_offset": "0x21D0E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_182_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x223118"}}, +"mario_kart_frame183": {"output_dir": "mario/frames", "rom_offset": "0x21D6B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_183_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2236E0"}}, +"mario_kart_frame184": {"output_dir": "mario/frames", "rom_offset": "0x21DC8C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_184_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x223CBC"}}, +"mario_kart_frame185": {"output_dir": "mario/frames", "rom_offset": "0x21E270", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_185_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2242A0"}}, +"mario_kart_frame186": {"output_dir": "mario/frames", "rom_offset": "0x21E850", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_186_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x224880"}}, +"mario_kart_frame187": {"output_dir": "mario/frames", "rom_offset": "0x21EE40", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_187_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x224E70"}}, +"mario_kart_frame188": {"output_dir": "mario/frames", "rom_offset": "0x21F41C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_188_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22544C"}}, +"mario_kart_frame189": {"output_dir": "mario/frames", "rom_offset": "0x21FA14", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_189_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x225A44"}}, +"mario_kart_frame190": {"output_dir": "mario/frames", "rom_offset": "0x21FEB4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_190_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x225EE4"}}, +"mario_kart_frame191": {"output_dir": "mario/frames", "rom_offset": "0x220388", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_191_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2263B8"}}, +"mario_kart_frame192": {"output_dir": "mario/frames", "rom_offset": "0x220898", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_192_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2268C8"}}, +"mario_kart_frame193": {"output_dir": "mario/frames", "rom_offset": "0x220DC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_193_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x226DF8"}}, +"mario_kart_frame194": {"output_dir": "mario/frames", "rom_offset": "0x221328", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_194_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x227358"}}, +"mario_kart_frame195": {"output_dir": "mario/frames", "rom_offset": "0x2218A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_195_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2278D8"}}, +"mario_kart_frame196": {"output_dir": "mario/frames", "rom_offset": "0x221E20", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_196_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x227E50"}}, +"mario_kart_frame197": {"output_dir": "mario/frames", "rom_offset": "0x2223D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_197_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x228404"}}, +"mario_kart_frame198": {"output_dir": "mario/frames", "rom_offset": "0x222984", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_198_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2289B4"}}, +"mario_kart_frame199": {"output_dir": "mario/frames", "rom_offset": "0x222F70", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_199_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x228FA0"}}, +"mario_kart_frame200": {"output_dir": "mario/frames", "rom_offset": "0x22356C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_200_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22959C"}}, +"mario_kart_frame201": {"output_dir": "mario/frames", "rom_offset": "0x223B88", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_201_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x229BB8"}}, +"mario_kart_frame202": {"output_dir": "mario/frames", "rom_offset": "0x2241CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_202_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22A1FC"}}, +"mario_kart_frame203": {"output_dir": "mario/frames", "rom_offset": "0x224818", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_203_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22A848"}}, +"mario_kart_frame204": {"output_dir": "mario/frames", "rom_offset": "0x224E74", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_204_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22AEA4"}}, +"mario_kart_frame205": {"output_dir": "mario/frames", "rom_offset": "0x2254C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_205_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22B4F8"}}, +"mario_kart_frame206": {"output_dir": "mario/frames", "rom_offset": "0x225AF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_206_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22BB20"}}, +"mario_kart_frame207": {"output_dir": "mario/frames", "rom_offset": "0x226124", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_207_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22C154"}}, +"mario_kart_frame208": {"output_dir": "mario/frames", "rom_offset": "0x226740", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_208_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22C770"}}, +"mario_kart_frame209": {"output_dir": "mario/frames", "rom_offset": "0x226D2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_209_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22CD5C"}}, +"mario_kart_frame210": {"output_dir": "mario/frames", "rom_offset": "0x22720C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_210_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22D23C"}}, +"mario_kart_frame211": {"output_dir": "mario/frames", "rom_offset": "0x227734", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_211_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22D764"}}, +"mario_kart_frame212": {"output_dir": "mario/frames", "rom_offset": "0x227C74", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_212_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22DCA4"}}, +"mario_kart_frame213": {"output_dir": "mario/frames", "rom_offset": "0x2281DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_213_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22E20C"}}, +"mario_kart_frame214": {"output_dir": "mario/frames", "rom_offset": "0x228748", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_214_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22E778"}}, +"mario_kart_frame215": {"output_dir": "mario/frames", "rom_offset": "0x228CE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_215_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22ED18"}}, +"mario_kart_frame216": {"output_dir": "mario/frames", "rom_offset": "0x229298", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_216_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22F2C8"}}, +"mario_kart_frame217": {"output_dir": "mario/frames", "rom_offset": "0x229860", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_217_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22F890"}}, +"mario_kart_frame218": {"output_dir": "mario/frames", "rom_offset": "0x229E28", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_218_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x22FE58"}}, +"mario_kart_frame219": {"output_dir": "mario/frames", "rom_offset": "0x22A410", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_219_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x230440"}}, +"mario_kart_frame220": {"output_dir": "mario/frames", "rom_offset": "0x22A9E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_220_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x230A10"}}, +"mario_kart_frame221": {"output_dir": "mario/frames", "rom_offset": "0x22AFC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_221_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x230FF8"}}, +"mario_kart_frame222": {"output_dir": "mario/frames", "rom_offset": "0x22B5E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_222_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x231610"}}, +"mario_kart_frame223": {"output_dir": "mario/frames", "rom_offset": "0x22BBF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_223_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x231C28"}}, +"mario_kart_frame224": {"output_dir": "mario/frames", "rom_offset": "0x22C210", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_224_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x232240"}}, +"mario_kart_frame225": {"output_dir": "mario/frames", "rom_offset": "0x22C818", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_225_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x232848"}}, +"mario_kart_frame226": {"output_dir": "mario/frames", "rom_offset": "0x22CE2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_226_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x232E5C"}}, +"mario_kart_frame227": {"output_dir": "mario/frames", "rom_offset": "0x22D410", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_227_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x233440"}}, +"mario_kart_frame228": {"output_dir": "mario/frames", "rom_offset": "0x22D9E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_228_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x233A18"}}, +"mario_kart_frame229": {"output_dir": "mario/frames", "rom_offset": "0x22DF84", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_229_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x233FB4"}}, +"mario_kart_frame230": {"output_dir": "mario/frames", "rom_offset": "0x22E460", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_230_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x234490"}}, +"mario_kart_frame231": {"output_dir": "mario/frames", "rom_offset": "0x22E990", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_231_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2349C0"}}, +"mario_kart_frame232": {"output_dir": "mario/frames", "rom_offset": "0x22EEF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_232_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x234F20"}}, +"mario_kart_frame233": {"output_dir": "mario/frames", "rom_offset": "0x22F46C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_233_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23549C"}}, +"mario_kart_frame234": {"output_dir": "mario/frames", "rom_offset": "0x22F9F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_234_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x235A24"}}, +"mario_kart_frame235": {"output_dir": "mario/frames", "rom_offset": "0x22FF90", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_235_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x235FC0"}}, +"mario_kart_frame236": {"output_dir": "mario/frames", "rom_offset": "0x230558", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_236_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x236588"}}, +"mario_kart_frame237": {"output_dir": "mario/frames", "rom_offset": "0x230B38", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_237_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x236B68"}}, +"mario_kart_frame238": {"output_dir": "mario/frames", "rom_offset": "0x23110C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_238_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23713C"}}, +"mario_kart_frame239": {"output_dir": "mario/frames", "rom_offset": "0x2316F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_239_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x237720"}}, +"mario_kart_frame240": {"output_dir": "mario/frames", "rom_offset": "0x231CB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_240_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x237CE8"}}, +"mario_kart_frame241": {"output_dir": "mario/frames", "rom_offset": "0x232298", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_241_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2382C8"}}, +"mario_kart_frame242": {"output_dir": "mario/frames", "rom_offset": "0x232874", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_242_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2388A4"}}, +"mario_kart_frame243": {"output_dir": "mario/frames", "rom_offset": "0x232E70", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_243_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x238EA0"}}, +"mario_kart_frame244": {"output_dir": "mario/frames", "rom_offset": "0x233460", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_244_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x239490"}}, +"mario_kart_frame245": {"output_dir": "mario/frames", "rom_offset": "0x233A30", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_245_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x239A60"}}, +"mario_kart_frame246": {"output_dir": "mario/frames", "rom_offset": "0x234014", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_246_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23A044"}}, +"mario_kart_frame247": {"output_dir": "mario/frames", "rom_offset": "0x2345C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_247_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23A5F0"}}, +"mario_kart_frame248": {"output_dir": "mario/frames", "rom_offset": "0x234B58", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_248_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23AB88"}}, +"mario_kart_frame249": {"output_dir": "mario/frames", "rom_offset": "0x2350A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_249_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23B0D0"}}, +"mario_kart_frame250": {"output_dir": "mario/frames", "rom_offset": "0x2355A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_250_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23B5D0"}}, +"mario_kart_frame251": {"output_dir": "mario/frames", "rom_offset": "0x235ADC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_251_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23BB0C"}}, +"mario_kart_frame252": {"output_dir": "mario/frames", "rom_offset": "0x236038", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_252_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23C068"}}, +"mario_kart_frame253": {"output_dir": "mario/frames", "rom_offset": "0x2365CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_253_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23C5FC"}}, +"mario_kart_frame254": {"output_dir": "mario/frames", "rom_offset": "0x236B5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_254_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23CB8C"}}, +"mario_kart_frame255": {"output_dir": "mario/frames", "rom_offset": "0x237118", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_255_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23D148"}}, +"mario_kart_frame256": {"output_dir": "mario/frames", "rom_offset": "0x2376FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_256_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23D72C"}}, +"mario_kart_frame257": {"output_dir": "mario/frames", "rom_offset": "0x237CE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_257_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23DD10"}}, +"mario_kart_frame258": {"output_dir": "mario/frames", "rom_offset": "0x2382D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_258_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23E308"}}, +"mario_kart_frame259": {"output_dir": "mario/frames", "rom_offset": "0x2388A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_259_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23E8D0"}}, +"mario_kart_frame260": {"output_dir": "mario/frames", "rom_offset": "0x238E68", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_260_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23EE98"}}, +"mario_kart_frame261": {"output_dir": "mario/frames", "rom_offset": "0x239440", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_261_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23F470"}}, +"mario_kart_frame262": {"output_dir": "mario/frames", "rom_offset": "0x239A20", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_262_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x23FA50"}}, +"mario_kart_frame263": {"output_dir": "mario/frames", "rom_offset": "0x239FF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_263_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x240028"}}, +"mario_kart_frame264": {"output_dir": "mario/frames", "rom_offset": "0x23A59C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_264_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2405CC"}}, +"mario_kart_frame265": {"output_dir": "mario/frames", "rom_offset": "0x23AB38", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_265_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x240B68"}}, +"mario_kart_frame266": {"output_dir": "mario/frames", "rom_offset": "0x23B0CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_266_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2410FC"}}, +"mario_kart_frame267": {"output_dir": "mario/frames", "rom_offset": "0x23B644", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_267_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x241674"}}, +"mario_kart_frame268": {"output_dir": "mario/frames", "rom_offset": "0x23BB9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_268_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x241BCC"}}, +"mario_kart_frame269": {"output_dir": "mario/frames", "rom_offset": "0x23C0AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_269_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2420DC"}}, +"mario_kart_frame270": {"output_dir": "mario/frames", "rom_offset": "0x23C5FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_270_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x24262C"}}, +"mario_kart_frame271": {"output_dir": "mario/frames", "rom_offset": "0x23CB50", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_271_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x242B80"}}, +"mario_kart_frame272": {"output_dir": "mario/frames", "rom_offset": "0x23D0CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_272_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2430FC"}}, +"mario_kart_frame273": {"output_dir": "mario/frames", "rom_offset": "0x23D658", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_273_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x243688"}}, +"mario_kart_frame274": {"output_dir": "mario/frames", "rom_offset": "0x23DC0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_274_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x243C3C"}}, +"mario_kart_frame275": {"output_dir": "mario/frames", "rom_offset": "0x23E1D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_275_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x244208"}}, +"mario_kart_frame276": {"output_dir": "mario/frames", "rom_offset": "0x23E7C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_276_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2447F8"}}, +"mario_kart_frame277": {"output_dir": "mario/frames", "rom_offset": "0x23EDB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_277_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x244DE0"}}, +"mario_kart_frame278": {"output_dir": "mario/frames", "rom_offset": "0x23F37C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_278_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2453AC"}}, +"mario_kart_frame279": {"output_dir": "mario/frames", "rom_offset": "0x23F960", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_279_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x245990"}}, +"mario_kart_frame280": {"output_dir": "mario/frames", "rom_offset": "0x23FF14", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_280_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x245F44"}}, +"mario_kart_frame281": {"output_dir": "mario/frames", "rom_offset": "0x2404E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_281_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x246510"}}, +"mario_kart_frame282": {"output_dir": "mario/frames", "rom_offset": "0x240A88", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_282_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x246AB8"}}, +"mario_kart_frame283": {"output_dir": "mario/frames", "rom_offset": "0x241028", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_283_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x247058"}}, +"mario_kart_frame284": {"output_dir": "mario/frames", "rom_offset": "0x2415B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_284_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2475E0"}}, +"mario_kart_frame285": {"output_dir": "mario/frames", "rom_offset": "0x241B30", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_285_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x247B60"}}, +"mario_kart_frame286": {"output_dir": "mario/frames", "rom_offset": "0x24207C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_286_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2480AC"}}, +"mario_kart_frame287": {"output_dir": "mario/frames", "rom_offset": "0x2425A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_287_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2485D8"}}, +"mario_kart_frame288": {"output_dir": "mario/frames", "rom_offset": "0x242AB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_288_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x248AE0"}}, +"mario_kart_frame289": {"output_dir": "mario/frames", "rom_offset": "0x242F64", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x248F94"}}, +"mario_kart_frame290": {"output_dir": "mario/frames", "rom_offset": "0x243434", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x249464"}}, +"mario_kart_frame291": {"output_dir": "mario/frames", "rom_offset": "0x2439A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2499D0"}}, +"mario_kart_frame292": {"output_dir": "mario/frames", "rom_offset": "0x243F74", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x249FA4"}}, +"mario_kart_frame293": {"output_dir": "mario/frames", "rom_offset": "0x244620", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x24A650"}}, +"mario_kart_frame294": {"output_dir": "mario/frames", "rom_offset": "0x244C58", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x24AC88"}}, +"mario_kart_frame295": {"output_dir": "mario/frames", "rom_offset": "0x245298", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x24B2C8"}}, +"mario_kart_frame296": {"output_dir": "mario/frames", "rom_offset": "0x245864", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x24B894"}}, +"mario_kart_frame297": {"output_dir": "mario/frames", "rom_offset": "0x245DEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x24BE1C"}}, +"mario_kart_frame298": {"output_dir": "mario/frames", "rom_offset": "0x246304", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x24C334"}}, +"mario_kart_frame299": {"output_dir": "mario/frames", "rom_offset": "0x2468C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x24C8F4"}}, +"mario_kart_frame300": {"output_dir": "mario/frames", "rom_offset": "0x246E8C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x24CEBC"}}, +"mario_kart_frame301": {"output_dir": "mario/frames", "rom_offset": "0x247478", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x24D4A8"}}, +"mario_kart_frame302": {"output_dir": "mario/frames", "rom_offset": "0x247A18", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x24DA48"}}, +"mario_kart_frame303": {"output_dir": "mario/frames", "rom_offset": "0x247FB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x24DFE0"}}, +"mario_kart_frame304": {"output_dir": "mario/frames", "rom_offset": "0x248550", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x24E580"}}, +"mario_kart_frame305": {"output_dir": "mario/frames", "rom_offset": "0x248AA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x24EAD0"}}, +"mario_kart_frame306": {"output_dir": "mario/frames", "rom_offset": "0x248F6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x24EF9C"}}, +"mario_kart_frame307": {"output_dir": "mario/frames", "rom_offset": "0x249558", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x24F588"}}, +"mario_kart_frame308": {"output_dir": "mario/frames", "rom_offset": "0x249BFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x24FC2C"}}, +"mario_kart_frame309": {"output_dir": "mario/frames", "rom_offset": "0x24A298", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2502C8"}}, +"mario_kart_frame310": {"output_dir": "mario/frames", "rom_offset": "0x24A8C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2508F8"}}, +"mario_kart_frame311": {"output_dir": "mario/frames", "rom_offset": "0x24AEEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x250F1C"}}, +"mario_kart_frame312": {"output_dir": "mario/frames", "rom_offset": "0x24B4B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2514E8"}}, +"mario_kart_frame313": {"output_dir": "mario/frames", "rom_offset": "0x24BA08", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x251A38"}}, +"mario_kart_frame314": {"output_dir": "mario/frames", "rom_offset": "0x24BF18", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x251F48"}}, +"mario_kart_frame315": {"output_dir": "mario/frames", "rom_offset": "0x24C4D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x252508"}}, +"mario_kart_frame316": {"output_dir": "mario/frames", "rom_offset": "0x24CAB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x252AE0"}}, +"mario_kart_frame317": {"output_dir": "mario/frames", "rom_offset": "0x24D068", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x253098"}}, +"mario_kart_frame318": {"output_dir": "mario/frames", "rom_offset": "0x24D60C", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x25363C"}}, +"mario_kart_frame319": {"output_dir": "mario/frames", "rom_offset": "0x24DBBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x253BEC"}}, +"mario_kart_frame320": {"output_dir": "mario/frames", "rom_offset": "0x24E134", "width": 64, "height": 64, "type": "ci8", "tlut": ["mario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x254164"}}, +"kart_000_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24E6A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2546D0"}}, +"kart_000_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24E720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x254750"}}, +"kart_000_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24E7A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2547D0"}}, +"kart_000_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24E820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x254850"}}, +"kart_001_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24E8A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2548D0"}}, +"kart_001_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24E920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x254950"}}, +"kart_001_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24E9A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2549D0"}}, +"kart_001_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24EA20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x254A50"}}, +"kart_002_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24EAA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x254AD0"}}, +"kart_002_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24EB20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x254B50"}}, +"kart_002_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24EBA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x254BD0"}}, +"kart_002_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24EC20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x254C50"}}, +"kart_003_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24ECA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x254CD0"}}, +"kart_003_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24ED20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x254D50"}}, +"kart_003_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24EDA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x254DD0"}}, +"kart_003_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24EE20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x254E50"}}, +"kart_004_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24EEA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x254ED0"}}, +"kart_004_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24EF20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x254F50"}}, +"kart_004_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24EFA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x254FD0"}}, +"kart_004_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24F020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255050"}}, +"kart_005_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24F0A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2550D0"}}, +"kart_005_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24F120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255150"}}, +"kart_005_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24F1A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2551D0"}}, +"kart_005_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24F220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255250"}}, +"kart_006_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24F2A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2552D0"}}, +"kart_006_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24F320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255350"}}, +"kart_006_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24F3A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2553D0"}}, +"kart_006_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24F420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255450"}}, +"kart_007_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24F4A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2554D0"}}, +"kart_007_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24F520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255550"}}, +"kart_007_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24F5A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2555D0"}}, +"kart_007_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24F620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255650"}}, +"kart_008_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24F6A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2556D0"}}, +"kart_008_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24F720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255750"}}, +"kart_008_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24F7A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2557D0"}}, +"kart_008_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24F820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255850"}}, +"kart_009_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24F8A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2558D0"}}, +"kart_009_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24F920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255950"}}, +"kart_009_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24F9A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2559D0"}}, +"kart_009_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24FA20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255A50"}}, +"kart_010_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24FAA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255AD0"}}, +"kart_010_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24FB20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255B50"}}, +"kart_010_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24FBA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255BD0"}}, +"kart_010_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24FC20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255C50"}}, +"kart_011_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24FCA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255CD0"}}, +"kart_011_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24FD20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255D50"}}, +"kart_011_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24FDA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255DD0"}}, +"kart_011_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x24FE20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255E50"}}, +"kart_012_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x24FEA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255ED0"}}, +"kart_012_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x24FF20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255F50"}}, +"kart_012_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x24FFA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x255FD0"}}, +"kart_012_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x250020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256050"}}, +"kart_013_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2500A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2560D0"}}, +"kart_013_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x250120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256150"}}, +"kart_013_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2501A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2561D0"}}, +"kart_013_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x250220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256250"}}, +"kart_014_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2502A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2562D0"}}, +"kart_014_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x250320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256350"}}, +"kart_014_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2503A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2563D0"}}, +"kart_014_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x250420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256450"}}, +"kart_015_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2504A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2564D0"}}, +"kart_015_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x250520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256550"}}, +"kart_015_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2505A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2565D0"}}, +"kart_015_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x250620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256650"}}, +"kart_016_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2506A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2566D0"}}, +"kart_016_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x250720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256750"}}, +"kart_016_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2507A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2567D0"}}, +"kart_016_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x250820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256850"}}, +"kart_017_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2508A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2568D0"}}, +"kart_017_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x250920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256950"}}, +"kart_017_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2509A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2569D0"}}, +"kart_017_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x250A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256A50"}}, +"kart_018_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x250AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256AD0"}}, +"kart_018_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x250B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256B50"}}, +"kart_018_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x250BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256BD0"}}, +"kart_018_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x250C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256C50"}}, +"kart_019_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x250CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256CD0"}}, +"kart_019_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x250D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256D50"}}, +"kart_019_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x250DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256DD0"}}, +"kart_019_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x250E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256E50"}}, +"kart_020_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x250EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256ED0"}}, +"kart_020_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x250F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256F50"}}, +"kart_020_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x250FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x256FD0"}}, +"kart_020_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x251020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257050"}}, +"kart_021_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2510A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2570D0"}}, +"kart_021_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x251120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257150"}}, +"kart_021_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2511A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2571D0"}}, +"kart_021_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x251220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257250"}}, +"kart_022_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2512A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2572D0"}}, +"kart_022_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x251320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257350"}}, +"kart_022_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2513A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2573D0"}}, +"kart_022_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x251420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257450"}}, +"kart_023_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2514A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2574D0"}}, +"kart_023_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x251520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257550"}}, +"kart_023_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2515A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2575D0"}}, +"kart_023_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x251620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257650"}}, +"kart_024_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2516A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2576D0"}}, +"kart_024_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x251720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257750"}}, +"kart_024_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2517A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2577D0"}}, +"kart_024_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x251820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257850"}}, +"kart_025_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2518A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2578D0"}}, +"kart_025_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x251920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257950"}}, +"kart_025_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2519A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2579D0"}}, +"kart_025_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x251A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257A50"}}, +"kart_026_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x251AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257AD0"}}, +"kart_026_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x251B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257B50"}}, +"kart_026_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x251BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257BD0"}}, +"kart_026_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x251C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257C50"}}, +"kart_027_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x251CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257CD0"}}, +"kart_027_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x251D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257D50"}}, +"kart_027_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x251DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257DD0"}}, +"kart_027_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x251E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257E50"}}, +"kart_028_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x251EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257ED0"}}, +"kart_028_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x251F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257F50"}}, +"kart_028_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x251FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x257FD0"}}, +"kart_028_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x252020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258050"}}, +"kart_029_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2520A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2580D0"}}, +"kart_029_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x252120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258150"}}, +"kart_029_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2521A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2581D0"}}, +"kart_029_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x252220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258250"}}, +"kart_030_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2522A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2582D0"}}, +"kart_030_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x252320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258350"}}, +"kart_030_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2523A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2583D0"}}, +"kart_030_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x252420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258450"}}, +"kart_031_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2524A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2584D0"}}, +"kart_031_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x252520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258550"}}, +"kart_031_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2525A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2585D0"}}, +"kart_031_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x252620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258650"}}, +"kart_032_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2526A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2586D0"}}, +"kart_032_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x252720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258750"}}, +"kart_032_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2527A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2587D0"}}, +"kart_032_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x252820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258850"}}, +"kart_033_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2528A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2588D0"}}, +"kart_033_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x252920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258950"}}, +"kart_033_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2529A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2589D0"}}, +"kart_033_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x252A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258A50"}}, +"kart_034_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x252AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258AD0"}}, +"kart_034_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x252B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258B50"}}, +"kart_034_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x252BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258BD0"}}, +"kart_034_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x252C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258C50"}}, +"kart_035_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x252CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258CD0"}}, +"kart_035_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x252D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258D50"}}, +"kart_035_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x252DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258DD0"}}, +"kart_035_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x252E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258E50"}}, +"kart_036_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x252EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258ED0"}}, +"kart_036_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x252F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258F50"}}, +"kart_036_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x252FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x258FD0"}}, +"kart_036_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x253020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259050"}}, +"kart_037_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2530A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2590D0"}}, +"kart_037_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x253120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259150"}}, +"kart_037_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2531A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2591D0"}}, +"kart_037_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x253220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259250"}}, +"kart_038_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2532A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2592D0"}}, +"kart_038_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x253320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259350"}}, +"kart_038_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2533A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2593D0"}}, +"kart_038_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x253420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259450"}}, +"kart_039_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2534A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2594D0"}}, +"kart_039_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x253520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259550"}}, +"kart_039_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2535A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2595D0"}}, +"kart_039_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x253620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259650"}}, +"kart_040_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2536A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2596D0"}}, +"kart_040_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x253720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259750"}}, +"kart_040_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2537A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2597D0"}}, +"kart_040_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x253820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259850"}}, +"kart_041_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2538A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2598D0"}}, +"kart_041_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x253920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259950"}}, +"kart_041_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2539A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2599D0"}}, +"kart_041_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x253A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259A50"}}, +"kart_042_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x253AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259AD0"}}, +"kart_042_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x253B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259B50"}}, +"kart_042_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x253BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259BD0"}}, +"kart_042_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x253C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259C50"}}, +"kart_043_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x253CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259CD0"}}, +"kart_043_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x253D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259D50"}}, +"kart_043_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x253DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259DD0"}}, +"kart_043_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x253E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259E50"}}, +"kart_044_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x253EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259ED0"}}, +"kart_044_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x253F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259F50"}}, +"kart_044_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x253FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x259FD0"}}, +"kart_044_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x254020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A050"}}, +"kart_045_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2540A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A0D0"}}, +"kart_045_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x254120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A150"}}, +"kart_045_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2541A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A1D0"}}, +"kart_045_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x254220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A250"}}, +"kart_046_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2542A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A2D0"}}, +"kart_046_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x254320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A350"}}, +"kart_046_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2543A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A3D0"}}, +"kart_046_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x254420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A450"}}, +"kart_047_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2544A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A4D0"}}, +"kart_047_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x254520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A550"}}, +"kart_047_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2545A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A5D0"}}, +"kart_047_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x254620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A650"}}, +"kart_048_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2546A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A6D0"}}, +"kart_048_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x254720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A750"}}, +"kart_048_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2547A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A7D0"}}, +"kart_048_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x254820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A850"}}, +"kart_049_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2548A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A8D0"}}, +"kart_049_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x254920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A950"}}, +"kart_049_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2549A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25A9D0"}}, +"kart_049_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x254A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25AA50"}}, +"kart_050_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x254AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25AAD0"}}, +"kart_050_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x254B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25AB50"}}, +"kart_050_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x254BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25ABD0"}}, +"kart_050_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x254C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25AC50"}}, +"kart_051_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x254CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25ACD0"}}, +"kart_051_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x254D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25AD50"}}, +"kart_051_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x254DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25ADD0"}}, +"kart_051_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x254E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25AE50"}}, +"kart_052_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x254EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25AED0"}}, +"kart_052_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x254F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25AF50"}}, +"kart_052_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x254FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25AFD0"}}, +"kart_052_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x255020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B050"}}, +"kart_053_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2550A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B0D0"}}, +"kart_053_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x255120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B150"}}, +"kart_053_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2551A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B1D0"}}, +"kart_053_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x255220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B250"}}, +"kart_054_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2552A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B2D0"}}, +"kart_054_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x255320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B350"}}, +"kart_054_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2553A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B3D0"}}, +"kart_054_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x255420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B450"}}, +"kart_055_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2554A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B4D0"}}, +"kart_055_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x255520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B550"}}, +"kart_055_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2555A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B5D0"}}, +"kart_055_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x255620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B650"}}, +"kart_056_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2556A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B6D0"}}, +"kart_056_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x255720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B750"}}, +"kart_056_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2557A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B7D0"}}, +"kart_056_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x255820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B850"}}, +"kart_057_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2558A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B8D0"}}, +"kart_057_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x255920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B950"}}, +"kart_057_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2559A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25B9D0"}}, +"kart_057_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x255A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25BA50"}}, +"kart_058_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x255AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25BAD0"}}, +"kart_058_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x255B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25BB50"}}, +"kart_058_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x255BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25BBD0"}}, +"kart_058_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x255C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25BC50"}}, +"kart_059_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x255CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25BCD0"}}, +"kart_059_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x255D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25BD50"}}, +"kart_059_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x255DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25BDD0"}}, +"kart_059_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x255E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25BE50"}}, +"kart_060_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x255EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25BED0"}}, +"kart_060_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x255F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25BF50"}}, +"kart_060_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x255FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25BFD0"}}, +"kart_060_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x256020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C050"}}, +"kart_061_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2560A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C0D0"}}, +"kart_061_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x256120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C150"}}, +"kart_061_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2561A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C1D0"}}, +"kart_061_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x256220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C250"}}, +"kart_062_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2562A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C2D0"}}, +"kart_062_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x256320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C350"}}, +"kart_062_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2563A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C3D0"}}, +"kart_062_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x256420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C450"}}, +"kart_063_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2564A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C4D0"}}, +"kart_063_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x256520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C550"}}, +"kart_063_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2565A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C5D0"}}, +"kart_063_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x256620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C650"}}, +"kart_064_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2566A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C6D0"}}, +"kart_064_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x256720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C750"}}, +"kart_064_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2567A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C7D0"}}, +"kart_064_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x256820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C850"}}, +"kart_065_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2568A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C8D0"}}, +"kart_065_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x256920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C950"}}, +"kart_065_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2569A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25C9D0"}}, +"kart_065_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x256A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25CA50"}}, +"kart_066_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x256AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25CAD0"}}, +"kart_066_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x256B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25CB50"}}, +"kart_066_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x256BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25CBD0"}}, +"kart_066_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x256C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25CC50"}}, +"kart_067_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x256CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25CCD0"}}, +"kart_067_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x256D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25CD50"}}, +"kart_067_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x256DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25CDD0"}}, +"kart_067_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x256E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25CE50"}}, +"kart_068_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x256EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25CED0"}}, +"kart_068_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x256F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25CF50"}}, +"kart_068_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x256FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25CFD0"}}, +"kart_068_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x257020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D050"}}, +"kart_069_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2570A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D0D0"}}, +"kart_069_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x257120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D150"}}, +"kart_069_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2571A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D1D0"}}, +"kart_069_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x257220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D250"}}, +"kart_070_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2572A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D2D0"}}, +"kart_070_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x257320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D350"}}, +"kart_070_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2573A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D3D0"}}, +"kart_070_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x257420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D450"}}, +"kart_071_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2574A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D4D0"}}, +"kart_071_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x257520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D550"}}, +"kart_071_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2575A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D5D0"}}, +"kart_071_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x257620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D650"}}, +"kart_072_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2576A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D6D0"}}, +"kart_072_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x257720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D750"}}, +"kart_072_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2577A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D7D0"}}, +"kart_072_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x257820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D850"}}, +"kart_073_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2578A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D8D0"}}, +"kart_073_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x257920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D950"}}, +"kart_073_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2579A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25D9D0"}}, +"kart_073_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x257A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25DA50"}}, +"kart_074_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x257AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25DAD0"}}, +"kart_074_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x257B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25DB50"}}, +"kart_074_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x257BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25DBD0"}}, +"kart_074_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x257C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25DC50"}}, +"kart_075_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x257CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25DCD0"}}, +"kart_075_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x257D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25DD50"}}, +"kart_075_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x257DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25DDD0"}}, +"kart_075_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x257E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25DE50"}}, +"kart_076_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x257EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25DED0"}}, +"kart_076_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x257F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25DF50"}}, +"kart_076_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x257FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25DFD0"}}, +"kart_076_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x258020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E050"}}, +"kart_077_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2580A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E0D0"}}, +"kart_077_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x258120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E150"}}, +"kart_077_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2581A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E1D0"}}, +"kart_077_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x258220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E250"}}, +"kart_078_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2582A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E2D0"}}, +"kart_078_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x258320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E350"}}, +"kart_078_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2583A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E3D0"}}, +"kart_078_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x258420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E450"}}, +"kart_079_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2584A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E4D0"}}, +"kart_079_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x258520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E550"}}, +"kart_079_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2585A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E5D0"}}, +"kart_079_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x258620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E650"}}, +"kart_080_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2586A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E6D0"}}, +"kart_080_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x258720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E750"}}, +"kart_080_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2587A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E7D0"}}, +"kart_080_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x258820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E850"}}, +"kart_081_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2588A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E8D0"}}, +"kart_081_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x258920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E950"}}, +"kart_081_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2589A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25E9D0"}}, +"kart_081_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x258A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25EA50"}}, +"kart_082_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x258AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25EAD0"}}, +"kart_082_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x258B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25EB50"}}, +"kart_082_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x258BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25EBD0"}}, +"kart_082_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x258C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25EC50"}}, +"kart_083_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x258CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25ECD0"}}, +"kart_083_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x258D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25ED50"}}, +"kart_083_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x258DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25EDD0"}}, +"kart_083_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x258E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25EE50"}}, +"kart_084_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x258EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25EED0"}}, +"kart_084_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x258F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25EF50"}}, +"kart_084_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x258FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25EFD0"}}, +"kart_084_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x259020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F050"}}, +"kart_085_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2590A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F0D0"}}, +"kart_085_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x259120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F150"}}, +"kart_085_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2591A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F1D0"}}, +"kart_085_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x259220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F250"}}, +"kart_086_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2592A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F2D0"}}, +"kart_086_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x259320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F350"}}, +"kart_086_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2593A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F3D0"}}, +"kart_086_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x259420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F450"}}, +"kart_087_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2594A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F4D0"}}, +"kart_087_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x259520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F550"}}, +"kart_087_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2595A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F5D0"}}, +"kart_087_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x259620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F650"}}, +"kart_088_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2596A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F6D0"}}, +"kart_088_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x259720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F750"}}, +"kart_088_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2597A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F7D0"}}, +"kart_088_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x259820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F850"}}, +"kart_089_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2598A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F8D0"}}, +"kart_089_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x259920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F950"}}, +"kart_089_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2599A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25F9D0"}}, +"kart_089_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x259A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25FA50"}}, +"kart_090_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x259AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25FAD0"}}, +"kart_090_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x259B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25FB50"}}, +"kart_090_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x259BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25FBD0"}}, +"kart_090_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x259C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25FC50"}}, +"kart_091_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x259CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25FCD0"}}, +"kart_091_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x259D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25FD50"}}, +"kart_091_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x259DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25FDD0"}}, +"kart_091_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x259E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25FE50"}}, +"kart_092_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x259EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25FED0"}}, +"kart_092_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x259F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25FF50"}}, +"kart_092_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x259FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x25FFD0"}}, +"kart_092_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25A020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260050"}}, +"kart_093_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25A0A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2600D0"}}, +"kart_093_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25A120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260150"}}, +"kart_093_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25A1A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2601D0"}}, +"kart_093_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25A220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260250"}}, +"kart_094_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25A2A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2602D0"}}, +"kart_094_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25A320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260350"}}, +"kart_094_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25A3A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2603D0"}}, +"kart_094_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25A420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260450"}}, +"kart_095_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25A4A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2604D0"}}, +"kart_095_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25A520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260550"}}, +"kart_095_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25A5A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2605D0"}}, +"kart_095_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25A620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260650"}}, +"kart_096_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25A6A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2606D0"}}, +"kart_096_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25A720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260750"}}, +"kart_096_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25A7A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2607D0"}}, +"kart_096_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25A820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260850"}}, +"kart_097_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25A8A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2608D0"}}, +"kart_097_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25A920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260950"}}, +"kart_097_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25A9A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2609D0"}}, +"kart_097_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25AA20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260A50"}}, +"kart_098_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25AAA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260AD0"}}, +"kart_098_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25AB20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260B50"}}, +"kart_098_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25ABA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260BD0"}}, +"kart_098_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25AC20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260C50"}}, +"kart_099_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25ACA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260CD0"}}, +"kart_099_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25AD20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260D50"}}, +"kart_099_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25ADA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260DD0"}}, +"kart_099_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25AE20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260E50"}}, +"kart_100_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25AEA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260ED0"}}, +"kart_100_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25AF20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260F50"}}, +"kart_100_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25AFA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x260FD0"}}, +"kart_100_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25B020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261050"}}, +"kart_101_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25B0A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2610D0"}}, +"kart_101_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25B120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261150"}}, +"kart_101_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25B1A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2611D0"}}, +"kart_101_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25B220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261250"}}, +"kart_102_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25B2A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2612D0"}}, +"kart_102_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25B320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261350"}}, +"kart_102_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25B3A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2613D0"}}, +"kart_102_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25B420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261450"}}, +"kart_103_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25B4A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2614D0"}}, +"kart_103_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25B520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261550"}}, +"kart_103_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25B5A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2615D0"}}, +"kart_103_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25B620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261650"}}, +"kart_104_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25B6A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2616D0"}}, +"kart_104_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25B720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261750"}}, +"kart_104_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25B7A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2617D0"}}, +"kart_104_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25B820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261850"}}, +"kart_105_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25B8A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2618D0"}}, +"kart_105_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25B920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261950"}}, +"kart_105_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25B9A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2619D0"}}, +"kart_105_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25BA20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261A50"}}, +"kart_106_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25BAA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261AD0"}}, +"kart_106_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25BB20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261B50"}}, +"kart_106_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25BBA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261BD0"}}, +"kart_106_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25BC20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261C50"}}, +"kart_107_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25BCA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261CD0"}}, +"kart_107_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25BD20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261D50"}}, +"kart_107_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25BDA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261DD0"}}, +"kart_107_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25BE20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261E50"}}, +"kart_108_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25BEA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261ED0"}}, +"kart_108_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25BF20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261F50"}}, +"kart_108_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25BFA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x261FD0"}}, +"kart_108_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25C020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262050"}}, +"kart_109_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25C0A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2620D0"}}, +"kart_109_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25C120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262150"}}, +"kart_109_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25C1A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2621D0"}}, +"kart_109_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25C220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262250"}}, +"kart_110_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25C2A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2622D0"}}, +"kart_110_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25C320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262350"}}, +"kart_110_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25C3A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2623D0"}}, +"kart_110_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25C420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262450"}}, +"kart_111_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25C4A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2624D0"}}, +"kart_111_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25C520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262550"}}, +"kart_111_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25C5A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2625D0"}}, +"kart_111_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25C620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262650"}}, +"kart_112_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25C6A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2626D0"}}, +"kart_112_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25C720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262750"}}, +"kart_112_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25C7A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2627D0"}}, +"kart_112_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25C820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262850"}}, +"kart_113_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25C8A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2628D0"}}, +"kart_113_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25C920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262950"}}, +"kart_113_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25C9A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2629D0"}}, +"kart_113_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25CA20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262A50"}}, +"kart_114_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25CAA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262AD0"}}, +"kart_114_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25CB20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262B50"}}, +"kart_114_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25CBA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262BD0"}}, +"kart_114_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25CC20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262C50"}}, +"kart_115_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25CCA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262CD0"}}, +"kart_115_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25CD20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262D50"}}, +"kart_115_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25CDA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262DD0"}}, +"kart_115_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25CE20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262E50"}}, +"kart_116_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25CEA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262ED0"}}, +"kart_116_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25CF20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262F50"}}, +"kart_116_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25CFA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x262FD0"}}, +"kart_116_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25D020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263050"}}, +"kart_117_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25D0A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2630D0"}}, +"kart_117_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25D120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263150"}}, +"kart_117_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25D1A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2631D0"}}, +"kart_117_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25D220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263250"}}, +"kart_118_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25D2A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2632D0"}}, +"kart_118_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25D320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263350"}}, +"kart_118_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25D3A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2633D0"}}, +"kart_118_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25D420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263450"}}, +"kart_119_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25D4A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2634D0"}}, +"kart_119_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25D520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263550"}}, +"kart_119_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25D5A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2635D0"}}, +"kart_119_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25D620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263650"}}, +"kart_120_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25D6A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2636D0"}}, +"kart_120_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25D720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263750"}}, +"kart_120_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25D7A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2637D0"}}, +"kart_120_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25D820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263850"}}, +"kart_121_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25D8A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2638D0"}}, +"kart_121_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25D920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263950"}}, +"kart_121_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25D9A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2639D0"}}, +"kart_121_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25DA20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263A50"}}, +"kart_122_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25DAA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263AD0"}}, +"kart_122_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25DB20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263B50"}}, +"kart_122_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25DBA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263BD0"}}, +"kart_122_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25DC20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263C50"}}, +"kart_123_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25DCA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263CD0"}}, +"kart_123_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25DD20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263D50"}}, +"kart_123_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25DDA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263DD0"}}, +"kart_123_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25DE20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263E50"}}, +"kart_124_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25DEA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263ED0"}}, +"kart_124_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25DF20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263F50"}}, +"kart_124_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25DFA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x263FD0"}}, +"kart_124_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25E020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264050"}}, +"kart_125_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25E0A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2640D0"}}, +"kart_125_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25E120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264150"}}, +"kart_125_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25E1A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2641D0"}}, +"kart_125_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25E220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264250"}}, +"kart_126_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25E2A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2642D0"}}, +"kart_126_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25E320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264350"}}, +"kart_126_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25E3A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2643D0"}}, +"kart_126_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25E420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264450"}}, +"kart_127_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25E4A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2644D0"}}, +"kart_127_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25E520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264550"}}, +"kart_127_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25E5A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2645D0"}}, +"kart_127_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25E620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264650"}}, +"kart_128_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25E6A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2646D0"}}, +"kart_128_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25E720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264750"}}, +"kart_128_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25E7A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2647D0"}}, +"kart_128_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25E820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264850"}}, +"kart_129_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25E8A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2648D0"}}, +"kart_129_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25E920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264950"}}, +"kart_129_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25E9A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2649D0"}}, +"kart_129_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25EA20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264A50"}}, +"kart_130_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25EAA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264AD0"}}, +"kart_130_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25EB20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264B50"}}, +"kart_130_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25EBA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264BD0"}}, +"kart_130_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25EC20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264C50"}}, +"kart_131_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25ECA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264CD0"}}, +"kart_131_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25ED20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264D50"}}, +"kart_131_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25EDA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264DD0"}}, +"kart_131_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25EE20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264E50"}}, +"kart_132_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25EEA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264ED0"}}, +"kart_132_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25EF20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264F50"}}, +"kart_132_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25EFA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x264FD0"}}, +"kart_132_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25F020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265050"}}, +"kart_133_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25F0A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2650D0"}}, +"kart_133_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25F120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265150"}}, +"kart_133_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25F1A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2651D0"}}, +"kart_133_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25F220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265250"}}, +"kart_134_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25F2A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2652D0"}}, +"kart_134_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25F320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265350"}}, +"kart_134_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25F3A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2653D0"}}, +"kart_134_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25F420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265450"}}, +"kart_135_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25F4A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2654D0"}}, +"kart_135_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25F520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265550"}}, +"kart_135_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25F5A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2655D0"}}, +"kart_135_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25F620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265650"}}, +"kart_136_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25F6A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2656D0"}}, +"kart_136_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25F720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265750"}}, +"kart_136_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25F7A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2657D0"}}, +"kart_136_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25F820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265850"}}, +"kart_137_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25F8A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2658D0"}}, +"kart_137_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25F920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265950"}}, +"kart_137_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25F9A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2659D0"}}, +"kart_137_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25FA20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265A50"}}, +"kart_138_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25FAA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265AD0"}}, +"kart_138_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25FB20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265B50"}}, +"kart_138_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25FBA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265BD0"}}, +"kart_138_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25FC20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265C50"}}, +"kart_139_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25FCA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265CD0"}}, +"kart_139_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25FD20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265D50"}}, +"kart_139_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25FDA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265DD0"}}, +"kart_139_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x25FE20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265E50"}}, +"kart_140_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x25FEA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265ED0"}}, +"kart_140_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x25FF20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265F50"}}, +"kart_140_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x25FFA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x265FD0"}}, +"kart_140_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x260020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266050"}}, +"kart_141_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2600A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2660D0"}}, +"kart_141_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x260120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266150"}}, +"kart_141_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2601A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2661D0"}}, +"kart_141_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x260220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266250"}}, +"kart_142_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2602A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2662D0"}}, +"kart_142_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x260320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266350"}}, +"kart_142_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2603A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2663D0"}}, +"kart_142_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x260420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266450"}}, +"kart_143_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2604A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2664D0"}}, +"kart_143_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x260520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266550"}}, +"kart_143_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2605A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2665D0"}}, +"kart_143_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x260620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266650"}}, +"kart_144_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2606A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2666D0"}}, +"kart_144_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x260720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266750"}}, +"kart_144_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2607A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2667D0"}}, +"kart_144_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x260820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266850"}}, +"kart_145_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2608A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2668D0"}}, +"kart_145_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x260920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266950"}}, +"kart_145_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2609A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2669D0"}}, +"kart_145_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x260A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266A50"}}, +"kart_146_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x260AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266AD0"}}, +"kart_146_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x260B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266B50"}}, +"kart_146_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x260BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266BD0"}}, +"kart_146_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x260C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266C50"}}, +"kart_147_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x260CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266CD0"}}, +"kart_147_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x260D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266D50"}}, +"kart_147_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x260DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266DD0"}}, +"kart_147_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x260E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266E50"}}, +"kart_148_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x260EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266ED0"}}, +"kart_148_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x260F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266F50"}}, +"kart_148_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x260FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x266FD0"}}, +"kart_148_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x261020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267050"}}, +"kart_149_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2610A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2670D0"}}, +"kart_149_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x261120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267150"}}, +"kart_149_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2611A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2671D0"}}, +"kart_149_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x261220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267250"}}, +"kart_150_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2612A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2672D0"}}, +"kart_150_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x261320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267350"}}, +"kart_150_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2613A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2673D0"}}, +"kart_150_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x261420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267450"}}, +"kart_151_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2614A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2674D0"}}, +"kart_151_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x261520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267550"}}, +"kart_151_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2615A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2675D0"}}, +"kart_151_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x261620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267650"}}, +"kart_152_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2616A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2676D0"}}, +"kart_152_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x261720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267750"}}, +"kart_152_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2617A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2677D0"}}, +"kart_152_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x261820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267850"}}, +"kart_153_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2618A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2678D0"}}, +"kart_153_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x261920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267950"}}, +"kart_153_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2619A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2679D0"}}, +"kart_153_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x261A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267A50"}}, +"kart_154_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x261AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267AD0"}}, +"kart_154_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x261B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267B50"}}, +"kart_154_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x261BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267BD0"}}, +"kart_154_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x261C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267C50"}}, +"kart_155_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x261CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267CD0"}}, +"kart_155_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x261D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267D50"}}, +"kart_155_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x261DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267DD0"}}, +"kart_155_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x261E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267E50"}}, +"kart_156_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x261EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267ED0"}}, +"kart_156_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x261F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267F50"}}, +"kart_156_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x261FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x267FD0"}}, +"kart_156_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x262020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268050"}}, +"kart_157_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2620A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2680D0"}}, +"kart_157_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x262120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268150"}}, +"kart_157_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2621A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2681D0"}}, +"kart_157_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x262220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268250"}}, +"kart_158_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2622A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2682D0"}}, +"kart_158_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x262320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268350"}}, +"kart_158_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2623A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2683D0"}}, +"kart_158_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x262420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268450"}}, +"kart_159_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2624A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2684D0"}}, +"kart_159_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x262520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268550"}}, +"kart_159_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2625A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2685D0"}}, +"kart_159_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x262620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268650"}}, +"kart_160_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2626A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2686D0"}}, +"kart_160_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x262720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268750"}}, +"kart_160_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2627A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2687D0"}}, +"kart_160_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x262820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268850"}}, +"kart_161_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2628A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2688D0"}}, +"kart_161_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x262920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268950"}}, +"kart_161_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2629A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2689D0"}}, +"kart_161_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x262A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268A50"}}, +"kart_162_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x262AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268AD0"}}, +"kart_162_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x262B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268B50"}}, +"kart_162_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x262BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268BD0"}}, +"kart_162_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x262C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268C50"}}, +"kart_163_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x262CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268CD0"}}, +"kart_163_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x262D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268D50"}}, +"kart_163_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x262DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268DD0"}}, +"kart_163_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x262E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268E50"}}, +"kart_164_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x262EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268ED0"}}, +"kart_164_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x262F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268F50"}}, +"kart_164_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x262FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x268FD0"}}, +"kart_164_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x263020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269050"}}, +"kart_165_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2630A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2690D0"}}, +"kart_165_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x263120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269150"}}, +"kart_165_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2631A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2691D0"}}, +"kart_165_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x263220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269250"}}, +"kart_166_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2632A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2692D0"}}, +"kart_166_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x263320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269350"}}, +"kart_166_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2633A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2693D0"}}, +"kart_166_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x263420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269450"}}, +"kart_167_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2634A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2694D0"}}, +"kart_167_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x263520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269550"}}, +"kart_167_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2635A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2695D0"}}, +"kart_167_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x263620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269650"}}, +"kart_168_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2636A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2696D0"}}, +"kart_168_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x263720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269750"}}, +"kart_168_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2637A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2697D0"}}, +"kart_168_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x263820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269850"}}, +"kart_169_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2638A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2698D0"}}, +"kart_169_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x263920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269950"}}, +"kart_169_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2639A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2699D0"}}, +"kart_169_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x263A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269A50"}}, +"kart_170_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x263AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269AD0"}}, +"kart_170_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x263B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269B50"}}, +"kart_170_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x263BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269BD0"}}, +"kart_170_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x263C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269C50"}}, +"kart_171_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x263CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269CD0"}}, +"kart_171_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x263D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269D50"}}, +"kart_171_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x263DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269DD0"}}, +"kart_171_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x263E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269E50"}}, +"kart_172_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x263EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269ED0"}}, +"kart_172_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x263F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269F50"}}, +"kart_172_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x263FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x269FD0"}}, +"kart_172_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x264020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A050"}}, +"kart_173_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2640A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A0D0"}}, +"kart_173_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x264120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A150"}}, +"kart_173_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2641A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A1D0"}}, +"kart_173_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x264220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A250"}}, +"kart_174_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2642A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A2D0"}}, +"kart_174_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x264320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A350"}}, +"kart_174_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2643A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A3D0"}}, +"kart_174_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x264420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A450"}}, +"kart_175_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2644A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A4D0"}}, +"kart_175_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x264520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A550"}}, +"kart_175_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2645A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A5D0"}}, +"kart_175_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x264620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A650"}}, +"kart_176_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2646A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A6D0"}}, +"kart_176_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x264720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A750"}}, +"kart_176_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2647A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A7D0"}}, +"kart_176_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x264820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A850"}}, +"kart_177_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2648A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A8D0"}}, +"kart_177_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x264920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A950"}}, +"kart_177_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2649A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26A9D0"}}, +"kart_177_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x264A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26AA50"}}, +"kart_178_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x264AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26AAD0"}}, +"kart_178_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x264B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26AB50"}}, +"kart_178_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x264BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26ABD0"}}, +"kart_178_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x264C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26AC50"}}, +"kart_179_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x264CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26ACD0"}}, +"kart_179_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x264D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26AD50"}}, +"kart_179_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x264DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26ADD0"}}, +"kart_179_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x264E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26AE50"}}, +"kart_180_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x264EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26AED0"}}, +"kart_180_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x264F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26AF50"}}, +"kart_180_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x264FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26AFD0"}}, +"kart_180_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x265020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B050"}}, +"kart_181_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2650A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B0D0"}}, +"kart_181_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x265120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B150"}}, +"kart_181_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2651A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B1D0"}}, +"kart_181_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x265220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B250"}}, +"kart_182_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2652A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B2D0"}}, +"kart_182_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x265320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B350"}}, +"kart_182_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2653A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B3D0"}}, +"kart_182_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x265420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B450"}}, +"kart_183_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2654A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B4D0"}}, +"kart_183_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x265520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B550"}}, +"kart_183_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2655A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B5D0"}}, +"kart_183_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x265620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B650"}}, +"kart_184_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2656A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B6D0"}}, +"kart_184_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x265720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B750"}}, +"kart_184_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2657A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B7D0"}}, +"kart_184_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x265820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B850"}}, +"kart_185_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2658A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B8D0"}}, +"kart_185_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x265920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B950"}}, +"kart_185_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2659A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26B9D0"}}, +"kart_185_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x265A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26BA50"}}, +"kart_186_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x265AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26BAD0"}}, +"kart_186_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x265B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26BB50"}}, +"kart_186_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x265BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26BBD0"}}, +"kart_186_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x265C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26BC50"}}, +"kart_187_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x265CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26BCD0"}}, +"kart_187_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x265D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26BD50"}}, +"kart_187_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x265DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26BDD0"}}, +"kart_187_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x265E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26BE50"}}, +"kart_188_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x265EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26BED0"}}, +"kart_188_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x265F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26BF50"}}, +"kart_188_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x265FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26BFD0"}}, +"kart_188_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x266020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C050"}}, +"kart_189_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2660A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C0D0"}}, +"kart_189_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x266120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C150"}}, +"kart_189_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2661A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C1D0"}}, +"kart_189_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x266220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C250"}}, +"kart_190_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2662A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C2D0"}}, +"kart_190_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x266320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C350"}}, +"kart_190_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2663A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C3D0"}}, +"kart_190_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x266420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C450"}}, +"kart_191_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2664A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C4D0"}}, +"kart_191_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x266520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C550"}}, +"kart_191_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2665A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C5D0"}}, +"kart_191_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x266620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C650"}}, +"kart_192_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2666A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C6D0"}}, +"kart_192_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x266720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C750"}}, +"kart_192_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2667A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C7D0"}}, +"kart_192_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x266820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C850"}}, +"kart_193_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2668A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C8D0"}}, +"kart_193_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x266920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C950"}}, +"kart_193_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2669A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26C9D0"}}, +"kart_193_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x266A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26CA50"}}, +"kart_194_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x266AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26CAD0"}}, +"kart_194_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x266B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26CB50"}}, +"kart_194_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x266BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26CBD0"}}, +"kart_194_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x266C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26CC50"}}, +"kart_195_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x266CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26CCD0"}}, +"kart_195_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x266D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26CD50"}}, +"kart_195_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x266DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26CDD0"}}, +"kart_195_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x266E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26CE50"}}, +"kart_196_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x266EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26CED0"}}, +"kart_196_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x266F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26CF50"}}, +"kart_196_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x266FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26CFD0"}}, +"kart_196_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x267020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D050"}}, +"kart_197_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2670A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D0D0"}}, +"kart_197_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x267120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D150"}}, +"kart_197_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2671A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D1D0"}}, +"kart_197_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x267220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D250"}}, +"kart_198_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2672A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D2D0"}}, +"kart_198_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x267320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D350"}}, +"kart_198_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2673A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D3D0"}}, +"kart_198_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x267420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D450"}}, +"kart_199_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2674A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D4D0"}}, +"kart_199_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x267520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D550"}}, +"kart_199_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2675A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D5D0"}}, +"kart_199_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x267620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D650"}}, +"kart_200_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2676A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D6D0"}}, +"kart_200_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x267720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D750"}}, +"kart_200_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2677A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D7D0"}}, +"kart_200_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x267820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D850"}}, +"kart_201_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2678A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D8D0"}}, +"kart_201_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x267920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D950"}}, +"kart_201_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2679A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26D9D0"}}, +"kart_201_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x267A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26DA50"}}, +"kart_202_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x267AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26DAD0"}}, +"kart_202_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x267B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26DB50"}}, +"kart_202_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x267BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26DBD0"}}, +"kart_202_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x267C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26DC50"}}, +"kart_203_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x267CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26DCD0"}}, +"kart_203_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x267D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26DD50"}}, +"kart_203_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x267DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26DDD0"}}, +"kart_203_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x267E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26DE50"}}, +"kart_204_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x267EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26DED0"}}, +"kart_204_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x267F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26DF50"}}, +"kart_204_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x267FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26DFD0"}}, +"kart_204_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x268020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E050"}}, +"kart_205_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2680A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E0D0"}}, +"kart_205_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x268120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E150"}}, +"kart_205_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2681A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E1D0"}}, +"kart_205_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x268220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E250"}}, +"kart_206_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2682A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E2D0"}}, +"kart_206_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x268320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E350"}}, +"kart_206_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2683A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E3D0"}}, +"kart_206_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x268420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E450"}}, +"kart_207_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2684A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E4D0"}}, +"kart_207_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x268520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E550"}}, +"kart_207_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2685A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E5D0"}}, +"kart_207_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x268620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E650"}}, +"kart_208_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2686A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E6D0"}}, +"kart_208_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x268720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E750"}}, +"kart_208_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2687A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E7D0"}}, +"kart_208_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x268820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E850"}}, +"kart_209_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2688A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E8D0"}}, +"kart_209_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x268920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E950"}}, +"kart_209_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2689A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26E9D0"}}, +"kart_209_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x268A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26EA50"}}, +"kart_210_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x268AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26EAD0"}}, +"kart_210_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x268B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26EB50"}}, +"kart_210_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x268BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26EBD0"}}, +"kart_210_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x268C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26EC50"}}, +"kart_211_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x268CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26ECD0"}}, +"kart_211_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x268D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26ED50"}}, +"kart_211_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x268DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26EDD0"}}, +"kart_211_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x268E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26EE50"}}, +"kart_212_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x268EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26EED0"}}, +"kart_212_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x268F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26EF50"}}, +"kart_212_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x268FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26EFD0"}}, +"kart_212_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x269020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F050"}}, +"kart_213_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2690A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F0D0"}}, +"kart_213_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x269120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F150"}}, +"kart_213_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2691A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F1D0"}}, +"kart_213_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x269220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F250"}}, +"kart_214_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2692A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F2D0"}}, +"kart_214_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x269320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F350"}}, +"kart_214_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2693A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F3D0"}}, +"kart_214_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x269420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F450"}}, +"kart_215_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2694A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F4D0"}}, +"kart_215_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x269520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F550"}}, +"kart_215_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2695A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F5D0"}}, +"kart_215_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x269620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F650"}}, +"kart_216_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2696A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F6D0"}}, +"kart_216_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x269720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F750"}}, +"kart_216_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2697A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F7D0"}}, +"kart_216_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x269820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F850"}}, +"kart_217_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2698A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F8D0"}}, +"kart_217_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x269920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F950"}}, +"kart_217_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2699A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26F9D0"}}, +"kart_217_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x269A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26FA50"}}, +"kart_218_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x269AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26FAD0"}}, +"kart_218_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x269B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26FB50"}}, +"kart_218_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x269BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26FBD0"}}, +"kart_218_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x269C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26FC50"}}, +"kart_219_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x269CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26FCD0"}}, +"kart_219_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x269D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26FD50"}}, +"kart_219_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x269DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26FDD0"}}, +"kart_219_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x269E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26FE50"}}, +"kart_220_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x269EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26FED0"}}, +"kart_220_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x269F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26FF50"}}, +"kart_220_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x269FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x26FFD0"}}, +"kart_220_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26A020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270050"}}, +"kart_221_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26A0A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2700D0"}}, +"kart_221_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26A120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270150"}}, +"kart_221_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26A1A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2701D0"}}, +"kart_221_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26A220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270250"}}, +"kart_222_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26A2A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2702D0"}}, +"kart_222_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26A320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270350"}}, +"kart_222_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26A3A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2703D0"}}, +"kart_222_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26A420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270450"}}, +"kart_223_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26A4A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2704D0"}}, +"kart_223_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26A520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270550"}}, +"kart_223_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26A5A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2705D0"}}, +"kart_223_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26A620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270650"}}, +"kart_224_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26A6A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2706D0"}}, +"kart_224_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26A720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270750"}}, +"kart_224_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26A7A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2707D0"}}, +"kart_224_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26A820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270850"}}, +"kart_225_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26A8A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2708D0"}}, +"kart_225_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26A920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270950"}}, +"kart_225_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26A9A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2709D0"}}, +"kart_225_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26AA20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270A50"}}, +"kart_226_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26AAA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270AD0"}}, +"kart_226_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26AB20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270B50"}}, +"kart_226_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26ABA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270BD0"}}, +"kart_226_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26AC20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270C50"}}, +"kart_227_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26ACA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270CD0"}}, +"kart_227_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26AD20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270D50"}}, +"kart_227_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26ADA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270DD0"}}, +"kart_227_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26AE20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270E50"}}, +"kart_228_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26AEA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270ED0"}}, +"kart_228_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26AF20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270F50"}}, +"kart_228_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26AFA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x270FD0"}}, +"kart_228_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26B020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271050"}}, +"kart_229_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26B0A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2710D0"}}, +"kart_229_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26B120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271150"}}, +"kart_229_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26B1A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2711D0"}}, +"kart_229_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26B220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271250"}}, +"kart_230_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26B2A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2712D0"}}, +"kart_230_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26B320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271350"}}, +"kart_230_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26B3A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2713D0"}}, +"kart_230_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26B420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271450"}}, +"kart_231_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26B4A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2714D0"}}, +"kart_231_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26B520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271550"}}, +"kart_231_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26B5A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2715D0"}}, +"kart_231_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26B620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271650"}}, +"kart_232_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26B6A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2716D0"}}, +"kart_232_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26B720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271750"}}, +"kart_232_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26B7A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2717D0"}}, +"kart_232_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26B820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271850"}}, +"kart_233_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26B8A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2718D0"}}, +"kart_233_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26B920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271950"}}, +"kart_233_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26B9A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2719D0"}}, +"kart_233_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26BA20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271A50"}}, +"kart_234_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26BAA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271AD0"}}, +"kart_234_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26BB20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271B50"}}, +"kart_234_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26BBA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271BD0"}}, +"kart_234_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26BC20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271C50"}}, +"kart_235_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26BCA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271CD0"}}, +"kart_235_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26BD20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271D50"}}, +"kart_235_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26BDA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271DD0"}}, +"kart_235_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26BE20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271E50"}}, +"kart_236_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26BEA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271ED0"}}, +"kart_236_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26BF20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271F50"}}, +"kart_236_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26BFA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x271FD0"}}, +"kart_236_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26C020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272050"}}, +"kart_237_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26C0A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2720D0"}}, +"kart_237_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26C120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272150"}}, +"kart_237_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26C1A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2721D0"}}, +"kart_237_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26C220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272250"}}, +"kart_238_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26C2A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2722D0"}}, +"kart_238_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26C320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272350"}}, +"kart_238_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26C3A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2723D0"}}, +"kart_238_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26C420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272450"}}, +"kart_239_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26C4A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2724D0"}}, +"kart_239_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26C520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272550"}}, +"kart_239_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26C5A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2725D0"}}, +"kart_239_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26C620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272650"}}, +"kart_240_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26C6A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2726D0"}}, +"kart_240_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26C720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272750"}}, +"kart_240_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26C7A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2727D0"}}, +"kart_240_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26C820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272850"}}, +"kart_241_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26C8A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2728D0"}}, +"kart_241_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26C920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272950"}}, +"kart_241_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26C9A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2729D0"}}, +"kart_241_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26CA20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272A50"}}, +"kart_242_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26CAA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272AD0"}}, +"kart_242_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26CB20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272B50"}}, +"kart_242_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26CBA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272BD0"}}, +"kart_242_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26CC20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272C50"}}, +"kart_243_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26CCA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272CD0"}}, +"kart_243_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26CD20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272D50"}}, +"kart_243_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26CDA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272DD0"}}, +"kart_243_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26CE20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272E50"}}, +"kart_244_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26CEA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272ED0"}}, +"kart_244_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26CF20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272F50"}}, +"kart_244_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26CFA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x272FD0"}}, +"kart_244_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26D020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273050"}}, +"kart_245_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26D0A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2730D0"}}, +"kart_245_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26D120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273150"}}, +"kart_245_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26D1A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2731D0"}}, +"kart_245_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26D220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273250"}}, +"kart_246_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26D2A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2732D0"}}, +"kart_246_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26D320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273350"}}, +"kart_246_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26D3A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2733D0"}}, +"kart_246_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26D420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273450"}}, +"kart_247_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26D4A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2734D0"}}, +"kart_247_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26D520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273550"}}, +"kart_247_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26D5A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2735D0"}}, +"kart_247_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26D620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273650"}}, +"kart_248_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26D6A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2736D0"}}, +"kart_248_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26D720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273750"}}, +"kart_248_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26D7A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2737D0"}}, +"kart_248_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26D820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273850"}}, +"kart_249_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26D8A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2738D0"}}, +"kart_249_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26D920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273950"}}, +"kart_249_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26D9A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2739D0"}}, +"kart_249_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26DA20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273A50"}}, +"kart_250_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26DAA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273AD0"}}, +"kart_250_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26DB20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273B50"}}, +"kart_250_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26DBA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273BD0"}}, +"kart_250_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26DC20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273C50"}}, +"kart_251_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26DCA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273CD0"}}, +"kart_251_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26DD20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273D50"}}, +"kart_251_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26DDA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273DD0"}}, +"kart_251_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26DE20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273E50"}}, +"kart_252_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26DEA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273ED0"}}, +"kart_252_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26DF20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273F50"}}, +"kart_252_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26DFA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x273FD0"}}, +"kart_252_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26E020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274050"}}, +"kart_253_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26E0A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2740D0"}}, +"kart_253_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26E120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274150"}}, +"kart_253_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26E1A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2741D0"}}, +"kart_253_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26E220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274250"}}, +"kart_254_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26E2A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2742D0"}}, +"kart_254_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26E320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274350"}}, +"kart_254_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26E3A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2743D0"}}, +"kart_254_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26E420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274450"}}, +"kart_255_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26E4A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2744D0"}}, +"kart_255_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26E520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274550"}}, +"kart_255_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26E5A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2745D0"}}, +"kart_255_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26E620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274650"}}, +"kart_256_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26E6A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2746D0"}}, +"kart_256_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26E720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274750"}}, +"kart_256_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26E7A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2747D0"}}, +"kart_256_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26E820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274850"}}, +"kart_257_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26E8A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2748D0"}}, +"kart_257_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26E920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274950"}}, +"kart_257_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26E9A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2749D0"}}, +"kart_257_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26EA20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274A50"}}, +"kart_258_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26EAA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274AD0"}}, +"kart_258_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26EB20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274B50"}}, +"kart_258_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26EBA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274BD0"}}, +"kart_258_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26EC20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274C50"}}, +"kart_259_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26ECA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274CD0"}}, +"kart_259_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26ED20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274D50"}}, +"kart_259_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26EDA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274DD0"}}, +"kart_259_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26EE20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274E50"}}, +"kart_260_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26EEA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274ED0"}}, +"kart_260_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26EF20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274F50"}}, +"kart_260_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26EFA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x274FD0"}}, +"kart_260_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26F020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275050"}}, +"kart_261_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26F0A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2750D0"}}, +"kart_261_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26F120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275150"}}, +"kart_261_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26F1A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2751D0"}}, +"kart_261_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26F220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275250"}}, +"kart_262_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26F2A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2752D0"}}, +"kart_262_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26F320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275350"}}, +"kart_262_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26F3A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2753D0"}}, +"kart_262_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26F420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275450"}}, +"kart_263_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26F4A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2754D0"}}, +"kart_263_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26F520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275550"}}, +"kart_263_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26F5A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2755D0"}}, +"kart_263_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26F620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275650"}}, +"kart_264_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26F6A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2756D0"}}, +"kart_264_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26F720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275750"}}, +"kart_264_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26F7A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2757D0"}}, +"kart_264_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26F820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275850"}}, +"kart_265_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26F8A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2758D0"}}, +"kart_265_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26F920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275950"}}, +"kart_265_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26F9A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2759D0"}}, +"kart_265_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26FA20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275A50"}}, +"kart_266_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26FAA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275AD0"}}, +"kart_266_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26FB20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275B50"}}, +"kart_266_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26FBA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275BD0"}}, +"kart_266_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26FC20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275C50"}}, +"kart_267_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26FCA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275CD0"}}, +"kart_267_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26FD20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275D50"}}, +"kart_267_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26FDA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275DD0"}}, +"kart_267_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x26FE20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275E50"}}, +"kart_268_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x26FEA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275ED0"}}, +"kart_268_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x26FF20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275F50"}}, +"kart_268_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x26FFA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x275FD0"}}, +"kart_268_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x270020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276050"}}, +"kart_269_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2700A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2760D0"}}, +"kart_269_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x270120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276150"}}, +"kart_269_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2701A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2761D0"}}, +"kart_269_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x270220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276250"}}, +"kart_270_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2702A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2762D0"}}, +"kart_270_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x270320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276350"}}, +"kart_270_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2703A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2763D0"}}, +"kart_270_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x270420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276450"}}, +"kart_271_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2704A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2764D0"}}, +"kart_271_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x270520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276550"}}, +"kart_271_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2705A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2765D0"}}, +"kart_271_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x270620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276650"}}, +"kart_272_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2706A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2766D0"}}, +"kart_272_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x270720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276750"}}, +"kart_272_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2707A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2767D0"}}, +"kart_272_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x270820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276850"}}, +"kart_273_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2708A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2768D0"}}, +"kart_273_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x270920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276950"}}, +"kart_273_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2709A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2769D0"}}, +"kart_273_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x270A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276A50"}}, +"kart_274_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x270AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276AD0"}}, +"kart_274_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x270B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276B50"}}, +"kart_274_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x270BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276BD0"}}, +"kart_274_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x270C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276C50"}}, +"kart_275_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x270CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276CD0"}}, +"kart_275_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x270D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276D50"}}, +"kart_275_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x270DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276DD0"}}, +"kart_275_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x270E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276E50"}}, +"kart_276_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x270EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276ED0"}}, +"kart_276_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x270F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276F50"}}, +"kart_276_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x270FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x276FD0"}}, +"kart_276_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x271020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277050"}}, +"kart_277_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2710A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2770D0"}}, +"kart_277_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x271120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277150"}}, +"kart_277_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2711A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2771D0"}}, +"kart_277_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x271220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277250"}}, +"kart_278_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2712A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2772D0"}}, +"kart_278_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x271320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277350"}}, +"kart_278_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2713A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2773D0"}}, +"kart_278_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x271420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277450"}}, +"kart_279_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2714A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2774D0"}}, +"kart_279_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x271520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277550"}}, +"kart_279_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2715A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2775D0"}}, +"kart_279_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x271620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277650"}}, +"kart_280_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2716A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2776D0"}}, +"kart_280_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x271720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277750"}}, +"kart_280_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2717A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2777D0"}}, +"kart_280_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x271820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277850"}}, +"kart_281_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2718A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2778D0"}}, +"kart_281_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x271920", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277950"}}, +"kart_281_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2719A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2779D0"}}, +"kart_281_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x271A20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277A50"}}, +"kart_282_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x271AA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277AD0"}}, +"kart_282_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x271B20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277B50"}}, +"kart_282_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x271BA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277BD0"}}, +"kart_282_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x271C20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277C50"}}, +"kart_283_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x271CA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277CD0"}}, +"kart_283_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x271D20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277D50"}}, +"kart_283_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x271DA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277DD0"}}, +"kart_283_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x271E20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277E50"}}, +"kart_284_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x271EA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277ED0"}}, +"kart_284_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x271F20", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277F50"}}, +"kart_284_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x271FA0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x277FD0"}}, +"kart_284_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x272020", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x278050"}}, +"kart_285_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2720A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2780D0"}}, +"kart_285_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x272120", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x278150"}}, +"kart_285_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2721A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2781D0"}}, +"kart_285_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x272220", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x278250"}}, +"kart_286_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2722A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2782D0"}}, +"kart_286_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x272320", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x278350"}}, +"kart_286_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2723A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2783D0"}}, +"kart_286_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x272420", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x278450"}}, +"kart_287_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2724A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2784D0"}}, +"kart_287_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x272520", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x278550"}}, +"kart_287_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2725A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2785D0"}}, +"kart_287_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x272620", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x278650"}}, +"kart_288_wheel_0": {"output_dir": "mario/palettes", "rom_offset": "0x2726A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2786D0"}}, +"kart_288_wheel_1": {"output_dir": "mario/palettes", "rom_offset": "0x272720", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x278750"}}, +"kart_288_wheel_2": {"output_dir": "mario/palettes", "rom_offset": "0x2727A0", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2787D0"}}, +"kart_288_wheel_3": {"output_dir": "mario/palettes", "rom_offset": "0x272820", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x278850"}}, +"mario_kart_palette": {"output_dir": "mario/palettes", "rom_offset": "0x2728A0", "width": 16, "height": 12, "type": "rgba16", "jp.v11": {"rom_offset": "0x2788D0"}} } \ No newline at end of file diff --git a/assets/karts/peach_kart.json b/assets/karts/peach_kart.json index 0ee27bc9f4..dc0ca0e940 100644 --- a/assets/karts/peach_kart.json +++ b/assets/karts/peach_kart.json @@ -1,1480 +1,1480 @@ { -"peach_kart_frame000": {"output_dir": "peach/frames", "rom_offset": "0x309F50", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame001": {"output_dir": "peach/frames", "rom_offset": "0x30A430", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_001_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame002": {"output_dir": "peach/frames", "rom_offset": "0x30A930", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_002_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame003": {"output_dir": "peach/frames", "rom_offset": "0x30AE34", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_003_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame004": {"output_dir": "peach/frames", "rom_offset": "0x30B354", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_004_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame005": {"output_dir": "peach/frames", "rom_offset": "0x30B874", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_005_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame006": {"output_dir": "peach/frames", "rom_offset": "0x30BD94", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_006_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame007": {"output_dir": "peach/frames", "rom_offset": "0x30C2DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_007_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame008": {"output_dir": "peach/frames", "rom_offset": "0x30C834", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_008_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame009": {"output_dir": "peach/frames", "rom_offset": "0x30CD98", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_009_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame010": {"output_dir": "peach/frames", "rom_offset": "0x30D30C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_010_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame011": {"output_dir": "peach/frames", "rom_offset": "0x30D87C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_011_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame012": {"output_dir": "peach/frames", "rom_offset": "0x30DE04", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_012_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame013": {"output_dir": "peach/frames", "rom_offset": "0x30E388", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_013_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame014": {"output_dir": "peach/frames", "rom_offset": "0x30E910", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_014_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame015": {"output_dir": "peach/frames", "rom_offset": "0x30EE9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_015_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame016": {"output_dir": "peach/frames", "rom_offset": "0x30F424", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_016_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame017": {"output_dir": "peach/frames", "rom_offset": "0x30F9CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_017_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame018": {"output_dir": "peach/frames", "rom_offset": "0x30FF74", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_018_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame019": {"output_dir": "peach/frames", "rom_offset": "0x310518", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_019_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame020": {"output_dir": "peach/frames", "rom_offset": "0x310AD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_020_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame021": {"output_dir": "peach/frames", "rom_offset": "0x311090", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_021_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame022": {"output_dir": "peach/frames", "rom_offset": "0x311554", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_022_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame023": {"output_dir": "peach/frames", "rom_offset": "0x311A3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_023_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame024": {"output_dir": "peach/frames", "rom_offset": "0x311F28", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_024_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame025": {"output_dir": "peach/frames", "rom_offset": "0x312440", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_025_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame026": {"output_dir": "peach/frames", "rom_offset": "0x31296C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_026_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame027": {"output_dir": "peach/frames", "rom_offset": "0x312E7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_027_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame028": {"output_dir": "peach/frames", "rom_offset": "0x3133BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_028_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame029": {"output_dir": "peach/frames", "rom_offset": "0x313918", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_029_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame030": {"output_dir": "peach/frames", "rom_offset": "0x313E88", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_030_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame031": {"output_dir": "peach/frames", "rom_offset": "0x314400", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_031_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame032": {"output_dir": "peach/frames", "rom_offset": "0x314990", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_032_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame033": {"output_dir": "peach/frames", "rom_offset": "0x314F30", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_033_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame034": {"output_dir": "peach/frames", "rom_offset": "0x3154CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_034_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame035": {"output_dir": "peach/frames", "rom_offset": "0x315A54", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_035_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame036": {"output_dir": "peach/frames", "rom_offset": "0x315FF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_036_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame037": {"output_dir": "peach/frames", "rom_offset": "0x31659C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_037_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame038": {"output_dir": "peach/frames", "rom_offset": "0x316B5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_038_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame039": {"output_dir": "peach/frames", "rom_offset": "0x317114", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_039_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame040": {"output_dir": "peach/frames", "rom_offset": "0x3176C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_040_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame041": {"output_dir": "peach/frames", "rom_offset": "0x317C84", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_041_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame042": {"output_dir": "peach/frames", "rom_offset": "0x31824C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_042_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame043": {"output_dir": "peach/frames", "rom_offset": "0x318738", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_043_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame044": {"output_dir": "peach/frames", "rom_offset": "0x318C48", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_044_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame045": {"output_dir": "peach/frames", "rom_offset": "0x319154", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_045_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame046": {"output_dir": "peach/frames", "rom_offset": "0x31967C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_046_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame047": {"output_dir": "peach/frames", "rom_offset": "0x319BA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_047_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame048": {"output_dir": "peach/frames", "rom_offset": "0x31A108", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_048_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame049": {"output_dir": "peach/frames", "rom_offset": "0x31A66C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_049_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame050": {"output_dir": "peach/frames", "rom_offset": "0x31ABEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_050_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame051": {"output_dir": "peach/frames", "rom_offset": "0x31B164", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_051_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame052": {"output_dir": "peach/frames", "rom_offset": "0x31B6F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_052_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame053": {"output_dir": "peach/frames", "rom_offset": "0x31BC78", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_053_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame054": {"output_dir": "peach/frames", "rom_offset": "0x31C218", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_054_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame055": {"output_dir": "peach/frames", "rom_offset": "0x31C7C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_055_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame056": {"output_dir": "peach/frames", "rom_offset": "0x31CD6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_056_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame057": {"output_dir": "peach/frames", "rom_offset": "0x31D308", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_057_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame058": {"output_dir": "peach/frames", "rom_offset": "0x31D8C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_058_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame059": {"output_dir": "peach/frames", "rom_offset": "0x31DE74", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_059_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame060": {"output_dir": "peach/frames", "rom_offset": "0x31E440", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_060_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame061": {"output_dir": "peach/frames", "rom_offset": "0x31EA0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_061_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame062": {"output_dir": "peach/frames", "rom_offset": "0x31EFE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_062_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame063": {"output_dir": "peach/frames", "rom_offset": "0x31F5A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_063_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame064": {"output_dir": "peach/frames", "rom_offset": "0x31FA6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_064_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame065": {"output_dir": "peach/frames", "rom_offset": "0x31FF64", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_065_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame066": {"output_dir": "peach/frames", "rom_offset": "0x320474", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_066_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame067": {"output_dir": "peach/frames", "rom_offset": "0x3209B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_067_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame068": {"output_dir": "peach/frames", "rom_offset": "0x320EE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_068_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame069": {"output_dir": "peach/frames", "rom_offset": "0x321450", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_069_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame070": {"output_dir": "peach/frames", "rom_offset": "0x3219C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_070_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame071": {"output_dir": "peach/frames", "rom_offset": "0x321F30", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_071_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame072": {"output_dir": "peach/frames", "rom_offset": "0x3224A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_072_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame073": {"output_dir": "peach/frames", "rom_offset": "0x322A38", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_073_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame074": {"output_dir": "peach/frames", "rom_offset": "0x322FD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_074_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame075": {"output_dir": "peach/frames", "rom_offset": "0x32356C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_075_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame076": {"output_dir": "peach/frames", "rom_offset": "0x323B10", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_076_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame077": {"output_dir": "peach/frames", "rom_offset": "0x3240BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_077_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame078": {"output_dir": "peach/frames", "rom_offset": "0x324668", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_078_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame079": {"output_dir": "peach/frames", "rom_offset": "0x324C4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_079_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame080": {"output_dir": "peach/frames", "rom_offset": "0x32520C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_080_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame081": {"output_dir": "peach/frames", "rom_offset": "0x3257DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_081_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame082": {"output_dir": "peach/frames", "rom_offset": "0x325DA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_082_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame083": {"output_dir": "peach/frames", "rom_offset": "0x326354", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_083_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame084": {"output_dir": "peach/frames", "rom_offset": "0x326930", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_084_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame085": {"output_dir": "peach/frames", "rom_offset": "0x326E20", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_085_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame086": {"output_dir": "peach/frames", "rom_offset": "0x32732C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_086_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame087": {"output_dir": "peach/frames", "rom_offset": "0x32784C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_087_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame088": {"output_dir": "peach/frames", "rom_offset": "0x327D94", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_088_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame089": {"output_dir": "peach/frames", "rom_offset": "0x3282DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_089_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame090": {"output_dir": "peach/frames", "rom_offset": "0x328848", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_090_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame091": {"output_dir": "peach/frames", "rom_offset": "0x328DC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_091_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame092": {"output_dir": "peach/frames", "rom_offset": "0x32935C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_092_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame093": {"output_dir": "peach/frames", "rom_offset": "0x3298D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_093_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame094": {"output_dir": "peach/frames", "rom_offset": "0x329E74", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_094_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame095": {"output_dir": "peach/frames", "rom_offset": "0x32A420", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_095_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame096": {"output_dir": "peach/frames", "rom_offset": "0x32A9C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_096_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame097": {"output_dir": "peach/frames", "rom_offset": "0x32AF70", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_097_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame098": {"output_dir": "peach/frames", "rom_offset": "0x32B520", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_098_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame099": {"output_dir": "peach/frames", "rom_offset": "0x32BAD0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_099_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame100": {"output_dir": "peach/frames", "rom_offset": "0x32C0A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_100_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame101": {"output_dir": "peach/frames", "rom_offset": "0x32C680", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_101_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame102": {"output_dir": "peach/frames", "rom_offset": "0x32CC70", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_102_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame103": {"output_dir": "peach/frames", "rom_offset": "0x32D240", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_103_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame104": {"output_dir": "peach/frames", "rom_offset": "0x32D7FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_104_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame105": {"output_dir": "peach/frames", "rom_offset": "0x32DDBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_105_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame106": {"output_dir": "peach/frames", "rom_offset": "0x32E2B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_106_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame107": {"output_dir": "peach/frames", "rom_offset": "0x32E7C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_107_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame108": {"output_dir": "peach/frames", "rom_offset": "0x32ECFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_108_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame109": {"output_dir": "peach/frames", "rom_offset": "0x32F254", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_109_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame110": {"output_dir": "peach/frames", "rom_offset": "0x32F7CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_110_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame111": {"output_dir": "peach/frames", "rom_offset": "0x32FD50", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_111_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame112": {"output_dir": "peach/frames", "rom_offset": "0x3302E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_112_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame113": {"output_dir": "peach/frames", "rom_offset": "0x330874", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_113_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame114": {"output_dir": "peach/frames", "rom_offset": "0x330E1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_114_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame115": {"output_dir": "peach/frames", "rom_offset": "0x3313C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_115_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame116": {"output_dir": "peach/frames", "rom_offset": "0x331970", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_116_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame117": {"output_dir": "peach/frames", "rom_offset": "0x331F10", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_117_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame118": {"output_dir": "peach/frames", "rom_offset": "0x3324B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_118_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame119": {"output_dir": "peach/frames", "rom_offset": "0x332A64", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_119_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame120": {"output_dir": "peach/frames", "rom_offset": "0x33303C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_120_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame121": {"output_dir": "peach/frames", "rom_offset": "0x333610", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_121_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame122": {"output_dir": "peach/frames", "rom_offset": "0x333BE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_122_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame123": {"output_dir": "peach/frames", "rom_offset": "0x3341DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_123_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame124": {"output_dir": "peach/frames", "rom_offset": "0x3347C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_124_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame125": {"output_dir": "peach/frames", "rom_offset": "0x334DAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_125_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame126": {"output_dir": "peach/frames", "rom_offset": "0x335388", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_126_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame127": {"output_dir": "peach/frames", "rom_offset": "0x33588C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_127_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame128": {"output_dir": "peach/frames", "rom_offset": "0x335D94", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_128_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame129": {"output_dir": "peach/frames", "rom_offset": "0x3362C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_129_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame130": {"output_dir": "peach/frames", "rom_offset": "0x336814", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_130_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame131": {"output_dir": "peach/frames", "rom_offset": "0x336D8C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_131_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame132": {"output_dir": "peach/frames", "rom_offset": "0x337318", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_132_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame133": {"output_dir": "peach/frames", "rom_offset": "0x3378AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_133_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame134": {"output_dir": "peach/frames", "rom_offset": "0x337E58", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_134_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame135": {"output_dir": "peach/frames", "rom_offset": "0x338400", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_135_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame136": {"output_dir": "peach/frames", "rom_offset": "0x3389B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_136_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame137": {"output_dir": "peach/frames", "rom_offset": "0x338F50", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_137_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame138": {"output_dir": "peach/frames", "rom_offset": "0x3394F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_138_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame139": {"output_dir": "peach/frames", "rom_offset": "0x339AA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_139_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame140": {"output_dir": "peach/frames", "rom_offset": "0x33A058", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_140_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame141": {"output_dir": "peach/frames", "rom_offset": "0x33A630", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_141_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame142": {"output_dir": "peach/frames", "rom_offset": "0x33AC18", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_142_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame143": {"output_dir": "peach/frames", "rom_offset": "0x33B208", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_143_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame144": {"output_dir": "peach/frames", "rom_offset": "0x33B7EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_144_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame145": {"output_dir": "peach/frames", "rom_offset": "0x33BDD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_145_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame146": {"output_dir": "peach/frames", "rom_offset": "0x33C3C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_146_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame147": {"output_dir": "peach/frames", "rom_offset": "0x33C990", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_147_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame148": {"output_dir": "peach/frames", "rom_offset": "0x33CE90", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_148_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame149": {"output_dir": "peach/frames", "rom_offset": "0x33D3C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_149_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame150": {"output_dir": "peach/frames", "rom_offset": "0x33D8EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_150_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame151": {"output_dir": "peach/frames", "rom_offset": "0x33DE54", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_151_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame152": {"output_dir": "peach/frames", "rom_offset": "0x33E3DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_152_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame153": {"output_dir": "peach/frames", "rom_offset": "0x33E984", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_153_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame154": {"output_dir": "peach/frames", "rom_offset": "0x33EF2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_154_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame155": {"output_dir": "peach/frames", "rom_offset": "0x33F4D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_155_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame156": {"output_dir": "peach/frames", "rom_offset": "0x33FA98", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_156_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame157": {"output_dir": "peach/frames", "rom_offset": "0x34004C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_157_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame158": {"output_dir": "peach/frames", "rom_offset": "0x340610", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_158_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame159": {"output_dir": "peach/frames", "rom_offset": "0x340BC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_159_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame160": {"output_dir": "peach/frames", "rom_offset": "0x341198", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_160_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame161": {"output_dir": "peach/frames", "rom_offset": "0x34177C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_161_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame162": {"output_dir": "peach/frames", "rom_offset": "0x341D50", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_162_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame163": {"output_dir": "peach/frames", "rom_offset": "0x342348", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_163_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame164": {"output_dir": "peach/frames", "rom_offset": "0x342930", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_164_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame165": {"output_dir": "peach/frames", "rom_offset": "0x342F18", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_165_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame166": {"output_dir": "peach/frames", "rom_offset": "0x343508", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_166_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame167": {"output_dir": "peach/frames", "rom_offset": "0x343AF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_167_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame168": {"output_dir": "peach/frames", "rom_offset": "0x3440DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_168_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame169": {"output_dir": "peach/frames", "rom_offset": "0x3445E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_169_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame170": {"output_dir": "peach/frames", "rom_offset": "0x344B08", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_170_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame171": {"output_dir": "peach/frames", "rom_offset": "0x34504C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_171_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame172": {"output_dir": "peach/frames", "rom_offset": "0x3455A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_172_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame173": {"output_dir": "peach/frames", "rom_offset": "0x345B2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_173_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame174": {"output_dir": "peach/frames", "rom_offset": "0x3460D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_174_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame175": {"output_dir": "peach/frames", "rom_offset": "0x346698", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_175_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame176": {"output_dir": "peach/frames", "rom_offset": "0x346C64", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_176_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame177": {"output_dir": "peach/frames", "rom_offset": "0x347244", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_177_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame178": {"output_dir": "peach/frames", "rom_offset": "0x347810", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_178_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame179": {"output_dir": "peach/frames", "rom_offset": "0x347DF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_179_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame180": {"output_dir": "peach/frames", "rom_offset": "0x3483D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_180_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame181": {"output_dir": "peach/frames", "rom_offset": "0x3489B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_181_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame182": {"output_dir": "peach/frames", "rom_offset": "0x348F90", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_182_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame183": {"output_dir": "peach/frames", "rom_offset": "0x349590", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_183_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame184": {"output_dir": "peach/frames", "rom_offset": "0x349B9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_184_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame185": {"output_dir": "peach/frames", "rom_offset": "0x34A198", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_185_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame186": {"output_dir": "peach/frames", "rom_offset": "0x34A790", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_186_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame187": {"output_dir": "peach/frames", "rom_offset": "0x34AD78", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_187_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame188": {"output_dir": "peach/frames", "rom_offset": "0x34B374", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_188_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame189": {"output_dir": "peach/frames", "rom_offset": "0x34B960", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_189_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame190": {"output_dir": "peach/frames", "rom_offset": "0x34BE68", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_190_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame191": {"output_dir": "peach/frames", "rom_offset": "0x34C370", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_191_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame192": {"output_dir": "peach/frames", "rom_offset": "0x34C8A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_192_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame193": {"output_dir": "peach/frames", "rom_offset": "0x34CE1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_193_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame194": {"output_dir": "peach/frames", "rom_offset": "0x34D3A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_194_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame195": {"output_dir": "peach/frames", "rom_offset": "0x34D944", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_195_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame196": {"output_dir": "peach/frames", "rom_offset": "0x34DEF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_196_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame197": {"output_dir": "peach/frames", "rom_offset": "0x34E4D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_197_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame198": {"output_dir": "peach/frames", "rom_offset": "0x34EAA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_198_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame199": {"output_dir": "peach/frames", "rom_offset": "0x34F09C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_199_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame200": {"output_dir": "peach/frames", "rom_offset": "0x34F6B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_200_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame201": {"output_dir": "peach/frames", "rom_offset": "0x34FCF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_201_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame202": {"output_dir": "peach/frames", "rom_offset": "0x350318", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_202_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame203": {"output_dir": "peach/frames", "rom_offset": "0x350928", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_203_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame204": {"output_dir": "peach/frames", "rom_offset": "0x350F28", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_204_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame205": {"output_dir": "peach/frames", "rom_offset": "0x351538", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_205_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame206": {"output_dir": "peach/frames", "rom_offset": "0x351B30", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_206_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame207": {"output_dir": "peach/frames", "rom_offset": "0x35211C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_207_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame208": {"output_dir": "peach/frames", "rom_offset": "0x352720", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_208_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame209": {"output_dir": "peach/frames", "rom_offset": "0x352CF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_209_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame210": {"output_dir": "peach/frames", "rom_offset": "0x3531F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_210_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame211": {"output_dir": "peach/frames", "rom_offset": "0x353724", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_211_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame212": {"output_dir": "peach/frames", "rom_offset": "0x353C90", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_212_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame213": {"output_dir": "peach/frames", "rom_offset": "0x354218", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_213_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame214": {"output_dir": "peach/frames", "rom_offset": "0x3547A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_214_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame215": {"output_dir": "peach/frames", "rom_offset": "0x354D48", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_215_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame216": {"output_dir": "peach/frames", "rom_offset": "0x35530C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_216_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame217": {"output_dir": "peach/frames", "rom_offset": "0x3558CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_217_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame218": {"output_dir": "peach/frames", "rom_offset": "0x355EB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_218_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame219": {"output_dir": "peach/frames", "rom_offset": "0x356494", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_219_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame220": {"output_dir": "peach/frames", "rom_offset": "0x356A88", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_220_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame221": {"output_dir": "peach/frames", "rom_offset": "0x35708C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_221_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame222": {"output_dir": "peach/frames", "rom_offset": "0x35766C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_222_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame223": {"output_dir": "peach/frames", "rom_offset": "0x357C54", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_223_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame224": {"output_dir": "peach/frames", "rom_offset": "0x35822C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_224_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame225": {"output_dir": "peach/frames", "rom_offset": "0x35881C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_225_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame226": {"output_dir": "peach/frames", "rom_offset": "0x358DF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_226_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame227": {"output_dir": "peach/frames", "rom_offset": "0x3593AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_227_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame228": {"output_dir": "peach/frames", "rom_offset": "0x359968", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_228_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame229": {"output_dir": "peach/frames", "rom_offset": "0x359F04", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_229_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame230": {"output_dir": "peach/frames", "rom_offset": "0x35A424", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_230_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame231": {"output_dir": "peach/frames", "rom_offset": "0x35A964", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_231_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame232": {"output_dir": "peach/frames", "rom_offset": "0x35AEEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_232_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame233": {"output_dir": "peach/frames", "rom_offset": "0x35B47C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_233_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame234": {"output_dir": "peach/frames", "rom_offset": "0x35BA40", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_234_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame235": {"output_dir": "peach/frames", "rom_offset": "0x35BFF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_235_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame236": {"output_dir": "peach/frames", "rom_offset": "0x35C5B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_236_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame237": {"output_dir": "peach/frames", "rom_offset": "0x35CB7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_237_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame238": {"output_dir": "peach/frames", "rom_offset": "0x35D164", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_238_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame239": {"output_dir": "peach/frames", "rom_offset": "0x35D750", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_239_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame240": {"output_dir": "peach/frames", "rom_offset": "0x35DD48", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_240_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame241": {"output_dir": "peach/frames", "rom_offset": "0x35E334", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_241_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame242": {"output_dir": "peach/frames", "rom_offset": "0x35E914", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_242_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame243": {"output_dir": "peach/frames", "rom_offset": "0x35EEE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_243_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame244": {"output_dir": "peach/frames", "rom_offset": "0x35F498", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_244_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame245": {"output_dir": "peach/frames", "rom_offset": "0x35FA68", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_245_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame246": {"output_dir": "peach/frames", "rom_offset": "0x360024", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_246_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame247": {"output_dir": "peach/frames", "rom_offset": "0x3605C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_247_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame248": {"output_dir": "peach/frames", "rom_offset": "0x360B30", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_248_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame249": {"output_dir": "peach/frames", "rom_offset": "0x361088", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_249_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame250": {"output_dir": "peach/frames", "rom_offset": "0x3615A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_250_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame251": {"output_dir": "peach/frames", "rom_offset": "0x361AF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_251_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame252": {"output_dir": "peach/frames", "rom_offset": "0x362068", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_252_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame253": {"output_dir": "peach/frames", "rom_offset": "0x3625FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_253_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame254": {"output_dir": "peach/frames", "rom_offset": "0x362BB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_254_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame255": {"output_dir": "peach/frames", "rom_offset": "0x363170", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_255_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame256": {"output_dir": "peach/frames", "rom_offset": "0x36373C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_256_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame257": {"output_dir": "peach/frames", "rom_offset": "0x363D2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_257_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame258": {"output_dir": "peach/frames", "rom_offset": "0x364328", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_258_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame259": {"output_dir": "peach/frames", "rom_offset": "0x36491C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_259_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame260": {"output_dir": "peach/frames", "rom_offset": "0x364F04", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_260_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame261": {"output_dir": "peach/frames", "rom_offset": "0x3654F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_261_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame262": {"output_dir": "peach/frames", "rom_offset": "0x365AAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_262_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame263": {"output_dir": "peach/frames", "rom_offset": "0x366060", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_263_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame264": {"output_dir": "peach/frames", "rom_offset": "0x3665E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_264_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame265": {"output_dir": "peach/frames", "rom_offset": "0x366B8C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_265_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame266": {"output_dir": "peach/frames", "rom_offset": "0x367110", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_266_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame267": {"output_dir": "peach/frames", "rom_offset": "0x367668", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_267_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame268": {"output_dir": "peach/frames", "rom_offset": "0x367B9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_268_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame269": {"output_dir": "peach/frames", "rom_offset": "0x3680C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_269_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame270": {"output_dir": "peach/frames", "rom_offset": "0x3685F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_270_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame271": {"output_dir": "peach/frames", "rom_offset": "0x368B54", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_271_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame272": {"output_dir": "peach/frames", "rom_offset": "0x3690E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_272_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame273": {"output_dir": "peach/frames", "rom_offset": "0x36967C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_273_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame274": {"output_dir": "peach/frames", "rom_offset": "0x369C20", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_274_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame275": {"output_dir": "peach/frames", "rom_offset": "0x36A1F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_275_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame276": {"output_dir": "peach/frames", "rom_offset": "0x36A7D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_276_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame277": {"output_dir": "peach/frames", "rom_offset": "0x36ADAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_277_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame278": {"output_dir": "peach/frames", "rom_offset": "0x36B3A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_278_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame279": {"output_dir": "peach/frames", "rom_offset": "0x36B980", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_279_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame280": {"output_dir": "peach/frames", "rom_offset": "0x36BF70", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_280_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame281": {"output_dir": "peach/frames", "rom_offset": "0x36C524", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_281_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame282": {"output_dir": "peach/frames", "rom_offset": "0x36CABC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_282_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame283": {"output_dir": "peach/frames", "rom_offset": "0x36D050", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_283_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame284": {"output_dir": "peach/frames", "rom_offset": "0x36D5E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_284_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame285": {"output_dir": "peach/frames", "rom_offset": "0x36DB50", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_285_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame286": {"output_dir": "peach/frames", "rom_offset": "0x36E094", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_286_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame287": {"output_dir": "peach/frames", "rom_offset": "0x36E5B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_287_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame288": {"output_dir": "peach/frames", "rom_offset": "0x36EAB4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_288_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame289": {"output_dir": "peach/frames", "rom_offset": "0x36EF90", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame290": {"output_dir": "peach/frames", "rom_offset": "0x36F420", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame291": {"output_dir": "peach/frames", "rom_offset": "0x36F908", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame292": {"output_dir": "peach/frames", "rom_offset": "0x36FE98", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame293": {"output_dir": "peach/frames", "rom_offset": "0x3704FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame294": {"output_dir": "peach/frames", "rom_offset": "0x370B30", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame295": {"output_dir": "peach/frames", "rom_offset": "0x371168", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame296": {"output_dir": "peach/frames", "rom_offset": "0x3716CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame297": {"output_dir": "peach/frames", "rom_offset": "0x371BCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame298": {"output_dir": "peach/frames", "rom_offset": "0x3720A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame299": {"output_dir": "peach/frames", "rom_offset": "0x372628", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame300": {"output_dir": "peach/frames", "rom_offset": "0x372BD0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame301": {"output_dir": "peach/frames", "rom_offset": "0x37317C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame302": {"output_dir": "peach/frames", "rom_offset": "0x3736EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame303": {"output_dir": "peach/frames", "rom_offset": "0x373C0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame304": {"output_dir": "peach/frames", "rom_offset": "0x3740EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame305": {"output_dir": "peach/frames", "rom_offset": "0x3745E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame306": {"output_dir": "peach/frames", "rom_offset": "0x374A84", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame307": {"output_dir": "peach/frames", "rom_offset": "0x375020", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame308": {"output_dir": "peach/frames", "rom_offset": "0x37567C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame309": {"output_dir": "peach/frames", "rom_offset": "0x375D04", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame310": {"output_dir": "peach/frames", "rom_offset": "0x3762F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame311": {"output_dir": "peach/frames", "rom_offset": "0x3768D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame312": {"output_dir": "peach/frames", "rom_offset": "0x376E18", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame313": {"output_dir": "peach/frames", "rom_offset": "0x3772D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame314": {"output_dir": "peach/frames", "rom_offset": "0x3777AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame315": {"output_dir": "peach/frames", "rom_offset": "0x377D18", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame316": {"output_dir": "peach/frames", "rom_offset": "0x3782DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame317": {"output_dir": "peach/frames", "rom_offset": "0x37886C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame318": {"output_dir": "peach/frames", "rom_offset": "0x378DF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame319": {"output_dir": "peach/frames", "rom_offset": "0x379350", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"peach_kart_frame320": {"output_dir": "peach/frames", "rom_offset": "0x379864", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"kart_000_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x379D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x379DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x379E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x379EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x379F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x379FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37A038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37A0B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37A138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37A1B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37A238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37A2B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37A338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37A3B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37A438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37A4B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37A538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37A5B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37A638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37A6B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37A738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37A7B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37A838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37A8B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37A938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37A9B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37AA38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37AAB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37AB38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37ABB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37AC38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37ACB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37AD38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37ADB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37AE38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37AEB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37AF38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37AFB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37B038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37B0B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37B138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37B1B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37B238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37B2B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37B338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37B3B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37B438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37B4B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37B538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37B5B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37B638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37B6B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37B738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37B7B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37B838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37B8B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37B938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37B9B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37BA38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37BAB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37BB38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37BBB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37BC38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37BCB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37BD38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37BDB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37BE38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37BEB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37BF38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37BFB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37C038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37C0B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37C138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37C1B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37C238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37C2B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37C338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37C3B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37C438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37C4B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37C538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37C5B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37C638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37C6B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37C738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37C7B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37C838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37C8B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37C938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37C9B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37CA38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37CAB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37CB38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37CBB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37CC38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37CCB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37CD38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37CDB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37CE38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37CEB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37CF38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37CFB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37D038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37D0B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37D138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37D1B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37D238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37D2B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37D338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37D3B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37D438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37D4B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37D538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37D5B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37D638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37D6B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37D738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37D7B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37D838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37D8B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37D938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37D9B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37DA38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37DAB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37DB38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37DBB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37DC38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37DCB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37DD38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37DDB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37DE38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37DEB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37DF38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37DFB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37E038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37E0B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37E138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37E1B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37E238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37E2B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37E338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37E3B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37E438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37E4B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37E538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37E5B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37E638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37E6B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37E738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37E7B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37E838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37E8B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37E938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37E9B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37EA38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37EAB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37EB38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37EBB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37EC38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37ECB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37ED38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37EDB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37EE38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37EEB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37EF38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37EFB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37F038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37F0B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37F138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37F1B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37F238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37F2B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37F338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37F3B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37F438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37F4B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37F538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37F5B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37F638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37F6B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37F738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37F7B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37F838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37F8B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37F938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37F9B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37FA38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37FAB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37FB38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37FBB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37FC38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37FCB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37FD38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37FDB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37FE38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37FEB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37FF38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37FFB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x380038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3800B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x380138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3801B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x380238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3802B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x380338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3803B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x380438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3804B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x380538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3805B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x380638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3806B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x380738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3807B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x380838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3808B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x380938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3809B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x380A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x380AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x380B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x380BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x380C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x380CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x380D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x380DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x380E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x380EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x380F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x380FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x381038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3810B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x381138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3811B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x381238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3812B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x381338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3813B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x381438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3814B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x381538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3815B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x381638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3816B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x381738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3817B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x381838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3818B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x381938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3819B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x381A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x381AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x381B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x381BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x381C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x381CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x381D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x381DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x381E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x381EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x381F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x381FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x382038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3820B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x382138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3821B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x382238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3822B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x382338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3823B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x382438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3824B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x382538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3825B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x382638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3826B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x382738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3827B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x382838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3828B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x382938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3829B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x382A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x382AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x382B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x382BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x382C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x382CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x382D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x382DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x382E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x382EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x382F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x382FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x383038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3830B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x383138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3831B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x383238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3832B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x383338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3833B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x383438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3834B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x383538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3835B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x383638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3836B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x383738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3837B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x383838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3838B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x383938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3839B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x383A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x383AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x383B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x383BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x383C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x383CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x383D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x383DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x383E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x383EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x383F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x383FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x384038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3840B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x384138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3841B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x384238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3842B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x384338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3843B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x384438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3844B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x384538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3845B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x384638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3846B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x384738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3847B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x384838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3848B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x384938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3849B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x384A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x384AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x384B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x384BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x384C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x384CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x384D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x384DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x384E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x384EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x384F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x384FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x385038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3850B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x385138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3851B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x385238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3852B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x385338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3853B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x385438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3854B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x385538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3855B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x385638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3856B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x385738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3857B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x385838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3858B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x385938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3859B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x385A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x385AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x385B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x385BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x385C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x385CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x385D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x385DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x385E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x385EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x385F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x385FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x386038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3860B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x386138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3861B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x386238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3862B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x386338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3863B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x386438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3864B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x386538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3865B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x386638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3866B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x386738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3867B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x386838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3868B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x386938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3869B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x386A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x386AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x386B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x386BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x386C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x386CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x386D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x386DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x386E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x386EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x386F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x386FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x387038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3870B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x387138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3871B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x387238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3872B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x387338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3873B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x387438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3874B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x387538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3875B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x387638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3876B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x387738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3877B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x387838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3878B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x387938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3879B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x387A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x387AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x387B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x387BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x387C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x387CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x387D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x387DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x387E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x387EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x387F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x387FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x388038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3880B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x388138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3881B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x388238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3882B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x388338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3883B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x388438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3884B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x388538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3885B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x388638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3886B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x388738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3887B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x388838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3888B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x388938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3889B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x388A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x388AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x388B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x388BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x388C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x388CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x388D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x388DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x388E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x388EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x388F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x388FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x389038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3890B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x389138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3891B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x389238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3892B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x389338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3893B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x389438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3894B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x389538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3895B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x389638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3896B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x389738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3897B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x389838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3898B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x389938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3899B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x389A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x389AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x389B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x389BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x389C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x389CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x389D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x389DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x389E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x389EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x389F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x389FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38A038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38A0B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38A138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38A1B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38A238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38A2B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38A338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38A3B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38A438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38A4B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38A538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38A5B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38A638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38A6B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38A738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38A7B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38A838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38A8B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38A938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38A9B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38AA38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38AAB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38AB38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38ABB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38AC38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38ACB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38AD38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38ADB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38AE38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38AEB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38AF38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38AFB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38B038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38B0B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38B138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38B1B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38B238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38B2B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38B338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38B3B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38B438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38B4B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38B538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38B5B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38B638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38B6B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38B738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38B7B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38B838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38B8B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38B938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38B9B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38BA38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38BAB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38BB38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38BBB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38BC38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38BCB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38BD38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38BDB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38BE38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38BEB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38BF38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38BFB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38C038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38C0B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38C138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38C1B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38C238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38C2B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38C338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38C3B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38C438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38C4B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38C538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38C5B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38C638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38C6B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38C738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38C7B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38C838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38C8B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38C938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38C9B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38CA38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38CAB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38CB38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38CBB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38CC38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38CCB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38CD38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38CDB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38CE38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38CEB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38CF38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38CFB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38D038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38D0B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38D138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38D1B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38D238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38D2B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38D338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38D3B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38D438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38D4B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38D538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38D5B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38D638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38D6B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38D738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38D7B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38D838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38D8B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38D938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38D9B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38DA38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38DAB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38DB38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38DBB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38DC38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38DCB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38DD38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38DDB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38DE38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38DEB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38DF38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38DFB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38E038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38E0B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38E138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38E1B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38E238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38E2B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38E338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38E3B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38E438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38E4B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38E538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38E5B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38E638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38E6B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38E738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38E7B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38E838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38E8B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38E938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38E9B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38EA38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38EAB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38EB38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38EBB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38EC38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38ECB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38ED38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38EDB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38EE38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38EEB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38EF38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38EFB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38F038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38F0B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38F138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38F1B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38F238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38F2B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38F338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38F3B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38F438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38F4B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38F538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38F5B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38F638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38F6B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38F738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38F7B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38F838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38F8B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38F938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38F9B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38FA38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38FAB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38FB38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38FBB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38FC38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38FCB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38FD38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38FDB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38FE38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38FEB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38FF38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38FFB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x390038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3900B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x390138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3901B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x390238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3902B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x390338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3903B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x390438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3904B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x390538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3905B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x390638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3906B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x390738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3907B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x390838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3908B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x390938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3909B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x390A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x390AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x390B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x390BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x390C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x390CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x390D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x390DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x390E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x390EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x390F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x390FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x391038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3910B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x391138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3911B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x391238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3912B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x391338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3913B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x391438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3914B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x391538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3915B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x391638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3916B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x391738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3917B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x391838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3918B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x391938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3919B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x391A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x391AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x391B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x391BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x391C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x391CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x391D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x391DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x391E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x391EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x391F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x391FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x392038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3920B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x392138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3921B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x392238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3922B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x392338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3923B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x392438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3924B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x392538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3925B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x392638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3926B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x392738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3927B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x392838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3928B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x392938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3929B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x392A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x392AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x392B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x392BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x392C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x392CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x392D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x392DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x392E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x392EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x392F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x392FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x393038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3930B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x393138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3931B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x393238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3932B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x393338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3933B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x393438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3934B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x393538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3935B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x393638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3936B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x393738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3937B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x393838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3938B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x393938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3939B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x393A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x393AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x393B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x393BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x393C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x393CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x393D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x393DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x393E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x393EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x393F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x393FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x394038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3940B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x394138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3941B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x394238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3942B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x394338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3943B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x394438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3944B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x394538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3945B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x394638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3946B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x394738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3947B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x394838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3948B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x394938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3949B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x394A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x394AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x394B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x394BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x394C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x394CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x394D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x394DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x394E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x394EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x394F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x394FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x395038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3950B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x395138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3951B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x395238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3952B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x395338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3953B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x395438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3954B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x395538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3955B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x395638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3956B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x395738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3957B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x395838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3958B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x395938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3959B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x395A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x395AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x395B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x395BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x395C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x395CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x395D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x395DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x395E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x395EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x395F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x395FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x396038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3960B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x396138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3961B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x396238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3962B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x396338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3963B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x396438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3964B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x396538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3965B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x396638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3966B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x396738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3967B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x396838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3968B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x396938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3969B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x396A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x396AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x396B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x396BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x396C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x396CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x396D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x396DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x396E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x396EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x396F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x396FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x397038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3970B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x397138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3971B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x397238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3972B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x397338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3973B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x397438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3974B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x397538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3975B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x397638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3976B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x397738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3977B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x397838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3978B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x397938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3979B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x397A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x397AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x397B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x397BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x397C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x397CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x397D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x397DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x397E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x397EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x397F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x397FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x398038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3980B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x398138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3981B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x398238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3982B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x398338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3983B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x398438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3984B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x398538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3985B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x398638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3986B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x398738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3987B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x398838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3988B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x398938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3989B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x398A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x398AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x398B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x398BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x398C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x398CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x398D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x398DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x398E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x398EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x398F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x398FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x399038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3990B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x399138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3991B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x399238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3992B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x399338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3993B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x399438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3994B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x399538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3995B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x399638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3996B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x399738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3997B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x399838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3998B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x399938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3999B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x399A38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x399AB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x399B38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x399BB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x399C38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x399CB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x399D38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x399DB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x399E38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x399EB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x399F38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x399FB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39A038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39A0B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39A138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39A1B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39A238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39A2B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39A338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39A3B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39A438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39A4B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39A538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39A5B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39A638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39A6B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39A738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39A7B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39A838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39A8B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39A938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39A9B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39AA38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39AAB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39AB38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39ABB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39AC38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39ACB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39AD38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39ADB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39AE38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39AEB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39AF38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39AFB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39B038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39B0B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39B138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39B1B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39B238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39B2B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39B338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39B3B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39B438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39B4B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39B538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39B5B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39B638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39B6B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39B738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39B7B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39B838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39B8B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39B938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39B9B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39BA38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39BAB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39BB38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39BBB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39BC38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39BCB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39BD38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39BDB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39BE38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39BEB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39BF38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39BFB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39C038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39C0B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39C138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39C1B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39C238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39C2B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39C338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39C3B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39C438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39C4B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39C538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39C5B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39C638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39C6B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39C738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39C7B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39C838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39C8B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39C938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39C9B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39CA38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39CAB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39CB38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39CBB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39CC38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39CCB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39CD38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39CDB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39CE38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39CEB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39CF38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39CFB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39D038", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39D0B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39D138", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39D1B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39D238", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39D2B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39D338", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39D3B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39D438", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39D4B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39D538", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39D5B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39D638", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39D6B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39D738", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39D7B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39D838", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39D8B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39D938", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39D9B8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39DA38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39DAB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39DB38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39DBB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39DC38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39DCB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39DD38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39DDB8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39DE38", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39DEB8", "width": 16, "height": 4, "type": "rgba16"}, -"peach_kart_palette": {"output_dir": "peach/palettes", "rom_offset": "0x39DF38", "width": 16, "height": 12, "type": "rgba16"} +"peach_kart_frame000": {"output_dir": "peach/frames", "rom_offset": "0x309F50", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x30FF80"}}, +"peach_kart_frame001": {"output_dir": "peach/frames", "rom_offset": "0x30A430", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_001_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x310460"}}, +"peach_kart_frame002": {"output_dir": "peach/frames", "rom_offset": "0x30A930", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_002_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x310960"}}, +"peach_kart_frame003": {"output_dir": "peach/frames", "rom_offset": "0x30AE34", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_003_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x310E64"}}, +"peach_kart_frame004": {"output_dir": "peach/frames", "rom_offset": "0x30B354", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_004_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x311384"}}, +"peach_kart_frame005": {"output_dir": "peach/frames", "rom_offset": "0x30B874", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_005_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3118A4"}}, +"peach_kart_frame006": {"output_dir": "peach/frames", "rom_offset": "0x30BD94", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_006_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x311DC4"}}, +"peach_kart_frame007": {"output_dir": "peach/frames", "rom_offset": "0x30C2DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_007_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31230C"}}, +"peach_kart_frame008": {"output_dir": "peach/frames", "rom_offset": "0x30C834", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_008_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x312864"}}, +"peach_kart_frame009": {"output_dir": "peach/frames", "rom_offset": "0x30CD98", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_009_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x312DC8"}}, +"peach_kart_frame010": {"output_dir": "peach/frames", "rom_offset": "0x30D30C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_010_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31333C"}}, +"peach_kart_frame011": {"output_dir": "peach/frames", "rom_offset": "0x30D87C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_011_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3138AC"}}, +"peach_kart_frame012": {"output_dir": "peach/frames", "rom_offset": "0x30DE04", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_012_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x313E34"}}, +"peach_kart_frame013": {"output_dir": "peach/frames", "rom_offset": "0x30E388", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_013_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3143B8"}}, +"peach_kart_frame014": {"output_dir": "peach/frames", "rom_offset": "0x30E910", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_014_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x314940"}}, +"peach_kart_frame015": {"output_dir": "peach/frames", "rom_offset": "0x30EE9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_015_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x314ECC"}}, +"peach_kart_frame016": {"output_dir": "peach/frames", "rom_offset": "0x30F424", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_016_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x315454"}}, +"peach_kart_frame017": {"output_dir": "peach/frames", "rom_offset": "0x30F9CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_017_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3159FC"}}, +"peach_kart_frame018": {"output_dir": "peach/frames", "rom_offset": "0x30FF74", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_018_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x315FA4"}}, +"peach_kart_frame019": {"output_dir": "peach/frames", "rom_offset": "0x310518", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_019_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x316548"}}, +"peach_kart_frame020": {"output_dir": "peach/frames", "rom_offset": "0x310AD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_020_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x316B04"}}, +"peach_kart_frame021": {"output_dir": "peach/frames", "rom_offset": "0x311090", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_021_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3170C0"}}, +"peach_kart_frame022": {"output_dir": "peach/frames", "rom_offset": "0x311554", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_022_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x317584"}}, +"peach_kart_frame023": {"output_dir": "peach/frames", "rom_offset": "0x311A3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_023_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x317A6C"}}, +"peach_kart_frame024": {"output_dir": "peach/frames", "rom_offset": "0x311F28", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_024_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x317F58"}}, +"peach_kart_frame025": {"output_dir": "peach/frames", "rom_offset": "0x312440", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_025_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x318470"}}, +"peach_kart_frame026": {"output_dir": "peach/frames", "rom_offset": "0x31296C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_026_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31899C"}}, +"peach_kart_frame027": {"output_dir": "peach/frames", "rom_offset": "0x312E7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_027_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x318EAC"}}, +"peach_kart_frame028": {"output_dir": "peach/frames", "rom_offset": "0x3133BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_028_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3193EC"}}, +"peach_kart_frame029": {"output_dir": "peach/frames", "rom_offset": "0x313918", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_029_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x319948"}}, +"peach_kart_frame030": {"output_dir": "peach/frames", "rom_offset": "0x313E88", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_030_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x319EB8"}}, +"peach_kart_frame031": {"output_dir": "peach/frames", "rom_offset": "0x314400", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_031_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31A430"}}, +"peach_kart_frame032": {"output_dir": "peach/frames", "rom_offset": "0x314990", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_032_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31A9C0"}}, +"peach_kart_frame033": {"output_dir": "peach/frames", "rom_offset": "0x314F30", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_033_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31AF60"}}, +"peach_kart_frame034": {"output_dir": "peach/frames", "rom_offset": "0x3154CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_034_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31B4FC"}}, +"peach_kart_frame035": {"output_dir": "peach/frames", "rom_offset": "0x315A54", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_035_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31BA84"}}, +"peach_kart_frame036": {"output_dir": "peach/frames", "rom_offset": "0x315FF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_036_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31C020"}}, +"peach_kart_frame037": {"output_dir": "peach/frames", "rom_offset": "0x31659C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_037_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31C5CC"}}, +"peach_kart_frame038": {"output_dir": "peach/frames", "rom_offset": "0x316B5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_038_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31CB8C"}}, +"peach_kart_frame039": {"output_dir": "peach/frames", "rom_offset": "0x317114", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_039_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31D144"}}, +"peach_kart_frame040": {"output_dir": "peach/frames", "rom_offset": "0x3176C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_040_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31D6F4"}}, +"peach_kart_frame041": {"output_dir": "peach/frames", "rom_offset": "0x317C84", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_041_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31DCB4"}}, +"peach_kart_frame042": {"output_dir": "peach/frames", "rom_offset": "0x31824C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_042_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31E27C"}}, +"peach_kart_frame043": {"output_dir": "peach/frames", "rom_offset": "0x318738", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_043_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31E768"}}, +"peach_kart_frame044": {"output_dir": "peach/frames", "rom_offset": "0x318C48", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_044_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31EC78"}}, +"peach_kart_frame045": {"output_dir": "peach/frames", "rom_offset": "0x319154", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_045_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31F184"}}, +"peach_kart_frame046": {"output_dir": "peach/frames", "rom_offset": "0x31967C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_046_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31F6AC"}}, +"peach_kart_frame047": {"output_dir": "peach/frames", "rom_offset": "0x319BA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_047_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x31FBD4"}}, +"peach_kart_frame048": {"output_dir": "peach/frames", "rom_offset": "0x31A108", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_048_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x320138"}}, +"peach_kart_frame049": {"output_dir": "peach/frames", "rom_offset": "0x31A66C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_049_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32069C"}}, +"peach_kart_frame050": {"output_dir": "peach/frames", "rom_offset": "0x31ABEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_050_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x320C1C"}}, +"peach_kart_frame051": {"output_dir": "peach/frames", "rom_offset": "0x31B164", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_051_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x321194"}}, +"peach_kart_frame052": {"output_dir": "peach/frames", "rom_offset": "0x31B6F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_052_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x321720"}}, +"peach_kart_frame053": {"output_dir": "peach/frames", "rom_offset": "0x31BC78", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_053_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x321CA8"}}, +"peach_kart_frame054": {"output_dir": "peach/frames", "rom_offset": "0x31C218", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_054_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x322248"}}, +"peach_kart_frame055": {"output_dir": "peach/frames", "rom_offset": "0x31C7C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_055_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3227F0"}}, +"peach_kart_frame056": {"output_dir": "peach/frames", "rom_offset": "0x31CD6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_056_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x322D9C"}}, +"peach_kart_frame057": {"output_dir": "peach/frames", "rom_offset": "0x31D308", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_057_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x323338"}}, +"peach_kart_frame058": {"output_dir": "peach/frames", "rom_offset": "0x31D8C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_058_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3238F4"}}, +"peach_kart_frame059": {"output_dir": "peach/frames", "rom_offset": "0x31DE74", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_059_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x323EA4"}}, +"peach_kart_frame060": {"output_dir": "peach/frames", "rom_offset": "0x31E440", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_060_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x324470"}}, +"peach_kart_frame061": {"output_dir": "peach/frames", "rom_offset": "0x31EA0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_061_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x324A3C"}}, +"peach_kart_frame062": {"output_dir": "peach/frames", "rom_offset": "0x31EFE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_062_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x325014"}}, +"peach_kart_frame063": {"output_dir": "peach/frames", "rom_offset": "0x31F5A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_063_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3255D0"}}, +"peach_kart_frame064": {"output_dir": "peach/frames", "rom_offset": "0x31FA6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_064_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x325A9C"}}, +"peach_kart_frame065": {"output_dir": "peach/frames", "rom_offset": "0x31FF64", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_065_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x325F94"}}, +"peach_kart_frame066": {"output_dir": "peach/frames", "rom_offset": "0x320474", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_066_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3264A4"}}, +"peach_kart_frame067": {"output_dir": "peach/frames", "rom_offset": "0x3209B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_067_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3269E4"}}, +"peach_kart_frame068": {"output_dir": "peach/frames", "rom_offset": "0x320EE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_068_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x326F18"}}, +"peach_kart_frame069": {"output_dir": "peach/frames", "rom_offset": "0x321450", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_069_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x327480"}}, +"peach_kart_frame070": {"output_dir": "peach/frames", "rom_offset": "0x3219C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_070_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3279F4"}}, +"peach_kart_frame071": {"output_dir": "peach/frames", "rom_offset": "0x321F30", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_071_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x327F60"}}, +"peach_kart_frame072": {"output_dir": "peach/frames", "rom_offset": "0x3224A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_072_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3284D4"}}, +"peach_kart_frame073": {"output_dir": "peach/frames", "rom_offset": "0x322A38", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_073_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x328A68"}}, +"peach_kart_frame074": {"output_dir": "peach/frames", "rom_offset": "0x322FD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_074_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x329008"}}, +"peach_kart_frame075": {"output_dir": "peach/frames", "rom_offset": "0x32356C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_075_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32959C"}}, +"peach_kart_frame076": {"output_dir": "peach/frames", "rom_offset": "0x323B10", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_076_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x329B40"}}, +"peach_kart_frame077": {"output_dir": "peach/frames", "rom_offset": "0x3240BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_077_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32A0EC"}}, +"peach_kart_frame078": {"output_dir": "peach/frames", "rom_offset": "0x324668", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_078_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32A698"}}, +"peach_kart_frame079": {"output_dir": "peach/frames", "rom_offset": "0x324C4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_079_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32AC7C"}}, +"peach_kart_frame080": {"output_dir": "peach/frames", "rom_offset": "0x32520C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_080_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32B23C"}}, +"peach_kart_frame081": {"output_dir": "peach/frames", "rom_offset": "0x3257DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_081_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32B80C"}}, +"peach_kart_frame082": {"output_dir": "peach/frames", "rom_offset": "0x325DA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_082_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32BDD4"}}, +"peach_kart_frame083": {"output_dir": "peach/frames", "rom_offset": "0x326354", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_083_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32C384"}}, +"peach_kart_frame084": {"output_dir": "peach/frames", "rom_offset": "0x326930", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_084_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32C960"}}, +"peach_kart_frame085": {"output_dir": "peach/frames", "rom_offset": "0x326E20", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_085_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32CE50"}}, +"peach_kart_frame086": {"output_dir": "peach/frames", "rom_offset": "0x32732C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_086_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32D35C"}}, +"peach_kart_frame087": {"output_dir": "peach/frames", "rom_offset": "0x32784C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_087_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32D87C"}}, +"peach_kart_frame088": {"output_dir": "peach/frames", "rom_offset": "0x327D94", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_088_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32DDC4"}}, +"peach_kart_frame089": {"output_dir": "peach/frames", "rom_offset": "0x3282DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_089_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32E30C"}}, +"peach_kart_frame090": {"output_dir": "peach/frames", "rom_offset": "0x328848", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_090_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32E878"}}, +"peach_kart_frame091": {"output_dir": "peach/frames", "rom_offset": "0x328DC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_091_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32EDF8"}}, +"peach_kart_frame092": {"output_dir": "peach/frames", "rom_offset": "0x32935C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_092_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32F38C"}}, +"peach_kart_frame093": {"output_dir": "peach/frames", "rom_offset": "0x3298D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_093_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32F904"}}, +"peach_kart_frame094": {"output_dir": "peach/frames", "rom_offset": "0x329E74", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_094_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x32FEA4"}}, +"peach_kart_frame095": {"output_dir": "peach/frames", "rom_offset": "0x32A420", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_095_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x330450"}}, +"peach_kart_frame096": {"output_dir": "peach/frames", "rom_offset": "0x32A9C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_096_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3309F4"}}, +"peach_kart_frame097": {"output_dir": "peach/frames", "rom_offset": "0x32AF70", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_097_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x330FA0"}}, +"peach_kart_frame098": {"output_dir": "peach/frames", "rom_offset": "0x32B520", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_098_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x331550"}}, +"peach_kart_frame099": {"output_dir": "peach/frames", "rom_offset": "0x32BAD0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_099_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x331B00"}}, +"peach_kart_frame100": {"output_dir": "peach/frames", "rom_offset": "0x32C0A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_100_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3320D8"}}, +"peach_kart_frame101": {"output_dir": "peach/frames", "rom_offset": "0x32C680", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_101_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3326B0"}}, +"peach_kart_frame102": {"output_dir": "peach/frames", "rom_offset": "0x32CC70", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_102_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x332CA0"}}, +"peach_kart_frame103": {"output_dir": "peach/frames", "rom_offset": "0x32D240", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_103_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x333270"}}, +"peach_kart_frame104": {"output_dir": "peach/frames", "rom_offset": "0x32D7FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_104_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33382C"}}, +"peach_kart_frame105": {"output_dir": "peach/frames", "rom_offset": "0x32DDBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_105_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x333DEC"}}, +"peach_kart_frame106": {"output_dir": "peach/frames", "rom_offset": "0x32E2B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_106_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3342E0"}}, +"peach_kart_frame107": {"output_dir": "peach/frames", "rom_offset": "0x32E7C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_107_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3347F8"}}, +"peach_kart_frame108": {"output_dir": "peach/frames", "rom_offset": "0x32ECFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_108_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x334D2C"}}, +"peach_kart_frame109": {"output_dir": "peach/frames", "rom_offset": "0x32F254", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_109_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x335284"}}, +"peach_kart_frame110": {"output_dir": "peach/frames", "rom_offset": "0x32F7CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_110_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3357FC"}}, +"peach_kart_frame111": {"output_dir": "peach/frames", "rom_offset": "0x32FD50", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_111_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x335D80"}}, +"peach_kart_frame112": {"output_dir": "peach/frames", "rom_offset": "0x3302E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_112_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x336318"}}, +"peach_kart_frame113": {"output_dir": "peach/frames", "rom_offset": "0x330874", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_113_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3368A4"}}, +"peach_kart_frame114": {"output_dir": "peach/frames", "rom_offset": "0x330E1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_114_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x336E4C"}}, +"peach_kart_frame115": {"output_dir": "peach/frames", "rom_offset": "0x3313C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_115_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3373F4"}}, +"peach_kart_frame116": {"output_dir": "peach/frames", "rom_offset": "0x331970", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_116_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3379A0"}}, +"peach_kart_frame117": {"output_dir": "peach/frames", "rom_offset": "0x331F10", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_117_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x337F40"}}, +"peach_kart_frame118": {"output_dir": "peach/frames", "rom_offset": "0x3324B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_118_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3384E8"}}, +"peach_kart_frame119": {"output_dir": "peach/frames", "rom_offset": "0x332A64", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_119_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x338A94"}}, +"peach_kart_frame120": {"output_dir": "peach/frames", "rom_offset": "0x33303C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_120_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33906C"}}, +"peach_kart_frame121": {"output_dir": "peach/frames", "rom_offset": "0x333610", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_121_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x339640"}}, +"peach_kart_frame122": {"output_dir": "peach/frames", "rom_offset": "0x333BE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_122_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x339C18"}}, +"peach_kart_frame123": {"output_dir": "peach/frames", "rom_offset": "0x3341DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_123_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33A20C"}}, +"peach_kart_frame124": {"output_dir": "peach/frames", "rom_offset": "0x3347C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_124_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33A7F8"}}, +"peach_kart_frame125": {"output_dir": "peach/frames", "rom_offset": "0x334DAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_125_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33ADDC"}}, +"peach_kart_frame126": {"output_dir": "peach/frames", "rom_offset": "0x335388", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_126_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33B3B8"}}, +"peach_kart_frame127": {"output_dir": "peach/frames", "rom_offset": "0x33588C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_127_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33B8BC"}}, +"peach_kart_frame128": {"output_dir": "peach/frames", "rom_offset": "0x335D94", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_128_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33BDC4"}}, +"peach_kart_frame129": {"output_dir": "peach/frames", "rom_offset": "0x3362C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_129_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33C2F4"}}, +"peach_kart_frame130": {"output_dir": "peach/frames", "rom_offset": "0x336814", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_130_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33C844"}}, +"peach_kart_frame131": {"output_dir": "peach/frames", "rom_offset": "0x336D8C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_131_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33CDBC"}}, +"peach_kart_frame132": {"output_dir": "peach/frames", "rom_offset": "0x337318", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_132_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33D348"}}, +"peach_kart_frame133": {"output_dir": "peach/frames", "rom_offset": "0x3378AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_133_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33D8DC"}}, +"peach_kart_frame134": {"output_dir": "peach/frames", "rom_offset": "0x337E58", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_134_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33DE88"}}, +"peach_kart_frame135": {"output_dir": "peach/frames", "rom_offset": "0x338400", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_135_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33E430"}}, +"peach_kart_frame136": {"output_dir": "peach/frames", "rom_offset": "0x3389B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_136_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33E9E0"}}, +"peach_kart_frame137": {"output_dir": "peach/frames", "rom_offset": "0x338F50", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_137_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33EF80"}}, +"peach_kart_frame138": {"output_dir": "peach/frames", "rom_offset": "0x3394F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_138_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33F524"}}, +"peach_kart_frame139": {"output_dir": "peach/frames", "rom_offset": "0x339AA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_139_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x33FAD4"}}, +"peach_kart_frame140": {"output_dir": "peach/frames", "rom_offset": "0x33A058", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_140_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x340088"}}, +"peach_kart_frame141": {"output_dir": "peach/frames", "rom_offset": "0x33A630", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_141_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x340660"}}, +"peach_kart_frame142": {"output_dir": "peach/frames", "rom_offset": "0x33AC18", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_142_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x340C48"}}, +"peach_kart_frame143": {"output_dir": "peach/frames", "rom_offset": "0x33B208", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_143_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x341238"}}, +"peach_kart_frame144": {"output_dir": "peach/frames", "rom_offset": "0x33B7EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_144_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34181C"}}, +"peach_kart_frame145": {"output_dir": "peach/frames", "rom_offset": "0x33BDD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_145_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x341E04"}}, +"peach_kart_frame146": {"output_dir": "peach/frames", "rom_offset": "0x33C3C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_146_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3423F0"}}, +"peach_kart_frame147": {"output_dir": "peach/frames", "rom_offset": "0x33C990", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_147_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3429C0"}}, +"peach_kart_frame148": {"output_dir": "peach/frames", "rom_offset": "0x33CE90", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_148_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x342EC0"}}, +"peach_kart_frame149": {"output_dir": "peach/frames", "rom_offset": "0x33D3C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_149_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3433F4"}}, +"peach_kart_frame150": {"output_dir": "peach/frames", "rom_offset": "0x33D8EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_150_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34391C"}}, +"peach_kart_frame151": {"output_dir": "peach/frames", "rom_offset": "0x33DE54", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_151_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x343E84"}}, +"peach_kart_frame152": {"output_dir": "peach/frames", "rom_offset": "0x33E3DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_152_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34440C"}}, +"peach_kart_frame153": {"output_dir": "peach/frames", "rom_offset": "0x33E984", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_153_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3449B4"}}, +"peach_kart_frame154": {"output_dir": "peach/frames", "rom_offset": "0x33EF2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_154_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x344F5C"}}, +"peach_kart_frame155": {"output_dir": "peach/frames", "rom_offset": "0x33F4D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_155_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x345508"}}, +"peach_kart_frame156": {"output_dir": "peach/frames", "rom_offset": "0x33FA98", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_156_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x345AC8"}}, +"peach_kart_frame157": {"output_dir": "peach/frames", "rom_offset": "0x34004C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_157_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34607C"}}, +"peach_kart_frame158": {"output_dir": "peach/frames", "rom_offset": "0x340610", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_158_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x346640"}}, +"peach_kart_frame159": {"output_dir": "peach/frames", "rom_offset": "0x340BC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_159_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x346BF0"}}, +"peach_kart_frame160": {"output_dir": "peach/frames", "rom_offset": "0x341198", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_160_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3471C8"}}, +"peach_kart_frame161": {"output_dir": "peach/frames", "rom_offset": "0x34177C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_161_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3477AC"}}, +"peach_kart_frame162": {"output_dir": "peach/frames", "rom_offset": "0x341D50", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_162_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x347D80"}}, +"peach_kart_frame163": {"output_dir": "peach/frames", "rom_offset": "0x342348", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_163_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x348378"}}, +"peach_kart_frame164": {"output_dir": "peach/frames", "rom_offset": "0x342930", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_164_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x348960"}}, +"peach_kart_frame165": {"output_dir": "peach/frames", "rom_offset": "0x342F18", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_165_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x348F48"}}, +"peach_kart_frame166": {"output_dir": "peach/frames", "rom_offset": "0x343508", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_166_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x349538"}}, +"peach_kart_frame167": {"output_dir": "peach/frames", "rom_offset": "0x343AF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_167_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x349B20"}}, +"peach_kart_frame168": {"output_dir": "peach/frames", "rom_offset": "0x3440DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_168_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34A10C"}}, +"peach_kart_frame169": {"output_dir": "peach/frames", "rom_offset": "0x3445E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_169_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34A610"}}, +"peach_kart_frame170": {"output_dir": "peach/frames", "rom_offset": "0x344B08", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_170_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34AB38"}}, +"peach_kart_frame171": {"output_dir": "peach/frames", "rom_offset": "0x34504C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_171_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34B07C"}}, +"peach_kart_frame172": {"output_dir": "peach/frames", "rom_offset": "0x3455A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_172_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34B5D8"}}, +"peach_kart_frame173": {"output_dir": "peach/frames", "rom_offset": "0x345B2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_173_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34BB5C"}}, +"peach_kart_frame174": {"output_dir": "peach/frames", "rom_offset": "0x3460D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_174_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34C104"}}, +"peach_kart_frame175": {"output_dir": "peach/frames", "rom_offset": "0x346698", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_175_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34C6C8"}}, +"peach_kart_frame176": {"output_dir": "peach/frames", "rom_offset": "0x346C64", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_176_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34CC94"}}, +"peach_kart_frame177": {"output_dir": "peach/frames", "rom_offset": "0x347244", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_177_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34D274"}}, +"peach_kart_frame178": {"output_dir": "peach/frames", "rom_offset": "0x347810", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_178_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34D840"}}, +"peach_kart_frame179": {"output_dir": "peach/frames", "rom_offset": "0x347DF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_179_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34DE20"}}, +"peach_kart_frame180": {"output_dir": "peach/frames", "rom_offset": "0x3483D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_180_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34E408"}}, +"peach_kart_frame181": {"output_dir": "peach/frames", "rom_offset": "0x3489B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_181_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34E9E8"}}, +"peach_kart_frame182": {"output_dir": "peach/frames", "rom_offset": "0x348F90", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_182_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34EFC0"}}, +"peach_kart_frame183": {"output_dir": "peach/frames", "rom_offset": "0x349590", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_183_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34F5C0"}}, +"peach_kart_frame184": {"output_dir": "peach/frames", "rom_offset": "0x349B9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_184_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x34FBCC"}}, +"peach_kart_frame185": {"output_dir": "peach/frames", "rom_offset": "0x34A198", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_185_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3501C8"}}, +"peach_kart_frame186": {"output_dir": "peach/frames", "rom_offset": "0x34A790", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_186_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3507C0"}}, +"peach_kart_frame187": {"output_dir": "peach/frames", "rom_offset": "0x34AD78", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_187_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x350DA8"}}, +"peach_kart_frame188": {"output_dir": "peach/frames", "rom_offset": "0x34B374", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_188_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3513A4"}}, +"peach_kart_frame189": {"output_dir": "peach/frames", "rom_offset": "0x34B960", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_189_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x351990"}}, +"peach_kart_frame190": {"output_dir": "peach/frames", "rom_offset": "0x34BE68", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_190_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x351E98"}}, +"peach_kart_frame191": {"output_dir": "peach/frames", "rom_offset": "0x34C370", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_191_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3523A0"}}, +"peach_kart_frame192": {"output_dir": "peach/frames", "rom_offset": "0x34C8A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_192_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3528D8"}}, +"peach_kart_frame193": {"output_dir": "peach/frames", "rom_offset": "0x34CE1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_193_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x352E4C"}}, +"peach_kart_frame194": {"output_dir": "peach/frames", "rom_offset": "0x34D3A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_194_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3533D4"}}, +"peach_kart_frame195": {"output_dir": "peach/frames", "rom_offset": "0x34D944", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_195_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x353974"}}, +"peach_kart_frame196": {"output_dir": "peach/frames", "rom_offset": "0x34DEF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_196_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x353F28"}}, +"peach_kart_frame197": {"output_dir": "peach/frames", "rom_offset": "0x34E4D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_197_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x354500"}}, +"peach_kart_frame198": {"output_dir": "peach/frames", "rom_offset": "0x34EAA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_198_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x354AD4"}}, +"peach_kart_frame199": {"output_dir": "peach/frames", "rom_offset": "0x34F09C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_199_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3550CC"}}, +"peach_kart_frame200": {"output_dir": "peach/frames", "rom_offset": "0x34F6B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_200_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3556E4"}}, +"peach_kart_frame201": {"output_dir": "peach/frames", "rom_offset": "0x34FCF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_201_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x355D20"}}, +"peach_kart_frame202": {"output_dir": "peach/frames", "rom_offset": "0x350318", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_202_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x356348"}}, +"peach_kart_frame203": {"output_dir": "peach/frames", "rom_offset": "0x350928", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_203_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x356958"}}, +"peach_kart_frame204": {"output_dir": "peach/frames", "rom_offset": "0x350F28", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_204_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x356F58"}}, +"peach_kart_frame205": {"output_dir": "peach/frames", "rom_offset": "0x351538", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_205_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x357568"}}, +"peach_kart_frame206": {"output_dir": "peach/frames", "rom_offset": "0x351B30", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_206_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x357B60"}}, +"peach_kart_frame207": {"output_dir": "peach/frames", "rom_offset": "0x35211C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_207_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x35814C"}}, +"peach_kart_frame208": {"output_dir": "peach/frames", "rom_offset": "0x352720", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_208_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x358750"}}, +"peach_kart_frame209": {"output_dir": "peach/frames", "rom_offset": "0x352CF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_209_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x358D24"}}, +"peach_kart_frame210": {"output_dir": "peach/frames", "rom_offset": "0x3531F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_210_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x359224"}}, +"peach_kart_frame211": {"output_dir": "peach/frames", "rom_offset": "0x353724", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_211_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x359754"}}, +"peach_kart_frame212": {"output_dir": "peach/frames", "rom_offset": "0x353C90", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_212_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x359CC0"}}, +"peach_kart_frame213": {"output_dir": "peach/frames", "rom_offset": "0x354218", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_213_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x35A248"}}, +"peach_kart_frame214": {"output_dir": "peach/frames", "rom_offset": "0x3547A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_214_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x35A7D0"}}, +"peach_kart_frame215": {"output_dir": "peach/frames", "rom_offset": "0x354D48", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_215_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x35AD78"}}, +"peach_kart_frame216": {"output_dir": "peach/frames", "rom_offset": "0x35530C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_216_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x35B33C"}}, +"peach_kart_frame217": {"output_dir": "peach/frames", "rom_offset": "0x3558CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_217_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x35B8FC"}}, +"peach_kart_frame218": {"output_dir": "peach/frames", "rom_offset": "0x355EB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_218_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x35BEE0"}}, +"peach_kart_frame219": {"output_dir": "peach/frames", "rom_offset": "0x356494", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_219_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x35C4C4"}}, +"peach_kart_frame220": {"output_dir": "peach/frames", "rom_offset": "0x356A88", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_220_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x35CAB8"}}, +"peach_kart_frame221": {"output_dir": "peach/frames", "rom_offset": "0x35708C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_221_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x35D0BC"}}, +"peach_kart_frame222": {"output_dir": "peach/frames", "rom_offset": "0x35766C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_222_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x35D69C"}}, +"peach_kart_frame223": {"output_dir": "peach/frames", "rom_offset": "0x357C54", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_223_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x35DC84"}}, +"peach_kart_frame224": {"output_dir": "peach/frames", "rom_offset": "0x35822C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_224_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x35E25C"}}, +"peach_kart_frame225": {"output_dir": "peach/frames", "rom_offset": "0x35881C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_225_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x35E84C"}}, +"peach_kart_frame226": {"output_dir": "peach/frames", "rom_offset": "0x358DF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_226_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x35EE24"}}, +"peach_kart_frame227": {"output_dir": "peach/frames", "rom_offset": "0x3593AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_227_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x35F3DC"}}, +"peach_kart_frame228": {"output_dir": "peach/frames", "rom_offset": "0x359968", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_228_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x35F998"}}, +"peach_kart_frame229": {"output_dir": "peach/frames", "rom_offset": "0x359F04", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_229_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x35FF34"}}, +"peach_kart_frame230": {"output_dir": "peach/frames", "rom_offset": "0x35A424", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_230_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x360454"}}, +"peach_kart_frame231": {"output_dir": "peach/frames", "rom_offset": "0x35A964", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_231_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x360994"}}, +"peach_kart_frame232": {"output_dir": "peach/frames", "rom_offset": "0x35AEEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_232_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x360F1C"}}, +"peach_kart_frame233": {"output_dir": "peach/frames", "rom_offset": "0x35B47C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_233_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3614AC"}}, +"peach_kart_frame234": {"output_dir": "peach/frames", "rom_offset": "0x35BA40", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_234_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x361A70"}}, +"peach_kart_frame235": {"output_dir": "peach/frames", "rom_offset": "0x35BFF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_235_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x362028"}}, +"peach_kart_frame236": {"output_dir": "peach/frames", "rom_offset": "0x35C5B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_236_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3625E8"}}, +"peach_kart_frame237": {"output_dir": "peach/frames", "rom_offset": "0x35CB7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_237_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x362BAC"}}, +"peach_kart_frame238": {"output_dir": "peach/frames", "rom_offset": "0x35D164", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_238_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x363194"}}, +"peach_kart_frame239": {"output_dir": "peach/frames", "rom_offset": "0x35D750", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_239_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x363780"}}, +"peach_kart_frame240": {"output_dir": "peach/frames", "rom_offset": "0x35DD48", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_240_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x363D78"}}, +"peach_kart_frame241": {"output_dir": "peach/frames", "rom_offset": "0x35E334", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_241_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x364364"}}, +"peach_kart_frame242": {"output_dir": "peach/frames", "rom_offset": "0x35E914", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_242_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x364944"}}, +"peach_kart_frame243": {"output_dir": "peach/frames", "rom_offset": "0x35EEE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_243_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x364F10"}}, +"peach_kart_frame244": {"output_dir": "peach/frames", "rom_offset": "0x35F498", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_244_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3654C8"}}, +"peach_kart_frame245": {"output_dir": "peach/frames", "rom_offset": "0x35FA68", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_245_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x365A98"}}, +"peach_kart_frame246": {"output_dir": "peach/frames", "rom_offset": "0x360024", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_246_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x366054"}}, +"peach_kart_frame247": {"output_dir": "peach/frames", "rom_offset": "0x3605C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_247_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3665F0"}}, +"peach_kart_frame248": {"output_dir": "peach/frames", "rom_offset": "0x360B30", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_248_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x366B60"}}, +"peach_kart_frame249": {"output_dir": "peach/frames", "rom_offset": "0x361088", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_249_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3670B8"}}, +"peach_kart_frame250": {"output_dir": "peach/frames", "rom_offset": "0x3615A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_250_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3675D8"}}, +"peach_kart_frame251": {"output_dir": "peach/frames", "rom_offset": "0x361AF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_251_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x367B24"}}, +"peach_kart_frame252": {"output_dir": "peach/frames", "rom_offset": "0x362068", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_252_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x368098"}}, +"peach_kart_frame253": {"output_dir": "peach/frames", "rom_offset": "0x3625FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_253_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36862C"}}, +"peach_kart_frame254": {"output_dir": "peach/frames", "rom_offset": "0x362BB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_254_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x368BE0"}}, +"peach_kart_frame255": {"output_dir": "peach/frames", "rom_offset": "0x363170", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_255_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3691A0"}}, +"peach_kart_frame256": {"output_dir": "peach/frames", "rom_offset": "0x36373C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_256_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36976C"}}, +"peach_kart_frame257": {"output_dir": "peach/frames", "rom_offset": "0x363D2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_257_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x369D5C"}}, +"peach_kart_frame258": {"output_dir": "peach/frames", "rom_offset": "0x364328", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_258_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36A358"}}, +"peach_kart_frame259": {"output_dir": "peach/frames", "rom_offset": "0x36491C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_259_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36A94C"}}, +"peach_kart_frame260": {"output_dir": "peach/frames", "rom_offset": "0x364F04", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_260_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36AF34"}}, +"peach_kart_frame261": {"output_dir": "peach/frames", "rom_offset": "0x3654F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_261_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36B520"}}, +"peach_kart_frame262": {"output_dir": "peach/frames", "rom_offset": "0x365AAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_262_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36BADC"}}, +"peach_kart_frame263": {"output_dir": "peach/frames", "rom_offset": "0x366060", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_263_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36C090"}}, +"peach_kart_frame264": {"output_dir": "peach/frames", "rom_offset": "0x3665E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_264_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36C618"}}, +"peach_kart_frame265": {"output_dir": "peach/frames", "rom_offset": "0x366B8C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_265_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36CBBC"}}, +"peach_kart_frame266": {"output_dir": "peach/frames", "rom_offset": "0x367110", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_266_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36D140"}}, +"peach_kart_frame267": {"output_dir": "peach/frames", "rom_offset": "0x367668", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_267_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36D698"}}, +"peach_kart_frame268": {"output_dir": "peach/frames", "rom_offset": "0x367B9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_268_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36DBCC"}}, +"peach_kart_frame269": {"output_dir": "peach/frames", "rom_offset": "0x3680C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_269_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36E0F8"}}, +"peach_kart_frame270": {"output_dir": "peach/frames", "rom_offset": "0x3685F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_270_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36E628"}}, +"peach_kart_frame271": {"output_dir": "peach/frames", "rom_offset": "0x368B54", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_271_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36EB84"}}, +"peach_kart_frame272": {"output_dir": "peach/frames", "rom_offset": "0x3690E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_272_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36F110"}}, +"peach_kart_frame273": {"output_dir": "peach/frames", "rom_offset": "0x36967C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_273_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36F6AC"}}, +"peach_kart_frame274": {"output_dir": "peach/frames", "rom_offset": "0x369C20", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_274_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x36FC50"}}, +"peach_kart_frame275": {"output_dir": "peach/frames", "rom_offset": "0x36A1F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_275_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x370224"}}, +"peach_kart_frame276": {"output_dir": "peach/frames", "rom_offset": "0x36A7D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_276_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x370804"}}, +"peach_kart_frame277": {"output_dir": "peach/frames", "rom_offset": "0x36ADAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_277_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x370DDC"}}, +"peach_kart_frame278": {"output_dir": "peach/frames", "rom_offset": "0x36B3A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_278_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3713D0"}}, +"peach_kart_frame279": {"output_dir": "peach/frames", "rom_offset": "0x36B980", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_279_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3719B0"}}, +"peach_kart_frame280": {"output_dir": "peach/frames", "rom_offset": "0x36BF70", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_280_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x371FA0"}}, +"peach_kart_frame281": {"output_dir": "peach/frames", "rom_offset": "0x36C524", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_281_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x372554"}}, +"peach_kart_frame282": {"output_dir": "peach/frames", "rom_offset": "0x36CABC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_282_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x372AEC"}}, +"peach_kart_frame283": {"output_dir": "peach/frames", "rom_offset": "0x36D050", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_283_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x373080"}}, +"peach_kart_frame284": {"output_dir": "peach/frames", "rom_offset": "0x36D5E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_284_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x373614"}}, +"peach_kart_frame285": {"output_dir": "peach/frames", "rom_offset": "0x36DB50", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_285_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x373B80"}}, +"peach_kart_frame286": {"output_dir": "peach/frames", "rom_offset": "0x36E094", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_286_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3740C4"}}, +"peach_kart_frame287": {"output_dir": "peach/frames", "rom_offset": "0x36E5B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_287_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3745E8"}}, +"peach_kart_frame288": {"output_dir": "peach/frames", "rom_offset": "0x36EAB4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_288_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x374AE4"}}, +"peach_kart_frame289": {"output_dir": "peach/frames", "rom_offset": "0x36EF90", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x374FC0"}}, +"peach_kart_frame290": {"output_dir": "peach/frames", "rom_offset": "0x36F420", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x375450"}}, +"peach_kart_frame291": {"output_dir": "peach/frames", "rom_offset": "0x36F908", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x375938"}}, +"peach_kart_frame292": {"output_dir": "peach/frames", "rom_offset": "0x36FE98", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x375EC8"}}, +"peach_kart_frame293": {"output_dir": "peach/frames", "rom_offset": "0x3704FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37652C"}}, +"peach_kart_frame294": {"output_dir": "peach/frames", "rom_offset": "0x370B30", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x376B60"}}, +"peach_kart_frame295": {"output_dir": "peach/frames", "rom_offset": "0x371168", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x377198"}}, +"peach_kart_frame296": {"output_dir": "peach/frames", "rom_offset": "0x3716CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3776FC"}}, +"peach_kart_frame297": {"output_dir": "peach/frames", "rom_offset": "0x371BCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x377BFC"}}, +"peach_kart_frame298": {"output_dir": "peach/frames", "rom_offset": "0x3720A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3780D0"}}, +"peach_kart_frame299": {"output_dir": "peach/frames", "rom_offset": "0x372628", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x378658"}}, +"peach_kart_frame300": {"output_dir": "peach/frames", "rom_offset": "0x372BD0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x378C00"}}, +"peach_kart_frame301": {"output_dir": "peach/frames", "rom_offset": "0x37317C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3791AC"}}, +"peach_kart_frame302": {"output_dir": "peach/frames", "rom_offset": "0x3736EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37971C"}}, +"peach_kart_frame303": {"output_dir": "peach/frames", "rom_offset": "0x373C0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x379C3C"}}, +"peach_kart_frame304": {"output_dir": "peach/frames", "rom_offset": "0x3740EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37A11C"}}, +"peach_kart_frame305": {"output_dir": "peach/frames", "rom_offset": "0x3745E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37A614"}}, +"peach_kart_frame306": {"output_dir": "peach/frames", "rom_offset": "0x374A84", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37AAB4"}}, +"peach_kart_frame307": {"output_dir": "peach/frames", "rom_offset": "0x375020", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37B050"}}, +"peach_kart_frame308": {"output_dir": "peach/frames", "rom_offset": "0x37567C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37B6AC"}}, +"peach_kart_frame309": {"output_dir": "peach/frames", "rom_offset": "0x375D04", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37BD34"}}, +"peach_kart_frame310": {"output_dir": "peach/frames", "rom_offset": "0x3762F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37C324"}}, +"peach_kart_frame311": {"output_dir": "peach/frames", "rom_offset": "0x3768D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37C904"}}, +"peach_kart_frame312": {"output_dir": "peach/frames", "rom_offset": "0x376E18", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37CE48"}}, +"peach_kart_frame313": {"output_dir": "peach/frames", "rom_offset": "0x3772D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37D308"}}, +"peach_kart_frame314": {"output_dir": "peach/frames", "rom_offset": "0x3777AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37D7DC"}}, +"peach_kart_frame315": {"output_dir": "peach/frames", "rom_offset": "0x377D18", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37DD48"}}, +"peach_kart_frame316": {"output_dir": "peach/frames", "rom_offset": "0x3782DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37E30C"}}, +"peach_kart_frame317": {"output_dir": "peach/frames", "rom_offset": "0x37886C", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37E89C"}}, +"peach_kart_frame318": {"output_dir": "peach/frames", "rom_offset": "0x378DF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37EE20"}}, +"peach_kart_frame319": {"output_dir": "peach/frames", "rom_offset": "0x379350", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37F380"}}, +"peach_kart_frame320": {"output_dir": "peach/frames", "rom_offset": "0x379864", "width": 64, "height": 64, "type": "ci8", "tlut": ["peach_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x37F894"}}, +"kart_000_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x379D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x37FD68"}}, +"kart_000_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x379DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x37FDE8"}}, +"kart_000_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x379E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x37FE68"}}, +"kart_000_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x379EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x37FEE8"}}, +"kart_001_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x379F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x37FF68"}}, +"kart_001_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x379FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x37FFE8"}}, +"kart_001_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37A038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380068"}}, +"kart_001_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37A0B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3800E8"}}, +"kart_002_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37A138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380168"}}, +"kart_002_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37A1B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3801E8"}}, +"kart_002_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37A238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380268"}}, +"kart_002_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37A2B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3802E8"}}, +"kart_003_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37A338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380368"}}, +"kart_003_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37A3B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3803E8"}}, +"kart_003_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37A438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380468"}}, +"kart_003_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37A4B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3804E8"}}, +"kart_004_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37A538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380568"}}, +"kart_004_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37A5B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3805E8"}}, +"kart_004_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37A638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380668"}}, +"kart_004_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37A6B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3806E8"}}, +"kart_005_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37A738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380768"}}, +"kart_005_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37A7B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3807E8"}}, +"kart_005_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37A838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380868"}}, +"kart_005_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37A8B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3808E8"}}, +"kart_006_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37A938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380968"}}, +"kart_006_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37A9B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3809E8"}}, +"kart_006_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37AA38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380A68"}}, +"kart_006_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37AAB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380AE8"}}, +"kart_007_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37AB38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380B68"}}, +"kart_007_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37ABB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380BE8"}}, +"kart_007_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37AC38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380C68"}}, +"kart_007_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37ACB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380CE8"}}, +"kart_008_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37AD38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380D68"}}, +"kart_008_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37ADB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380DE8"}}, +"kart_008_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37AE38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380E68"}}, +"kart_008_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37AEB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380EE8"}}, +"kart_009_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37AF38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380F68"}}, +"kart_009_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37AFB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x380FE8"}}, +"kart_009_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37B038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381068"}}, +"kart_009_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37B0B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3810E8"}}, +"kart_010_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37B138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381168"}}, +"kart_010_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37B1B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3811E8"}}, +"kart_010_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37B238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381268"}}, +"kart_010_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37B2B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3812E8"}}, +"kart_011_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37B338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381368"}}, +"kart_011_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37B3B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3813E8"}}, +"kart_011_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37B438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381468"}}, +"kart_011_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37B4B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3814E8"}}, +"kart_012_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37B538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381568"}}, +"kart_012_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37B5B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3815E8"}}, +"kart_012_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37B638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381668"}}, +"kart_012_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37B6B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3816E8"}}, +"kart_013_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37B738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381768"}}, +"kart_013_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37B7B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3817E8"}}, +"kart_013_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37B838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381868"}}, +"kart_013_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37B8B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3818E8"}}, +"kart_014_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37B938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381968"}}, +"kart_014_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37B9B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3819E8"}}, +"kart_014_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37BA38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381A68"}}, +"kart_014_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37BAB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381AE8"}}, +"kart_015_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37BB38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381B68"}}, +"kart_015_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37BBB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381BE8"}}, +"kart_015_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37BC38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381C68"}}, +"kart_015_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37BCB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381CE8"}}, +"kart_016_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37BD38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381D68"}}, +"kart_016_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37BDB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381DE8"}}, +"kart_016_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37BE38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381E68"}}, +"kart_016_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37BEB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381EE8"}}, +"kart_017_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37BF38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381F68"}}, +"kart_017_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37BFB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x381FE8"}}, +"kart_017_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37C038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382068"}}, +"kart_017_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37C0B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3820E8"}}, +"kart_018_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37C138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382168"}}, +"kart_018_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37C1B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3821E8"}}, +"kart_018_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37C238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382268"}}, +"kart_018_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37C2B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3822E8"}}, +"kart_019_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37C338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382368"}}, +"kart_019_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37C3B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3823E8"}}, +"kart_019_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37C438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382468"}}, +"kart_019_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37C4B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3824E8"}}, +"kart_020_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37C538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382568"}}, +"kart_020_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37C5B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3825E8"}}, +"kart_020_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37C638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382668"}}, +"kart_020_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37C6B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3826E8"}}, +"kart_021_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37C738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382768"}}, +"kart_021_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37C7B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3827E8"}}, +"kart_021_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37C838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382868"}}, +"kart_021_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37C8B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3828E8"}}, +"kart_022_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37C938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382968"}}, +"kart_022_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37C9B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3829E8"}}, +"kart_022_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37CA38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382A68"}}, +"kart_022_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37CAB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382AE8"}}, +"kart_023_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37CB38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382B68"}}, +"kart_023_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37CBB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382BE8"}}, +"kart_023_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37CC38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382C68"}}, +"kart_023_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37CCB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382CE8"}}, +"kart_024_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37CD38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382D68"}}, +"kart_024_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37CDB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382DE8"}}, +"kart_024_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37CE38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382E68"}}, +"kart_024_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37CEB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382EE8"}}, +"kart_025_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37CF38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382F68"}}, +"kart_025_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37CFB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x382FE8"}}, +"kart_025_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37D038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383068"}}, +"kart_025_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37D0B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3830E8"}}, +"kart_026_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37D138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383168"}}, +"kart_026_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37D1B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3831E8"}}, +"kart_026_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37D238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383268"}}, +"kart_026_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37D2B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3832E8"}}, +"kart_027_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37D338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383368"}}, +"kart_027_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37D3B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3833E8"}}, +"kart_027_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37D438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383468"}}, +"kart_027_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37D4B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3834E8"}}, +"kart_028_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37D538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383568"}}, +"kart_028_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37D5B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3835E8"}}, +"kart_028_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37D638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383668"}}, +"kart_028_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37D6B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3836E8"}}, +"kart_029_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37D738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383768"}}, +"kart_029_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37D7B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3837E8"}}, +"kart_029_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37D838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383868"}}, +"kart_029_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37D8B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3838E8"}}, +"kart_030_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37D938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383968"}}, +"kart_030_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37D9B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3839E8"}}, +"kart_030_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37DA38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383A68"}}, +"kart_030_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37DAB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383AE8"}}, +"kart_031_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37DB38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383B68"}}, +"kart_031_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37DBB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383BE8"}}, +"kart_031_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37DC38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383C68"}}, +"kart_031_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37DCB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383CE8"}}, +"kart_032_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37DD38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383D68"}}, +"kart_032_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37DDB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383DE8"}}, +"kart_032_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37DE38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383E68"}}, +"kart_032_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37DEB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383EE8"}}, +"kart_033_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37DF38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383F68"}}, +"kart_033_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37DFB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x383FE8"}}, +"kart_033_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37E038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384068"}}, +"kart_033_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37E0B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3840E8"}}, +"kart_034_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37E138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384168"}}, +"kart_034_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37E1B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3841E8"}}, +"kart_034_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37E238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384268"}}, +"kart_034_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37E2B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3842E8"}}, +"kart_035_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37E338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384368"}}, +"kart_035_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37E3B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3843E8"}}, +"kart_035_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37E438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384468"}}, +"kart_035_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37E4B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3844E8"}}, +"kart_036_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37E538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384568"}}, +"kart_036_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37E5B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3845E8"}}, +"kart_036_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37E638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384668"}}, +"kart_036_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37E6B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3846E8"}}, +"kart_037_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37E738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384768"}}, +"kart_037_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37E7B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3847E8"}}, +"kart_037_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37E838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384868"}}, +"kart_037_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37E8B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3848E8"}}, +"kart_038_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37E938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384968"}}, +"kart_038_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37E9B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3849E8"}}, +"kart_038_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37EA38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384A68"}}, +"kart_038_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37EAB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384AE8"}}, +"kart_039_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37EB38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384B68"}}, +"kart_039_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37EBB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384BE8"}}, +"kart_039_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37EC38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384C68"}}, +"kart_039_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37ECB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384CE8"}}, +"kart_040_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37ED38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384D68"}}, +"kart_040_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37EDB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384DE8"}}, +"kart_040_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37EE38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384E68"}}, +"kart_040_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37EEB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384EE8"}}, +"kart_041_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37EF38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384F68"}}, +"kart_041_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37EFB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x384FE8"}}, +"kart_041_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37F038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385068"}}, +"kart_041_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37F0B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3850E8"}}, +"kart_042_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37F138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385168"}}, +"kart_042_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37F1B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3851E8"}}, +"kart_042_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37F238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385268"}}, +"kart_042_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37F2B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3852E8"}}, +"kart_043_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37F338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385368"}}, +"kart_043_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37F3B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3853E8"}}, +"kart_043_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37F438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385468"}}, +"kart_043_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37F4B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3854E8"}}, +"kart_044_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37F538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385568"}}, +"kart_044_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37F5B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3855E8"}}, +"kart_044_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37F638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385668"}}, +"kart_044_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37F6B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3856E8"}}, +"kart_045_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37F738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385768"}}, +"kart_045_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37F7B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3857E8"}}, +"kart_045_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37F838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385868"}}, +"kart_045_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37F8B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3858E8"}}, +"kart_046_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37F938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385968"}}, +"kart_046_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37F9B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3859E8"}}, +"kart_046_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37FA38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385A68"}}, +"kart_046_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37FAB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385AE8"}}, +"kart_047_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37FB38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385B68"}}, +"kart_047_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37FBB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385BE8"}}, +"kart_047_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37FC38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385C68"}}, +"kart_047_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37FCB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385CE8"}}, +"kart_048_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37FD38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385D68"}}, +"kart_048_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37FDB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385DE8"}}, +"kart_048_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x37FE38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385E68"}}, +"kart_048_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x37FEB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385EE8"}}, +"kart_049_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x37FF38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385F68"}}, +"kart_049_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x37FFB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x385FE8"}}, +"kart_049_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x380038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386068"}}, +"kart_049_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3800B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3860E8"}}, +"kart_050_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x380138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386168"}}, +"kart_050_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3801B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3861E8"}}, +"kart_050_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x380238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386268"}}, +"kart_050_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3802B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3862E8"}}, +"kart_051_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x380338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386368"}}, +"kart_051_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3803B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3863E8"}}, +"kart_051_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x380438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386468"}}, +"kart_051_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3804B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3864E8"}}, +"kart_052_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x380538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386568"}}, +"kart_052_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3805B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3865E8"}}, +"kart_052_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x380638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386668"}}, +"kart_052_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3806B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3866E8"}}, +"kart_053_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x380738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386768"}}, +"kart_053_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3807B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3867E8"}}, +"kart_053_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x380838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386868"}}, +"kart_053_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3808B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3868E8"}}, +"kart_054_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x380938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386968"}}, +"kart_054_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3809B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3869E8"}}, +"kart_054_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x380A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386A68"}}, +"kart_054_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x380AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386AE8"}}, +"kart_055_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x380B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386B68"}}, +"kart_055_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x380BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386BE8"}}, +"kart_055_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x380C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386C68"}}, +"kart_055_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x380CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386CE8"}}, +"kart_056_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x380D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386D68"}}, +"kart_056_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x380DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386DE8"}}, +"kart_056_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x380E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386E68"}}, +"kart_056_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x380EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386EE8"}}, +"kart_057_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x380F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386F68"}}, +"kart_057_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x380FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x386FE8"}}, +"kart_057_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x381038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387068"}}, +"kart_057_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3810B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3870E8"}}, +"kart_058_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x381138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387168"}}, +"kart_058_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3811B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3871E8"}}, +"kart_058_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x381238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387268"}}, +"kart_058_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3812B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3872E8"}}, +"kart_059_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x381338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387368"}}, +"kart_059_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3813B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3873E8"}}, +"kart_059_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x381438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387468"}}, +"kart_059_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3814B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3874E8"}}, +"kart_060_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x381538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387568"}}, +"kart_060_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3815B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3875E8"}}, +"kart_060_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x381638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387668"}}, +"kart_060_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3816B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3876E8"}}, +"kart_061_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x381738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387768"}}, +"kart_061_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3817B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3877E8"}}, +"kart_061_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x381838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387868"}}, +"kart_061_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3818B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3878E8"}}, +"kart_062_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x381938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387968"}}, +"kart_062_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3819B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3879E8"}}, +"kart_062_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x381A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387A68"}}, +"kart_062_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x381AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387AE8"}}, +"kart_063_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x381B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387B68"}}, +"kart_063_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x381BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387BE8"}}, +"kart_063_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x381C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387C68"}}, +"kart_063_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x381CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387CE8"}}, +"kart_064_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x381D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387D68"}}, +"kart_064_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x381DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387DE8"}}, +"kart_064_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x381E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387E68"}}, +"kart_064_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x381EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387EE8"}}, +"kart_065_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x381F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387F68"}}, +"kart_065_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x381FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x387FE8"}}, +"kart_065_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x382038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388068"}}, +"kart_065_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3820B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3880E8"}}, +"kart_066_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x382138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388168"}}, +"kart_066_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3821B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3881E8"}}, +"kart_066_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x382238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388268"}}, +"kart_066_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3822B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3882E8"}}, +"kart_067_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x382338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388368"}}, +"kart_067_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3823B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3883E8"}}, +"kart_067_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x382438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388468"}}, +"kart_067_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3824B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3884E8"}}, +"kart_068_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x382538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388568"}}, +"kart_068_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3825B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3885E8"}}, +"kart_068_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x382638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388668"}}, +"kart_068_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3826B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3886E8"}}, +"kart_069_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x382738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388768"}}, +"kart_069_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3827B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3887E8"}}, +"kart_069_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x382838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388868"}}, +"kart_069_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3828B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3888E8"}}, +"kart_070_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x382938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388968"}}, +"kart_070_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3829B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3889E8"}}, +"kart_070_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x382A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388A68"}}, +"kart_070_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x382AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388AE8"}}, +"kart_071_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x382B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388B68"}}, +"kart_071_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x382BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388BE8"}}, +"kart_071_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x382C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388C68"}}, +"kart_071_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x382CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388CE8"}}, +"kart_072_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x382D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388D68"}}, +"kart_072_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x382DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388DE8"}}, +"kart_072_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x382E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388E68"}}, +"kart_072_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x382EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388EE8"}}, +"kart_073_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x382F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388F68"}}, +"kart_073_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x382FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x388FE8"}}, +"kart_073_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x383038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389068"}}, +"kart_073_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3830B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3890E8"}}, +"kart_074_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x383138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389168"}}, +"kart_074_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3831B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3891E8"}}, +"kart_074_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x383238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389268"}}, +"kart_074_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3832B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3892E8"}}, +"kart_075_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x383338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389368"}}, +"kart_075_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3833B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3893E8"}}, +"kart_075_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x383438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389468"}}, +"kart_075_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3834B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3894E8"}}, +"kart_076_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x383538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389568"}}, +"kart_076_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3835B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3895E8"}}, +"kart_076_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x383638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389668"}}, +"kart_076_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3836B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3896E8"}}, +"kart_077_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x383738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389768"}}, +"kart_077_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3837B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3897E8"}}, +"kart_077_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x383838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389868"}}, +"kart_077_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3838B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3898E8"}}, +"kart_078_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x383938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389968"}}, +"kart_078_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3839B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3899E8"}}, +"kart_078_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x383A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389A68"}}, +"kart_078_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x383AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389AE8"}}, +"kart_079_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x383B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389B68"}}, +"kart_079_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x383BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389BE8"}}, +"kart_079_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x383C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389C68"}}, +"kart_079_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x383CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389CE8"}}, +"kart_080_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x383D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389D68"}}, +"kart_080_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x383DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389DE8"}}, +"kart_080_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x383E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389E68"}}, +"kart_080_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x383EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389EE8"}}, +"kart_081_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x383F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389F68"}}, +"kart_081_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x383FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x389FE8"}}, +"kart_081_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x384038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A068"}}, +"kart_081_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3840B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A0E8"}}, +"kart_082_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x384138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A168"}}, +"kart_082_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3841B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A1E8"}}, +"kart_082_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x384238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A268"}}, +"kart_082_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3842B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A2E8"}}, +"kart_083_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x384338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A368"}}, +"kart_083_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3843B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A3E8"}}, +"kart_083_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x384438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A468"}}, +"kart_083_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3844B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A4E8"}}, +"kart_084_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x384538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A568"}}, +"kart_084_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3845B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A5E8"}}, +"kart_084_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x384638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A668"}}, +"kart_084_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3846B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A6E8"}}, +"kart_085_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x384738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A768"}}, +"kart_085_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3847B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A7E8"}}, +"kart_085_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x384838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A868"}}, +"kart_085_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3848B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A8E8"}}, +"kart_086_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x384938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A968"}}, +"kart_086_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3849B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38A9E8"}}, +"kart_086_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x384A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38AA68"}}, +"kart_086_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x384AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38AAE8"}}, +"kart_087_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x384B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38AB68"}}, +"kart_087_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x384BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38ABE8"}}, +"kart_087_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x384C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38AC68"}}, +"kart_087_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x384CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38ACE8"}}, +"kart_088_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x384D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38AD68"}}, +"kart_088_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x384DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38ADE8"}}, +"kart_088_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x384E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38AE68"}}, +"kart_088_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x384EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38AEE8"}}, +"kart_089_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x384F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38AF68"}}, +"kart_089_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x384FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38AFE8"}}, +"kart_089_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x385038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B068"}}, +"kart_089_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3850B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B0E8"}}, +"kart_090_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x385138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B168"}}, +"kart_090_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3851B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B1E8"}}, +"kart_090_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x385238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B268"}}, +"kart_090_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3852B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B2E8"}}, +"kart_091_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x385338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B368"}}, +"kart_091_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3853B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B3E8"}}, +"kart_091_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x385438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B468"}}, +"kart_091_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3854B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B4E8"}}, +"kart_092_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x385538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B568"}}, +"kart_092_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3855B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B5E8"}}, +"kart_092_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x385638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B668"}}, +"kart_092_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3856B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B6E8"}}, +"kart_093_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x385738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B768"}}, +"kart_093_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3857B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B7E8"}}, +"kart_093_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x385838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B868"}}, +"kart_093_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3858B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B8E8"}}, +"kart_094_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x385938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B968"}}, +"kart_094_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3859B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38B9E8"}}, +"kart_094_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x385A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38BA68"}}, +"kart_094_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x385AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38BAE8"}}, +"kart_095_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x385B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38BB68"}}, +"kart_095_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x385BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38BBE8"}}, +"kart_095_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x385C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38BC68"}}, +"kart_095_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x385CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38BCE8"}}, +"kart_096_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x385D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38BD68"}}, +"kart_096_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x385DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38BDE8"}}, +"kart_096_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x385E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38BE68"}}, +"kart_096_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x385EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38BEE8"}}, +"kart_097_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x385F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38BF68"}}, +"kart_097_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x385FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38BFE8"}}, +"kart_097_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x386038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C068"}}, +"kart_097_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3860B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C0E8"}}, +"kart_098_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x386138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C168"}}, +"kart_098_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3861B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C1E8"}}, +"kart_098_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x386238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C268"}}, +"kart_098_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3862B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C2E8"}}, +"kart_099_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x386338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C368"}}, +"kart_099_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3863B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C3E8"}}, +"kart_099_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x386438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C468"}}, +"kart_099_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3864B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C4E8"}}, +"kart_100_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x386538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C568"}}, +"kart_100_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3865B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C5E8"}}, +"kart_100_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x386638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C668"}}, +"kart_100_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3866B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C6E8"}}, +"kart_101_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x386738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C768"}}, +"kart_101_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3867B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C7E8"}}, +"kart_101_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x386838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C868"}}, +"kart_101_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3868B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C8E8"}}, +"kart_102_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x386938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C968"}}, +"kart_102_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3869B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38C9E8"}}, +"kart_102_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x386A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38CA68"}}, +"kart_102_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x386AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38CAE8"}}, +"kart_103_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x386B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38CB68"}}, +"kart_103_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x386BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38CBE8"}}, +"kart_103_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x386C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38CC68"}}, +"kart_103_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x386CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38CCE8"}}, +"kart_104_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x386D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38CD68"}}, +"kart_104_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x386DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38CDE8"}}, +"kart_104_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x386E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38CE68"}}, +"kart_104_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x386EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38CEE8"}}, +"kart_105_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x386F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38CF68"}}, +"kart_105_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x386FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38CFE8"}}, +"kart_105_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x387038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D068"}}, +"kart_105_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3870B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D0E8"}}, +"kart_106_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x387138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D168"}}, +"kart_106_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3871B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D1E8"}}, +"kart_106_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x387238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D268"}}, +"kart_106_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3872B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D2E8"}}, +"kart_107_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x387338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D368"}}, +"kart_107_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3873B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D3E8"}}, +"kart_107_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x387438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D468"}}, +"kart_107_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3874B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D4E8"}}, +"kart_108_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x387538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D568"}}, +"kart_108_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3875B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D5E8"}}, +"kart_108_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x387638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D668"}}, +"kart_108_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3876B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D6E8"}}, +"kart_109_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x387738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D768"}}, +"kart_109_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3877B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D7E8"}}, +"kart_109_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x387838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D868"}}, +"kart_109_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3878B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D8E8"}}, +"kart_110_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x387938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D968"}}, +"kart_110_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3879B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38D9E8"}}, +"kart_110_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x387A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38DA68"}}, +"kart_110_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x387AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38DAE8"}}, +"kart_111_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x387B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38DB68"}}, +"kart_111_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x387BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38DBE8"}}, +"kart_111_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x387C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38DC68"}}, +"kart_111_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x387CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38DCE8"}}, +"kart_112_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x387D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38DD68"}}, +"kart_112_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x387DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38DDE8"}}, +"kart_112_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x387E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38DE68"}}, +"kart_112_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x387EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38DEE8"}}, +"kart_113_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x387F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38DF68"}}, +"kart_113_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x387FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38DFE8"}}, +"kart_113_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x388038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E068"}}, +"kart_113_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3880B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E0E8"}}, +"kart_114_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x388138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E168"}}, +"kart_114_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3881B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E1E8"}}, +"kart_114_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x388238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E268"}}, +"kart_114_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3882B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E2E8"}}, +"kart_115_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x388338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E368"}}, +"kart_115_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3883B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E3E8"}}, +"kart_115_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x388438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E468"}}, +"kart_115_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3884B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E4E8"}}, +"kart_116_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x388538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E568"}}, +"kart_116_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3885B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E5E8"}}, +"kart_116_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x388638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E668"}}, +"kart_116_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3886B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E6E8"}}, +"kart_117_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x388738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E768"}}, +"kart_117_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3887B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E7E8"}}, +"kart_117_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x388838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E868"}}, +"kart_117_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3888B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E8E8"}}, +"kart_118_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x388938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E968"}}, +"kart_118_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3889B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38E9E8"}}, +"kart_118_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x388A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38EA68"}}, +"kart_118_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x388AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38EAE8"}}, +"kart_119_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x388B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38EB68"}}, +"kart_119_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x388BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38EBE8"}}, +"kart_119_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x388C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38EC68"}}, +"kart_119_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x388CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38ECE8"}}, +"kart_120_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x388D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38ED68"}}, +"kart_120_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x388DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38EDE8"}}, +"kart_120_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x388E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38EE68"}}, +"kart_120_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x388EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38EEE8"}}, +"kart_121_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x388F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38EF68"}}, +"kart_121_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x388FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38EFE8"}}, +"kart_121_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x389038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F068"}}, +"kart_121_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3890B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F0E8"}}, +"kart_122_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x389138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F168"}}, +"kart_122_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3891B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F1E8"}}, +"kart_122_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x389238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F268"}}, +"kart_122_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3892B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F2E8"}}, +"kart_123_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x389338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F368"}}, +"kart_123_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3893B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F3E8"}}, +"kart_123_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x389438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F468"}}, +"kart_123_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3894B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F4E8"}}, +"kart_124_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x389538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F568"}}, +"kart_124_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3895B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F5E8"}}, +"kart_124_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x389638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F668"}}, +"kart_124_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3896B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F6E8"}}, +"kart_125_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x389738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F768"}}, +"kart_125_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3897B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F7E8"}}, +"kart_125_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x389838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F868"}}, +"kart_125_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3898B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F8E8"}}, +"kart_126_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x389938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F968"}}, +"kart_126_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3899B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38F9E8"}}, +"kart_126_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x389A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38FA68"}}, +"kart_126_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x389AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38FAE8"}}, +"kart_127_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x389B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38FB68"}}, +"kart_127_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x389BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38FBE8"}}, +"kart_127_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x389C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38FC68"}}, +"kart_127_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x389CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38FCE8"}}, +"kart_128_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x389D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38FD68"}}, +"kart_128_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x389DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38FDE8"}}, +"kart_128_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x389E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38FE68"}}, +"kart_128_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x389EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38FEE8"}}, +"kart_129_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x389F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38FF68"}}, +"kart_129_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x389FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x38FFE8"}}, +"kart_129_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38A038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390068"}}, +"kart_129_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38A0B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3900E8"}}, +"kart_130_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38A138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390168"}}, +"kart_130_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38A1B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3901E8"}}, +"kart_130_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38A238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390268"}}, +"kart_130_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38A2B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3902E8"}}, +"kart_131_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38A338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390368"}}, +"kart_131_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38A3B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3903E8"}}, +"kart_131_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38A438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390468"}}, +"kart_131_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38A4B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3904E8"}}, +"kart_132_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38A538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390568"}}, +"kart_132_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38A5B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3905E8"}}, +"kart_132_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38A638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390668"}}, +"kart_132_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38A6B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3906E8"}}, +"kart_133_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38A738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390768"}}, +"kart_133_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38A7B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3907E8"}}, +"kart_133_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38A838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390868"}}, +"kart_133_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38A8B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3908E8"}}, +"kart_134_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38A938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390968"}}, +"kart_134_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38A9B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3909E8"}}, +"kart_134_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38AA38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390A68"}}, +"kart_134_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38AAB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390AE8"}}, +"kart_135_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38AB38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390B68"}}, +"kart_135_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38ABB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390BE8"}}, +"kart_135_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38AC38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390C68"}}, +"kart_135_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38ACB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390CE8"}}, +"kart_136_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38AD38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390D68"}}, +"kart_136_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38ADB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390DE8"}}, +"kart_136_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38AE38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390E68"}}, +"kart_136_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38AEB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390EE8"}}, +"kart_137_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38AF38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390F68"}}, +"kart_137_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38AFB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x390FE8"}}, +"kart_137_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38B038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391068"}}, +"kart_137_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38B0B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3910E8"}}, +"kart_138_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38B138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391168"}}, +"kart_138_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38B1B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3911E8"}}, +"kart_138_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38B238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391268"}}, +"kart_138_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38B2B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3912E8"}}, +"kart_139_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38B338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391368"}}, +"kart_139_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38B3B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3913E8"}}, +"kart_139_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38B438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391468"}}, +"kart_139_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38B4B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3914E8"}}, +"kart_140_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38B538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391568"}}, +"kart_140_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38B5B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3915E8"}}, +"kart_140_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38B638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391668"}}, +"kart_140_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38B6B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3916E8"}}, +"kart_141_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38B738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391768"}}, +"kart_141_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38B7B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3917E8"}}, +"kart_141_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38B838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391868"}}, +"kart_141_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38B8B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3918E8"}}, +"kart_142_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38B938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391968"}}, +"kart_142_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38B9B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3919E8"}}, +"kart_142_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38BA38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391A68"}}, +"kart_142_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38BAB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391AE8"}}, +"kart_143_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38BB38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391B68"}}, +"kart_143_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38BBB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391BE8"}}, +"kart_143_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38BC38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391C68"}}, +"kart_143_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38BCB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391CE8"}}, +"kart_144_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38BD38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391D68"}}, +"kart_144_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38BDB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391DE8"}}, +"kart_144_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38BE38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391E68"}}, +"kart_144_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38BEB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391EE8"}}, +"kart_145_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38BF38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391F68"}}, +"kart_145_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38BFB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x391FE8"}}, +"kart_145_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38C038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392068"}}, +"kart_145_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38C0B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3920E8"}}, +"kart_146_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38C138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392168"}}, +"kart_146_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38C1B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3921E8"}}, +"kart_146_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38C238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392268"}}, +"kart_146_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38C2B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3922E8"}}, +"kart_147_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38C338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392368"}}, +"kart_147_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38C3B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3923E8"}}, +"kart_147_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38C438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392468"}}, +"kart_147_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38C4B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3924E8"}}, +"kart_148_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38C538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392568"}}, +"kart_148_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38C5B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3925E8"}}, +"kart_148_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38C638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392668"}}, +"kart_148_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38C6B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3926E8"}}, +"kart_149_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38C738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392768"}}, +"kart_149_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38C7B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3927E8"}}, +"kart_149_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38C838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392868"}}, +"kart_149_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38C8B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3928E8"}}, +"kart_150_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38C938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392968"}}, +"kart_150_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38C9B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3929E8"}}, +"kart_150_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38CA38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392A68"}}, +"kart_150_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38CAB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392AE8"}}, +"kart_151_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38CB38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392B68"}}, +"kart_151_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38CBB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392BE8"}}, +"kart_151_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38CC38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392C68"}}, +"kart_151_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38CCB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392CE8"}}, +"kart_152_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38CD38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392D68"}}, +"kart_152_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38CDB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392DE8"}}, +"kart_152_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38CE38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392E68"}}, +"kart_152_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38CEB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392EE8"}}, +"kart_153_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38CF38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392F68"}}, +"kart_153_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38CFB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x392FE8"}}, +"kart_153_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38D038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393068"}}, +"kart_153_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38D0B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3930E8"}}, +"kart_154_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38D138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393168"}}, +"kart_154_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38D1B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3931E8"}}, +"kart_154_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38D238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393268"}}, +"kart_154_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38D2B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3932E8"}}, +"kart_155_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38D338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393368"}}, +"kart_155_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38D3B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3933E8"}}, +"kart_155_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38D438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393468"}}, +"kart_155_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38D4B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3934E8"}}, +"kart_156_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38D538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393568"}}, +"kart_156_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38D5B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3935E8"}}, +"kart_156_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38D638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393668"}}, +"kart_156_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38D6B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3936E8"}}, +"kart_157_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38D738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393768"}}, +"kart_157_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38D7B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3937E8"}}, +"kart_157_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38D838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393868"}}, +"kart_157_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38D8B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3938E8"}}, +"kart_158_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38D938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393968"}}, +"kart_158_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38D9B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3939E8"}}, +"kart_158_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38DA38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393A68"}}, +"kart_158_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38DAB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393AE8"}}, +"kart_159_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38DB38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393B68"}}, +"kart_159_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38DBB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393BE8"}}, +"kart_159_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38DC38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393C68"}}, +"kart_159_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38DCB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393CE8"}}, +"kart_160_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38DD38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393D68"}}, +"kart_160_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38DDB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393DE8"}}, +"kart_160_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38DE38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393E68"}}, +"kart_160_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38DEB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393EE8"}}, +"kart_161_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38DF38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393F68"}}, +"kart_161_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38DFB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x393FE8"}}, +"kart_161_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38E038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394068"}}, +"kart_161_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38E0B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3940E8"}}, +"kart_162_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38E138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394168"}}, +"kart_162_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38E1B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3941E8"}}, +"kart_162_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38E238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394268"}}, +"kart_162_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38E2B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3942E8"}}, +"kart_163_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38E338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394368"}}, +"kart_163_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38E3B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3943E8"}}, +"kart_163_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38E438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394468"}}, +"kart_163_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38E4B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3944E8"}}, +"kart_164_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38E538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394568"}}, +"kart_164_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38E5B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3945E8"}}, +"kart_164_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38E638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394668"}}, +"kart_164_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38E6B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3946E8"}}, +"kart_165_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38E738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394768"}}, +"kart_165_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38E7B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3947E8"}}, +"kart_165_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38E838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394868"}}, +"kart_165_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38E8B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3948E8"}}, +"kart_166_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38E938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394968"}}, +"kart_166_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38E9B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3949E8"}}, +"kart_166_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38EA38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394A68"}}, +"kart_166_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38EAB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394AE8"}}, +"kart_167_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38EB38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394B68"}}, +"kart_167_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38EBB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394BE8"}}, +"kart_167_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38EC38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394C68"}}, +"kart_167_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38ECB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394CE8"}}, +"kart_168_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38ED38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394D68"}}, +"kart_168_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38EDB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394DE8"}}, +"kart_168_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38EE38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394E68"}}, +"kart_168_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38EEB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394EE8"}}, +"kart_169_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38EF38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394F68"}}, +"kart_169_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38EFB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x394FE8"}}, +"kart_169_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38F038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395068"}}, +"kart_169_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38F0B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3950E8"}}, +"kart_170_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38F138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395168"}}, +"kart_170_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38F1B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3951E8"}}, +"kart_170_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38F238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395268"}}, +"kart_170_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38F2B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3952E8"}}, +"kart_171_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38F338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395368"}}, +"kart_171_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38F3B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3953E8"}}, +"kart_171_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38F438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395468"}}, +"kart_171_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38F4B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3954E8"}}, +"kart_172_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38F538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395568"}}, +"kart_172_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38F5B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3955E8"}}, +"kart_172_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38F638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395668"}}, +"kart_172_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38F6B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3956E8"}}, +"kart_173_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38F738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395768"}}, +"kart_173_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38F7B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3957E8"}}, +"kart_173_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38F838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395868"}}, +"kart_173_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38F8B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3958E8"}}, +"kart_174_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38F938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395968"}}, +"kart_174_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38F9B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3959E8"}}, +"kart_174_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38FA38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395A68"}}, +"kart_174_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38FAB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395AE8"}}, +"kart_175_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38FB38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395B68"}}, +"kart_175_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38FBB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395BE8"}}, +"kart_175_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38FC38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395C68"}}, +"kart_175_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38FCB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395CE8"}}, +"kart_176_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38FD38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395D68"}}, +"kart_176_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38FDB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395DE8"}}, +"kart_176_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x38FE38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395E68"}}, +"kart_176_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x38FEB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395EE8"}}, +"kart_177_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x38FF38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395F68"}}, +"kart_177_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x38FFB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x395FE8"}}, +"kart_177_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x390038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396068"}}, +"kart_177_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3900B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3960E8"}}, +"kart_178_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x390138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396168"}}, +"kart_178_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3901B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3961E8"}}, +"kart_178_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x390238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396268"}}, +"kart_178_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3902B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3962E8"}}, +"kart_179_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x390338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396368"}}, +"kart_179_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3903B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3963E8"}}, +"kart_179_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x390438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396468"}}, +"kart_179_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3904B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3964E8"}}, +"kart_180_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x390538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396568"}}, +"kart_180_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3905B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3965E8"}}, +"kart_180_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x390638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396668"}}, +"kart_180_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3906B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3966E8"}}, +"kart_181_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x390738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396768"}}, +"kart_181_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3907B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3967E8"}}, +"kart_181_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x390838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396868"}}, +"kart_181_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3908B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3968E8"}}, +"kart_182_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x390938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396968"}}, +"kart_182_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3909B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3969E8"}}, +"kart_182_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x390A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396A68"}}, +"kart_182_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x390AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396AE8"}}, +"kart_183_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x390B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396B68"}}, +"kart_183_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x390BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396BE8"}}, +"kart_183_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x390C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396C68"}}, +"kart_183_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x390CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396CE8"}}, +"kart_184_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x390D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396D68"}}, +"kart_184_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x390DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396DE8"}}, +"kart_184_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x390E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396E68"}}, +"kart_184_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x390EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396EE8"}}, +"kart_185_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x390F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396F68"}}, +"kart_185_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x390FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x396FE8"}}, +"kart_185_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x391038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397068"}}, +"kart_185_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3910B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3970E8"}}, +"kart_186_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x391138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397168"}}, +"kart_186_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3911B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3971E8"}}, +"kart_186_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x391238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397268"}}, +"kart_186_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3912B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3972E8"}}, +"kart_187_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x391338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397368"}}, +"kart_187_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3913B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3973E8"}}, +"kart_187_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x391438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397468"}}, +"kart_187_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3914B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3974E8"}}, +"kart_188_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x391538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397568"}}, +"kart_188_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3915B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3975E8"}}, +"kart_188_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x391638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397668"}}, +"kart_188_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3916B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3976E8"}}, +"kart_189_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x391738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397768"}}, +"kart_189_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3917B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3977E8"}}, +"kart_189_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x391838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397868"}}, +"kart_189_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3918B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3978E8"}}, +"kart_190_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x391938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397968"}}, +"kart_190_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3919B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3979E8"}}, +"kart_190_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x391A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397A68"}}, +"kart_190_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x391AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397AE8"}}, +"kart_191_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x391B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397B68"}}, +"kart_191_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x391BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397BE8"}}, +"kart_191_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x391C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397C68"}}, +"kart_191_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x391CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397CE8"}}, +"kart_192_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x391D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397D68"}}, +"kart_192_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x391DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397DE8"}}, +"kart_192_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x391E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397E68"}}, +"kart_192_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x391EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397EE8"}}, +"kart_193_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x391F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397F68"}}, +"kart_193_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x391FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x397FE8"}}, +"kart_193_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x392038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398068"}}, +"kart_193_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3920B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3980E8"}}, +"kart_194_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x392138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398168"}}, +"kart_194_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3921B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3981E8"}}, +"kart_194_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x392238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398268"}}, +"kart_194_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3922B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3982E8"}}, +"kart_195_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x392338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398368"}}, +"kart_195_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3923B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3983E8"}}, +"kart_195_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x392438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398468"}}, +"kart_195_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3924B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3984E8"}}, +"kart_196_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x392538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398568"}}, +"kart_196_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3925B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3985E8"}}, +"kart_196_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x392638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398668"}}, +"kart_196_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3926B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3986E8"}}, +"kart_197_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x392738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398768"}}, +"kart_197_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3927B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3987E8"}}, +"kart_197_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x392838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398868"}}, +"kart_197_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3928B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3988E8"}}, +"kart_198_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x392938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398968"}}, +"kart_198_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3929B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3989E8"}}, +"kart_198_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x392A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398A68"}}, +"kart_198_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x392AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398AE8"}}, +"kart_199_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x392B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398B68"}}, +"kart_199_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x392BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398BE8"}}, +"kart_199_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x392C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398C68"}}, +"kart_199_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x392CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398CE8"}}, +"kart_200_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x392D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398D68"}}, +"kart_200_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x392DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398DE8"}}, +"kart_200_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x392E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398E68"}}, +"kart_200_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x392EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398EE8"}}, +"kart_201_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x392F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398F68"}}, +"kart_201_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x392FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x398FE8"}}, +"kart_201_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x393038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399068"}}, +"kart_201_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3930B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3990E8"}}, +"kart_202_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x393138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399168"}}, +"kart_202_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3931B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3991E8"}}, +"kart_202_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x393238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399268"}}, +"kart_202_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3932B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3992E8"}}, +"kart_203_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x393338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399368"}}, +"kart_203_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3933B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3993E8"}}, +"kart_203_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x393438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399468"}}, +"kart_203_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3934B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3994E8"}}, +"kart_204_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x393538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399568"}}, +"kart_204_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3935B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3995E8"}}, +"kart_204_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x393638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399668"}}, +"kart_204_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3936B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3996E8"}}, +"kart_205_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x393738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399768"}}, +"kart_205_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3937B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3997E8"}}, +"kart_205_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x393838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399868"}}, +"kart_205_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3938B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3998E8"}}, +"kart_206_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x393938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399968"}}, +"kart_206_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3939B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3999E8"}}, +"kart_206_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x393A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399A68"}}, +"kart_206_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x393AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399AE8"}}, +"kart_207_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x393B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399B68"}}, +"kart_207_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x393BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399BE8"}}, +"kart_207_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x393C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399C68"}}, +"kart_207_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x393CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399CE8"}}, +"kart_208_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x393D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399D68"}}, +"kart_208_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x393DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399DE8"}}, +"kart_208_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x393E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399E68"}}, +"kart_208_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x393EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399EE8"}}, +"kart_209_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x393F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399F68"}}, +"kart_209_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x393FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x399FE8"}}, +"kart_209_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x394038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A068"}}, +"kart_209_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3940B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A0E8"}}, +"kart_210_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x394138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A168"}}, +"kart_210_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3941B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A1E8"}}, +"kart_210_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x394238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A268"}}, +"kart_210_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3942B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A2E8"}}, +"kart_211_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x394338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A368"}}, +"kart_211_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3943B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A3E8"}}, +"kart_211_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x394438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A468"}}, +"kart_211_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3944B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A4E8"}}, +"kart_212_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x394538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A568"}}, +"kart_212_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3945B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A5E8"}}, +"kart_212_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x394638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A668"}}, +"kart_212_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3946B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A6E8"}}, +"kart_213_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x394738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A768"}}, +"kart_213_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3947B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A7E8"}}, +"kart_213_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x394838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A868"}}, +"kart_213_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3948B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A8E8"}}, +"kart_214_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x394938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A968"}}, +"kart_214_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3949B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39A9E8"}}, +"kart_214_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x394A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39AA68"}}, +"kart_214_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x394AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39AAE8"}}, +"kart_215_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x394B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39AB68"}}, +"kart_215_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x394BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39ABE8"}}, +"kart_215_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x394C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39AC68"}}, +"kart_215_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x394CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39ACE8"}}, +"kart_216_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x394D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39AD68"}}, +"kart_216_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x394DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39ADE8"}}, +"kart_216_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x394E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39AE68"}}, +"kart_216_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x394EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39AEE8"}}, +"kart_217_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x394F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39AF68"}}, +"kart_217_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x394FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39AFE8"}}, +"kart_217_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x395038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B068"}}, +"kart_217_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3950B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B0E8"}}, +"kart_218_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x395138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B168"}}, +"kart_218_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3951B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B1E8"}}, +"kart_218_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x395238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B268"}}, +"kart_218_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3952B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B2E8"}}, +"kart_219_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x395338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B368"}}, +"kart_219_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3953B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B3E8"}}, +"kart_219_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x395438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B468"}}, +"kart_219_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3954B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B4E8"}}, +"kart_220_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x395538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B568"}}, +"kart_220_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3955B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B5E8"}}, +"kart_220_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x395638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B668"}}, +"kart_220_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3956B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B6E8"}}, +"kart_221_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x395738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B768"}}, +"kart_221_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3957B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B7E8"}}, +"kart_221_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x395838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B868"}}, +"kart_221_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3958B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B8E8"}}, +"kart_222_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x395938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B968"}}, +"kart_222_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3959B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39B9E8"}}, +"kart_222_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x395A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39BA68"}}, +"kart_222_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x395AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39BAE8"}}, +"kart_223_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x395B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39BB68"}}, +"kart_223_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x395BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39BBE8"}}, +"kart_223_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x395C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39BC68"}}, +"kart_223_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x395CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39BCE8"}}, +"kart_224_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x395D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39BD68"}}, +"kart_224_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x395DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39BDE8"}}, +"kart_224_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x395E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39BE68"}}, +"kart_224_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x395EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39BEE8"}}, +"kart_225_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x395F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39BF68"}}, +"kart_225_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x395FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39BFE8"}}, +"kart_225_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x396038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C068"}}, +"kart_225_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3960B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C0E8"}}, +"kart_226_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x396138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C168"}}, +"kart_226_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3961B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C1E8"}}, +"kart_226_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x396238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C268"}}, +"kart_226_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3962B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C2E8"}}, +"kart_227_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x396338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C368"}}, +"kart_227_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3963B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C3E8"}}, +"kart_227_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x396438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C468"}}, +"kart_227_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3964B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C4E8"}}, +"kart_228_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x396538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C568"}}, +"kart_228_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3965B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C5E8"}}, +"kart_228_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x396638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C668"}}, +"kart_228_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3966B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C6E8"}}, +"kart_229_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x396738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C768"}}, +"kart_229_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3967B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C7E8"}}, +"kart_229_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x396838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C868"}}, +"kart_229_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3968B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C8E8"}}, +"kart_230_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x396938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C968"}}, +"kart_230_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3969B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39C9E8"}}, +"kart_230_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x396A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39CA68"}}, +"kart_230_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x396AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39CAE8"}}, +"kart_231_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x396B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39CB68"}}, +"kart_231_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x396BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39CBE8"}}, +"kart_231_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x396C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39CC68"}}, +"kart_231_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x396CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39CCE8"}}, +"kart_232_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x396D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39CD68"}}, +"kart_232_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x396DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39CDE8"}}, +"kart_232_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x396E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39CE68"}}, +"kart_232_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x396EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39CEE8"}}, +"kart_233_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x396F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39CF68"}}, +"kart_233_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x396FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39CFE8"}}, +"kart_233_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x397038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D068"}}, +"kart_233_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3970B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D0E8"}}, +"kart_234_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x397138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D168"}}, +"kart_234_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3971B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D1E8"}}, +"kart_234_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x397238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D268"}}, +"kart_234_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3972B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D2E8"}}, +"kart_235_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x397338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D368"}}, +"kart_235_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3973B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D3E8"}}, +"kart_235_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x397438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D468"}}, +"kart_235_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3974B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D4E8"}}, +"kart_236_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x397538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D568"}}, +"kart_236_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3975B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D5E8"}}, +"kart_236_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x397638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D668"}}, +"kart_236_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3976B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D6E8"}}, +"kart_237_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x397738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D768"}}, +"kart_237_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3977B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D7E8"}}, +"kart_237_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x397838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D868"}}, +"kart_237_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3978B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D8E8"}}, +"kart_238_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x397938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D968"}}, +"kart_238_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3979B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39D9E8"}}, +"kart_238_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x397A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39DA68"}}, +"kart_238_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x397AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39DAE8"}}, +"kart_239_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x397B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39DB68"}}, +"kart_239_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x397BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39DBE8"}}, +"kart_239_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x397C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39DC68"}}, +"kart_239_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x397CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39DCE8"}}, +"kart_240_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x397D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39DD68"}}, +"kart_240_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x397DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39DDE8"}}, +"kart_240_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x397E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39DE68"}}, +"kart_240_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x397EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39DEE8"}}, +"kart_241_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x397F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39DF68"}}, +"kart_241_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x397FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39DFE8"}}, +"kart_241_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x398038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E068"}}, +"kart_241_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3980B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E0E8"}}, +"kart_242_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x398138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E168"}}, +"kart_242_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3981B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E1E8"}}, +"kart_242_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x398238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E268"}}, +"kart_242_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3982B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E2E8"}}, +"kart_243_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x398338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E368"}}, +"kart_243_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3983B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E3E8"}}, +"kart_243_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x398438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E468"}}, +"kart_243_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3984B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E4E8"}}, +"kart_244_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x398538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E568"}}, +"kart_244_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3985B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E5E8"}}, +"kart_244_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x398638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E668"}}, +"kart_244_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3986B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E6E8"}}, +"kart_245_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x398738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E768"}}, +"kart_245_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3987B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E7E8"}}, +"kart_245_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x398838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E868"}}, +"kart_245_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3988B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E8E8"}}, +"kart_246_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x398938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E968"}}, +"kart_246_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3989B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39E9E8"}}, +"kart_246_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x398A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39EA68"}}, +"kart_246_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x398AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39EAE8"}}, +"kart_247_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x398B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39EB68"}}, +"kart_247_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x398BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39EBE8"}}, +"kart_247_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x398C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39EC68"}}, +"kart_247_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x398CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39ECE8"}}, +"kart_248_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x398D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39ED68"}}, +"kart_248_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x398DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39EDE8"}}, +"kart_248_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x398E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39EE68"}}, +"kart_248_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x398EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39EEE8"}}, +"kart_249_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x398F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39EF68"}}, +"kart_249_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x398FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39EFE8"}}, +"kart_249_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x399038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F068"}}, +"kart_249_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3990B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F0E8"}}, +"kart_250_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x399138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F168"}}, +"kart_250_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3991B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F1E8"}}, +"kart_250_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x399238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F268"}}, +"kart_250_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3992B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F2E8"}}, +"kart_251_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x399338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F368"}}, +"kart_251_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3993B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F3E8"}}, +"kart_251_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x399438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F468"}}, +"kart_251_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3994B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F4E8"}}, +"kart_252_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x399538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F568"}}, +"kart_252_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3995B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F5E8"}}, +"kart_252_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x399638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F668"}}, +"kart_252_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3996B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F6E8"}}, +"kart_253_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x399738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F768"}}, +"kart_253_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3997B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F7E8"}}, +"kart_253_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x399838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F868"}}, +"kart_253_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x3998B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F8E8"}}, +"kart_254_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x399938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F968"}}, +"kart_254_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x3999B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39F9E8"}}, +"kart_254_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x399A38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39FA68"}}, +"kart_254_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x399AB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39FAE8"}}, +"kart_255_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x399B38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39FB68"}}, +"kart_255_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x399BB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39FBE8"}}, +"kart_255_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x399C38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39FC68"}}, +"kart_255_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x399CB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39FCE8"}}, +"kart_256_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x399D38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39FD68"}}, +"kart_256_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x399DB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39FDE8"}}, +"kart_256_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x399E38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39FE68"}}, +"kart_256_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x399EB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39FEE8"}}, +"kart_257_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x399F38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39FF68"}}, +"kart_257_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x399FB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x39FFE8"}}, +"kart_257_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39A038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0068"}}, +"kart_257_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39A0B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A00E8"}}, +"kart_258_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39A138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0168"}}, +"kart_258_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39A1B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A01E8"}}, +"kart_258_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39A238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0268"}}, +"kart_258_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39A2B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A02E8"}}, +"kart_259_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39A338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0368"}}, +"kart_259_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39A3B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A03E8"}}, +"kart_259_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39A438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0468"}}, +"kart_259_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39A4B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A04E8"}}, +"kart_260_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39A538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0568"}}, +"kart_260_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39A5B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A05E8"}}, +"kart_260_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39A638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0668"}}, +"kart_260_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39A6B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A06E8"}}, +"kart_261_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39A738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0768"}}, +"kart_261_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39A7B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A07E8"}}, +"kart_261_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39A838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0868"}}, +"kart_261_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39A8B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A08E8"}}, +"kart_262_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39A938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0968"}}, +"kart_262_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39A9B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A09E8"}}, +"kart_262_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39AA38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0A68"}}, +"kart_262_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39AAB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0AE8"}}, +"kart_263_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39AB38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0B68"}}, +"kart_263_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39ABB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0BE8"}}, +"kart_263_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39AC38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0C68"}}, +"kart_263_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39ACB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0CE8"}}, +"kart_264_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39AD38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0D68"}}, +"kart_264_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39ADB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0DE8"}}, +"kart_264_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39AE38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0E68"}}, +"kart_264_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39AEB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0EE8"}}, +"kart_265_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39AF38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0F68"}}, +"kart_265_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39AFB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A0FE8"}}, +"kart_265_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39B038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1068"}}, +"kart_265_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39B0B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A10E8"}}, +"kart_266_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39B138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1168"}}, +"kart_266_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39B1B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A11E8"}}, +"kart_266_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39B238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1268"}}, +"kart_266_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39B2B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A12E8"}}, +"kart_267_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39B338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1368"}}, +"kart_267_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39B3B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A13E8"}}, +"kart_267_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39B438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1468"}}, +"kart_267_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39B4B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A14E8"}}, +"kart_268_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39B538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1568"}}, +"kart_268_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39B5B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A15E8"}}, +"kart_268_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39B638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1668"}}, +"kart_268_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39B6B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A16E8"}}, +"kart_269_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39B738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1768"}}, +"kart_269_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39B7B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A17E8"}}, +"kart_269_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39B838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1868"}}, +"kart_269_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39B8B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A18E8"}}, +"kart_270_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39B938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1968"}}, +"kart_270_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39B9B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A19E8"}}, +"kart_270_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39BA38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1A68"}}, +"kart_270_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39BAB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1AE8"}}, +"kart_271_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39BB38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1B68"}}, +"kart_271_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39BBB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1BE8"}}, +"kart_271_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39BC38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1C68"}}, +"kart_271_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39BCB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1CE8"}}, +"kart_272_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39BD38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1D68"}}, +"kart_272_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39BDB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1DE8"}}, +"kart_272_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39BE38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1E68"}}, +"kart_272_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39BEB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1EE8"}}, +"kart_273_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39BF38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1F68"}}, +"kart_273_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39BFB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A1FE8"}}, +"kart_273_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39C038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2068"}}, +"kart_273_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39C0B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A20E8"}}, +"kart_274_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39C138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2168"}}, +"kart_274_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39C1B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A21E8"}}, +"kart_274_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39C238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2268"}}, +"kart_274_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39C2B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A22E8"}}, +"kart_275_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39C338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2368"}}, +"kart_275_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39C3B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A23E8"}}, +"kart_275_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39C438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2468"}}, +"kart_275_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39C4B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A24E8"}}, +"kart_276_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39C538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2568"}}, +"kart_276_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39C5B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A25E8"}}, +"kart_276_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39C638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2668"}}, +"kart_276_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39C6B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A26E8"}}, +"kart_277_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39C738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2768"}}, +"kart_277_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39C7B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A27E8"}}, +"kart_277_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39C838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2868"}}, +"kart_277_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39C8B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A28E8"}}, +"kart_278_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39C938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2968"}}, +"kart_278_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39C9B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A29E8"}}, +"kart_278_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39CA38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2A68"}}, +"kart_278_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39CAB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2AE8"}}, +"kart_279_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39CB38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2B68"}}, +"kart_279_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39CBB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2BE8"}}, +"kart_279_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39CC38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2C68"}}, +"kart_279_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39CCB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2CE8"}}, +"kart_280_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39CD38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2D68"}}, +"kart_280_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39CDB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2DE8"}}, +"kart_280_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39CE38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2E68"}}, +"kart_280_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39CEB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2EE8"}}, +"kart_281_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39CF38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2F68"}}, +"kart_281_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39CFB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A2FE8"}}, +"kart_281_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39D038", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3068"}}, +"kart_281_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39D0B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A30E8"}}, +"kart_282_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39D138", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3168"}}, +"kart_282_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39D1B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A31E8"}}, +"kart_282_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39D238", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3268"}}, +"kart_282_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39D2B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A32E8"}}, +"kart_283_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39D338", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3368"}}, +"kart_283_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39D3B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A33E8"}}, +"kart_283_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39D438", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3468"}}, +"kart_283_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39D4B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A34E8"}}, +"kart_284_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39D538", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3568"}}, +"kart_284_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39D5B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A35E8"}}, +"kart_284_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39D638", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3668"}}, +"kart_284_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39D6B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A36E8"}}, +"kart_285_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39D738", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3768"}}, +"kart_285_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39D7B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A37E8"}}, +"kart_285_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39D838", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3868"}}, +"kart_285_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39D8B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A38E8"}}, +"kart_286_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39D938", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3968"}}, +"kart_286_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39D9B8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A39E8"}}, +"kart_286_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39DA38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3A68"}}, +"kart_286_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39DAB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3AE8"}}, +"kart_287_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39DB38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3B68"}}, +"kart_287_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39DBB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3BE8"}}, +"kart_287_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39DC38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3C68"}}, +"kart_287_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39DCB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3CE8"}}, +"kart_288_wheel_0": {"output_dir": "peach/palettes", "rom_offset": "0x39DD38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3D68"}}, +"kart_288_wheel_1": {"output_dir": "peach/palettes", "rom_offset": "0x39DDB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3DE8"}}, +"kart_288_wheel_2": {"output_dir": "peach/palettes", "rom_offset": "0x39DE38", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3E68"}}, +"kart_288_wheel_3": {"output_dir": "peach/palettes", "rom_offset": "0x39DEB8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3EE8"}}, +"peach_kart_palette": {"output_dir": "peach/palettes", "rom_offset": "0x39DF38", "width": 16, "height": 12, "type": "rgba16", "jp.v11": {"rom_offset": "0x3A3F68"}} } \ No newline at end of file diff --git a/assets/karts/toad_kart.json b/assets/karts/toad_kart.json index d9616cc140..29ae91f589 100644 --- a/assets/karts/toad_kart.json +++ b/assets/karts/toad_kart.json @@ -1,1480 +1,1480 @@ { -"toad_kart_frame000": {"output_dir": "toad/frames", "rom_offset": "0x43B3E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame001": {"output_dir": "toad/frames", "rom_offset": "0x43B848", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_001_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame002": {"output_dir": "toad/frames", "rom_offset": "0x43BCCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_002_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame003": {"output_dir": "toad/frames", "rom_offset": "0x43C158", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_003_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame004": {"output_dir": "toad/frames", "rom_offset": "0x43C608", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_004_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame005": {"output_dir": "toad/frames", "rom_offset": "0x43CABC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_005_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame006": {"output_dir": "toad/frames", "rom_offset": "0x43CF90", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_006_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame007": {"output_dir": "toad/frames", "rom_offset": "0x43D46C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_007_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame008": {"output_dir": "toad/frames", "rom_offset": "0x43D94C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_008_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame009": {"output_dir": "toad/frames", "rom_offset": "0x43DE3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_009_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame010": {"output_dir": "toad/frames", "rom_offset": "0x43E338", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_010_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame011": {"output_dir": "toad/frames", "rom_offset": "0x43E838", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_011_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame012": {"output_dir": "toad/frames", "rom_offset": "0x43ED48", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_012_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame013": {"output_dir": "toad/frames", "rom_offset": "0x43F260", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_013_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame014": {"output_dir": "toad/frames", "rom_offset": "0x43F78C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_014_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame015": {"output_dir": "toad/frames", "rom_offset": "0x43FCC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_015_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame016": {"output_dir": "toad/frames", "rom_offset": "0x440218", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_016_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame017": {"output_dir": "toad/frames", "rom_offset": "0x440760", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_017_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame018": {"output_dir": "toad/frames", "rom_offset": "0x440CBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_018_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame019": {"output_dir": "toad/frames", "rom_offset": "0x441224", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_019_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame020": {"output_dir": "toad/frames", "rom_offset": "0x4417A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_020_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame021": {"output_dir": "toad/frames", "rom_offset": "0x441D40", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_021_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame022": {"output_dir": "toad/frames", "rom_offset": "0x4421BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_022_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame023": {"output_dir": "toad/frames", "rom_offset": "0x442648", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_023_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame024": {"output_dir": "toad/frames", "rom_offset": "0x442AEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_024_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame025": {"output_dir": "toad/frames", "rom_offset": "0x442F9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_025_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame026": {"output_dir": "toad/frames", "rom_offset": "0x44344C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_026_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame027": {"output_dir": "toad/frames", "rom_offset": "0x443900", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_027_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame028": {"output_dir": "toad/frames", "rom_offset": "0x443DD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_028_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame029": {"output_dir": "toad/frames", "rom_offset": "0x4442C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_029_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame030": {"output_dir": "toad/frames", "rom_offset": "0x4447CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_030_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame031": {"output_dir": "toad/frames", "rom_offset": "0x444CE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_031_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame032": {"output_dir": "toad/frames", "rom_offset": "0x4451F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_032_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame033": {"output_dir": "toad/frames", "rom_offset": "0x445728", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_033_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame034": {"output_dir": "toad/frames", "rom_offset": "0x445C58", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_034_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame035": {"output_dir": "toad/frames", "rom_offset": "0x446198", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_035_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame036": {"output_dir": "toad/frames", "rom_offset": "0x4466DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_036_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame037": {"output_dir": "toad/frames", "rom_offset": "0x446C18", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_037_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame038": {"output_dir": "toad/frames", "rom_offset": "0x447174", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_038_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame039": {"output_dir": "toad/frames", "rom_offset": "0x4476D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_039_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame040": {"output_dir": "toad/frames", "rom_offset": "0x447C54", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_040_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame041": {"output_dir": "toad/frames", "rom_offset": "0x4481E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_041_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame042": {"output_dir": "toad/frames", "rom_offset": "0x44878C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_042_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame043": {"output_dir": "toad/frames", "rom_offset": "0x448C14", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_043_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame044": {"output_dir": "toad/frames", "rom_offset": "0x4490B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_044_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame045": {"output_dir": "toad/frames", "rom_offset": "0x449564", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_045_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame046": {"output_dir": "toad/frames", "rom_offset": "0x449A2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_046_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame047": {"output_dir": "toad/frames", "rom_offset": "0x449EF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_047_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame048": {"output_dir": "toad/frames", "rom_offset": "0x44A3D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_048_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame049": {"output_dir": "toad/frames", "rom_offset": "0x44A8C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_049_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame050": {"output_dir": "toad/frames", "rom_offset": "0x44ADD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_050_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame051": {"output_dir": "toad/frames", "rom_offset": "0x44B2EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_051_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame052": {"output_dir": "toad/frames", "rom_offset": "0x44B828", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_052_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame053": {"output_dir": "toad/frames", "rom_offset": "0x44BD5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_053_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame054": {"output_dir": "toad/frames", "rom_offset": "0x44C2B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_054_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame055": {"output_dir": "toad/frames", "rom_offset": "0x44C80C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_055_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame056": {"output_dir": "toad/frames", "rom_offset": "0x44CD60", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_056_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame057": {"output_dir": "toad/frames", "rom_offset": "0x44D2A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_057_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame058": {"output_dir": "toad/frames", "rom_offset": "0x44D7FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_058_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame059": {"output_dir": "toad/frames", "rom_offset": "0x44DD74", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_059_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame060": {"output_dir": "toad/frames", "rom_offset": "0x44E2F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_060_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame061": {"output_dir": "toad/frames", "rom_offset": "0x44E894", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_061_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame062": {"output_dir": "toad/frames", "rom_offset": "0x44EE20", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_062_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame063": {"output_dir": "toad/frames", "rom_offset": "0x44F3E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_063_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame064": {"output_dir": "toad/frames", "rom_offset": "0x44F870", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_064_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame065": {"output_dir": "toad/frames", "rom_offset": "0x44FD14", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_065_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame066": {"output_dir": "toad/frames", "rom_offset": "0x4501BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_066_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame067": {"output_dir": "toad/frames", "rom_offset": "0x450678", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_067_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame068": {"output_dir": "toad/frames", "rom_offset": "0x450B60", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_068_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame069": {"output_dir": "toad/frames", "rom_offset": "0x45104C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_069_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame070": {"output_dir": "toad/frames", "rom_offset": "0x451558", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_070_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame071": {"output_dir": "toad/frames", "rom_offset": "0x451A78", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_071_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame072": {"output_dir": "toad/frames", "rom_offset": "0x451FAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_072_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame073": {"output_dir": "toad/frames", "rom_offset": "0x4524FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_073_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame074": {"output_dir": "toad/frames", "rom_offset": "0x452A48", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_074_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame075": {"output_dir": "toad/frames", "rom_offset": "0x452FA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_075_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame076": {"output_dir": "toad/frames", "rom_offset": "0x4534FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_076_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame077": {"output_dir": "toad/frames", "rom_offset": "0x453A70", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_077_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame078": {"output_dir": "toad/frames", "rom_offset": "0x453FE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_078_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame079": {"output_dir": "toad/frames", "rom_offset": "0x45456C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_079_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame080": {"output_dir": "toad/frames", "rom_offset": "0x454B04", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_080_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame081": {"output_dir": "toad/frames", "rom_offset": "0x455098", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_081_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame082": {"output_dir": "toad/frames", "rom_offset": "0x455634", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_082_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame083": {"output_dir": "toad/frames", "rom_offset": "0x455BD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_083_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame084": {"output_dir": "toad/frames", "rom_offset": "0x456184", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_084_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame085": {"output_dir": "toad/frames", "rom_offset": "0x45663C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_085_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame086": {"output_dir": "toad/frames", "rom_offset": "0x456B04", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_086_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame087": {"output_dir": "toad/frames", "rom_offset": "0x456FE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_087_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame088": {"output_dir": "toad/frames", "rom_offset": "0x4574E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_088_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame089": {"output_dir": "toad/frames", "rom_offset": "0x4579E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_089_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame090": {"output_dir": "toad/frames", "rom_offset": "0x457EDC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_090_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame091": {"output_dir": "toad/frames", "rom_offset": "0x4583E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_091_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame092": {"output_dir": "toad/frames", "rom_offset": "0x458910", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_092_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame093": {"output_dir": "toad/frames", "rom_offset": "0x458E58", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_093_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame094": {"output_dir": "toad/frames", "rom_offset": "0x4593A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_094_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame095": {"output_dir": "toad/frames", "rom_offset": "0x459910", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_095_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame096": {"output_dir": "toad/frames", "rom_offset": "0x459E80", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_096_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame097": {"output_dir": "toad/frames", "rom_offset": "0x45A3E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_097_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame098": {"output_dir": "toad/frames", "rom_offset": "0x45A950", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_098_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame099": {"output_dir": "toad/frames", "rom_offset": "0x45AED0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_099_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame100": {"output_dir": "toad/frames", "rom_offset": "0x45B458", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_100_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame101": {"output_dir": "toad/frames", "rom_offset": "0x45B9F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_101_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame102": {"output_dir": "toad/frames", "rom_offset": "0x45BF98", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_102_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame103": {"output_dir": "toad/frames", "rom_offset": "0x45C54C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_103_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame104": {"output_dir": "toad/frames", "rom_offset": "0x45CB08", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_104_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame105": {"output_dir": "toad/frames", "rom_offset": "0x45D0D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_105_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame106": {"output_dir": "toad/frames", "rom_offset": "0x45D594", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_106_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame107": {"output_dir": "toad/frames", "rom_offset": "0x45DA88", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_107_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame108": {"output_dir": "toad/frames", "rom_offset": "0x45DF7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_108_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame109": {"output_dir": "toad/frames", "rom_offset": "0x45E49C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_109_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame110": {"output_dir": "toad/frames", "rom_offset": "0x45E9B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_110_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame111": {"output_dir": "toad/frames", "rom_offset": "0x45EEE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_111_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame112": {"output_dir": "toad/frames", "rom_offset": "0x45F40C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_112_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame113": {"output_dir": "toad/frames", "rom_offset": "0x45F950", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_113_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame114": {"output_dir": "toad/frames", "rom_offset": "0x45FE9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_114_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame115": {"output_dir": "toad/frames", "rom_offset": "0x4603FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_115_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame116": {"output_dir": "toad/frames", "rom_offset": "0x460970", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_116_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame117": {"output_dir": "toad/frames", "rom_offset": "0x460EE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_117_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame118": {"output_dir": "toad/frames", "rom_offset": "0x461464", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_118_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame119": {"output_dir": "toad/frames", "rom_offset": "0x4619E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_119_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame120": {"output_dir": "toad/frames", "rom_offset": "0x461F8C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_120_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame121": {"output_dir": "toad/frames", "rom_offset": "0x46251C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_121_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame122": {"output_dir": "toad/frames", "rom_offset": "0x462ABC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_122_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame123": {"output_dir": "toad/frames", "rom_offset": "0x463070", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_123_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame124": {"output_dir": "toad/frames", "rom_offset": "0x463634", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_124_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame125": {"output_dir": "toad/frames", "rom_offset": "0x463C08", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_125_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame126": {"output_dir": "toad/frames", "rom_offset": "0x4641EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_126_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame127": {"output_dir": "toad/frames", "rom_offset": "0x4646C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_127_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame128": {"output_dir": "toad/frames", "rom_offset": "0x464BA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_128_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame129": {"output_dir": "toad/frames", "rom_offset": "0x46509C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_129_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame130": {"output_dir": "toad/frames", "rom_offset": "0x4655AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_130_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame131": {"output_dir": "toad/frames", "rom_offset": "0x465AC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_131_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame132": {"output_dir": "toad/frames", "rom_offset": "0x465FEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_132_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame133": {"output_dir": "toad/frames", "rom_offset": "0x466528", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_133_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame134": {"output_dir": "toad/frames", "rom_offset": "0x466A80", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_134_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame135": {"output_dir": "toad/frames", "rom_offset": "0x466FDC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_135_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame136": {"output_dir": "toad/frames", "rom_offset": "0x46755C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_136_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame137": {"output_dir": "toad/frames", "rom_offset": "0x467AD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_137_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame138": {"output_dir": "toad/frames", "rom_offset": "0x468070", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_138_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame139": {"output_dir": "toad/frames", "rom_offset": "0x46860C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_139_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame140": {"output_dir": "toad/frames", "rom_offset": "0x468BA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_140_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame141": {"output_dir": "toad/frames", "rom_offset": "0x469140", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_141_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame142": {"output_dir": "toad/frames", "rom_offset": "0x4696C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_142_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame143": {"output_dir": "toad/frames", "rom_offset": "0x469C7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_143_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame144": {"output_dir": "toad/frames", "rom_offset": "0x46A260", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_144_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame145": {"output_dir": "toad/frames", "rom_offset": "0x46A830", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_145_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame146": {"output_dir": "toad/frames", "rom_offset": "0x46AE04", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_146_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame147": {"output_dir": "toad/frames", "rom_offset": "0x46B3EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_147_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame148": {"output_dir": "toad/frames", "rom_offset": "0x46B8E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_148_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame149": {"output_dir": "toad/frames", "rom_offset": "0x46BE00", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_149_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame150": {"output_dir": "toad/frames", "rom_offset": "0x46C330", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_150_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame151": {"output_dir": "toad/frames", "rom_offset": "0x46C854", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_151_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame152": {"output_dir": "toad/frames", "rom_offset": "0x46CD80", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_152_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame153": {"output_dir": "toad/frames", "rom_offset": "0x46D2CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_153_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame154": {"output_dir": "toad/frames", "rom_offset": "0x46D82C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_154_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame155": {"output_dir": "toad/frames", "rom_offset": "0x46DD9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_155_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame156": {"output_dir": "toad/frames", "rom_offset": "0x46E308", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_156_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame157": {"output_dir": "toad/frames", "rom_offset": "0x46E88C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_157_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame158": {"output_dir": "toad/frames", "rom_offset": "0x46EE20", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_158_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame159": {"output_dir": "toad/frames", "rom_offset": "0x46F3A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_159_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame160": {"output_dir": "toad/frames", "rom_offset": "0x46F92C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_160_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame161": {"output_dir": "toad/frames", "rom_offset": "0x46FEC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_161_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame162": {"output_dir": "toad/frames", "rom_offset": "0x470488", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_162_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame163": {"output_dir": "toad/frames", "rom_offset": "0x470A4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_163_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame164": {"output_dir": "toad/frames", "rom_offset": "0x47100C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_164_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame165": {"output_dir": "toad/frames", "rom_offset": "0x4715F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_165_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame166": {"output_dir": "toad/frames", "rom_offset": "0x471BE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_166_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame167": {"output_dir": "toad/frames", "rom_offset": "0x4721D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_167_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame168": {"output_dir": "toad/frames", "rom_offset": "0x4727C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_168_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame169": {"output_dir": "toad/frames", "rom_offset": "0x472CD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_169_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame170": {"output_dir": "toad/frames", "rom_offset": "0x473204", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_170_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame171": {"output_dir": "toad/frames", "rom_offset": "0x47374C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_171_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame172": {"output_dir": "toad/frames", "rom_offset": "0x473C98", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_172_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame173": {"output_dir": "toad/frames", "rom_offset": "0x4741FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_173_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame174": {"output_dir": "toad/frames", "rom_offset": "0x474764", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_174_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame175": {"output_dir": "toad/frames", "rom_offset": "0x474CD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_175_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame176": {"output_dir": "toad/frames", "rom_offset": "0x47524C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_176_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame177": {"output_dir": "toad/frames", "rom_offset": "0x4757C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_177_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame178": {"output_dir": "toad/frames", "rom_offset": "0x475D50", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_178_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame179": {"output_dir": "toad/frames", "rom_offset": "0x4762E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_179_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame180": {"output_dir": "toad/frames", "rom_offset": "0x476878", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_180_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame181": {"output_dir": "toad/frames", "rom_offset": "0x476E2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_181_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame182": {"output_dir": "toad/frames", "rom_offset": "0x4773D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_182_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame183": {"output_dir": "toad/frames", "rom_offset": "0x477988", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_183_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame184": {"output_dir": "toad/frames", "rom_offset": "0x477F38", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_184_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame185": {"output_dir": "toad/frames", "rom_offset": "0x478504", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_185_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame186": {"output_dir": "toad/frames", "rom_offset": "0x478B00", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_186_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame187": {"output_dir": "toad/frames", "rom_offset": "0x4790F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_187_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame188": {"output_dir": "toad/frames", "rom_offset": "0x479710", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_188_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame189": {"output_dir": "toad/frames", "rom_offset": "0x479D18", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_189_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame190": {"output_dir": "toad/frames", "rom_offset": "0x47A1B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_190_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame191": {"output_dir": "toad/frames", "rom_offset": "0x47A67C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_191_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame192": {"output_dir": "toad/frames", "rom_offset": "0x47AB58", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_192_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame193": {"output_dir": "toad/frames", "rom_offset": "0x47B070", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_193_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame194": {"output_dir": "toad/frames", "rom_offset": "0x47B5C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_194_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame195": {"output_dir": "toad/frames", "rom_offset": "0x47BB38", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_195_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame196": {"output_dir": "toad/frames", "rom_offset": "0x47C0D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_196_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame197": {"output_dir": "toad/frames", "rom_offset": "0x47C698", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_197_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame198": {"output_dir": "toad/frames", "rom_offset": "0x47CC78", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_198_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame199": {"output_dir": "toad/frames", "rom_offset": "0x47D284", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_199_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame200": {"output_dir": "toad/frames", "rom_offset": "0x47D8AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_200_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame201": {"output_dir": "toad/frames", "rom_offset": "0x47DED0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_201_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame202": {"output_dir": "toad/frames", "rom_offset": "0x47E4E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_202_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame203": {"output_dir": "toad/frames", "rom_offset": "0x47EAEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_203_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame204": {"output_dir": "toad/frames", "rom_offset": "0x47F0EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_204_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame205": {"output_dir": "toad/frames", "rom_offset": "0x47F6C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_205_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame206": {"output_dir": "toad/frames", "rom_offset": "0x47FC98", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_206_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame207": {"output_dir": "toad/frames", "rom_offset": "0x480254", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_207_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame208": {"output_dir": "toad/frames", "rom_offset": "0x480804", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_208_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame209": {"output_dir": "toad/frames", "rom_offset": "0x480DB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_209_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame210": {"output_dir": "toad/frames", "rom_offset": "0x48125C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_210_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame211": {"output_dir": "toad/frames", "rom_offset": "0x48174C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_211_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame212": {"output_dir": "toad/frames", "rom_offset": "0x481C70", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_212_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame213": {"output_dir": "toad/frames", "rom_offset": "0x4821C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_213_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame214": {"output_dir": "toad/frames", "rom_offset": "0x482724", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_214_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame215": {"output_dir": "toad/frames", "rom_offset": "0x482CB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_215_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame216": {"output_dir": "toad/frames", "rom_offset": "0x483258", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_216_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame217": {"output_dir": "toad/frames", "rom_offset": "0x483820", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_217_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame218": {"output_dir": "toad/frames", "rom_offset": "0x483E14", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_218_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame219": {"output_dir": "toad/frames", "rom_offset": "0x484428", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_219_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame220": {"output_dir": "toad/frames", "rom_offset": "0x484A28", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_220_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame221": {"output_dir": "toad/frames", "rom_offset": "0x485034", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_221_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame222": {"output_dir": "toad/frames", "rom_offset": "0x485630", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_222_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame223": {"output_dir": "toad/frames", "rom_offset": "0x485C04", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_223_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame224": {"output_dir": "toad/frames", "rom_offset": "0x4861B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_224_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame225": {"output_dir": "toad/frames", "rom_offset": "0x486754", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_225_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame226": {"output_dir": "toad/frames", "rom_offset": "0x486CF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_226_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame227": {"output_dir": "toad/frames", "rom_offset": "0x48728C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_227_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame228": {"output_dir": "toad/frames", "rom_offset": "0x48780C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_228_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame229": {"output_dir": "toad/frames", "rom_offset": "0x487D78", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_229_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame230": {"output_dir": "toad/frames", "rom_offset": "0x48824C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_230_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame231": {"output_dir": "toad/frames", "rom_offset": "0x488764", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_231_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame232": {"output_dir": "toad/frames", "rom_offset": "0x488CA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_232_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame233": {"output_dir": "toad/frames", "rom_offset": "0x489228", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_233_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame234": {"output_dir": "toad/frames", "rom_offset": "0x4897C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_234_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame235": {"output_dir": "toad/frames", "rom_offset": "0x489D68", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_235_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame236": {"output_dir": "toad/frames", "rom_offset": "0x48A34C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_236_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame237": {"output_dir": "toad/frames", "rom_offset": "0x48A924", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_237_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame238": {"output_dir": "toad/frames", "rom_offset": "0x48AF10", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_238_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame239": {"output_dir": "toad/frames", "rom_offset": "0x48B524", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_239_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame240": {"output_dir": "toad/frames", "rom_offset": "0x48BB1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_240_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame241": {"output_dir": "toad/frames", "rom_offset": "0x48C110", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_241_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame242": {"output_dir": "toad/frames", "rom_offset": "0x48C6DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_242_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame243": {"output_dir": "toad/frames", "rom_offset": "0x48CC9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_243_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame244": {"output_dir": "toad/frames", "rom_offset": "0x48D248", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_244_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame245": {"output_dir": "toad/frames", "rom_offset": "0x48D7D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_245_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame246": {"output_dir": "toad/frames", "rom_offset": "0x48DD58", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_246_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame247": {"output_dir": "toad/frames", "rom_offset": "0x48E2D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_247_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame248": {"output_dir": "toad/frames", "rom_offset": "0x48E838", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_248_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame249": {"output_dir": "toad/frames", "rom_offset": "0x48ED58", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_249_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame250": {"output_dir": "toad/frames", "rom_offset": "0x48F26C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_250_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame251": {"output_dir": "toad/frames", "rom_offset": "0x48F794", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_251_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame252": {"output_dir": "toad/frames", "rom_offset": "0x48FD00", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_252_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame253": {"output_dir": "toad/frames", "rom_offset": "0x490288", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_253_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame254": {"output_dir": "toad/frames", "rom_offset": "0x490828", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_254_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame255": {"output_dir": "toad/frames", "rom_offset": "0x490DF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_255_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame256": {"output_dir": "toad/frames", "rom_offset": "0x4913E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_256_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame257": {"output_dir": "toad/frames", "rom_offset": "0x4919D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_257_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame258": {"output_dir": "toad/frames", "rom_offset": "0x491FD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_258_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame259": {"output_dir": "toad/frames", "rom_offset": "0x4925DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_259_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame260": {"output_dir": "toad/frames", "rom_offset": "0x492BE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_260_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame261": {"output_dir": "toad/frames", "rom_offset": "0x4931B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_261_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame262": {"output_dir": "toad/frames", "rom_offset": "0x493788", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_262_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame263": {"output_dir": "toad/frames", "rom_offset": "0x493D1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_263_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame264": {"output_dir": "toad/frames", "rom_offset": "0x494288", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_264_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame265": {"output_dir": "toad/frames", "rom_offset": "0x4947EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_265_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame266": {"output_dir": "toad/frames", "rom_offset": "0x494D4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_266_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame267": {"output_dir": "toad/frames", "rom_offset": "0x495290", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_267_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame268": {"output_dir": "toad/frames", "rom_offset": "0x4957AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_268_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame269": {"output_dir": "toad/frames", "rom_offset": "0x495C80", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_269_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame270": {"output_dir": "toad/frames", "rom_offset": "0x4961C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_270_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame271": {"output_dir": "toad/frames", "rom_offset": "0x496748", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_271_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame272": {"output_dir": "toad/frames", "rom_offset": "0x496CD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_272_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame273": {"output_dir": "toad/frames", "rom_offset": "0x497278", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_273_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame274": {"output_dir": "toad/frames", "rom_offset": "0x497848", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_274_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame275": {"output_dir": "toad/frames", "rom_offset": "0x497E3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_275_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame276": {"output_dir": "toad/frames", "rom_offset": "0x498454", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_276_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame277": {"output_dir": "toad/frames", "rom_offset": "0x498A64", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_277_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame278": {"output_dir": "toad/frames", "rom_offset": "0x499078", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_278_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame279": {"output_dir": "toad/frames", "rom_offset": "0x49967C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_279_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame280": {"output_dir": "toad/frames", "rom_offset": "0x499C78", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_280_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame281": {"output_dir": "toad/frames", "rom_offset": "0x49A254", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_281_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame282": {"output_dir": "toad/frames", "rom_offset": "0x49A800", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_282_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame283": {"output_dir": "toad/frames", "rom_offset": "0x49AD74", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_283_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame284": {"output_dir": "toad/frames", "rom_offset": "0x49B2C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_284_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame285": {"output_dir": "toad/frames", "rom_offset": "0x49B7FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_285_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame286": {"output_dir": "toad/frames", "rom_offset": "0x49BD0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_286_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame287": {"output_dir": "toad/frames", "rom_offset": "0x49C210", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_287_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame288": {"output_dir": "toad/frames", "rom_offset": "0x49C6E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_288_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame289": {"output_dir": "toad/frames", "rom_offset": "0x49CB80", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame290": {"output_dir": "toad/frames", "rom_offset": "0x49D014", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame291": {"output_dir": "toad/frames", "rom_offset": "0x49D560", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame292": {"output_dir": "toad/frames", "rom_offset": "0x49DB28", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame293": {"output_dir": "toad/frames", "rom_offset": "0x49E198", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame294": {"output_dir": "toad/frames", "rom_offset": "0x49E79C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame295": {"output_dir": "toad/frames", "rom_offset": "0x49EDA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame296": {"output_dir": "toad/frames", "rom_offset": "0x49F344", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame297": {"output_dir": "toad/frames", "rom_offset": "0x49F85C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame298": {"output_dir": "toad/frames", "rom_offset": "0x49FCF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame299": {"output_dir": "toad/frames", "rom_offset": "0x4A0234", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame300": {"output_dir": "toad/frames", "rom_offset": "0x4A079C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame301": {"output_dir": "toad/frames", "rom_offset": "0x4A0D14", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame302": {"output_dir": "toad/frames", "rom_offset": "0x4A126C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame303": {"output_dir": "toad/frames", "rom_offset": "0x4A17F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame304": {"output_dir": "toad/frames", "rom_offset": "0x4A1D94", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame305": {"output_dir": "toad/frames", "rom_offset": "0x4A22D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame306": {"output_dir": "toad/frames", "rom_offset": "0x4A272C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame307": {"output_dir": "toad/frames", "rom_offset": "0x4A2CCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame308": {"output_dir": "toad/frames", "rom_offset": "0x4A330C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame309": {"output_dir": "toad/frames", "rom_offset": "0x4A397C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame310": {"output_dir": "toad/frames", "rom_offset": "0x4A3F60", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame311": {"output_dir": "toad/frames", "rom_offset": "0x4A4540", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame312": {"output_dir": "toad/frames", "rom_offset": "0x4A4B08", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame313": {"output_dir": "toad/frames", "rom_offset": "0x4A4FF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame314": {"output_dir": "toad/frames", "rom_offset": "0x4A548C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame315": {"output_dir": "toad/frames", "rom_offset": "0x4A59C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame316": {"output_dir": "toad/frames", "rom_offset": "0x4A5F0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame317": {"output_dir": "toad/frames", "rom_offset": "0x4A6490", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame318": {"output_dir": "toad/frames", "rom_offset": "0x4A6A38", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame319": {"output_dir": "toad/frames", "rom_offset": "0x4A6FC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"toad_kart_frame320": {"output_dir": "toad/frames", "rom_offset": "0x4A7570", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"kart_000_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A7AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A7B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A7BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A7C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A7CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A7D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A7DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A7E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A7EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A7F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A7FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A8048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A80C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A8148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A81C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A8248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A82C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A8348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A83C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A8448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A84C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A8548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A85C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A8648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A86C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A8748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A87C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A8848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A88C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A8948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A89C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A8A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A8AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A8B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A8BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A8C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A8CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A8D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A8DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A8E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A8EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A8F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A8FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A9048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A90C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A9148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A91C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A9248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A92C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A9348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A93C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A9448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A94C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A9548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A95C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A9648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A96C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A9748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A97C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A9848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A98C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A9948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A99C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A9A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A9AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A9B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A9BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A9C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A9CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A9D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A9DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A9E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A9EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A9F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A9FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AA048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AA0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AA148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AA1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AA248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AA2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AA348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AA3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AA448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AA4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AA548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AA5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AA648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AA6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AA748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AA7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AA848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AA8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AA948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AA9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AAA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AAAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AAB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AABC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AAC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AACC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AAD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AADC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AAE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AAEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AAF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AAFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AB048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AB0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AB148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AB1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AB248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AB2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AB348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AB3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AB448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AB4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AB548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AB5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AB648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AB6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AB748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AB7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AB848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AB8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AB948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AB9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4ABA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4ABAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4ABB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4ABBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4ABC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4ABCC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4ABD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4ABDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4ABE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4ABEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4ABF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4ABFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AC048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AC0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AC148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AC1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AC248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AC2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AC348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AC3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AC448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AC4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AC548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AC5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AC648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AC6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AC748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AC7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AC848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AC8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AC948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AC9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4ACA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4ACAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4ACB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4ACBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4ACC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4ACCC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4ACD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4ACDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4ACE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4ACEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4ACF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4ACFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AD048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AD0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AD148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AD1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AD248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AD2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AD348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AD3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AD448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AD4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AD548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AD5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AD648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AD6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AD748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AD7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AD848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AD8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AD948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AD9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4ADA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4ADAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4ADB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4ADBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4ADC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4ADCC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4ADD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4ADDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4ADE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4ADEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4ADF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4ADFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AE048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AE0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AE148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AE1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AE248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AE2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AE348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AE3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AE448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AE4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AE548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AE5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AE648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AE6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AE748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AE7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AE848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AE8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AE948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AE9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AEA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AEAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AEB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AEBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AEC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AECC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AED48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AEDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AEE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AEEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AEF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AEFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AF048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AF0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AF148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AF1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AF248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AF2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AF348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AF3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AF448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AF4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AF548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AF5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AF648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AF6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AF748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AF7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AF848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AF8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AF948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AF9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AFA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AFAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AFB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AFBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AFC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AFCC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AFD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AFDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AFE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AFEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AFF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AFFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B0048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B00C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B0148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B01C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B0248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B02C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B0348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B03C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B0448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B04C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B0548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B05C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B0648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B06C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B0748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B07C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B0848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B08C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B0948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B09C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B0A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B0AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B0B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B0BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B0C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B0CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B0D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B0DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B0E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B0EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B0F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B0FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B1048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B10C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B1148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B11C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B1248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B12C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B1348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B13C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B1448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B14C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B1548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B15C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B1648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B16C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B1748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B17C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B1848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B18C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B1948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B19C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B1A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B1AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B1B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B1BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B1C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B1CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B1D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B1DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B1E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B1EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B1F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B1FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B2048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B20C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B2148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B21C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B2248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B22C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B2348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B23C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B2448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B24C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B2548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B25C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B2648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B26C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B2748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B27C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B2848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B28C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B2948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B29C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B2A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B2AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B2B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B2BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B2C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B2CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B2D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B2DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B2E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B2EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B2F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B2FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B3048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B30C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B3148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B31C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B3248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B32C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B3348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B33C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B3448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B34C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B3548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B35C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B3648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B36C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B3748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B37C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B3848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B38C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B3948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B39C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B3A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B3AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B3B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B3BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B3C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B3CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B3D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B3DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B3E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B3EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B3F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B3FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B4048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B40C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B4148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B41C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B4248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B42C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B4348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B43C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B4448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B44C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B4548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B45C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B4648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B46C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B4748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B47C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B4848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B48C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B4948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B49C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B4A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B4AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B4B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B4BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B4C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B4CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B4D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B4DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B4E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B4EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B4F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B4FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B5048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B50C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B5148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B51C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B5248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B52C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B5348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B53C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B5448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B54C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B5548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B55C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B5648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B56C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B5748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B57C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B5848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B58C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B5948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B59C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B5A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B5AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B5B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B5BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B5C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B5CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B5D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B5DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B5E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B5EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B5F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B5FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B6048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B60C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B6148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B61C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B6248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B62C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B6348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B63C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B6448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B64C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B6548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B65C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B6648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B66C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B6748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B67C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B6848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B68C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B6948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B69C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B6A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B6AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B6B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B6BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B6C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B6CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B6D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B6DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B6E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B6EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B6F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B6FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B7048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B70C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B7148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B71C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B7248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B72C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B7348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B73C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B7448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B74C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B7548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B75C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B7648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B76C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B7748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B77C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B7848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B78C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B7948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B79C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B7A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B7AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B7B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B7BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B7C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B7CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B7D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B7DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B7E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B7EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B7F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B7FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B8048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B80C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B8148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B81C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B8248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B82C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B8348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B83C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B8448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B84C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B8548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B85C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B8648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B86C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B8748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B87C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B8848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B88C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B8948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B89C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B8A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B8AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B8B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B8BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B8C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B8CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B8D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B8DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B8E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B8EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B8F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B8FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B9048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B90C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B9148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B91C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B9248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B92C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B9348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B93C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B9448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B94C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B9548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B95C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B9648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B96C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B9748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B97C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B9848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B98C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B9948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B99C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B9A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B9AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B9B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B9BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B9C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B9CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B9D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B9DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B9E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B9EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B9F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B9FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BA048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BA0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BA148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BA1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BA248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BA2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BA348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BA3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BA448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BA4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BA548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BA5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BA648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BA6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BA748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BA7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BA848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BA8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BA948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BA9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BAA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BAAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BAB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BABC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BAC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BACC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BAD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BADC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BAE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BAEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BAF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BAFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BB048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BB0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BB148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BB1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BB248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BB2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BB348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BB3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BB448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BB4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BB548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BB5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BB648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BB6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BB748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BB7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BB848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BB8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BB948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BB9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BBA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BBAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BBB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BBBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BBC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BBCC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BBD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BBDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BBE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BBEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BBF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BBFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BC048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BC0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BC148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BC1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BC248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BC2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BC348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BC3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BC448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BC4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BC548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BC5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BC648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BC6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BC748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BC7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BC848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BC8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BC948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BC9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BCA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BCAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BCB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BCBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BCC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BCCC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BCD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BCDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BCE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BCEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BCF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BCFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BD048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BD0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BD148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BD1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BD248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BD2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BD348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BD3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BD448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BD4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BD548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BD5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BD648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BD6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BD748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BD7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BD848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BD8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BD948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BD9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BDA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BDAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BDB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BDBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BDC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BDCC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BDD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BDDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BDE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BDEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BDF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BDFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BE048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BE0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BE148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BE1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BE248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BE2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BE348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BE3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BE448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BE4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BE548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BE5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BE648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BE6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BE748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BE7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BE848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BE8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BE948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BE9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BEA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BEAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BEB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BEBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BEC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BECC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BED48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BEDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BEE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BEEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BEF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BEFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BF048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BF0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BF148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BF1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BF248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BF2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BF348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BF3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BF448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BF4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BF548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BF5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BF648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BF6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BF748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BF7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BF848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BF8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BF948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BF9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BFA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BFAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BFB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BFBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BFC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BFCC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BFD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BFDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BFE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BFEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BFF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BFFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C0048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C00C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C0148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C01C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C0248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C02C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C0348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C03C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C0448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C04C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C0548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C05C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C0648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C06C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C0748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C07C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C0848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C08C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C0948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C09C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C0A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C0AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C0B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C0BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C0C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C0CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C0D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C0DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C0E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C0EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C0F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C0FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C1048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C10C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C1148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C11C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C1248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C12C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C1348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C13C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C1448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C14C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C1548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C15C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C1648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C16C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C1748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C17C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C1848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C18C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C1948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C19C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C1A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C1AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C1B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C1BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C1C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C1CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C1D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C1DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C1E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C1EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C1F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C1FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C2048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C20C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C2148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C21C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C2248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C22C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C2348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C23C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C2448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C24C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C2548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C25C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C2648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C26C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C2748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C27C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C2848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C28C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C2948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C29C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C2A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C2AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C2B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C2BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C2C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C2CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C2D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C2DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C2E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C2EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C2F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C2FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C3048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C30C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C3148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C31C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C3248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C32C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C3348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C33C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C3448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C34C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C3548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C35C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C3648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C36C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C3748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C37C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C3848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C38C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C3948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C39C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C3A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C3AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C3B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C3BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C3C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C3CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C3D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C3DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C3E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C3EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C3F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C3FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C4048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C40C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C4148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C41C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C4248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C42C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C4348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C43C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C4448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C44C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C4548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C45C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C4648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C46C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C4748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C47C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C4848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C48C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C4948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C49C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C4A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C4AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C4B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C4BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C4C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C4CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C4D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C4DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C4E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C4EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C4F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C4FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C5048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C50C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C5148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C51C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C5248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C52C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C5348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C53C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C5448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C54C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C5548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C55C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C5648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C56C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C5748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C57C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C5848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C58C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C5948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C59C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C5A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C5AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C5B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C5BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C5C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C5CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C5D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C5DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C5E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C5EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C5F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C5FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C6048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C60C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C6148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C61C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C6248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C62C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C6348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C63C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C6448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C64C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C6548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C65C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C6648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C66C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C6748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C67C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C6848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C68C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C6948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C69C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C6A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C6AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C6B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C6BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C6C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C6CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C6D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C6DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C6E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C6EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C6F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C6FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C7048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C70C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C7148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C71C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C7248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C72C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C7348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C73C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C7448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C74C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C7548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C75C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C7648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C76C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C7748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C77C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C7848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C78C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C7948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C79C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C7A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C7AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C7B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C7BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C7C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C7CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C7D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C7DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C7E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C7EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C7F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C7FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C8048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C80C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C8148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C81C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C8248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C82C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C8348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C83C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C8448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C84C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C8548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C85C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C8648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C86C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C8748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C87C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C8848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C88C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C8948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C89C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C8A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C8AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C8B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C8BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C8C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C8CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C8D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C8DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C8E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C8EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C8F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C8FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C9048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C90C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C9148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C91C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C9248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C92C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C9348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C93C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C9448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C94C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C9548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C95C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C9648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C96C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C9748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C97C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C9848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C98C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C9948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C99C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C9A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C9AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C9B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C9BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C9C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C9CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C9D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C9DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C9E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C9EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C9F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C9FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CA048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CA0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CA148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CA1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CA248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CA2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CA348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CA3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CA448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CA4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CA548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CA5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CA648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CA6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CA748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CA7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CA848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CA8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CA948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CA9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CAA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CAAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CAB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CABC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CAC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CACC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CAD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CADC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CAE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CAEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CAF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CAFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CB048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CB0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CB148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CB1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CB248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CB2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CB348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CB3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CB448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CB4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CB548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CB5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CB648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CB6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CB748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CB7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CB848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CB8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CB948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CB9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CBA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CBAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CBB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CBBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CBC48", "width": 16, "height": 4, "type": "rgba16"}, -"toad_kart_palette": {"output_dir": "toad/palettes", "rom_offset": "0x4CBCC8", "width": 16, "height": 12, "type": "rgba16"} +"toad_kart_frame000": {"output_dir": "toad/frames", "rom_offset": "0x43B3E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x441410"}}, +"toad_kart_frame001": {"output_dir": "toad/frames", "rom_offset": "0x43B848", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_001_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x441878"}}, +"toad_kart_frame002": {"output_dir": "toad/frames", "rom_offset": "0x43BCCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_002_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x441CFC"}}, +"toad_kart_frame003": {"output_dir": "toad/frames", "rom_offset": "0x43C158", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_003_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x442188"}}, +"toad_kart_frame004": {"output_dir": "toad/frames", "rom_offset": "0x43C608", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_004_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x442638"}}, +"toad_kart_frame005": {"output_dir": "toad/frames", "rom_offset": "0x43CABC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_005_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x442AEC"}}, +"toad_kart_frame006": {"output_dir": "toad/frames", "rom_offset": "0x43CF90", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_006_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x442FC0"}}, +"toad_kart_frame007": {"output_dir": "toad/frames", "rom_offset": "0x43D46C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_007_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44349C"}}, +"toad_kart_frame008": {"output_dir": "toad/frames", "rom_offset": "0x43D94C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_008_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44397C"}}, +"toad_kart_frame009": {"output_dir": "toad/frames", "rom_offset": "0x43DE3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_009_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x443E6C"}}, +"toad_kart_frame010": {"output_dir": "toad/frames", "rom_offset": "0x43E338", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_010_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x444368"}}, +"toad_kart_frame011": {"output_dir": "toad/frames", "rom_offset": "0x43E838", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_011_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x444868"}}, +"toad_kart_frame012": {"output_dir": "toad/frames", "rom_offset": "0x43ED48", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_012_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x444D78"}}, +"toad_kart_frame013": {"output_dir": "toad/frames", "rom_offset": "0x43F260", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_013_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x445290"}}, +"toad_kart_frame014": {"output_dir": "toad/frames", "rom_offset": "0x43F78C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_014_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4457BC"}}, +"toad_kart_frame015": {"output_dir": "toad/frames", "rom_offset": "0x43FCC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_015_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x445CF0"}}, +"toad_kart_frame016": {"output_dir": "toad/frames", "rom_offset": "0x440218", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_016_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x446248"}}, +"toad_kart_frame017": {"output_dir": "toad/frames", "rom_offset": "0x440760", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_017_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x446790"}}, +"toad_kart_frame018": {"output_dir": "toad/frames", "rom_offset": "0x440CBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_018_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x446CEC"}}, +"toad_kart_frame019": {"output_dir": "toad/frames", "rom_offset": "0x441224", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_019_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x447254"}}, +"toad_kart_frame020": {"output_dir": "toad/frames", "rom_offset": "0x4417A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_020_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4477D0"}}, +"toad_kart_frame021": {"output_dir": "toad/frames", "rom_offset": "0x441D40", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_021_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x447D70"}}, +"toad_kart_frame022": {"output_dir": "toad/frames", "rom_offset": "0x4421BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_022_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4481EC"}}, +"toad_kart_frame023": {"output_dir": "toad/frames", "rom_offset": "0x442648", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_023_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x448678"}}, +"toad_kart_frame024": {"output_dir": "toad/frames", "rom_offset": "0x442AEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_024_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x448B1C"}}, +"toad_kart_frame025": {"output_dir": "toad/frames", "rom_offset": "0x442F9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_025_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x448FCC"}}, +"toad_kart_frame026": {"output_dir": "toad/frames", "rom_offset": "0x44344C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_026_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44947C"}}, +"toad_kart_frame027": {"output_dir": "toad/frames", "rom_offset": "0x443900", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_027_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x449930"}}, +"toad_kart_frame028": {"output_dir": "toad/frames", "rom_offset": "0x443DD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_028_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x449E08"}}, +"toad_kart_frame029": {"output_dir": "toad/frames", "rom_offset": "0x4442C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_029_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44A2F4"}}, +"toad_kart_frame030": {"output_dir": "toad/frames", "rom_offset": "0x4447CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_030_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44A7FC"}}, +"toad_kart_frame031": {"output_dir": "toad/frames", "rom_offset": "0x444CE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_031_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44AD10"}}, +"toad_kart_frame032": {"output_dir": "toad/frames", "rom_offset": "0x4451F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_032_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44B224"}}, +"toad_kart_frame033": {"output_dir": "toad/frames", "rom_offset": "0x445728", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_033_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44B758"}}, +"toad_kart_frame034": {"output_dir": "toad/frames", "rom_offset": "0x445C58", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_034_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44BC88"}}, +"toad_kart_frame035": {"output_dir": "toad/frames", "rom_offset": "0x446198", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_035_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44C1C8"}}, +"toad_kart_frame036": {"output_dir": "toad/frames", "rom_offset": "0x4466DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_036_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44C70C"}}, +"toad_kart_frame037": {"output_dir": "toad/frames", "rom_offset": "0x446C18", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_037_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44CC48"}}, +"toad_kart_frame038": {"output_dir": "toad/frames", "rom_offset": "0x447174", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_038_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44D1A4"}}, +"toad_kart_frame039": {"output_dir": "toad/frames", "rom_offset": "0x4476D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_039_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44D700"}}, +"toad_kart_frame040": {"output_dir": "toad/frames", "rom_offset": "0x447C54", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_040_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44DC84"}}, +"toad_kart_frame041": {"output_dir": "toad/frames", "rom_offset": "0x4481E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_041_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44E218"}}, +"toad_kart_frame042": {"output_dir": "toad/frames", "rom_offset": "0x44878C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_042_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44E7BC"}}, +"toad_kart_frame043": {"output_dir": "toad/frames", "rom_offset": "0x448C14", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_043_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44EC44"}}, +"toad_kart_frame044": {"output_dir": "toad/frames", "rom_offset": "0x4490B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_044_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44F0E0"}}, +"toad_kart_frame045": {"output_dir": "toad/frames", "rom_offset": "0x449564", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_045_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44F594"}}, +"toad_kart_frame046": {"output_dir": "toad/frames", "rom_offset": "0x449A2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_046_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44FA5C"}}, +"toad_kart_frame047": {"output_dir": "toad/frames", "rom_offset": "0x449EF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_047_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x44FF24"}}, +"toad_kart_frame048": {"output_dir": "toad/frames", "rom_offset": "0x44A3D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_048_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x450404"}}, +"toad_kart_frame049": {"output_dir": "toad/frames", "rom_offset": "0x44A8C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_049_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4508F0"}}, +"toad_kart_frame050": {"output_dir": "toad/frames", "rom_offset": "0x44ADD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_050_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x450E04"}}, +"toad_kart_frame051": {"output_dir": "toad/frames", "rom_offset": "0x44B2EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_051_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45131C"}}, +"toad_kart_frame052": {"output_dir": "toad/frames", "rom_offset": "0x44B828", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_052_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x451858"}}, +"toad_kart_frame053": {"output_dir": "toad/frames", "rom_offset": "0x44BD5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_053_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x451D8C"}}, +"toad_kart_frame054": {"output_dir": "toad/frames", "rom_offset": "0x44C2B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_054_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4522E4"}}, +"toad_kart_frame055": {"output_dir": "toad/frames", "rom_offset": "0x44C80C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_055_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45283C"}}, +"toad_kart_frame056": {"output_dir": "toad/frames", "rom_offset": "0x44CD60", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_056_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x452D90"}}, +"toad_kart_frame057": {"output_dir": "toad/frames", "rom_offset": "0x44D2A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_057_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4532D8"}}, +"toad_kart_frame058": {"output_dir": "toad/frames", "rom_offset": "0x44D7FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_058_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45382C"}}, +"toad_kart_frame059": {"output_dir": "toad/frames", "rom_offset": "0x44DD74", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_059_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x453DA4"}}, +"toad_kart_frame060": {"output_dir": "toad/frames", "rom_offset": "0x44E2F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_060_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x454328"}}, +"toad_kart_frame061": {"output_dir": "toad/frames", "rom_offset": "0x44E894", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_061_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4548C4"}}, +"toad_kart_frame062": {"output_dir": "toad/frames", "rom_offset": "0x44EE20", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_062_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x454E50"}}, +"toad_kart_frame063": {"output_dir": "toad/frames", "rom_offset": "0x44F3E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_063_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x455410"}}, +"toad_kart_frame064": {"output_dir": "toad/frames", "rom_offset": "0x44F870", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_064_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4558A0"}}, +"toad_kart_frame065": {"output_dir": "toad/frames", "rom_offset": "0x44FD14", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_065_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x455D44"}}, +"toad_kart_frame066": {"output_dir": "toad/frames", "rom_offset": "0x4501BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_066_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4561EC"}}, +"toad_kart_frame067": {"output_dir": "toad/frames", "rom_offset": "0x450678", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_067_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4566A8"}}, +"toad_kart_frame068": {"output_dir": "toad/frames", "rom_offset": "0x450B60", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_068_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x456B90"}}, +"toad_kart_frame069": {"output_dir": "toad/frames", "rom_offset": "0x45104C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_069_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45707C"}}, +"toad_kart_frame070": {"output_dir": "toad/frames", "rom_offset": "0x451558", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_070_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x457588"}}, +"toad_kart_frame071": {"output_dir": "toad/frames", "rom_offset": "0x451A78", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_071_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x457AA8"}}, +"toad_kart_frame072": {"output_dir": "toad/frames", "rom_offset": "0x451FAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_072_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x457FDC"}}, +"toad_kart_frame073": {"output_dir": "toad/frames", "rom_offset": "0x4524FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_073_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45852C"}}, +"toad_kart_frame074": {"output_dir": "toad/frames", "rom_offset": "0x452A48", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_074_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x458A78"}}, +"toad_kart_frame075": {"output_dir": "toad/frames", "rom_offset": "0x452FA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_075_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x458FD0"}}, +"toad_kart_frame076": {"output_dir": "toad/frames", "rom_offset": "0x4534FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_076_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45952C"}}, +"toad_kart_frame077": {"output_dir": "toad/frames", "rom_offset": "0x453A70", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_077_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x459AA0"}}, +"toad_kart_frame078": {"output_dir": "toad/frames", "rom_offset": "0x453FE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_078_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45A014"}}, +"toad_kart_frame079": {"output_dir": "toad/frames", "rom_offset": "0x45456C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_079_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45A59C"}}, +"toad_kart_frame080": {"output_dir": "toad/frames", "rom_offset": "0x454B04", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_080_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45AB34"}}, +"toad_kart_frame081": {"output_dir": "toad/frames", "rom_offset": "0x455098", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_081_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45B0C8"}}, +"toad_kart_frame082": {"output_dir": "toad/frames", "rom_offset": "0x455634", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_082_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45B664"}}, +"toad_kart_frame083": {"output_dir": "toad/frames", "rom_offset": "0x455BD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_083_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45BC08"}}, +"toad_kart_frame084": {"output_dir": "toad/frames", "rom_offset": "0x456184", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_084_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45C1B4"}}, +"toad_kart_frame085": {"output_dir": "toad/frames", "rom_offset": "0x45663C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_085_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45C66C"}}, +"toad_kart_frame086": {"output_dir": "toad/frames", "rom_offset": "0x456B04", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_086_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45CB34"}}, +"toad_kart_frame087": {"output_dir": "toad/frames", "rom_offset": "0x456FE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_087_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45D010"}}, +"toad_kart_frame088": {"output_dir": "toad/frames", "rom_offset": "0x4574E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_088_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45D510"}}, +"toad_kart_frame089": {"output_dir": "toad/frames", "rom_offset": "0x4579E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_089_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45DA10"}}, +"toad_kart_frame090": {"output_dir": "toad/frames", "rom_offset": "0x457EDC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_090_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45DF0C"}}, +"toad_kart_frame091": {"output_dir": "toad/frames", "rom_offset": "0x4583E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_091_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45E410"}}, +"toad_kart_frame092": {"output_dir": "toad/frames", "rom_offset": "0x458910", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_092_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45E940"}}, +"toad_kart_frame093": {"output_dir": "toad/frames", "rom_offset": "0x458E58", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_093_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45EE88"}}, +"toad_kart_frame094": {"output_dir": "toad/frames", "rom_offset": "0x4593A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_094_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45F3D8"}}, +"toad_kart_frame095": {"output_dir": "toad/frames", "rom_offset": "0x459910", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_095_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45F940"}}, +"toad_kart_frame096": {"output_dir": "toad/frames", "rom_offset": "0x459E80", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_096_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x45FEB0"}}, +"toad_kart_frame097": {"output_dir": "toad/frames", "rom_offset": "0x45A3E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_097_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x460418"}}, +"toad_kart_frame098": {"output_dir": "toad/frames", "rom_offset": "0x45A950", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_098_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x460980"}}, +"toad_kart_frame099": {"output_dir": "toad/frames", "rom_offset": "0x45AED0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_099_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x460F00"}}, +"toad_kart_frame100": {"output_dir": "toad/frames", "rom_offset": "0x45B458", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_100_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x461488"}}, +"toad_kart_frame101": {"output_dir": "toad/frames", "rom_offset": "0x45B9F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_101_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x461A28"}}, +"toad_kart_frame102": {"output_dir": "toad/frames", "rom_offset": "0x45BF98", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_102_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x461FC8"}}, +"toad_kart_frame103": {"output_dir": "toad/frames", "rom_offset": "0x45C54C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_103_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46257C"}}, +"toad_kart_frame104": {"output_dir": "toad/frames", "rom_offset": "0x45CB08", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_104_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x462B38"}}, +"toad_kart_frame105": {"output_dir": "toad/frames", "rom_offset": "0x45D0D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_105_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x463108"}}, +"toad_kart_frame106": {"output_dir": "toad/frames", "rom_offset": "0x45D594", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_106_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4635C4"}}, +"toad_kart_frame107": {"output_dir": "toad/frames", "rom_offset": "0x45DA88", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_107_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x463AB8"}}, +"toad_kart_frame108": {"output_dir": "toad/frames", "rom_offset": "0x45DF7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_108_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x463FAC"}}, +"toad_kart_frame109": {"output_dir": "toad/frames", "rom_offset": "0x45E49C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_109_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4644CC"}}, +"toad_kart_frame110": {"output_dir": "toad/frames", "rom_offset": "0x45E9B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_110_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4649E0"}}, +"toad_kart_frame111": {"output_dir": "toad/frames", "rom_offset": "0x45EEE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_111_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x464F10"}}, +"toad_kart_frame112": {"output_dir": "toad/frames", "rom_offset": "0x45F40C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_112_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46543C"}}, +"toad_kart_frame113": {"output_dir": "toad/frames", "rom_offset": "0x45F950", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_113_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x465980"}}, +"toad_kart_frame114": {"output_dir": "toad/frames", "rom_offset": "0x45FE9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_114_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x465ECC"}}, +"toad_kart_frame115": {"output_dir": "toad/frames", "rom_offset": "0x4603FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_115_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46642C"}}, +"toad_kart_frame116": {"output_dir": "toad/frames", "rom_offset": "0x460970", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_116_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4669A0"}}, +"toad_kart_frame117": {"output_dir": "toad/frames", "rom_offset": "0x460EE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_117_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x466F14"}}, +"toad_kart_frame118": {"output_dir": "toad/frames", "rom_offset": "0x461464", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_118_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x467494"}}, +"toad_kart_frame119": {"output_dir": "toad/frames", "rom_offset": "0x4619E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_119_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x467A10"}}, +"toad_kart_frame120": {"output_dir": "toad/frames", "rom_offset": "0x461F8C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_120_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x467FBC"}}, +"toad_kart_frame121": {"output_dir": "toad/frames", "rom_offset": "0x46251C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_121_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46854C"}}, +"toad_kart_frame122": {"output_dir": "toad/frames", "rom_offset": "0x462ABC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_122_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x468AEC"}}, +"toad_kart_frame123": {"output_dir": "toad/frames", "rom_offset": "0x463070", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_123_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4690A0"}}, +"toad_kart_frame124": {"output_dir": "toad/frames", "rom_offset": "0x463634", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_124_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x469664"}}, +"toad_kart_frame125": {"output_dir": "toad/frames", "rom_offset": "0x463C08", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_125_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x469C38"}}, +"toad_kart_frame126": {"output_dir": "toad/frames", "rom_offset": "0x4641EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_126_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46A21C"}}, +"toad_kart_frame127": {"output_dir": "toad/frames", "rom_offset": "0x4646C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_127_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46A6F8"}}, +"toad_kart_frame128": {"output_dir": "toad/frames", "rom_offset": "0x464BA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_128_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46ABD4"}}, +"toad_kart_frame129": {"output_dir": "toad/frames", "rom_offset": "0x46509C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_129_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46B0CC"}}, +"toad_kart_frame130": {"output_dir": "toad/frames", "rom_offset": "0x4655AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_130_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46B5DC"}}, +"toad_kart_frame131": {"output_dir": "toad/frames", "rom_offset": "0x465AC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_131_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46BAF0"}}, +"toad_kart_frame132": {"output_dir": "toad/frames", "rom_offset": "0x465FEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_132_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46C01C"}}, +"toad_kart_frame133": {"output_dir": "toad/frames", "rom_offset": "0x466528", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_133_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46C558"}}, +"toad_kart_frame134": {"output_dir": "toad/frames", "rom_offset": "0x466A80", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_134_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46CAB0"}}, +"toad_kart_frame135": {"output_dir": "toad/frames", "rom_offset": "0x466FDC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_135_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46D00C"}}, +"toad_kart_frame136": {"output_dir": "toad/frames", "rom_offset": "0x46755C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_136_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46D58C"}}, +"toad_kart_frame137": {"output_dir": "toad/frames", "rom_offset": "0x467AD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_137_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46DB08"}}, +"toad_kart_frame138": {"output_dir": "toad/frames", "rom_offset": "0x468070", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_138_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46E0A0"}}, +"toad_kart_frame139": {"output_dir": "toad/frames", "rom_offset": "0x46860C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_139_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46E63C"}}, +"toad_kart_frame140": {"output_dir": "toad/frames", "rom_offset": "0x468BA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_140_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46EBD8"}}, +"toad_kart_frame141": {"output_dir": "toad/frames", "rom_offset": "0x469140", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_141_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46F170"}}, +"toad_kart_frame142": {"output_dir": "toad/frames", "rom_offset": "0x4696C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_142_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46F6F0"}}, +"toad_kart_frame143": {"output_dir": "toad/frames", "rom_offset": "0x469C7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_143_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x46FCAC"}}, +"toad_kart_frame144": {"output_dir": "toad/frames", "rom_offset": "0x46A260", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_144_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x470290"}}, +"toad_kart_frame145": {"output_dir": "toad/frames", "rom_offset": "0x46A830", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_145_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x470860"}}, +"toad_kart_frame146": {"output_dir": "toad/frames", "rom_offset": "0x46AE04", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_146_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x470E34"}}, +"toad_kart_frame147": {"output_dir": "toad/frames", "rom_offset": "0x46B3EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_147_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47141C"}}, +"toad_kart_frame148": {"output_dir": "toad/frames", "rom_offset": "0x46B8E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_148_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x471914"}}, +"toad_kart_frame149": {"output_dir": "toad/frames", "rom_offset": "0x46BE00", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_149_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x471E30"}}, +"toad_kart_frame150": {"output_dir": "toad/frames", "rom_offset": "0x46C330", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_150_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x472360"}}, +"toad_kart_frame151": {"output_dir": "toad/frames", "rom_offset": "0x46C854", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_151_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x472884"}}, +"toad_kart_frame152": {"output_dir": "toad/frames", "rom_offset": "0x46CD80", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_152_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x472DB0"}}, +"toad_kart_frame153": {"output_dir": "toad/frames", "rom_offset": "0x46D2CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_153_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4732FC"}}, +"toad_kart_frame154": {"output_dir": "toad/frames", "rom_offset": "0x46D82C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_154_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47385C"}}, +"toad_kart_frame155": {"output_dir": "toad/frames", "rom_offset": "0x46DD9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_155_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x473DCC"}}, +"toad_kart_frame156": {"output_dir": "toad/frames", "rom_offset": "0x46E308", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_156_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x474338"}}, +"toad_kart_frame157": {"output_dir": "toad/frames", "rom_offset": "0x46E88C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_157_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4748BC"}}, +"toad_kart_frame158": {"output_dir": "toad/frames", "rom_offset": "0x46EE20", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_158_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x474E50"}}, +"toad_kart_frame159": {"output_dir": "toad/frames", "rom_offset": "0x46F3A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_159_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4753D8"}}, +"toad_kart_frame160": {"output_dir": "toad/frames", "rom_offset": "0x46F92C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_160_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47595C"}}, +"toad_kart_frame161": {"output_dir": "toad/frames", "rom_offset": "0x46FEC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_161_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x475EF8"}}, +"toad_kart_frame162": {"output_dir": "toad/frames", "rom_offset": "0x470488", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_162_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4764B8"}}, +"toad_kart_frame163": {"output_dir": "toad/frames", "rom_offset": "0x470A4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_163_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x476A7C"}}, +"toad_kart_frame164": {"output_dir": "toad/frames", "rom_offset": "0x47100C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_164_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47703C"}}, +"toad_kart_frame165": {"output_dir": "toad/frames", "rom_offset": "0x4715F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_165_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x477628"}}, +"toad_kart_frame166": {"output_dir": "toad/frames", "rom_offset": "0x471BE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_166_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x477C14"}}, +"toad_kart_frame167": {"output_dir": "toad/frames", "rom_offset": "0x4721D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_167_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x478204"}}, +"toad_kart_frame168": {"output_dir": "toad/frames", "rom_offset": "0x4727C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_168_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4787F8"}}, +"toad_kart_frame169": {"output_dir": "toad/frames", "rom_offset": "0x472CD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_169_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x478D08"}}, +"toad_kart_frame170": {"output_dir": "toad/frames", "rom_offset": "0x473204", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_170_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x479234"}}, +"toad_kart_frame171": {"output_dir": "toad/frames", "rom_offset": "0x47374C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_171_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47977C"}}, +"toad_kart_frame172": {"output_dir": "toad/frames", "rom_offset": "0x473C98", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_172_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x479CC8"}}, +"toad_kart_frame173": {"output_dir": "toad/frames", "rom_offset": "0x4741FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_173_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47A22C"}}, +"toad_kart_frame174": {"output_dir": "toad/frames", "rom_offset": "0x474764", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_174_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47A794"}}, +"toad_kart_frame175": {"output_dir": "toad/frames", "rom_offset": "0x474CD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_175_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47AD04"}}, +"toad_kart_frame176": {"output_dir": "toad/frames", "rom_offset": "0x47524C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_176_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47B27C"}}, +"toad_kart_frame177": {"output_dir": "toad/frames", "rom_offset": "0x4757C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_177_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47B7F0"}}, +"toad_kart_frame178": {"output_dir": "toad/frames", "rom_offset": "0x475D50", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_178_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47BD80"}}, +"toad_kart_frame179": {"output_dir": "toad/frames", "rom_offset": "0x4762E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_179_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47C310"}}, +"toad_kart_frame180": {"output_dir": "toad/frames", "rom_offset": "0x476878", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_180_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47C8A8"}}, +"toad_kart_frame181": {"output_dir": "toad/frames", "rom_offset": "0x476E2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_181_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47CE5C"}}, +"toad_kart_frame182": {"output_dir": "toad/frames", "rom_offset": "0x4773D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_182_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47D408"}}, +"toad_kart_frame183": {"output_dir": "toad/frames", "rom_offset": "0x477988", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_183_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47D9B8"}}, +"toad_kart_frame184": {"output_dir": "toad/frames", "rom_offset": "0x477F38", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_184_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47DF68"}}, +"toad_kart_frame185": {"output_dir": "toad/frames", "rom_offset": "0x478504", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_185_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47E534"}}, +"toad_kart_frame186": {"output_dir": "toad/frames", "rom_offset": "0x478B00", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_186_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47EB30"}}, +"toad_kart_frame187": {"output_dir": "toad/frames", "rom_offset": "0x4790F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_187_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47F128"}}, +"toad_kart_frame188": {"output_dir": "toad/frames", "rom_offset": "0x479710", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_188_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47F740"}}, +"toad_kart_frame189": {"output_dir": "toad/frames", "rom_offset": "0x479D18", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_189_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x47FD48"}}, +"toad_kart_frame190": {"output_dir": "toad/frames", "rom_offset": "0x47A1B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_190_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4801E0"}}, +"toad_kart_frame191": {"output_dir": "toad/frames", "rom_offset": "0x47A67C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_191_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4806AC"}}, +"toad_kart_frame192": {"output_dir": "toad/frames", "rom_offset": "0x47AB58", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_192_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x480B88"}}, +"toad_kart_frame193": {"output_dir": "toad/frames", "rom_offset": "0x47B070", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_193_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4810A0"}}, +"toad_kart_frame194": {"output_dir": "toad/frames", "rom_offset": "0x47B5C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_194_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4815F4"}}, +"toad_kart_frame195": {"output_dir": "toad/frames", "rom_offset": "0x47BB38", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_195_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x481B68"}}, +"toad_kart_frame196": {"output_dir": "toad/frames", "rom_offset": "0x47C0D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_196_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x482104"}}, +"toad_kart_frame197": {"output_dir": "toad/frames", "rom_offset": "0x47C698", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_197_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4826C8"}}, +"toad_kart_frame198": {"output_dir": "toad/frames", "rom_offset": "0x47CC78", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_198_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x482CA8"}}, +"toad_kart_frame199": {"output_dir": "toad/frames", "rom_offset": "0x47D284", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_199_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4832B4"}}, +"toad_kart_frame200": {"output_dir": "toad/frames", "rom_offset": "0x47D8AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_200_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4838DC"}}, +"toad_kart_frame201": {"output_dir": "toad/frames", "rom_offset": "0x47DED0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_201_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x483F00"}}, +"toad_kart_frame202": {"output_dir": "toad/frames", "rom_offset": "0x47E4E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_202_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x484518"}}, +"toad_kart_frame203": {"output_dir": "toad/frames", "rom_offset": "0x47EAEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_203_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x484B1C"}}, +"toad_kart_frame204": {"output_dir": "toad/frames", "rom_offset": "0x47F0EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_204_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48511C"}}, +"toad_kart_frame205": {"output_dir": "toad/frames", "rom_offset": "0x47F6C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_205_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4856F4"}}, +"toad_kart_frame206": {"output_dir": "toad/frames", "rom_offset": "0x47FC98", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_206_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x485CC8"}}, +"toad_kart_frame207": {"output_dir": "toad/frames", "rom_offset": "0x480254", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_207_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x486284"}}, +"toad_kart_frame208": {"output_dir": "toad/frames", "rom_offset": "0x480804", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_208_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x486834"}}, +"toad_kart_frame209": {"output_dir": "toad/frames", "rom_offset": "0x480DB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_209_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x486DE0"}}, +"toad_kart_frame210": {"output_dir": "toad/frames", "rom_offset": "0x48125C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_210_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48728C"}}, +"toad_kart_frame211": {"output_dir": "toad/frames", "rom_offset": "0x48174C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_211_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48777C"}}, +"toad_kart_frame212": {"output_dir": "toad/frames", "rom_offset": "0x481C70", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_212_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x487CA0"}}, +"toad_kart_frame213": {"output_dir": "toad/frames", "rom_offset": "0x4821C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_213_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4881F4"}}, +"toad_kart_frame214": {"output_dir": "toad/frames", "rom_offset": "0x482724", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_214_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x488754"}}, +"toad_kart_frame215": {"output_dir": "toad/frames", "rom_offset": "0x482CB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_215_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x488CE0"}}, +"toad_kart_frame216": {"output_dir": "toad/frames", "rom_offset": "0x483258", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_216_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x489288"}}, +"toad_kart_frame217": {"output_dir": "toad/frames", "rom_offset": "0x483820", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_217_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x489850"}}, +"toad_kart_frame218": {"output_dir": "toad/frames", "rom_offset": "0x483E14", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_218_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x489E44"}}, +"toad_kart_frame219": {"output_dir": "toad/frames", "rom_offset": "0x484428", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_219_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48A458"}}, +"toad_kart_frame220": {"output_dir": "toad/frames", "rom_offset": "0x484A28", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_220_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48AA58"}}, +"toad_kart_frame221": {"output_dir": "toad/frames", "rom_offset": "0x485034", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_221_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48B064"}}, +"toad_kart_frame222": {"output_dir": "toad/frames", "rom_offset": "0x485630", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_222_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48B660"}}, +"toad_kart_frame223": {"output_dir": "toad/frames", "rom_offset": "0x485C04", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_223_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48BC34"}}, +"toad_kart_frame224": {"output_dir": "toad/frames", "rom_offset": "0x4861B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_224_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48C1E4"}}, +"toad_kart_frame225": {"output_dir": "toad/frames", "rom_offset": "0x486754", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_225_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48C784"}}, +"toad_kart_frame226": {"output_dir": "toad/frames", "rom_offset": "0x486CF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_226_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48CD24"}}, +"toad_kart_frame227": {"output_dir": "toad/frames", "rom_offset": "0x48728C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_227_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48D2BC"}}, +"toad_kart_frame228": {"output_dir": "toad/frames", "rom_offset": "0x48780C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_228_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48D83C"}}, +"toad_kart_frame229": {"output_dir": "toad/frames", "rom_offset": "0x487D78", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_229_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48DDA8"}}, +"toad_kart_frame230": {"output_dir": "toad/frames", "rom_offset": "0x48824C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_230_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48E27C"}}, +"toad_kart_frame231": {"output_dir": "toad/frames", "rom_offset": "0x488764", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_231_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48E794"}}, +"toad_kart_frame232": {"output_dir": "toad/frames", "rom_offset": "0x488CA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_232_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48ECD8"}}, +"toad_kart_frame233": {"output_dir": "toad/frames", "rom_offset": "0x489228", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_233_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48F258"}}, +"toad_kart_frame234": {"output_dir": "toad/frames", "rom_offset": "0x4897C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_234_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48F7F8"}}, +"toad_kart_frame235": {"output_dir": "toad/frames", "rom_offset": "0x489D68", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_235_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x48FD98"}}, +"toad_kart_frame236": {"output_dir": "toad/frames", "rom_offset": "0x48A34C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_236_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49037C"}}, +"toad_kart_frame237": {"output_dir": "toad/frames", "rom_offset": "0x48A924", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_237_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x490954"}}, +"toad_kart_frame238": {"output_dir": "toad/frames", "rom_offset": "0x48AF10", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_238_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x490F40"}}, +"toad_kart_frame239": {"output_dir": "toad/frames", "rom_offset": "0x48B524", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_239_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x491554"}}, +"toad_kart_frame240": {"output_dir": "toad/frames", "rom_offset": "0x48BB1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_240_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x491B4C"}}, +"toad_kart_frame241": {"output_dir": "toad/frames", "rom_offset": "0x48C110", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_241_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x492140"}}, +"toad_kart_frame242": {"output_dir": "toad/frames", "rom_offset": "0x48C6DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_242_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49270C"}}, +"toad_kart_frame243": {"output_dir": "toad/frames", "rom_offset": "0x48CC9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_243_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x492CCC"}}, +"toad_kart_frame244": {"output_dir": "toad/frames", "rom_offset": "0x48D248", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_244_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x493278"}}, +"toad_kart_frame245": {"output_dir": "toad/frames", "rom_offset": "0x48D7D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_245_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x493800"}}, +"toad_kart_frame246": {"output_dir": "toad/frames", "rom_offset": "0x48DD58", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_246_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x493D88"}}, +"toad_kart_frame247": {"output_dir": "toad/frames", "rom_offset": "0x48E2D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_247_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x494308"}}, +"toad_kart_frame248": {"output_dir": "toad/frames", "rom_offset": "0x48E838", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_248_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x494868"}}, +"toad_kart_frame249": {"output_dir": "toad/frames", "rom_offset": "0x48ED58", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_249_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x494D88"}}, +"toad_kart_frame250": {"output_dir": "toad/frames", "rom_offset": "0x48F26C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_250_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49529C"}}, +"toad_kart_frame251": {"output_dir": "toad/frames", "rom_offset": "0x48F794", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_251_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4957C4"}}, +"toad_kart_frame252": {"output_dir": "toad/frames", "rom_offset": "0x48FD00", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_252_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x495D30"}}, +"toad_kart_frame253": {"output_dir": "toad/frames", "rom_offset": "0x490288", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_253_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4962B8"}}, +"toad_kart_frame254": {"output_dir": "toad/frames", "rom_offset": "0x490828", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_254_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x496858"}}, +"toad_kart_frame255": {"output_dir": "toad/frames", "rom_offset": "0x490DF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_255_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x496E24"}}, +"toad_kart_frame256": {"output_dir": "toad/frames", "rom_offset": "0x4913E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_256_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x497414"}}, +"toad_kart_frame257": {"output_dir": "toad/frames", "rom_offset": "0x4919D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_257_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x497A00"}}, +"toad_kart_frame258": {"output_dir": "toad/frames", "rom_offset": "0x491FD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_258_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x498008"}}, +"toad_kart_frame259": {"output_dir": "toad/frames", "rom_offset": "0x4925DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_259_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49860C"}}, +"toad_kart_frame260": {"output_dir": "toad/frames", "rom_offset": "0x492BE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_260_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x498C10"}}, +"toad_kart_frame261": {"output_dir": "toad/frames", "rom_offset": "0x4931B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_261_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4991E8"}}, +"toad_kart_frame262": {"output_dir": "toad/frames", "rom_offset": "0x493788", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_262_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4997B8"}}, +"toad_kart_frame263": {"output_dir": "toad/frames", "rom_offset": "0x493D1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_263_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x499D4C"}}, +"toad_kart_frame264": {"output_dir": "toad/frames", "rom_offset": "0x494288", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_264_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49A2B8"}}, +"toad_kart_frame265": {"output_dir": "toad/frames", "rom_offset": "0x4947EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_265_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49A81C"}}, +"toad_kart_frame266": {"output_dir": "toad/frames", "rom_offset": "0x494D4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_266_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49AD7C"}}, +"toad_kart_frame267": {"output_dir": "toad/frames", "rom_offset": "0x495290", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_267_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49B2C0"}}, +"toad_kart_frame268": {"output_dir": "toad/frames", "rom_offset": "0x4957AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_268_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49B7DC"}}, +"toad_kart_frame269": {"output_dir": "toad/frames", "rom_offset": "0x495C80", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_269_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49BCB0"}}, +"toad_kart_frame270": {"output_dir": "toad/frames", "rom_offset": "0x4961C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_270_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49C1F8"}}, +"toad_kart_frame271": {"output_dir": "toad/frames", "rom_offset": "0x496748", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_271_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49C778"}}, +"toad_kart_frame272": {"output_dir": "toad/frames", "rom_offset": "0x496CD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_272_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49CD08"}}, +"toad_kart_frame273": {"output_dir": "toad/frames", "rom_offset": "0x497278", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_273_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49D2A8"}}, +"toad_kart_frame274": {"output_dir": "toad/frames", "rom_offset": "0x497848", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_274_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49D878"}}, +"toad_kart_frame275": {"output_dir": "toad/frames", "rom_offset": "0x497E3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_275_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49DE6C"}}, +"toad_kart_frame276": {"output_dir": "toad/frames", "rom_offset": "0x498454", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_276_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49E484"}}, +"toad_kart_frame277": {"output_dir": "toad/frames", "rom_offset": "0x498A64", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_277_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49EA94"}}, +"toad_kart_frame278": {"output_dir": "toad/frames", "rom_offset": "0x499078", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_278_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49F0A8"}}, +"toad_kart_frame279": {"output_dir": "toad/frames", "rom_offset": "0x49967C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_279_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49F6AC"}}, +"toad_kart_frame280": {"output_dir": "toad/frames", "rom_offset": "0x499C78", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_280_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x49FCA8"}}, +"toad_kart_frame281": {"output_dir": "toad/frames", "rom_offset": "0x49A254", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_281_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A0284"}}, +"toad_kart_frame282": {"output_dir": "toad/frames", "rom_offset": "0x49A800", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_282_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A0830"}}, +"toad_kart_frame283": {"output_dir": "toad/frames", "rom_offset": "0x49AD74", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_283_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A0DA4"}}, +"toad_kart_frame284": {"output_dir": "toad/frames", "rom_offset": "0x49B2C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_284_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A12F0"}}, +"toad_kart_frame285": {"output_dir": "toad/frames", "rom_offset": "0x49B7FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_285_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A182C"}}, +"toad_kart_frame286": {"output_dir": "toad/frames", "rom_offset": "0x49BD0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_286_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A1D3C"}}, +"toad_kart_frame287": {"output_dir": "toad/frames", "rom_offset": "0x49C210", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_287_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A2240"}}, +"toad_kart_frame288": {"output_dir": "toad/frames", "rom_offset": "0x49C6E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_288_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A2710"}}, +"toad_kart_frame289": {"output_dir": "toad/frames", "rom_offset": "0x49CB80", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A2BB0"}}, +"toad_kart_frame290": {"output_dir": "toad/frames", "rom_offset": "0x49D014", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A3044"}}, +"toad_kart_frame291": {"output_dir": "toad/frames", "rom_offset": "0x49D560", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A3590"}}, +"toad_kart_frame292": {"output_dir": "toad/frames", "rom_offset": "0x49DB28", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A3B58"}}, +"toad_kart_frame293": {"output_dir": "toad/frames", "rom_offset": "0x49E198", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A41C8"}}, +"toad_kart_frame294": {"output_dir": "toad/frames", "rom_offset": "0x49E79C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A47CC"}}, +"toad_kart_frame295": {"output_dir": "toad/frames", "rom_offset": "0x49EDA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A4DD0"}}, +"toad_kart_frame296": {"output_dir": "toad/frames", "rom_offset": "0x49F344", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A5374"}}, +"toad_kart_frame297": {"output_dir": "toad/frames", "rom_offset": "0x49F85C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A588C"}}, +"toad_kart_frame298": {"output_dir": "toad/frames", "rom_offset": "0x49FCF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A5D28"}}, +"toad_kart_frame299": {"output_dir": "toad/frames", "rom_offset": "0x4A0234", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A6264"}}, +"toad_kart_frame300": {"output_dir": "toad/frames", "rom_offset": "0x4A079C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A67CC"}}, +"toad_kart_frame301": {"output_dir": "toad/frames", "rom_offset": "0x4A0D14", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A6D44"}}, +"toad_kart_frame302": {"output_dir": "toad/frames", "rom_offset": "0x4A126C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A729C"}}, +"toad_kart_frame303": {"output_dir": "toad/frames", "rom_offset": "0x4A17F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A7828"}}, +"toad_kart_frame304": {"output_dir": "toad/frames", "rom_offset": "0x4A1D94", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A7DC4"}}, +"toad_kart_frame305": {"output_dir": "toad/frames", "rom_offset": "0x4A22D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A8300"}}, +"toad_kart_frame306": {"output_dir": "toad/frames", "rom_offset": "0x4A272C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A875C"}}, +"toad_kart_frame307": {"output_dir": "toad/frames", "rom_offset": "0x4A2CCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A8CFC"}}, +"toad_kart_frame308": {"output_dir": "toad/frames", "rom_offset": "0x4A330C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A933C"}}, +"toad_kart_frame309": {"output_dir": "toad/frames", "rom_offset": "0x4A397C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A99AC"}}, +"toad_kart_frame310": {"output_dir": "toad/frames", "rom_offset": "0x4A3F60", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4A9F90"}}, +"toad_kart_frame311": {"output_dir": "toad/frames", "rom_offset": "0x4A4540", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4AA570"}}, +"toad_kart_frame312": {"output_dir": "toad/frames", "rom_offset": "0x4A4B08", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4AAB38"}}, +"toad_kart_frame313": {"output_dir": "toad/frames", "rom_offset": "0x4A4FF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4AB020"}}, +"toad_kart_frame314": {"output_dir": "toad/frames", "rom_offset": "0x4A548C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4AB4BC"}}, +"toad_kart_frame315": {"output_dir": "toad/frames", "rom_offset": "0x4A59C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4AB9F8"}}, +"toad_kart_frame316": {"output_dir": "toad/frames", "rom_offset": "0x4A5F0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4ABF3C"}}, +"toad_kart_frame317": {"output_dir": "toad/frames", "rom_offset": "0x4A6490", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4AC4C0"}}, +"toad_kart_frame318": {"output_dir": "toad/frames", "rom_offset": "0x4A6A38", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4ACA68"}}, +"toad_kart_frame319": {"output_dir": "toad/frames", "rom_offset": "0x4A6FC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4ACFF8"}}, +"toad_kart_frame320": {"output_dir": "toad/frames", "rom_offset": "0x4A7570", "width": 64, "height": 64, "type": "ci8", "tlut": ["toad_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4AD5A0"}}, +"kart_000_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A7AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4ADAF8"}}, +"kart_000_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A7B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4ADB78"}}, +"kart_000_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A7BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4ADBF8"}}, +"kart_000_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A7C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4ADC78"}}, +"kart_001_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A7CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4ADCF8"}}, +"kart_001_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A7D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4ADD78"}}, +"kart_001_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A7DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4ADDF8"}}, +"kart_001_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A7E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4ADE78"}}, +"kart_002_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A7EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4ADEF8"}}, +"kart_002_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A7F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4ADF78"}}, +"kart_002_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A7FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4ADFF8"}}, +"kart_002_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A8048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE078"}}, +"kart_003_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A80C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE0F8"}}, +"kart_003_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A8148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE178"}}, +"kart_003_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A81C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE1F8"}}, +"kart_003_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A8248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE278"}}, +"kart_004_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A82C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE2F8"}}, +"kart_004_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A8348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE378"}}, +"kart_004_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A83C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE3F8"}}, +"kart_004_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A8448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE478"}}, +"kart_005_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A84C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE4F8"}}, +"kart_005_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A8548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE578"}}, +"kart_005_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A85C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE5F8"}}, +"kart_005_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A8648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE678"}}, +"kart_006_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A86C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE6F8"}}, +"kart_006_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A8748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE778"}}, +"kart_006_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A87C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE7F8"}}, +"kart_006_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A8848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE878"}}, +"kart_007_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A88C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE8F8"}}, +"kart_007_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A8948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE978"}}, +"kart_007_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A89C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AE9F8"}}, +"kart_007_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A8A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AEA78"}}, +"kart_008_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A8AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AEAF8"}}, +"kart_008_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A8B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AEB78"}}, +"kart_008_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A8BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AEBF8"}}, +"kart_008_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A8C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AEC78"}}, +"kart_009_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A8CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AECF8"}}, +"kart_009_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A8D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AED78"}}, +"kart_009_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A8DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AEDF8"}}, +"kart_009_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A8E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AEE78"}}, +"kart_010_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A8EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AEEF8"}}, +"kart_010_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A8F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AEF78"}}, +"kart_010_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A8FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AEFF8"}}, +"kart_010_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A9048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF078"}}, +"kart_011_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A90C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF0F8"}}, +"kart_011_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A9148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF178"}}, +"kart_011_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A91C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF1F8"}}, +"kart_011_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A9248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF278"}}, +"kart_012_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A92C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF2F8"}}, +"kart_012_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A9348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF378"}}, +"kart_012_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A93C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF3F8"}}, +"kart_012_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A9448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF478"}}, +"kart_013_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A94C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF4F8"}}, +"kart_013_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A9548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF578"}}, +"kart_013_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A95C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF5F8"}}, +"kart_013_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A9648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF678"}}, +"kart_014_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A96C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF6F8"}}, +"kart_014_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A9748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF778"}}, +"kart_014_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A97C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF7F8"}}, +"kart_014_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A9848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF878"}}, +"kart_015_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A98C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF8F8"}}, +"kart_015_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A9948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF978"}}, +"kart_015_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A99C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AF9F8"}}, +"kart_015_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A9A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AFA78"}}, +"kart_016_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A9AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AFAF8"}}, +"kart_016_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A9B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AFB78"}}, +"kart_016_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A9BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AFBF8"}}, +"kart_016_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A9C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AFC78"}}, +"kart_017_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A9CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AFCF8"}}, +"kart_017_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A9D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AFD78"}}, +"kart_017_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A9DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AFDF8"}}, +"kart_017_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4A9E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AFE78"}}, +"kart_018_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4A9EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AFEF8"}}, +"kart_018_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4A9F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AFF78"}}, +"kart_018_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4A9FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4AFFF8"}}, +"kart_018_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AA048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0078"}}, +"kart_019_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AA0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B00F8"}}, +"kart_019_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AA148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0178"}}, +"kart_019_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AA1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B01F8"}}, +"kart_019_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AA248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0278"}}, +"kart_020_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AA2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B02F8"}}, +"kart_020_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AA348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0378"}}, +"kart_020_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AA3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B03F8"}}, +"kart_020_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AA448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0478"}}, +"kart_021_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AA4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B04F8"}}, +"kart_021_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AA548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0578"}}, +"kart_021_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AA5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B05F8"}}, +"kart_021_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AA648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0678"}}, +"kart_022_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AA6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B06F8"}}, +"kart_022_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AA748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0778"}}, +"kart_022_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AA7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B07F8"}}, +"kart_022_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AA848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0878"}}, +"kart_023_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AA8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B08F8"}}, +"kart_023_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AA948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0978"}}, +"kart_023_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AA9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B09F8"}}, +"kart_023_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AAA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0A78"}}, +"kart_024_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AAAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0AF8"}}, +"kart_024_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AAB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0B78"}}, +"kart_024_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AABC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0BF8"}}, +"kart_024_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AAC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0C78"}}, +"kart_025_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AACC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0CF8"}}, +"kart_025_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AAD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0D78"}}, +"kart_025_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AADC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0DF8"}}, +"kart_025_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AAE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0E78"}}, +"kart_026_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AAEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0EF8"}}, +"kart_026_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AAF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0F78"}}, +"kart_026_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AAFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B0FF8"}}, +"kart_026_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AB048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1078"}}, +"kart_027_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AB0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B10F8"}}, +"kart_027_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AB148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1178"}}, +"kart_027_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AB1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B11F8"}}, +"kart_027_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AB248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1278"}}, +"kart_028_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AB2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B12F8"}}, +"kart_028_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AB348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1378"}}, +"kart_028_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AB3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B13F8"}}, +"kart_028_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AB448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1478"}}, +"kart_029_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AB4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B14F8"}}, +"kart_029_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AB548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1578"}}, +"kart_029_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AB5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B15F8"}}, +"kart_029_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AB648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1678"}}, +"kart_030_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AB6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B16F8"}}, +"kart_030_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AB748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1778"}}, +"kart_030_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AB7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B17F8"}}, +"kart_030_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AB848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1878"}}, +"kart_031_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AB8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B18F8"}}, +"kart_031_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AB948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1978"}}, +"kart_031_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AB9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B19F8"}}, +"kart_031_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4ABA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1A78"}}, +"kart_032_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4ABAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1AF8"}}, +"kart_032_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4ABB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1B78"}}, +"kart_032_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4ABBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1BF8"}}, +"kart_032_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4ABC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1C78"}}, +"kart_033_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4ABCC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1CF8"}}, +"kart_033_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4ABD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1D78"}}, +"kart_033_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4ABDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1DF8"}}, +"kart_033_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4ABE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1E78"}}, +"kart_034_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4ABEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1EF8"}}, +"kart_034_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4ABF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1F78"}}, +"kart_034_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4ABFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B1FF8"}}, +"kart_034_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AC048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2078"}}, +"kart_035_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AC0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B20F8"}}, +"kart_035_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AC148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2178"}}, +"kart_035_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AC1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B21F8"}}, +"kart_035_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AC248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2278"}}, +"kart_036_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AC2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B22F8"}}, +"kart_036_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AC348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2378"}}, +"kart_036_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AC3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B23F8"}}, +"kart_036_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AC448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2478"}}, +"kart_037_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AC4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B24F8"}}, +"kart_037_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AC548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2578"}}, +"kart_037_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AC5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B25F8"}}, +"kart_037_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AC648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2678"}}, +"kart_038_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AC6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B26F8"}}, +"kart_038_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AC748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2778"}}, +"kart_038_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AC7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B27F8"}}, +"kart_038_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AC848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2878"}}, +"kart_039_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AC8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B28F8"}}, +"kart_039_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AC948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2978"}}, +"kart_039_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AC9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B29F8"}}, +"kart_039_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4ACA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2A78"}}, +"kart_040_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4ACAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2AF8"}}, +"kart_040_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4ACB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2B78"}}, +"kart_040_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4ACBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2BF8"}}, +"kart_040_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4ACC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2C78"}}, +"kart_041_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4ACCC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2CF8"}}, +"kart_041_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4ACD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2D78"}}, +"kart_041_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4ACDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2DF8"}}, +"kart_041_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4ACE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2E78"}}, +"kart_042_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4ACEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2EF8"}}, +"kart_042_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4ACF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2F78"}}, +"kart_042_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4ACFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B2FF8"}}, +"kart_042_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AD048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3078"}}, +"kart_043_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AD0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B30F8"}}, +"kart_043_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AD148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3178"}}, +"kart_043_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AD1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B31F8"}}, +"kart_043_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AD248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3278"}}, +"kart_044_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AD2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B32F8"}}, +"kart_044_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AD348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3378"}}, +"kart_044_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AD3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B33F8"}}, +"kart_044_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AD448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3478"}}, +"kart_045_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AD4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B34F8"}}, +"kart_045_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AD548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3578"}}, +"kart_045_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AD5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B35F8"}}, +"kart_045_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AD648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3678"}}, +"kart_046_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AD6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B36F8"}}, +"kart_046_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AD748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3778"}}, +"kart_046_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AD7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B37F8"}}, +"kart_046_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AD848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3878"}}, +"kart_047_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AD8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B38F8"}}, +"kart_047_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AD948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3978"}}, +"kart_047_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AD9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B39F8"}}, +"kart_047_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4ADA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3A78"}}, +"kart_048_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4ADAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3AF8"}}, +"kart_048_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4ADB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3B78"}}, +"kart_048_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4ADBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3BF8"}}, +"kart_048_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4ADC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3C78"}}, +"kart_049_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4ADCC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3CF8"}}, +"kart_049_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4ADD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3D78"}}, +"kart_049_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4ADDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3DF8"}}, +"kart_049_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4ADE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3E78"}}, +"kart_050_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4ADEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3EF8"}}, +"kart_050_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4ADF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3F78"}}, +"kart_050_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4ADFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B3FF8"}}, +"kart_050_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AE048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4078"}}, +"kart_051_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AE0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B40F8"}}, +"kart_051_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AE148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4178"}}, +"kart_051_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AE1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B41F8"}}, +"kart_051_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AE248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4278"}}, +"kart_052_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AE2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B42F8"}}, +"kart_052_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AE348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4378"}}, +"kart_052_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AE3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B43F8"}}, +"kart_052_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AE448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4478"}}, +"kart_053_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AE4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B44F8"}}, +"kart_053_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AE548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4578"}}, +"kart_053_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AE5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B45F8"}}, +"kart_053_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AE648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4678"}}, +"kart_054_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AE6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B46F8"}}, +"kart_054_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AE748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4778"}}, +"kart_054_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AE7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B47F8"}}, +"kart_054_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AE848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4878"}}, +"kart_055_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AE8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B48F8"}}, +"kart_055_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AE948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4978"}}, +"kart_055_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AE9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B49F8"}}, +"kart_055_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AEA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4A78"}}, +"kart_056_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AEAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4AF8"}}, +"kart_056_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AEB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4B78"}}, +"kart_056_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AEBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4BF8"}}, +"kart_056_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AEC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4C78"}}, +"kart_057_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AECC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4CF8"}}, +"kart_057_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AED48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4D78"}}, +"kart_057_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AEDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4DF8"}}, +"kart_057_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AEE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4E78"}}, +"kart_058_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AEEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4EF8"}}, +"kart_058_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AEF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4F78"}}, +"kart_058_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AEFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B4FF8"}}, +"kart_058_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AF048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5078"}}, +"kart_059_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AF0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B50F8"}}, +"kart_059_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AF148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5178"}}, +"kart_059_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AF1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B51F8"}}, +"kart_059_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AF248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5278"}}, +"kart_060_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AF2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B52F8"}}, +"kart_060_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AF348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5378"}}, +"kart_060_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AF3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B53F8"}}, +"kart_060_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AF448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5478"}}, +"kart_061_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AF4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B54F8"}}, +"kart_061_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AF548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5578"}}, +"kart_061_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AF5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B55F8"}}, +"kart_061_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AF648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5678"}}, +"kart_062_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AF6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B56F8"}}, +"kart_062_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AF748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5778"}}, +"kart_062_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AF7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B57F8"}}, +"kart_062_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AF848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5878"}}, +"kart_063_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AF8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B58F8"}}, +"kart_063_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AF948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5978"}}, +"kart_063_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AF9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B59F8"}}, +"kart_063_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AFA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5A78"}}, +"kart_064_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AFAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5AF8"}}, +"kart_064_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AFB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5B78"}}, +"kart_064_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AFBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5BF8"}}, +"kart_064_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AFC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5C78"}}, +"kart_065_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AFCC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5CF8"}}, +"kart_065_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AFD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5D78"}}, +"kart_065_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AFDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5DF8"}}, +"kart_065_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4AFE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5E78"}}, +"kart_066_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4AFEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5EF8"}}, +"kart_066_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4AFF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5F78"}}, +"kart_066_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4AFFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B5FF8"}}, +"kart_066_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B0048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6078"}}, +"kart_067_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B00C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B60F8"}}, +"kart_067_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B0148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6178"}}, +"kart_067_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B01C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B61F8"}}, +"kart_067_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B0248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6278"}}, +"kart_068_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B02C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B62F8"}}, +"kart_068_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B0348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6378"}}, +"kart_068_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B03C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B63F8"}}, +"kart_068_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B0448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6478"}}, +"kart_069_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B04C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B64F8"}}, +"kart_069_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B0548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6578"}}, +"kart_069_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B05C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B65F8"}}, +"kart_069_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B0648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6678"}}, +"kart_070_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B06C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B66F8"}}, +"kart_070_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B0748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6778"}}, +"kart_070_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B07C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B67F8"}}, +"kart_070_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B0848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6878"}}, +"kart_071_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B08C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B68F8"}}, +"kart_071_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B0948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6978"}}, +"kart_071_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B09C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B69F8"}}, +"kart_071_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B0A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6A78"}}, +"kart_072_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B0AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6AF8"}}, +"kart_072_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B0B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6B78"}}, +"kart_072_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B0BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6BF8"}}, +"kart_072_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B0C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6C78"}}, +"kart_073_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B0CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6CF8"}}, +"kart_073_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B0D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6D78"}}, +"kart_073_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B0DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6DF8"}}, +"kart_073_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B0E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6E78"}}, +"kart_074_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B0EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6EF8"}}, +"kart_074_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B0F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6F78"}}, +"kart_074_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B0FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B6FF8"}}, +"kart_074_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B1048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7078"}}, +"kart_075_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B10C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B70F8"}}, +"kart_075_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B1148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7178"}}, +"kart_075_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B11C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B71F8"}}, +"kart_075_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B1248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7278"}}, +"kart_076_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B12C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B72F8"}}, +"kart_076_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B1348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7378"}}, +"kart_076_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B13C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B73F8"}}, +"kart_076_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B1448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7478"}}, +"kart_077_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B14C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B74F8"}}, +"kart_077_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B1548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7578"}}, +"kart_077_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B15C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B75F8"}}, +"kart_077_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B1648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7678"}}, +"kart_078_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B16C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B76F8"}}, +"kart_078_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B1748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7778"}}, +"kart_078_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B17C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B77F8"}}, +"kart_078_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B1848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7878"}}, +"kart_079_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B18C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B78F8"}}, +"kart_079_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B1948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7978"}}, +"kart_079_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B19C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B79F8"}}, +"kart_079_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B1A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7A78"}}, +"kart_080_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B1AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7AF8"}}, +"kart_080_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B1B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7B78"}}, +"kart_080_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B1BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7BF8"}}, +"kart_080_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B1C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7C78"}}, +"kart_081_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B1CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7CF8"}}, +"kart_081_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B1D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7D78"}}, +"kart_081_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B1DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7DF8"}}, +"kart_081_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B1E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7E78"}}, +"kart_082_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B1EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7EF8"}}, +"kart_082_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B1F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7F78"}}, +"kart_082_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B1FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B7FF8"}}, +"kart_082_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B2048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8078"}}, +"kart_083_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B20C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B80F8"}}, +"kart_083_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B2148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8178"}}, +"kart_083_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B21C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B81F8"}}, +"kart_083_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B2248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8278"}}, +"kart_084_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B22C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B82F8"}}, +"kart_084_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B2348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8378"}}, +"kart_084_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B23C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B83F8"}}, +"kart_084_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B2448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8478"}}, +"kart_085_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B24C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B84F8"}}, +"kart_085_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B2548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8578"}}, +"kart_085_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B25C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B85F8"}}, +"kart_085_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B2648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8678"}}, +"kart_086_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B26C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B86F8"}}, +"kart_086_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B2748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8778"}}, +"kart_086_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B27C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B87F8"}}, +"kart_086_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B2848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8878"}}, +"kart_087_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B28C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B88F8"}}, +"kart_087_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B2948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8978"}}, +"kart_087_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B29C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B89F8"}}, +"kart_087_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B2A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8A78"}}, +"kart_088_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B2AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8AF8"}}, +"kart_088_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B2B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8B78"}}, +"kart_088_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B2BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8BF8"}}, +"kart_088_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B2C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8C78"}}, +"kart_089_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B2CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8CF8"}}, +"kart_089_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B2D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8D78"}}, +"kart_089_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B2DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8DF8"}}, +"kart_089_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B2E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8E78"}}, +"kart_090_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B2EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8EF8"}}, +"kart_090_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B2F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8F78"}}, +"kart_090_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B2FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B8FF8"}}, +"kart_090_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B3048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9078"}}, +"kart_091_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B30C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B90F8"}}, +"kart_091_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B3148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9178"}}, +"kart_091_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B31C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B91F8"}}, +"kart_091_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B3248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9278"}}, +"kart_092_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B32C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B92F8"}}, +"kart_092_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B3348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9378"}}, +"kart_092_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B33C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B93F8"}}, +"kart_092_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B3448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9478"}}, +"kart_093_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B34C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B94F8"}}, +"kart_093_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B3548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9578"}}, +"kart_093_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B35C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B95F8"}}, +"kart_093_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B3648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9678"}}, +"kart_094_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B36C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B96F8"}}, +"kart_094_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B3748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9778"}}, +"kart_094_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B37C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B97F8"}}, +"kart_094_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B3848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9878"}}, +"kart_095_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B38C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B98F8"}}, +"kart_095_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B3948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9978"}}, +"kart_095_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B39C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B99F8"}}, +"kart_095_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B3A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9A78"}}, +"kart_096_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B3AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9AF8"}}, +"kart_096_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B3B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9B78"}}, +"kart_096_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B3BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9BF8"}}, +"kart_096_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B3C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9C78"}}, +"kart_097_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B3CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9CF8"}}, +"kart_097_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B3D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9D78"}}, +"kart_097_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B3DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9DF8"}}, +"kart_097_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B3E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9E78"}}, +"kart_098_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B3EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9EF8"}}, +"kart_098_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B3F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9F78"}}, +"kart_098_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B3FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4B9FF8"}}, +"kart_098_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B4048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA078"}}, +"kart_099_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B40C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA0F8"}}, +"kart_099_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B4148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA178"}}, +"kart_099_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B41C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA1F8"}}, +"kart_099_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B4248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA278"}}, +"kart_100_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B42C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA2F8"}}, +"kart_100_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B4348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA378"}}, +"kart_100_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B43C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA3F8"}}, +"kart_100_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B4448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA478"}}, +"kart_101_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B44C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA4F8"}}, +"kart_101_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B4548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA578"}}, +"kart_101_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B45C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA5F8"}}, +"kart_101_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B4648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA678"}}, +"kart_102_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B46C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA6F8"}}, +"kart_102_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B4748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA778"}}, +"kart_102_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B47C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA7F8"}}, +"kart_102_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B4848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA878"}}, +"kart_103_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B48C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA8F8"}}, +"kart_103_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B4948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA978"}}, +"kart_103_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B49C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BA9F8"}}, +"kart_103_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B4A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BAA78"}}, +"kart_104_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B4AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BAAF8"}}, +"kart_104_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B4B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BAB78"}}, +"kart_104_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B4BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BABF8"}}, +"kart_104_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B4C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BAC78"}}, +"kart_105_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B4CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BACF8"}}, +"kart_105_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B4D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BAD78"}}, +"kart_105_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B4DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BADF8"}}, +"kart_105_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B4E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BAE78"}}, +"kart_106_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B4EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BAEF8"}}, +"kart_106_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B4F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BAF78"}}, +"kart_106_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B4FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BAFF8"}}, +"kart_106_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B5048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB078"}}, +"kart_107_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B50C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB0F8"}}, +"kart_107_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B5148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB178"}}, +"kart_107_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B51C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB1F8"}}, +"kart_107_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B5248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB278"}}, +"kart_108_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B52C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB2F8"}}, +"kart_108_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B5348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB378"}}, +"kart_108_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B53C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB3F8"}}, +"kart_108_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B5448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB478"}}, +"kart_109_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B54C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB4F8"}}, +"kart_109_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B5548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB578"}}, +"kart_109_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B55C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB5F8"}}, +"kart_109_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B5648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB678"}}, +"kart_110_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B56C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB6F8"}}, +"kart_110_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B5748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB778"}}, +"kart_110_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B57C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB7F8"}}, +"kart_110_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B5848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB878"}}, +"kart_111_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B58C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB8F8"}}, +"kart_111_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B5948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB978"}}, +"kart_111_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B59C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BB9F8"}}, +"kart_111_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B5A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BBA78"}}, +"kart_112_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B5AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BBAF8"}}, +"kart_112_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B5B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BBB78"}}, +"kart_112_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B5BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BBBF8"}}, +"kart_112_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B5C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BBC78"}}, +"kart_113_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B5CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BBCF8"}}, +"kart_113_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B5D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BBD78"}}, +"kart_113_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B5DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BBDF8"}}, +"kart_113_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B5E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BBE78"}}, +"kart_114_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B5EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BBEF8"}}, +"kart_114_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B5F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BBF78"}}, +"kart_114_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B5FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BBFF8"}}, +"kart_114_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B6048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC078"}}, +"kart_115_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B60C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC0F8"}}, +"kart_115_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B6148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC178"}}, +"kart_115_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B61C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC1F8"}}, +"kart_115_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B6248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC278"}}, +"kart_116_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B62C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC2F8"}}, +"kart_116_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B6348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC378"}}, +"kart_116_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B63C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC3F8"}}, +"kart_116_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B6448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC478"}}, +"kart_117_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B64C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC4F8"}}, +"kart_117_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B6548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC578"}}, +"kart_117_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B65C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC5F8"}}, +"kart_117_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B6648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC678"}}, +"kart_118_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B66C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC6F8"}}, +"kart_118_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B6748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC778"}}, +"kart_118_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B67C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC7F8"}}, +"kart_118_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B6848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC878"}}, +"kart_119_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B68C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC8F8"}}, +"kart_119_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B6948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC978"}}, +"kart_119_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B69C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BC9F8"}}, +"kart_119_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B6A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BCA78"}}, +"kart_120_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B6AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BCAF8"}}, +"kart_120_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B6B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BCB78"}}, +"kart_120_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B6BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BCBF8"}}, +"kart_120_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B6C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BCC78"}}, +"kart_121_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B6CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BCCF8"}}, +"kart_121_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B6D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BCD78"}}, +"kart_121_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B6DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BCDF8"}}, +"kart_121_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B6E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BCE78"}}, +"kart_122_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B6EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BCEF8"}}, +"kart_122_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B6F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BCF78"}}, +"kart_122_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B6FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BCFF8"}}, +"kart_122_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B7048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD078"}}, +"kart_123_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B70C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD0F8"}}, +"kart_123_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B7148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD178"}}, +"kart_123_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B71C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD1F8"}}, +"kart_123_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B7248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD278"}}, +"kart_124_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B72C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD2F8"}}, +"kart_124_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B7348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD378"}}, +"kart_124_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B73C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD3F8"}}, +"kart_124_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B7448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD478"}}, +"kart_125_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B74C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD4F8"}}, +"kart_125_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B7548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD578"}}, +"kart_125_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B75C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD5F8"}}, +"kart_125_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B7648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD678"}}, +"kart_126_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B76C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD6F8"}}, +"kart_126_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B7748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD778"}}, +"kart_126_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B77C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD7F8"}}, +"kart_126_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B7848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD878"}}, +"kart_127_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B78C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD8F8"}}, +"kart_127_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B7948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD978"}}, +"kart_127_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B79C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BD9F8"}}, +"kart_127_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B7A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BDA78"}}, +"kart_128_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B7AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BDAF8"}}, +"kart_128_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B7B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BDB78"}}, +"kart_128_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B7BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BDBF8"}}, +"kart_128_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B7C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BDC78"}}, +"kart_129_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B7CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BDCF8"}}, +"kart_129_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B7D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BDD78"}}, +"kart_129_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B7DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BDDF8"}}, +"kart_129_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B7E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BDE78"}}, +"kart_130_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B7EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BDEF8"}}, +"kart_130_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B7F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BDF78"}}, +"kart_130_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B7FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BDFF8"}}, +"kart_130_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B8048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE078"}}, +"kart_131_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B80C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE0F8"}}, +"kart_131_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B8148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE178"}}, +"kart_131_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B81C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE1F8"}}, +"kart_131_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B8248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE278"}}, +"kart_132_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B82C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE2F8"}}, +"kart_132_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B8348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE378"}}, +"kart_132_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B83C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE3F8"}}, +"kart_132_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B8448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE478"}}, +"kart_133_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B84C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE4F8"}}, +"kart_133_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B8548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE578"}}, +"kart_133_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B85C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE5F8"}}, +"kart_133_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B8648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE678"}}, +"kart_134_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B86C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE6F8"}}, +"kart_134_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B8748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE778"}}, +"kart_134_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B87C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE7F8"}}, +"kart_134_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B8848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE878"}}, +"kart_135_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B88C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE8F8"}}, +"kart_135_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B8948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE978"}}, +"kart_135_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B89C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BE9F8"}}, +"kart_135_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B8A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BEA78"}}, +"kart_136_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B8AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BEAF8"}}, +"kart_136_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B8B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BEB78"}}, +"kart_136_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B8BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BEBF8"}}, +"kart_136_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B8C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BEC78"}}, +"kart_137_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B8CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BECF8"}}, +"kart_137_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B8D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BED78"}}, +"kart_137_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B8DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BEDF8"}}, +"kart_137_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B8E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BEE78"}}, +"kart_138_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B8EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BEEF8"}}, +"kart_138_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B8F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BEF78"}}, +"kart_138_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B8FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BEFF8"}}, +"kart_138_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B9048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF078"}}, +"kart_139_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B90C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF0F8"}}, +"kart_139_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B9148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF178"}}, +"kart_139_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B91C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF1F8"}}, +"kart_139_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B9248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF278"}}, +"kart_140_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B92C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF2F8"}}, +"kart_140_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B9348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF378"}}, +"kart_140_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B93C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF3F8"}}, +"kart_140_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B9448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF478"}}, +"kart_141_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B94C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF4F8"}}, +"kart_141_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B9548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF578"}}, +"kart_141_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B95C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF5F8"}}, +"kart_141_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B9648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF678"}}, +"kart_142_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B96C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF6F8"}}, +"kart_142_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B9748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF778"}}, +"kart_142_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B97C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF7F8"}}, +"kart_142_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B9848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF878"}}, +"kart_143_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B98C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF8F8"}}, +"kart_143_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B9948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF978"}}, +"kart_143_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B99C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BF9F8"}}, +"kart_143_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B9A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BFA78"}}, +"kart_144_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B9AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BFAF8"}}, +"kart_144_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B9B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BFB78"}}, +"kart_144_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B9BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BFBF8"}}, +"kart_144_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B9C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BFC78"}}, +"kart_145_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B9CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BFCF8"}}, +"kart_145_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B9D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BFD78"}}, +"kart_145_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B9DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BFDF8"}}, +"kart_145_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4B9E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BFE78"}}, +"kart_146_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4B9EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BFEF8"}}, +"kart_146_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4B9F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BFF78"}}, +"kart_146_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4B9FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4BFFF8"}}, +"kart_146_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BA048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0078"}}, +"kart_147_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BA0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C00F8"}}, +"kart_147_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BA148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0178"}}, +"kart_147_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BA1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C01F8"}}, +"kart_147_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BA248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0278"}}, +"kart_148_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BA2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C02F8"}}, +"kart_148_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BA348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0378"}}, +"kart_148_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BA3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C03F8"}}, +"kart_148_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BA448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0478"}}, +"kart_149_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BA4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C04F8"}}, +"kart_149_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BA548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0578"}}, +"kart_149_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BA5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C05F8"}}, +"kart_149_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BA648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0678"}}, +"kart_150_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BA6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C06F8"}}, +"kart_150_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BA748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0778"}}, +"kart_150_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BA7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C07F8"}}, +"kart_150_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BA848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0878"}}, +"kart_151_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BA8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C08F8"}}, +"kart_151_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BA948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0978"}}, +"kart_151_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BA9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C09F8"}}, +"kart_151_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BAA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0A78"}}, +"kart_152_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BAAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0AF8"}}, +"kart_152_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BAB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0B78"}}, +"kart_152_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BABC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0BF8"}}, +"kart_152_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BAC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0C78"}}, +"kart_153_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BACC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0CF8"}}, +"kart_153_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BAD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0D78"}}, +"kart_153_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BADC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0DF8"}}, +"kart_153_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BAE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0E78"}}, +"kart_154_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BAEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0EF8"}}, +"kart_154_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BAF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0F78"}}, +"kart_154_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BAFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C0FF8"}}, +"kart_154_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BB048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1078"}}, +"kart_155_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BB0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C10F8"}}, +"kart_155_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BB148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1178"}}, +"kart_155_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BB1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C11F8"}}, +"kart_155_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BB248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1278"}}, +"kart_156_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BB2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C12F8"}}, +"kart_156_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BB348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1378"}}, +"kart_156_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BB3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C13F8"}}, +"kart_156_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BB448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1478"}}, +"kart_157_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BB4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C14F8"}}, +"kart_157_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BB548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1578"}}, +"kart_157_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BB5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C15F8"}}, +"kart_157_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BB648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1678"}}, +"kart_158_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BB6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C16F8"}}, +"kart_158_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BB748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1778"}}, +"kart_158_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BB7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C17F8"}}, +"kart_158_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BB848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1878"}}, +"kart_159_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BB8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C18F8"}}, +"kart_159_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BB948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1978"}}, +"kart_159_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BB9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C19F8"}}, +"kart_159_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BBA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1A78"}}, +"kart_160_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BBAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1AF8"}}, +"kart_160_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BBB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1B78"}}, +"kart_160_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BBBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1BF8"}}, +"kart_160_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BBC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1C78"}}, +"kart_161_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BBCC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1CF8"}}, +"kart_161_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BBD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1D78"}}, +"kart_161_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BBDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1DF8"}}, +"kart_161_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BBE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1E78"}}, +"kart_162_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BBEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1EF8"}}, +"kart_162_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BBF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1F78"}}, +"kart_162_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BBFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C1FF8"}}, +"kart_162_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BC048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2078"}}, +"kart_163_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BC0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C20F8"}}, +"kart_163_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BC148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2178"}}, +"kart_163_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BC1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C21F8"}}, +"kart_163_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BC248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2278"}}, +"kart_164_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BC2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C22F8"}}, +"kart_164_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BC348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2378"}}, +"kart_164_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BC3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C23F8"}}, +"kart_164_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BC448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2478"}}, +"kart_165_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BC4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C24F8"}}, +"kart_165_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BC548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2578"}}, +"kart_165_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BC5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C25F8"}}, +"kart_165_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BC648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2678"}}, +"kart_166_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BC6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C26F8"}}, +"kart_166_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BC748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2778"}}, +"kart_166_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BC7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C27F8"}}, +"kart_166_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BC848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2878"}}, +"kart_167_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BC8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C28F8"}}, +"kart_167_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BC948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2978"}}, +"kart_167_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BC9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C29F8"}}, +"kart_167_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BCA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2A78"}}, +"kart_168_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BCAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2AF8"}}, +"kart_168_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BCB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2B78"}}, +"kart_168_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BCBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2BF8"}}, +"kart_168_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BCC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2C78"}}, +"kart_169_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BCCC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2CF8"}}, +"kart_169_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BCD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2D78"}}, +"kart_169_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BCDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2DF8"}}, +"kart_169_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BCE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2E78"}}, +"kart_170_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BCEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2EF8"}}, +"kart_170_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BCF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2F78"}}, +"kart_170_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BCFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C2FF8"}}, +"kart_170_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BD048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3078"}}, +"kart_171_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BD0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C30F8"}}, +"kart_171_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BD148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3178"}}, +"kart_171_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BD1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C31F8"}}, +"kart_171_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BD248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3278"}}, +"kart_172_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BD2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C32F8"}}, +"kart_172_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BD348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3378"}}, +"kart_172_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BD3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C33F8"}}, +"kart_172_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BD448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3478"}}, +"kart_173_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BD4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C34F8"}}, +"kart_173_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BD548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3578"}}, +"kart_173_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BD5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C35F8"}}, +"kart_173_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BD648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3678"}}, +"kart_174_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BD6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C36F8"}}, +"kart_174_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BD748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3778"}}, +"kart_174_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BD7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C37F8"}}, +"kart_174_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BD848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3878"}}, +"kart_175_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BD8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C38F8"}}, +"kart_175_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BD948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3978"}}, +"kart_175_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BD9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C39F8"}}, +"kart_175_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BDA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3A78"}}, +"kart_176_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BDAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3AF8"}}, +"kart_176_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BDB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3B78"}}, +"kart_176_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BDBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3BF8"}}, +"kart_176_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BDC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3C78"}}, +"kart_177_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BDCC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3CF8"}}, +"kart_177_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BDD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3D78"}}, +"kart_177_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BDDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3DF8"}}, +"kart_177_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BDE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3E78"}}, +"kart_178_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BDEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3EF8"}}, +"kart_178_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BDF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3F78"}}, +"kart_178_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BDFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C3FF8"}}, +"kart_178_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BE048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4078"}}, +"kart_179_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BE0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C40F8"}}, +"kart_179_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BE148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4178"}}, +"kart_179_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BE1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C41F8"}}, +"kart_179_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BE248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4278"}}, +"kart_180_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BE2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C42F8"}}, +"kart_180_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BE348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4378"}}, +"kart_180_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BE3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C43F8"}}, +"kart_180_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BE448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4478"}}, +"kart_181_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BE4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C44F8"}}, +"kart_181_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BE548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4578"}}, +"kart_181_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BE5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C45F8"}}, +"kart_181_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BE648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4678"}}, +"kart_182_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BE6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C46F8"}}, +"kart_182_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BE748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4778"}}, +"kart_182_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BE7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C47F8"}}, +"kart_182_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BE848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4878"}}, +"kart_183_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BE8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C48F8"}}, +"kart_183_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BE948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4978"}}, +"kart_183_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BE9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C49F8"}}, +"kart_183_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BEA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4A78"}}, +"kart_184_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BEAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4AF8"}}, +"kart_184_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BEB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4B78"}}, +"kart_184_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BEBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4BF8"}}, +"kart_184_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BEC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4C78"}}, +"kart_185_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BECC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4CF8"}}, +"kart_185_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BED48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4D78"}}, +"kart_185_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BEDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4DF8"}}, +"kart_185_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BEE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4E78"}}, +"kart_186_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BEEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4EF8"}}, +"kart_186_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BEF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4F78"}}, +"kart_186_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BEFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C4FF8"}}, +"kart_186_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BF048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5078"}}, +"kart_187_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BF0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C50F8"}}, +"kart_187_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BF148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5178"}}, +"kart_187_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BF1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C51F8"}}, +"kart_187_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BF248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5278"}}, +"kart_188_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BF2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C52F8"}}, +"kart_188_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BF348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5378"}}, +"kart_188_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BF3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C53F8"}}, +"kart_188_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BF448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5478"}}, +"kart_189_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BF4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C54F8"}}, +"kart_189_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BF548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5578"}}, +"kart_189_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BF5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C55F8"}}, +"kart_189_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BF648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5678"}}, +"kart_190_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BF6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C56F8"}}, +"kart_190_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BF748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5778"}}, +"kart_190_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BF7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C57F8"}}, +"kart_190_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BF848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5878"}}, +"kart_191_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BF8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C58F8"}}, +"kart_191_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BF948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5978"}}, +"kart_191_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BF9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C59F8"}}, +"kart_191_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BFA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5A78"}}, +"kart_192_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BFAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5AF8"}}, +"kart_192_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BFB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5B78"}}, +"kart_192_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BFBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5BF8"}}, +"kart_192_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BFC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5C78"}}, +"kart_193_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BFCC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5CF8"}}, +"kart_193_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BFD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5D78"}}, +"kart_193_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BFDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5DF8"}}, +"kart_193_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4BFE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5E78"}}, +"kart_194_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4BFEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5EF8"}}, +"kart_194_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4BFF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5F78"}}, +"kart_194_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4BFFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C5FF8"}}, +"kart_194_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C0048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6078"}}, +"kart_195_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C00C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C60F8"}}, +"kart_195_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C0148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6178"}}, +"kart_195_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C01C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C61F8"}}, +"kart_195_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C0248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6278"}}, +"kart_196_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C02C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C62F8"}}, +"kart_196_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C0348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6378"}}, +"kart_196_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C03C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C63F8"}}, +"kart_196_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C0448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6478"}}, +"kart_197_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C04C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C64F8"}}, +"kart_197_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C0548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6578"}}, +"kart_197_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C05C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C65F8"}}, +"kart_197_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C0648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6678"}}, +"kart_198_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C06C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C66F8"}}, +"kart_198_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C0748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6778"}}, +"kart_198_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C07C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C67F8"}}, +"kart_198_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C0848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6878"}}, +"kart_199_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C08C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C68F8"}}, +"kart_199_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C0948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6978"}}, +"kart_199_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C09C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C69F8"}}, +"kart_199_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C0A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6A78"}}, +"kart_200_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C0AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6AF8"}}, +"kart_200_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C0B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6B78"}}, +"kart_200_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C0BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6BF8"}}, +"kart_200_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C0C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6C78"}}, +"kart_201_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C0CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6CF8"}}, +"kart_201_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C0D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6D78"}}, +"kart_201_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C0DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6DF8"}}, +"kart_201_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C0E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6E78"}}, +"kart_202_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C0EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6EF8"}}, +"kart_202_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C0F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6F78"}}, +"kart_202_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C0FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C6FF8"}}, +"kart_202_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C1048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7078"}}, +"kart_203_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C10C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C70F8"}}, +"kart_203_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C1148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7178"}}, +"kart_203_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C11C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C71F8"}}, +"kart_203_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C1248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7278"}}, +"kart_204_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C12C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C72F8"}}, +"kart_204_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C1348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7378"}}, +"kart_204_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C13C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C73F8"}}, +"kart_204_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C1448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7478"}}, +"kart_205_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C14C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C74F8"}}, +"kart_205_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C1548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7578"}}, +"kart_205_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C15C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C75F8"}}, +"kart_205_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C1648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7678"}}, +"kart_206_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C16C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C76F8"}}, +"kart_206_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C1748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7778"}}, +"kart_206_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C17C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C77F8"}}, +"kart_206_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C1848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7878"}}, +"kart_207_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C18C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C78F8"}}, +"kart_207_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C1948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7978"}}, +"kart_207_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C19C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C79F8"}}, +"kart_207_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C1A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7A78"}}, +"kart_208_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C1AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7AF8"}}, +"kart_208_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C1B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7B78"}}, +"kart_208_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C1BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7BF8"}}, +"kart_208_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C1C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7C78"}}, +"kart_209_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C1CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7CF8"}}, +"kart_209_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C1D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7D78"}}, +"kart_209_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C1DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7DF8"}}, +"kart_209_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C1E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7E78"}}, +"kart_210_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C1EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7EF8"}}, +"kart_210_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C1F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7F78"}}, +"kart_210_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C1FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C7FF8"}}, +"kart_210_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C2048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8078"}}, +"kart_211_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C20C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C80F8"}}, +"kart_211_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C2148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8178"}}, +"kart_211_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C21C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C81F8"}}, +"kart_211_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C2248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8278"}}, +"kart_212_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C22C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C82F8"}}, +"kart_212_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C2348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8378"}}, +"kart_212_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C23C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C83F8"}}, +"kart_212_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C2448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8478"}}, +"kart_213_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C24C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C84F8"}}, +"kart_213_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C2548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8578"}}, +"kart_213_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C25C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C85F8"}}, +"kart_213_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C2648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8678"}}, +"kart_214_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C26C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C86F8"}}, +"kart_214_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C2748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8778"}}, +"kart_214_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C27C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C87F8"}}, +"kart_214_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C2848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8878"}}, +"kart_215_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C28C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C88F8"}}, +"kart_215_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C2948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8978"}}, +"kart_215_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C29C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C89F8"}}, +"kart_215_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C2A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8A78"}}, +"kart_216_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C2AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8AF8"}}, +"kart_216_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C2B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8B78"}}, +"kart_216_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C2BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8BF8"}}, +"kart_216_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C2C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8C78"}}, +"kart_217_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C2CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8CF8"}}, +"kart_217_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C2D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8D78"}}, +"kart_217_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C2DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8DF8"}}, +"kart_217_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C2E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8E78"}}, +"kart_218_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C2EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8EF8"}}, +"kart_218_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C2F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8F78"}}, +"kart_218_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C2FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C8FF8"}}, +"kart_218_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C3048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9078"}}, +"kart_219_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C30C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C90F8"}}, +"kart_219_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C3148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9178"}}, +"kart_219_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C31C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C91F8"}}, +"kart_219_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C3248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9278"}}, +"kart_220_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C32C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C92F8"}}, +"kart_220_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C3348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9378"}}, +"kart_220_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C33C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C93F8"}}, +"kart_220_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C3448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9478"}}, +"kart_221_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C34C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C94F8"}}, +"kart_221_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C3548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9578"}}, +"kart_221_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C35C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C95F8"}}, +"kart_221_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C3648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9678"}}, +"kart_222_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C36C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C96F8"}}, +"kart_222_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C3748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9778"}}, +"kart_222_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C37C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C97F8"}}, +"kart_222_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C3848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9878"}}, +"kart_223_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C38C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C98F8"}}, +"kart_223_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C3948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9978"}}, +"kart_223_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C39C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C99F8"}}, +"kart_223_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C3A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9A78"}}, +"kart_224_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C3AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9AF8"}}, +"kart_224_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C3B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9B78"}}, +"kart_224_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C3BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9BF8"}}, +"kart_224_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C3C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9C78"}}, +"kart_225_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C3CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9CF8"}}, +"kart_225_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C3D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9D78"}}, +"kart_225_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C3DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9DF8"}}, +"kart_225_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C3E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9E78"}}, +"kart_226_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C3EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9EF8"}}, +"kart_226_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C3F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9F78"}}, +"kart_226_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C3FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4C9FF8"}}, +"kart_226_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C4048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA078"}}, +"kart_227_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C40C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA0F8"}}, +"kart_227_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C4148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA178"}}, +"kart_227_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C41C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA1F8"}}, +"kart_227_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C4248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA278"}}, +"kart_228_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C42C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA2F8"}}, +"kart_228_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C4348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA378"}}, +"kart_228_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C43C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA3F8"}}, +"kart_228_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C4448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA478"}}, +"kart_229_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C44C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA4F8"}}, +"kart_229_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C4548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA578"}}, +"kart_229_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C45C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA5F8"}}, +"kart_229_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C4648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA678"}}, +"kart_230_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C46C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA6F8"}}, +"kart_230_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C4748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA778"}}, +"kart_230_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C47C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA7F8"}}, +"kart_230_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C4848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA878"}}, +"kart_231_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C48C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA8F8"}}, +"kart_231_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C4948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA978"}}, +"kart_231_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C49C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CA9F8"}}, +"kart_231_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C4A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CAA78"}}, +"kart_232_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C4AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CAAF8"}}, +"kart_232_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C4B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CAB78"}}, +"kart_232_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C4BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CABF8"}}, +"kart_232_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C4C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CAC78"}}, +"kart_233_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C4CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CACF8"}}, +"kart_233_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C4D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CAD78"}}, +"kart_233_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C4DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CADF8"}}, +"kart_233_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C4E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CAE78"}}, +"kart_234_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C4EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CAEF8"}}, +"kart_234_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C4F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CAF78"}}, +"kart_234_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C4FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CAFF8"}}, +"kart_234_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C5048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB078"}}, +"kart_235_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C50C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB0F8"}}, +"kart_235_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C5148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB178"}}, +"kart_235_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C51C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB1F8"}}, +"kart_235_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C5248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB278"}}, +"kart_236_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C52C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB2F8"}}, +"kart_236_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C5348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB378"}}, +"kart_236_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C53C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB3F8"}}, +"kart_236_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C5448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB478"}}, +"kart_237_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C54C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB4F8"}}, +"kart_237_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C5548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB578"}}, +"kart_237_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C55C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB5F8"}}, +"kart_237_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C5648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB678"}}, +"kart_238_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C56C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB6F8"}}, +"kart_238_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C5748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB778"}}, +"kart_238_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C57C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB7F8"}}, +"kart_238_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C5848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB878"}}, +"kart_239_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C58C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB8F8"}}, +"kart_239_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C5948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB978"}}, +"kart_239_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C59C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CB9F8"}}, +"kart_239_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C5A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CBA78"}}, +"kart_240_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C5AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CBAF8"}}, +"kart_240_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C5B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CBB78"}}, +"kart_240_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C5BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CBBF8"}}, +"kart_240_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C5C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CBC78"}}, +"kart_241_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C5CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CBCF8"}}, +"kart_241_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C5D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CBD78"}}, +"kart_241_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C5DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CBDF8"}}, +"kart_241_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C5E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CBE78"}}, +"kart_242_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C5EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CBEF8"}}, +"kart_242_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C5F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CBF78"}}, +"kart_242_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C5FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CBFF8"}}, +"kart_242_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C6048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC078"}}, +"kart_243_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C60C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC0F8"}}, +"kart_243_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C6148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC178"}}, +"kart_243_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C61C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC1F8"}}, +"kart_243_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C6248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC278"}}, +"kart_244_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C62C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC2F8"}}, +"kart_244_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C6348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC378"}}, +"kart_244_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C63C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC3F8"}}, +"kart_244_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C6448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC478"}}, +"kart_245_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C64C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC4F8"}}, +"kart_245_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C6548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC578"}}, +"kart_245_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C65C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC5F8"}}, +"kart_245_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C6648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC678"}}, +"kart_246_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C66C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC6F8"}}, +"kart_246_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C6748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC778"}}, +"kart_246_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C67C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC7F8"}}, +"kart_246_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C6848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC878"}}, +"kart_247_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C68C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC8F8"}}, +"kart_247_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C6948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC978"}}, +"kart_247_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C69C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CC9F8"}}, +"kart_247_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C6A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CCA78"}}, +"kart_248_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C6AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CCAF8"}}, +"kart_248_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C6B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CCB78"}}, +"kart_248_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C6BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CCBF8"}}, +"kart_248_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C6C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CCC78"}}, +"kart_249_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C6CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CCCF8"}}, +"kart_249_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C6D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CCD78"}}, +"kart_249_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C6DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CCDF8"}}, +"kart_249_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C6E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CCE78"}}, +"kart_250_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C6EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CCEF8"}}, +"kart_250_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C6F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CCF78"}}, +"kart_250_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C6FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CCFF8"}}, +"kart_250_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C7048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD078"}}, +"kart_251_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C70C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD0F8"}}, +"kart_251_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C7148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD178"}}, +"kart_251_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C71C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD1F8"}}, +"kart_251_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C7248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD278"}}, +"kart_252_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C72C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD2F8"}}, +"kart_252_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C7348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD378"}}, +"kart_252_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C73C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD3F8"}}, +"kart_252_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C7448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD478"}}, +"kart_253_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C74C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD4F8"}}, +"kart_253_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C7548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD578"}}, +"kart_253_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C75C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD5F8"}}, +"kart_253_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C7648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD678"}}, +"kart_254_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C76C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD6F8"}}, +"kart_254_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C7748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD778"}}, +"kart_254_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C77C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD7F8"}}, +"kart_254_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C7848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD878"}}, +"kart_255_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C78C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD8F8"}}, +"kart_255_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C7948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD978"}}, +"kart_255_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C79C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CD9F8"}}, +"kart_255_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C7A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CDA78"}}, +"kart_256_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C7AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CDAF8"}}, +"kart_256_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C7B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CDB78"}}, +"kart_256_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C7BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CDBF8"}}, +"kart_256_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C7C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CDC78"}}, +"kart_257_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C7CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CDCF8"}}, +"kart_257_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C7D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CDD78"}}, +"kart_257_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C7DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CDDF8"}}, +"kart_257_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C7E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CDE78"}}, +"kart_258_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C7EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CDEF8"}}, +"kart_258_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C7F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CDF78"}}, +"kart_258_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C7FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CDFF8"}}, +"kart_258_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C8048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE078"}}, +"kart_259_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C80C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE0F8"}}, +"kart_259_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C8148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE178"}}, +"kart_259_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C81C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE1F8"}}, +"kart_259_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C8248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE278"}}, +"kart_260_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C82C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE2F8"}}, +"kart_260_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C8348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE378"}}, +"kart_260_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C83C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE3F8"}}, +"kart_260_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C8448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE478"}}, +"kart_261_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C84C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE4F8"}}, +"kart_261_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C8548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE578"}}, +"kart_261_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C85C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE5F8"}}, +"kart_261_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C8648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE678"}}, +"kart_262_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C86C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE6F8"}}, +"kart_262_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C8748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE778"}}, +"kart_262_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C87C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE7F8"}}, +"kart_262_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C8848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE878"}}, +"kart_263_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C88C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE8F8"}}, +"kart_263_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C8948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE978"}}, +"kart_263_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C89C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CE9F8"}}, +"kart_263_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C8A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CEA78"}}, +"kart_264_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C8AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CEAF8"}}, +"kart_264_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C8B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CEB78"}}, +"kart_264_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C8BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CEBF8"}}, +"kart_264_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C8C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CEC78"}}, +"kart_265_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C8CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CECF8"}}, +"kart_265_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C8D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CED78"}}, +"kart_265_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C8DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CEDF8"}}, +"kart_265_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C8E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CEE78"}}, +"kart_266_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C8EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CEEF8"}}, +"kart_266_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C8F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CEF78"}}, +"kart_266_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C8FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CEFF8"}}, +"kart_266_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C9048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF078"}}, +"kart_267_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C90C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF0F8"}}, +"kart_267_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C9148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF178"}}, +"kart_267_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C91C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF1F8"}}, +"kart_267_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C9248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF278"}}, +"kart_268_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C92C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF2F8"}}, +"kart_268_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C9348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF378"}}, +"kart_268_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C93C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF3F8"}}, +"kart_268_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C9448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF478"}}, +"kart_269_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C94C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF4F8"}}, +"kart_269_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C9548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF578"}}, +"kart_269_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C95C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF5F8"}}, +"kart_269_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C9648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF678"}}, +"kart_270_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C96C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF6F8"}}, +"kart_270_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C9748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF778"}}, +"kart_270_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C97C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF7F8"}}, +"kart_270_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C9848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF878"}}, +"kart_271_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C98C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF8F8"}}, +"kart_271_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C9948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF978"}}, +"kart_271_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C99C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CF9F8"}}, +"kart_271_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C9A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CFA78"}}, +"kart_272_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C9AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CFAF8"}}, +"kart_272_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C9B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CFB78"}}, +"kart_272_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C9BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CFBF8"}}, +"kart_272_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C9C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CFC78"}}, +"kart_273_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C9CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CFCF8"}}, +"kart_273_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C9D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CFD78"}}, +"kart_273_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C9DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CFDF8"}}, +"kart_273_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4C9E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CFE78"}}, +"kart_274_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4C9EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CFEF8"}}, +"kart_274_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4C9F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CFF78"}}, +"kart_274_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4C9FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4CFFF8"}}, +"kart_274_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CA048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0078"}}, +"kart_275_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CA0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D00F8"}}, +"kart_275_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CA148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0178"}}, +"kart_275_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CA1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D01F8"}}, +"kart_275_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CA248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0278"}}, +"kart_276_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CA2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D02F8"}}, +"kart_276_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CA348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0378"}}, +"kart_276_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CA3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D03F8"}}, +"kart_276_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CA448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0478"}}, +"kart_277_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CA4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D04F8"}}, +"kart_277_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CA548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0578"}}, +"kart_277_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CA5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D05F8"}}, +"kart_277_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CA648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0678"}}, +"kart_278_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CA6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D06F8"}}, +"kart_278_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CA748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0778"}}, +"kart_278_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CA7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D07F8"}}, +"kart_278_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CA848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0878"}}, +"kart_279_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CA8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D08F8"}}, +"kart_279_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CA948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0978"}}, +"kart_279_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CA9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D09F8"}}, +"kart_279_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CAA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0A78"}}, +"kart_280_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CAAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0AF8"}}, +"kart_280_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CAB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0B78"}}, +"kart_280_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CABC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0BF8"}}, +"kart_280_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CAC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0C78"}}, +"kart_281_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CACC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0CF8"}}, +"kart_281_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CAD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0D78"}}, +"kart_281_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CADC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0DF8"}}, +"kart_281_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CAE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0E78"}}, +"kart_282_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CAEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0EF8"}}, +"kart_282_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CAF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0F78"}}, +"kart_282_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CAFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D0FF8"}}, +"kart_282_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CB048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D1078"}}, +"kart_283_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CB0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D10F8"}}, +"kart_283_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CB148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D1178"}}, +"kart_283_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CB1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D11F8"}}, +"kart_283_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CB248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D1278"}}, +"kart_284_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CB2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D12F8"}}, +"kart_284_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CB348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D1378"}}, +"kart_284_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CB3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D13F8"}}, +"kart_284_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CB448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D1478"}}, +"kart_285_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CB4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D14F8"}}, +"kart_285_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CB548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D1578"}}, +"kart_285_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CB5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D15F8"}}, +"kart_285_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CB648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D1678"}}, +"kart_286_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CB6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D16F8"}}, +"kart_286_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CB748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D1778"}}, +"kart_286_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CB7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D17F8"}}, +"kart_286_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CB848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D1878"}}, +"kart_287_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CB8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D18F8"}}, +"kart_287_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CB948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D1978"}}, +"kart_287_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CB9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D19F8"}}, +"kart_287_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CBA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D1A78"}}, +"kart_288_wheel_0": {"output_dir": "toad/palettes", "rom_offset": "0x4CBAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D1AF8"}}, +"kart_288_wheel_1": {"output_dir": "toad/palettes", "rom_offset": "0x4CBB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D1B78"}}, +"kart_288_wheel_2": {"output_dir": "toad/palettes", "rom_offset": "0x4CBBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D1BF8"}}, +"kart_288_wheel_3": {"output_dir": "toad/palettes", "rom_offset": "0x4CBC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D1C78"}}, +"toad_kart_palette": {"output_dir": "toad/palettes", "rom_offset": "0x4CBCC8", "width": 16, "height": 12, "type": "rgba16", "jp.v11": {"rom_offset": "0x4D1CF8"}} } \ No newline at end of file diff --git a/assets/karts/wario_kart.json b/assets/karts/wario_kart.json index 3cbc5b1d53..a52fa4b6e1 100644 --- a/assets/karts/wario_kart.json +++ b/assets/karts/wario_kart.json @@ -1,1480 +1,1480 @@ { -"wario_kart_frame000": {"output_dir": "wario/frames", "rom_offset": "0x39E0C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame001": {"output_dir": "wario/frames", "rom_offset": "0x39E60C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_001_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame002": {"output_dir": "wario/frames", "rom_offset": "0x39EB74", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_002_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame003": {"output_dir": "wario/frames", "rom_offset": "0x39F0C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_003_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame004": {"output_dir": "wario/frames", "rom_offset": "0x39F618", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_004_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame005": {"output_dir": "wario/frames", "rom_offset": "0x39FBA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_005_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame006": {"output_dir": "wario/frames", "rom_offset": "0x3A0120", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_006_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame007": {"output_dir": "wario/frames", "rom_offset": "0x3A06CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_007_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame008": {"output_dir": "wario/frames", "rom_offset": "0x3A0C70", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_008_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame009": {"output_dir": "wario/frames", "rom_offset": "0x3A1224", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_009_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame010": {"output_dir": "wario/frames", "rom_offset": "0x3A17E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_010_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame011": {"output_dir": "wario/frames", "rom_offset": "0x3A1DB4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_011_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame012": {"output_dir": "wario/frames", "rom_offset": "0x3A238C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_012_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame013": {"output_dir": "wario/frames", "rom_offset": "0x3A2980", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_013_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame014": {"output_dir": "wario/frames", "rom_offset": "0x3A2F78", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_014_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame015": {"output_dir": "wario/frames", "rom_offset": "0x3A3570", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_015_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame016": {"output_dir": "wario/frames", "rom_offset": "0x3A3B80", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_016_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame017": {"output_dir": "wario/frames", "rom_offset": "0x3A41A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_017_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame018": {"output_dir": "wario/frames", "rom_offset": "0x3A47B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_018_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame019": {"output_dir": "wario/frames", "rom_offset": "0x3A4DE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_019_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame020": {"output_dir": "wario/frames", "rom_offset": "0x3A5410", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_020_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame021": {"output_dir": "wario/frames", "rom_offset": "0x3A5A34", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_021_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame022": {"output_dir": "wario/frames", "rom_offset": "0x3A5F80", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_022_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame023": {"output_dir": "wario/frames", "rom_offset": "0x3A64F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_023_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame024": {"output_dir": "wario/frames", "rom_offset": "0x3A6A78", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_024_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame025": {"output_dir": "wario/frames", "rom_offset": "0x3A7010", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_025_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame026": {"output_dir": "wario/frames", "rom_offset": "0x3A7588", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_026_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame027": {"output_dir": "wario/frames", "rom_offset": "0x3A7B20", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_027_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame028": {"output_dir": "wario/frames", "rom_offset": "0x3A80BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_028_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame029": {"output_dir": "wario/frames", "rom_offset": "0x3A867C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_029_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame030": {"output_dir": "wario/frames", "rom_offset": "0x3A8C38", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_030_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame031": {"output_dir": "wario/frames", "rom_offset": "0x3A9220", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_031_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame032": {"output_dir": "wario/frames", "rom_offset": "0x3A9800", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_032_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame033": {"output_dir": "wario/frames", "rom_offset": "0x3A9DD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_033_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame034": {"output_dir": "wario/frames", "rom_offset": "0x3AA3DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_034_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame035": {"output_dir": "wario/frames", "rom_offset": "0x3AA9F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_035_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame036": {"output_dir": "wario/frames", "rom_offset": "0x3AB000", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_036_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame037": {"output_dir": "wario/frames", "rom_offset": "0x3AB608", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_037_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame038": {"output_dir": "wario/frames", "rom_offset": "0x3ABC34", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_038_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame039": {"output_dir": "wario/frames", "rom_offset": "0x3AC258", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_039_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame040": {"output_dir": "wario/frames", "rom_offset": "0x3AC87C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_040_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame041": {"output_dir": "wario/frames", "rom_offset": "0x3ACEB4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_041_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame042": {"output_dir": "wario/frames", "rom_offset": "0x3AD508", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_042_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame043": {"output_dir": "wario/frames", "rom_offset": "0x3ADA78", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_043_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame044": {"output_dir": "wario/frames", "rom_offset": "0x3ADFF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_044_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame045": {"output_dir": "wario/frames", "rom_offset": "0x3AE584", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_045_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame046": {"output_dir": "wario/frames", "rom_offset": "0x3AEB1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_046_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame047": {"output_dir": "wario/frames", "rom_offset": "0x3AF0B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_047_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame048": {"output_dir": "wario/frames", "rom_offset": "0x3AF648", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_048_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame049": {"output_dir": "wario/frames", "rom_offset": "0x3AFC08", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_049_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame050": {"output_dir": "wario/frames", "rom_offset": "0x3B01E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_050_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame051": {"output_dir": "wario/frames", "rom_offset": "0x3B07BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_051_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame052": {"output_dir": "wario/frames", "rom_offset": "0x3B0DAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_052_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame053": {"output_dir": "wario/frames", "rom_offset": "0x3B1388", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_053_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame054": {"output_dir": "wario/frames", "rom_offset": "0x3B197C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_054_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame055": {"output_dir": "wario/frames", "rom_offset": "0x3B1F70", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_055_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame056": {"output_dir": "wario/frames", "rom_offset": "0x3B257C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_056_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame057": {"output_dir": "wario/frames", "rom_offset": "0x3B2B94", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_057_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame058": {"output_dir": "wario/frames", "rom_offset": "0x3B31C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_058_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame059": {"output_dir": "wario/frames", "rom_offset": "0x3B37F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_059_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame060": {"output_dir": "wario/frames", "rom_offset": "0x3B3E20", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_060_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame061": {"output_dir": "wario/frames", "rom_offset": "0x3B4460", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_061_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame062": {"output_dir": "wario/frames", "rom_offset": "0x3B4AA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_062_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame063": {"output_dir": "wario/frames", "rom_offset": "0x3B50F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_063_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame064": {"output_dir": "wario/frames", "rom_offset": "0x3B5660", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_064_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame065": {"output_dir": "wario/frames", "rom_offset": "0x3B5BF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_065_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame066": {"output_dir": "wario/frames", "rom_offset": "0x3B6194", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_066_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame067": {"output_dir": "wario/frames", "rom_offset": "0x3B6730", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_067_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame068": {"output_dir": "wario/frames", "rom_offset": "0x3B6CD0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_068_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame069": {"output_dir": "wario/frames", "rom_offset": "0x3B728C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_069_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame070": {"output_dir": "wario/frames", "rom_offset": "0x3B7844", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_070_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame071": {"output_dir": "wario/frames", "rom_offset": "0x3B7E18", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_071_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame072": {"output_dir": "wario/frames", "rom_offset": "0x3B8410", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_072_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame073": {"output_dir": "wario/frames", "rom_offset": "0x3B8A04", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_073_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame074": {"output_dir": "wario/frames", "rom_offset": "0x3B9010", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_074_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame075": {"output_dir": "wario/frames", "rom_offset": "0x3B9608", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_075_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame076": {"output_dir": "wario/frames", "rom_offset": "0x3B9C1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_076_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame077": {"output_dir": "wario/frames", "rom_offset": "0x3BA214", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_077_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame078": {"output_dir": "wario/frames", "rom_offset": "0x3BA828", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_078_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame079": {"output_dir": "wario/frames", "rom_offset": "0x3BAE58", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_079_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame080": {"output_dir": "wario/frames", "rom_offset": "0x3BB484", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_080_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame081": {"output_dir": "wario/frames", "rom_offset": "0x3BBAB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_081_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame082": {"output_dir": "wario/frames", "rom_offset": "0x3BC0F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_082_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame083": {"output_dir": "wario/frames", "rom_offset": "0x3BC73C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_083_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame084": {"output_dir": "wario/frames", "rom_offset": "0x3BCD94", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_084_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame085": {"output_dir": "wario/frames", "rom_offset": "0x3BD31C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_085_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame086": {"output_dir": "wario/frames", "rom_offset": "0x3BD8A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_086_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame087": {"output_dir": "wario/frames", "rom_offset": "0x3BDE2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_087_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame088": {"output_dir": "wario/frames", "rom_offset": "0x3BE3F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_088_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame089": {"output_dir": "wario/frames", "rom_offset": "0x3BE9A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_089_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame090": {"output_dir": "wario/frames", "rom_offset": "0x3BEF5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_090_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame091": {"output_dir": "wario/frames", "rom_offset": "0x3BF534", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_091_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame092": {"output_dir": "wario/frames", "rom_offset": "0x3BFB24", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_092_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame093": {"output_dir": "wario/frames", "rom_offset": "0x3C0108", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_093_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame094": {"output_dir": "wario/frames", "rom_offset": "0x3C06EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_094_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame095": {"output_dir": "wario/frames", "rom_offset": "0x3C0CD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_095_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame096": {"output_dir": "wario/frames", "rom_offset": "0x3C12E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_096_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame097": {"output_dir": "wario/frames", "rom_offset": "0x3C18E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_097_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame098": {"output_dir": "wario/frames", "rom_offset": "0x3C1EE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_098_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame099": {"output_dir": "wario/frames", "rom_offset": "0x3C24F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_099_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame100": {"output_dir": "wario/frames", "rom_offset": "0x3C2B24", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_100_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame101": {"output_dir": "wario/frames", "rom_offset": "0x3C3160", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_101_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame102": {"output_dir": "wario/frames", "rom_offset": "0x3C37A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_102_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame103": {"output_dir": "wario/frames", "rom_offset": "0x3C3DE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_103_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame104": {"output_dir": "wario/frames", "rom_offset": "0x3C4440", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_104_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame105": {"output_dir": "wario/frames", "rom_offset": "0x3C4AA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_105_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame106": {"output_dir": "wario/frames", "rom_offset": "0x3C5038", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_106_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame107": {"output_dir": "wario/frames", "rom_offset": "0x3C55DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_107_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame108": {"output_dir": "wario/frames", "rom_offset": "0x3C5B64", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_108_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame109": {"output_dir": "wario/frames", "rom_offset": "0x3C6110", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_109_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame110": {"output_dir": "wario/frames", "rom_offset": "0x3C66D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_110_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame111": {"output_dir": "wario/frames", "rom_offset": "0x3C6CAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_111_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame112": {"output_dir": "wario/frames", "rom_offset": "0x3C7294", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_112_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame113": {"output_dir": "wario/frames", "rom_offset": "0x3C7878", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_113_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame114": {"output_dir": "wario/frames", "rom_offset": "0x3C7E68", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_114_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame115": {"output_dir": "wario/frames", "rom_offset": "0x3C846C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_115_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame116": {"output_dir": "wario/frames", "rom_offset": "0x3C8A68", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_116_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame117": {"output_dir": "wario/frames", "rom_offset": "0x3C9070", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_117_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame118": {"output_dir": "wario/frames", "rom_offset": "0x3C967C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_118_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame119": {"output_dir": "wario/frames", "rom_offset": "0x3C9C84", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_119_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame120": {"output_dir": "wario/frames", "rom_offset": "0x3CA2A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_120_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame121": {"output_dir": "wario/frames", "rom_offset": "0x3CA8E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_121_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame122": {"output_dir": "wario/frames", "rom_offset": "0x3CAF28", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_122_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame123": {"output_dir": "wario/frames", "rom_offset": "0x3CB584", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_123_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame124": {"output_dir": "wario/frames", "rom_offset": "0x3CBBE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_124_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame125": {"output_dir": "wario/frames", "rom_offset": "0x3CC250", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_125_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame126": {"output_dir": "wario/frames", "rom_offset": "0x3CC8CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_126_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame127": {"output_dir": "wario/frames", "rom_offset": "0x3CCE5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_127_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame128": {"output_dir": "wario/frames", "rom_offset": "0x3CD3F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_128_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame129": {"output_dir": "wario/frames", "rom_offset": "0x3CD9B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_129_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame130": {"output_dir": "wario/frames", "rom_offset": "0x3CDF78", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_130_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame131": {"output_dir": "wario/frames", "rom_offset": "0x3CE534", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_131_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame132": {"output_dir": "wario/frames", "rom_offset": "0x3CEB00", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_132_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame133": {"output_dir": "wario/frames", "rom_offset": "0x3CF0E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_133_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame134": {"output_dir": "wario/frames", "rom_offset": "0x3CF6D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_134_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame135": {"output_dir": "wario/frames", "rom_offset": "0x3CFCCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_135_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame136": {"output_dir": "wario/frames", "rom_offset": "0x3D02B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_136_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame137": {"output_dir": "wario/frames", "rom_offset": "0x3D08B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_137_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame138": {"output_dir": "wario/frames", "rom_offset": "0x3D0EB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_138_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame139": {"output_dir": "wario/frames", "rom_offset": "0x3D14B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_139_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame140": {"output_dir": "wario/frames", "rom_offset": "0x3D1ABC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_140_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame141": {"output_dir": "wario/frames", "rom_offset": "0x3D20F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_141_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame142": {"output_dir": "wario/frames", "rom_offset": "0x3D2730", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_142_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame143": {"output_dir": "wario/frames", "rom_offset": "0x3D2D80", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_143_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame144": {"output_dir": "wario/frames", "rom_offset": "0x3D33CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_144_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame145": {"output_dir": "wario/frames", "rom_offset": "0x3D3A24", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_145_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame146": {"output_dir": "wario/frames", "rom_offset": "0x3D4084", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_146_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame147": {"output_dir": "wario/frames", "rom_offset": "0x3D4714", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_147_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame148": {"output_dir": "wario/frames", "rom_offset": "0x3D4C98", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_148_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame149": {"output_dir": "wario/frames", "rom_offset": "0x3D5258", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_149_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame150": {"output_dir": "wario/frames", "rom_offset": "0x3D57FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_150_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame151": {"output_dir": "wario/frames", "rom_offset": "0x3D5DC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_151_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame152": {"output_dir": "wario/frames", "rom_offset": "0x3D6390", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_152_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame153": {"output_dir": "wario/frames", "rom_offset": "0x3D6950", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_153_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame154": {"output_dir": "wario/frames", "rom_offset": "0x3D6F34", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_154_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame155": {"output_dir": "wario/frames", "rom_offset": "0x3D7524", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_155_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame156": {"output_dir": "wario/frames", "rom_offset": "0x3D7B24", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_156_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame157": {"output_dir": "wario/frames", "rom_offset": "0x3D8110", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_157_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame158": {"output_dir": "wario/frames", "rom_offset": "0x3D872C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_158_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame159": {"output_dir": "wario/frames", "rom_offset": "0x3D8D3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_159_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame160": {"output_dir": "wario/frames", "rom_offset": "0x3D9344", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_160_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame161": {"output_dir": "wario/frames", "rom_offset": "0x3D994C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_161_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame162": {"output_dir": "wario/frames", "rom_offset": "0x3D9F70", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_162_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame163": {"output_dir": "wario/frames", "rom_offset": "0x3DA5C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_163_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame164": {"output_dir": "wario/frames", "rom_offset": "0x3DAC18", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_164_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame165": {"output_dir": "wario/frames", "rom_offset": "0x3DB284", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_165_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame166": {"output_dir": "wario/frames", "rom_offset": "0x3DB8FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_166_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame167": {"output_dir": "wario/frames", "rom_offset": "0x3DBF88", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_167_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame168": {"output_dir": "wario/frames", "rom_offset": "0x3DC608", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_168_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame169": {"output_dir": "wario/frames", "rom_offset": "0x3DCBAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_169_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame170": {"output_dir": "wario/frames", "rom_offset": "0x3DD16C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_170_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame171": {"output_dir": "wario/frames", "rom_offset": "0x3DD710", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_171_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame172": {"output_dir": "wario/frames", "rom_offset": "0x3DDCE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_172_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame173": {"output_dir": "wario/frames", "rom_offset": "0x3DE2B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_173_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame174": {"output_dir": "wario/frames", "rom_offset": "0x3DE874", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_174_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame175": {"output_dir": "wario/frames", "rom_offset": "0x3DEE48", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_175_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame176": {"output_dir": "wario/frames", "rom_offset": "0x3DF434", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_176_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame177": {"output_dir": "wario/frames", "rom_offset": "0x3DFA38", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_177_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame178": {"output_dir": "wario/frames", "rom_offset": "0x3E0034", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_178_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame179": {"output_dir": "wario/frames", "rom_offset": "0x3E0650", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_179_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame180": {"output_dir": "wario/frames", "rom_offset": "0x3E0C64", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_180_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame181": {"output_dir": "wario/frames", "rom_offset": "0x3E1264", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_181_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame182": {"output_dir": "wario/frames", "rom_offset": "0x3E1878", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_182_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame183": {"output_dir": "wario/frames", "rom_offset": "0x3E1EAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_183_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame184": {"output_dir": "wario/frames", "rom_offset": "0x3E24E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_184_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame185": {"output_dir": "wario/frames", "rom_offset": "0x3E2B34", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_185_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame186": {"output_dir": "wario/frames", "rom_offset": "0x3E31A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_186_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame187": {"output_dir": "wario/frames", "rom_offset": "0x3E3810", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_187_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame188": {"output_dir": "wario/frames", "rom_offset": "0x3E3EA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_188_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame189": {"output_dir": "wario/frames", "rom_offset": "0x3E453C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_189_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame190": {"output_dir": "wario/frames", "rom_offset": "0x3E4A98", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_190_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame191": {"output_dir": "wario/frames", "rom_offset": "0x3E5030", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_191_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame192": {"output_dir": "wario/frames", "rom_offset": "0x3E55E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_192_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame193": {"output_dir": "wario/frames", "rom_offset": "0x3E5BCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_193_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame194": {"output_dir": "wario/frames", "rom_offset": "0x3E61B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_194_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame195": {"output_dir": "wario/frames", "rom_offset": "0x3E67C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_195_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame196": {"output_dir": "wario/frames", "rom_offset": "0x3E6E00", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_196_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame197": {"output_dir": "wario/frames", "rom_offset": "0x3E7448", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_197_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame198": {"output_dir": "wario/frames", "rom_offset": "0x3E7A98", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_198_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame199": {"output_dir": "wario/frames", "rom_offset": "0x3E811C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_199_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame200": {"output_dir": "wario/frames", "rom_offset": "0x3E87A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_200_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame201": {"output_dir": "wario/frames", "rom_offset": "0x3E8E60", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_201_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame202": {"output_dir": "wario/frames", "rom_offset": "0x3E9520", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_202_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame203": {"output_dir": "wario/frames", "rom_offset": "0x3E9BBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_203_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame204": {"output_dir": "wario/frames", "rom_offset": "0x3EA268", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_204_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame205": {"output_dir": "wario/frames", "rom_offset": "0x3EA928", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_205_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame206": {"output_dir": "wario/frames", "rom_offset": "0x3EAFC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_206_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame207": {"output_dir": "wario/frames", "rom_offset": "0x3EB66C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_207_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame208": {"output_dir": "wario/frames", "rom_offset": "0x3EBD0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_208_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame209": {"output_dir": "wario/frames", "rom_offset": "0x3EC398", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_209_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame210": {"output_dir": "wario/frames", "rom_offset": "0x3EC924", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_210_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame211": {"output_dir": "wario/frames", "rom_offset": "0x3ECED4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_211_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame212": {"output_dir": "wario/frames", "rom_offset": "0x3ED4B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_212_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame213": {"output_dir": "wario/frames", "rom_offset": "0x3EDAB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_213_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame214": {"output_dir": "wario/frames", "rom_offset": "0x3EE0E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_214_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame215": {"output_dir": "wario/frames", "rom_offset": "0x3EE71C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_215_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame216": {"output_dir": "wario/frames", "rom_offset": "0x3EED70", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_216_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame217": {"output_dir": "wario/frames", "rom_offset": "0x3EF3CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_217_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame218": {"output_dir": "wario/frames", "rom_offset": "0x3EFA24", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_218_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame219": {"output_dir": "wario/frames", "rom_offset": "0x3F00A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_219_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame220": {"output_dir": "wario/frames", "rom_offset": "0x3F070C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_220_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame221": {"output_dir": "wario/frames", "rom_offset": "0x3F0D98", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_221_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame222": {"output_dir": "wario/frames", "rom_offset": "0x3F1410", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_222_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame223": {"output_dir": "wario/frames", "rom_offset": "0x3F1A8C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_223_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame224": {"output_dir": "wario/frames", "rom_offset": "0x3F20F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_224_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame225": {"output_dir": "wario/frames", "rom_offset": "0x3F2770", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_225_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame226": {"output_dir": "wario/frames", "rom_offset": "0x3F2DCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_226_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame227": {"output_dir": "wario/frames", "rom_offset": "0x3F3420", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_227_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame228": {"output_dir": "wario/frames", "rom_offset": "0x3F3A6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_228_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame229": {"output_dir": "wario/frames", "rom_offset": "0x3F40D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_229_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame230": {"output_dir": "wario/frames", "rom_offset": "0x3F466C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_230_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame231": {"output_dir": "wario/frames", "rom_offset": "0x3F4C24", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_231_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame232": {"output_dir": "wario/frames", "rom_offset": "0x3F5208", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_232_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame233": {"output_dir": "wario/frames", "rom_offset": "0x3F5824", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_233_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame234": {"output_dir": "wario/frames", "rom_offset": "0x3F5E58", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_234_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame235": {"output_dir": "wario/frames", "rom_offset": "0x3F64A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_235_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame236": {"output_dir": "wario/frames", "rom_offset": "0x3F6B24", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_236_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame237": {"output_dir": "wario/frames", "rom_offset": "0x3F7194", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_237_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame238": {"output_dir": "wario/frames", "rom_offset": "0x3F7808", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_238_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame239": {"output_dir": "wario/frames", "rom_offset": "0x3F7E68", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_239_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame240": {"output_dir": "wario/frames", "rom_offset": "0x3F84D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_240_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame241": {"output_dir": "wario/frames", "rom_offset": "0x3F8B40", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_241_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame242": {"output_dir": "wario/frames", "rom_offset": "0x3F91AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_242_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame243": {"output_dir": "wario/frames", "rom_offset": "0x3F9808", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_243_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame244": {"output_dir": "wario/frames", "rom_offset": "0x3F9E50", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_244_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame245": {"output_dir": "wario/frames", "rom_offset": "0x3FA490", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_245_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame246": {"output_dir": "wario/frames", "rom_offset": "0x3FAAD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_246_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame247": {"output_dir": "wario/frames", "rom_offset": "0x3FB10C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_247_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame248": {"output_dir": "wario/frames", "rom_offset": "0x3FB720", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_248_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame249": {"output_dir": "wario/frames", "rom_offset": "0x3FBD28", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_249_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame250": {"output_dir": "wario/frames", "rom_offset": "0x3FC2DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_250_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame251": {"output_dir": "wario/frames", "rom_offset": "0x3FC8BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_251_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame252": {"output_dir": "wario/frames", "rom_offset": "0x3FCEB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_252_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame253": {"output_dir": "wario/frames", "rom_offset": "0x3FD4D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_253_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame254": {"output_dir": "wario/frames", "rom_offset": "0x3FDB24", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_254_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame255": {"output_dir": "wario/frames", "rom_offset": "0x3FE194", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_255_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame256": {"output_dir": "wario/frames", "rom_offset": "0x3FE808", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_256_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame257": {"output_dir": "wario/frames", "rom_offset": "0x3FEE90", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_257_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame258": {"output_dir": "wario/frames", "rom_offset": "0x3FF520", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_258_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame259": {"output_dir": "wario/frames", "rom_offset": "0x3FFB84", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_259_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame260": {"output_dir": "wario/frames", "rom_offset": "0x4001E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_260_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame261": {"output_dir": "wario/frames", "rom_offset": "0x40083C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_261_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame262": {"output_dir": "wario/frames", "rom_offset": "0x400E70", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_262_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame263": {"output_dir": "wario/frames", "rom_offset": "0x401494", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_263_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame264": {"output_dir": "wario/frames", "rom_offset": "0x401AA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_264_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame265": {"output_dir": "wario/frames", "rom_offset": "0x4020C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_265_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame266": {"output_dir": "wario/frames", "rom_offset": "0x4026D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_266_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame267": {"output_dir": "wario/frames", "rom_offset": "0x402CD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_267_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame268": {"output_dir": "wario/frames", "rom_offset": "0x4032B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_268_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame269": {"output_dir": "wario/frames", "rom_offset": "0x403890", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_269_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame270": {"output_dir": "wario/frames", "rom_offset": "0x403E50", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_270_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame271": {"output_dir": "wario/frames", "rom_offset": "0x404428", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_271_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame272": {"output_dir": "wario/frames", "rom_offset": "0x404A44", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_272_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame273": {"output_dir": "wario/frames", "rom_offset": "0x405094", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_273_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame274": {"output_dir": "wario/frames", "rom_offset": "0x4056F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_274_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame275": {"output_dir": "wario/frames", "rom_offset": "0x405D6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_275_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame276": {"output_dir": "wario/frames", "rom_offset": "0x406414", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_276_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame277": {"output_dir": "wario/frames", "rom_offset": "0x406AA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_277_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame278": {"output_dir": "wario/frames", "rom_offset": "0x407130", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_278_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame279": {"output_dir": "wario/frames", "rom_offset": "0x407794", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_279_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame280": {"output_dir": "wario/frames", "rom_offset": "0x407DF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_280_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame281": {"output_dir": "wario/frames", "rom_offset": "0x408438", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_281_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame282": {"output_dir": "wario/frames", "rom_offset": "0x408A4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_282_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame283": {"output_dir": "wario/frames", "rom_offset": "0x40905C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_283_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame284": {"output_dir": "wario/frames", "rom_offset": "0x40963C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_284_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame285": {"output_dir": "wario/frames", "rom_offset": "0x409C14", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_285_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame286": {"output_dir": "wario/frames", "rom_offset": "0x40A1E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_286_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame287": {"output_dir": "wario/frames", "rom_offset": "0x40A78C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_287_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame288": {"output_dir": "wario/frames", "rom_offset": "0x40AD28", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_288_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame289": {"output_dir": "wario/frames", "rom_offset": "0x40B28C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame290": {"output_dir": "wario/frames", "rom_offset": "0x40B850", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame291": {"output_dir": "wario/frames", "rom_offset": "0x40BE54", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame292": {"output_dir": "wario/frames", "rom_offset": "0x40C46C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame293": {"output_dir": "wario/frames", "rom_offset": "0x40CAD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame294": {"output_dir": "wario/frames", "rom_offset": "0x40D094", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame295": {"output_dir": "wario/frames", "rom_offset": "0x40D694", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame296": {"output_dir": "wario/frames", "rom_offset": "0x40DCAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame297": {"output_dir": "wario/frames", "rom_offset": "0x40E2E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame298": {"output_dir": "wario/frames", "rom_offset": "0x40E8AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame299": {"output_dir": "wario/frames", "rom_offset": "0x40EEE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame300": {"output_dir": "wario/frames", "rom_offset": "0x40F4F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame301": {"output_dir": "wario/frames", "rom_offset": "0x40FA94", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame302": {"output_dir": "wario/frames", "rom_offset": "0x410000", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame303": {"output_dir": "wario/frames", "rom_offset": "0x4105C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame304": {"output_dir": "wario/frames", "rom_offset": "0x410BDC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame305": {"output_dir": "wario/frames", "rom_offset": "0x411208", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame306": {"output_dir": "wario/frames", "rom_offset": "0x411754", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame307": {"output_dir": "wario/frames", "rom_offset": "0x411D64", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame308": {"output_dir": "wario/frames", "rom_offset": "0x4123B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame309": {"output_dir": "wario/frames", "rom_offset": "0x4129E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame310": {"output_dir": "wario/frames", "rom_offset": "0x412FC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame311": {"output_dir": "wario/frames", "rom_offset": "0x4135C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame312": {"output_dir": "wario/frames", "rom_offset": "0x413BC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame313": {"output_dir": "wario/frames", "rom_offset": "0x4141B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame314": {"output_dir": "wario/frames", "rom_offset": "0x414788", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame315": {"output_dir": "wario/frames", "rom_offset": "0x414DB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame316": {"output_dir": "wario/frames", "rom_offset": "0x4153DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame317": {"output_dir": "wario/frames", "rom_offset": "0x415994", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame318": {"output_dir": "wario/frames", "rom_offset": "0x415EFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame319": {"output_dir": "wario/frames", "rom_offset": "0x416480", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"wario_kart_frame320": {"output_dir": "wario/frames", "rom_offset": "0x416A50", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"kart_000_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41705C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4170DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41715C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4171DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41725C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4172DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41735C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4173DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41745C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4174DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41755C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4175DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41765C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4176DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41775C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4177DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41785C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4178DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41795C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4179DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x417A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x417ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x417B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x417BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x417C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x417CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x417D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x417DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x417E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x417EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x417F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x417FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41805C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4180DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41815C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4181DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41825C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4182DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41835C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4183DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41845C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4184DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41855C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4185DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41865C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4186DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41875C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4187DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41885C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4188DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41895C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4189DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x418A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x418ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x418B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x418BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x418C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x418CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x418D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x418DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x418E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x418EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x418F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x418FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41905C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4190DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41915C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4191DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41925C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4192DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41935C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4193DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41945C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4194DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41955C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4195DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41965C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4196DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41975C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4197DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41985C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4198DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41995C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4199DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x419A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x419ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x419B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x419BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x419C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x419CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x419D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x419DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x419E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x419EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x419F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x419FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41A05C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41A0DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41A15C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41A1DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41A25C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41A2DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41A35C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41A3DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41A45C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41A4DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41A55C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41A5DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41A65C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41A6DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41A75C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41A7DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41A85C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41A8DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41A95C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41A9DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41AA5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41AADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41AB5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41ABDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41AC5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41ACDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41AD5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41ADDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41AE5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41AEDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41AF5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41AFDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41B05C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41B0DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41B15C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41B1DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41B25C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41B2DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41B35C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41B3DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41B45C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41B4DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41B55C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41B5DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41B65C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41B6DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41B75C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41B7DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41B85C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41B8DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41B95C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41B9DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41BA5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41BADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41BB5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41BBDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41BC5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41BCDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41BD5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41BDDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41BE5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41BEDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41BF5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41BFDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41C05C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41C0DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41C15C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41C1DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41C25C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41C2DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41C35C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41C3DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41C45C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41C4DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41C55C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41C5DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41C65C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41C6DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41C75C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41C7DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41C85C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41C8DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41C95C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41C9DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41CA5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41CADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41CB5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41CBDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41CC5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41CCDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41CD5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41CDDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41CE5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41CEDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41CF5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41CFDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41D05C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41D0DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41D15C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41D1DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41D25C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41D2DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41D35C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41D3DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41D45C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41D4DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41D55C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41D5DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41D65C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41D6DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41D75C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41D7DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41D85C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41D8DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41D95C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41D9DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41DA5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41DADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41DB5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41DBDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41DC5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41DCDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41DD5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41DDDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41DE5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41DEDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41DF5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41DFDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41E05C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41E0DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41E15C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41E1DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41E25C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41E2DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41E35C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41E3DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41E45C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41E4DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41E55C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41E5DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41E65C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41E6DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41E75C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41E7DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41E85C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41E8DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41E95C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41E9DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41EA5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41EADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41EB5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41EBDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41EC5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41ECDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41ED5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41EDDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41EE5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41EEDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41EF5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41EFDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41F05C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41F0DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41F15C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41F1DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41F25C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41F2DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41F35C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41F3DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41F45C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41F4DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41F55C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41F5DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41F65C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41F6DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41F75C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41F7DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41F85C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41F8DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41F95C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41F9DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41FA5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41FADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41FB5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41FBDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41FC5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41FCDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41FD5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41FDDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41FE5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41FEDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41FF5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41FFDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42005C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4200DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42015C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4201DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42025C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4202DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42035C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4203DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42045C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4204DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42055C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4205DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42065C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4206DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42075C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4207DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42085C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4208DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42095C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4209DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x420A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x420ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x420B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x420BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x420C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x420CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x420D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x420DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x420E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x420EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x420F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x420FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42105C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4210DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42115C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4211DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42125C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4212DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42135C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4213DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42145C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4214DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42155C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4215DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42165C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4216DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42175C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4217DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42185C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4218DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42195C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4219DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x421A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x421ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x421B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x421BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x421C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x421CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x421D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x421DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x421E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x421EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x421F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x421FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42205C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4220DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42215C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4221DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42225C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4222DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42235C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4223DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42245C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4224DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42255C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4225DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42265C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4226DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42275C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4227DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42285C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4228DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42295C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4229DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x422A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x422ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x422B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x422BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x422C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x422CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x422D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x422DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x422E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x422EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x422F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x422FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42305C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4230DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42315C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4231DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42325C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4232DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42335C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4233DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42345C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4234DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42355C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4235DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42365C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4236DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42375C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4237DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42385C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4238DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42395C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4239DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x423A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x423ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x423B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x423BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x423C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x423CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x423D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x423DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x423E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x423EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x423F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x423FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42405C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4240DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42415C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4241DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42425C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4242DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42435C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4243DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42445C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4244DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42455C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4245DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42465C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4246DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42475C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4247DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42485C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4248DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42495C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4249DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x424A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x424ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x424B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x424BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x424C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x424CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x424D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x424DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x424E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x424EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x424F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x424FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42505C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4250DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42515C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4251DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42525C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4252DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42535C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4253DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42545C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4254DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42555C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4255DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42565C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4256DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42575C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4257DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42585C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4258DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42595C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4259DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x425A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x425ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x425B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x425BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x425C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x425CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x425D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x425DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x425E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x425EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x425F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x425FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42605C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4260DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42615C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4261DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42625C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4262DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42635C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4263DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42645C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4264DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42655C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4265DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42665C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4266DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42675C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4267DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42685C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4268DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42695C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4269DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x426A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x426ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x426B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x426BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x426C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x426CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x426D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x426DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x426E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x426EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x426F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x426FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42705C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4270DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42715C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4271DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42725C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4272DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42735C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4273DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42745C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4274DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42755C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4275DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42765C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4276DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42775C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4277DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42785C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4278DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42795C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4279DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x427A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x427ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x427B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x427BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x427C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x427CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x427D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x427DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x427E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x427EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x427F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x427FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42805C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4280DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42815C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4281DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42825C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4282DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42835C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4283DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42845C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4284DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42855C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4285DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42865C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4286DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42875C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4287DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42885C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4288DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42895C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4289DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x428A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x428ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x428B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x428BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x428C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x428CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x428D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x428DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x428E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x428EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x428F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x428FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42905C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4290DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42915C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4291DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42925C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4292DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42935C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4293DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42945C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4294DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42955C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4295DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42965C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4296DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42975C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4297DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42985C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4298DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42995C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4299DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x429A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x429ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x429B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x429BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x429C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x429CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x429D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x429DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x429E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x429EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x429F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x429FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42A05C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42A0DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42A15C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42A1DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42A25C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42A2DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42A35C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42A3DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42A45C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42A4DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42A55C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42A5DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42A65C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42A6DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42A75C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42A7DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42A85C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42A8DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42A95C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42A9DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42AA5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42AADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42AB5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42ABDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42AC5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42ACDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42AD5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42ADDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42AE5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42AEDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42AF5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42AFDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42B05C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42B0DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42B15C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42B1DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42B25C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42B2DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42B35C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42B3DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42B45C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42B4DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42B55C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42B5DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42B65C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42B6DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42B75C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42B7DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42B85C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42B8DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42B95C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42B9DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42BA5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42BADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42BB5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42BBDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42BC5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42BCDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42BD5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42BDDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42BE5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42BEDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42BF5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42BFDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42C05C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42C0DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42C15C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42C1DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42C25C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42C2DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42C35C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42C3DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42C45C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42C4DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42C55C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42C5DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42C65C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42C6DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42C75C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42C7DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42C85C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42C8DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42C95C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42C9DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42CA5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42CADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42CB5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42CBDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42CC5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42CCDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42CD5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42CDDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42CE5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42CEDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42CF5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42CFDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42D05C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42D0DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42D15C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42D1DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42D25C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42D2DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42D35C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42D3DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42D45C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42D4DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42D55C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42D5DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42D65C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42D6DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42D75C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42D7DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42D85C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42D8DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42D95C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42D9DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42DA5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42DADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42DB5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42DBDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42DC5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42DCDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42DD5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42DDDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42DE5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42DEDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42DF5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42DFDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42E05C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42E0DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42E15C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42E1DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42E25C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42E2DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42E35C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42E3DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42E45C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42E4DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42E55C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42E5DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42E65C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42E6DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42E75C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42E7DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42E85C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42E8DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42E95C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42E9DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42EA5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42EADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42EB5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42EBDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42EC5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42ECDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42ED5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42EDDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42EE5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42EEDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42EF5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42EFDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42F05C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42F0DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42F15C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42F1DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42F25C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42F2DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42F35C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42F3DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42F45C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42F4DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42F55C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42F5DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42F65C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42F6DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42F75C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42F7DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42F85C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42F8DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42F95C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42F9DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42FA5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42FADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42FB5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42FBDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42FC5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42FCDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42FD5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42FDDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42FE5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42FEDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42FF5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42FFDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43005C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4300DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43015C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4301DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43025C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4302DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43035C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4303DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43045C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4304DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43055C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4305DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43065C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4306DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43075C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4307DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43085C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4308DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43095C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4309DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x430A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x430ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x430B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x430BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x430C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x430CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x430D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x430DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x430E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x430EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x430F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x430FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43105C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4310DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43115C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4311DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43125C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4312DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43135C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4313DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43145C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4314DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43155C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4315DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43165C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4316DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43175C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4317DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43185C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4318DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43195C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4319DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x431A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x431ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x431B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x431BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x431C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x431CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x431D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x431DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x431E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x431EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x431F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x431FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43205C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4320DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43215C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4321DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43225C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4322DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43235C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4323DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43245C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4324DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43255C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4325DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43265C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4326DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43275C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4327DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43285C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4328DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43295C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4329DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x432A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x432ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x432B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x432BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x432C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x432CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x432D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x432DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x432E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x432EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x432F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x432FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43305C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4330DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43315C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4331DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43325C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4332DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43335C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4333DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43345C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4334DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43355C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4335DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43365C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4336DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43375C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4337DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43385C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4338DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43395C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4339DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x433A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x433ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x433B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x433BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x433C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x433CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x433D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x433DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x433E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x433EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x433F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x433FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43405C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4340DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43415C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4341DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43425C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4342DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43435C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4343DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43445C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4344DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43455C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4345DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43465C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4346DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43475C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4347DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43485C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4348DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43495C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4349DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x434A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x434ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x434B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x434BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x434C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x434CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x434D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x434DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x434E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x434EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x434F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x434FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43505C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4350DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43515C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4351DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43525C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4352DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43535C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4353DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43545C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4354DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43555C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4355DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43565C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4356DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43575C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4357DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43585C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4358DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43595C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4359DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x435A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x435ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x435B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x435BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x435C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x435CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x435D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x435DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x435E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x435EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x435F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x435FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43605C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4360DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43615C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4361DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43625C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4362DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43635C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4363DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43645C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4364DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43655C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4365DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43665C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4366DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43675C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4367DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43685C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4368DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43695C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4369DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x436A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x436ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x436B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x436BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x436C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x436CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x436D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x436DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x436E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x436EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x436F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x436FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43705C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4370DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43715C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4371DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43725C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4372DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43735C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4373DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43745C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4374DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43755C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4375DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43765C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4376DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43775C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4377DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43785C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4378DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43795C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4379DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x437A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x437ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x437B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x437BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x437C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x437CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x437D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x437DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x437E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x437EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x437F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x437FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43805C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4380DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43815C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4381DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43825C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4382DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43835C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4383DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43845C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4384DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43855C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4385DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43865C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4386DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43875C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4387DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43885C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4388DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43895C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4389DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x438A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x438ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x438B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x438BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x438C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x438CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x438D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x438DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x438E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x438EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x438F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x438FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43905C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4390DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43915C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4391DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43925C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4392DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43935C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4393DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43945C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4394DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43955C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4395DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43965C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4396DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43975C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4397DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43985C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4398DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43995C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4399DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x439A5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x439ADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x439B5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x439BDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x439C5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x439CDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x439D5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x439DDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x439E5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x439EDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x439F5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x439FDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43A05C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x43A0DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43A15C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x43A1DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43A25C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x43A2DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43A35C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x43A3DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43A45C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x43A4DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43A55C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x43A5DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43A65C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x43A6DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43A75C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x43A7DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43A85C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x43A8DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43A95C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x43A9DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43AA5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x43AADC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43AB5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x43ABDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43AC5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x43ACDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43AD5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x43ADDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43AE5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x43AEDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43AF5C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x43AFDC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43B05C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x43B0DC", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43B15C", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x43B1DC", "width": 16, "height": 4, "type": "rgba16"}, -"wario_kart_palette": {"output_dir": "wario/palettes", "rom_offset": "0x43B25C", "width": 16, "height": 12, "type": "rgba16"} +"wario_kart_frame000": {"output_dir": "wario/frames", "rom_offset": "0x39E0C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3A40F0"}}, +"wario_kart_frame001": {"output_dir": "wario/frames", "rom_offset": "0x39E60C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_001_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3A463C"}}, +"wario_kart_frame002": {"output_dir": "wario/frames", "rom_offset": "0x39EB74", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_002_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3A4BA4"}}, +"wario_kart_frame003": {"output_dir": "wario/frames", "rom_offset": "0x39F0C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_003_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3A50F4"}}, +"wario_kart_frame004": {"output_dir": "wario/frames", "rom_offset": "0x39F618", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_004_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3A5648"}}, +"wario_kart_frame005": {"output_dir": "wario/frames", "rom_offset": "0x39FBA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_005_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3A5BD0"}}, +"wario_kart_frame006": {"output_dir": "wario/frames", "rom_offset": "0x3A0120", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_006_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3A6150"}}, +"wario_kart_frame007": {"output_dir": "wario/frames", "rom_offset": "0x3A06CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_007_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3A66FC"}}, +"wario_kart_frame008": {"output_dir": "wario/frames", "rom_offset": "0x3A0C70", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_008_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3A6CA0"}}, +"wario_kart_frame009": {"output_dir": "wario/frames", "rom_offset": "0x3A1224", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_009_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3A7254"}}, +"wario_kart_frame010": {"output_dir": "wario/frames", "rom_offset": "0x3A17E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_010_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3A7814"}}, +"wario_kart_frame011": {"output_dir": "wario/frames", "rom_offset": "0x3A1DB4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_011_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3A7DE4"}}, +"wario_kart_frame012": {"output_dir": "wario/frames", "rom_offset": "0x3A238C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_012_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3A83BC"}}, +"wario_kart_frame013": {"output_dir": "wario/frames", "rom_offset": "0x3A2980", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_013_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3A89B0"}}, +"wario_kart_frame014": {"output_dir": "wario/frames", "rom_offset": "0x3A2F78", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_014_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3A8FA8"}}, +"wario_kart_frame015": {"output_dir": "wario/frames", "rom_offset": "0x3A3570", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_015_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3A95A0"}}, +"wario_kart_frame016": {"output_dir": "wario/frames", "rom_offset": "0x3A3B80", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_016_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3A9BB0"}}, +"wario_kart_frame017": {"output_dir": "wario/frames", "rom_offset": "0x3A41A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_017_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3AA1D8"}}, +"wario_kart_frame018": {"output_dir": "wario/frames", "rom_offset": "0x3A47B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_018_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3AA7E8"}}, +"wario_kart_frame019": {"output_dir": "wario/frames", "rom_offset": "0x3A4DE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_019_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3AAE14"}}, +"wario_kart_frame020": {"output_dir": "wario/frames", "rom_offset": "0x3A5410", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_020_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3AB440"}}, +"wario_kart_frame021": {"output_dir": "wario/frames", "rom_offset": "0x3A5A34", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_021_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3ABA64"}}, +"wario_kart_frame022": {"output_dir": "wario/frames", "rom_offset": "0x3A5F80", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_022_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3ABFB0"}}, +"wario_kart_frame023": {"output_dir": "wario/frames", "rom_offset": "0x3A64F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_023_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3AC520"}}, +"wario_kart_frame024": {"output_dir": "wario/frames", "rom_offset": "0x3A6A78", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_024_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3ACAA8"}}, +"wario_kart_frame025": {"output_dir": "wario/frames", "rom_offset": "0x3A7010", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_025_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3AD040"}}, +"wario_kart_frame026": {"output_dir": "wario/frames", "rom_offset": "0x3A7588", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_026_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3AD5B8"}}, +"wario_kart_frame027": {"output_dir": "wario/frames", "rom_offset": "0x3A7B20", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_027_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3ADB50"}}, +"wario_kart_frame028": {"output_dir": "wario/frames", "rom_offset": "0x3A80BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_028_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3AE0EC"}}, +"wario_kart_frame029": {"output_dir": "wario/frames", "rom_offset": "0x3A867C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_029_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3AE6AC"}}, +"wario_kart_frame030": {"output_dir": "wario/frames", "rom_offset": "0x3A8C38", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_030_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3AEC68"}}, +"wario_kart_frame031": {"output_dir": "wario/frames", "rom_offset": "0x3A9220", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_031_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3AF250"}}, +"wario_kart_frame032": {"output_dir": "wario/frames", "rom_offset": "0x3A9800", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_032_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3AF830"}}, +"wario_kart_frame033": {"output_dir": "wario/frames", "rom_offset": "0x3A9DD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_033_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3AFE08"}}, +"wario_kart_frame034": {"output_dir": "wario/frames", "rom_offset": "0x3AA3DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_034_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B040C"}}, +"wario_kart_frame035": {"output_dir": "wario/frames", "rom_offset": "0x3AA9F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_035_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B0A24"}}, +"wario_kart_frame036": {"output_dir": "wario/frames", "rom_offset": "0x3AB000", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_036_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B1030"}}, +"wario_kart_frame037": {"output_dir": "wario/frames", "rom_offset": "0x3AB608", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_037_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B1638"}}, +"wario_kart_frame038": {"output_dir": "wario/frames", "rom_offset": "0x3ABC34", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_038_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B1C64"}}, +"wario_kart_frame039": {"output_dir": "wario/frames", "rom_offset": "0x3AC258", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_039_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B2288"}}, +"wario_kart_frame040": {"output_dir": "wario/frames", "rom_offset": "0x3AC87C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_040_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B28AC"}}, +"wario_kart_frame041": {"output_dir": "wario/frames", "rom_offset": "0x3ACEB4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_041_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B2EE4"}}, +"wario_kart_frame042": {"output_dir": "wario/frames", "rom_offset": "0x3AD508", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_042_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B3538"}}, +"wario_kart_frame043": {"output_dir": "wario/frames", "rom_offset": "0x3ADA78", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_043_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B3AA8"}}, +"wario_kart_frame044": {"output_dir": "wario/frames", "rom_offset": "0x3ADFF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_044_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B4024"}}, +"wario_kart_frame045": {"output_dir": "wario/frames", "rom_offset": "0x3AE584", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_045_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B45B4"}}, +"wario_kart_frame046": {"output_dir": "wario/frames", "rom_offset": "0x3AEB1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_046_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B4B4C"}}, +"wario_kart_frame047": {"output_dir": "wario/frames", "rom_offset": "0x3AF0B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_047_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B50E0"}}, +"wario_kart_frame048": {"output_dir": "wario/frames", "rom_offset": "0x3AF648", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_048_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B5678"}}, +"wario_kart_frame049": {"output_dir": "wario/frames", "rom_offset": "0x3AFC08", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_049_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B5C38"}}, +"wario_kart_frame050": {"output_dir": "wario/frames", "rom_offset": "0x3B01E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_050_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B6218"}}, +"wario_kart_frame051": {"output_dir": "wario/frames", "rom_offset": "0x3B07BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_051_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B67EC"}}, +"wario_kart_frame052": {"output_dir": "wario/frames", "rom_offset": "0x3B0DAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_052_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B6DDC"}}, +"wario_kart_frame053": {"output_dir": "wario/frames", "rom_offset": "0x3B1388", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_053_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B73B8"}}, +"wario_kart_frame054": {"output_dir": "wario/frames", "rom_offset": "0x3B197C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_054_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B79AC"}}, +"wario_kart_frame055": {"output_dir": "wario/frames", "rom_offset": "0x3B1F70", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_055_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B7FA0"}}, +"wario_kart_frame056": {"output_dir": "wario/frames", "rom_offset": "0x3B257C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_056_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B85AC"}}, +"wario_kart_frame057": {"output_dir": "wario/frames", "rom_offset": "0x3B2B94", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_057_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B8BC4"}}, +"wario_kart_frame058": {"output_dir": "wario/frames", "rom_offset": "0x3B31C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_058_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B91F8"}}, +"wario_kart_frame059": {"output_dir": "wario/frames", "rom_offset": "0x3B37F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_059_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B9820"}}, +"wario_kart_frame060": {"output_dir": "wario/frames", "rom_offset": "0x3B3E20", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_060_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3B9E50"}}, +"wario_kart_frame061": {"output_dir": "wario/frames", "rom_offset": "0x3B4460", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_061_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3BA490"}}, +"wario_kart_frame062": {"output_dir": "wario/frames", "rom_offset": "0x3B4AA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_062_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3BAAD8"}}, +"wario_kart_frame063": {"output_dir": "wario/frames", "rom_offset": "0x3B50F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_063_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3BB124"}}, +"wario_kart_frame064": {"output_dir": "wario/frames", "rom_offset": "0x3B5660", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_064_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3BB690"}}, +"wario_kart_frame065": {"output_dir": "wario/frames", "rom_offset": "0x3B5BF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_065_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3BBC28"}}, +"wario_kart_frame066": {"output_dir": "wario/frames", "rom_offset": "0x3B6194", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_066_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3BC1C4"}}, +"wario_kart_frame067": {"output_dir": "wario/frames", "rom_offset": "0x3B6730", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_067_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3BC760"}}, +"wario_kart_frame068": {"output_dir": "wario/frames", "rom_offset": "0x3B6CD0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_068_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3BCD00"}}, +"wario_kart_frame069": {"output_dir": "wario/frames", "rom_offset": "0x3B728C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_069_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3BD2BC"}}, +"wario_kart_frame070": {"output_dir": "wario/frames", "rom_offset": "0x3B7844", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_070_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3BD874"}}, +"wario_kart_frame071": {"output_dir": "wario/frames", "rom_offset": "0x3B7E18", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_071_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3BDE48"}}, +"wario_kart_frame072": {"output_dir": "wario/frames", "rom_offset": "0x3B8410", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_072_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3BE440"}}, +"wario_kart_frame073": {"output_dir": "wario/frames", "rom_offset": "0x3B8A04", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_073_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3BEA34"}}, +"wario_kart_frame074": {"output_dir": "wario/frames", "rom_offset": "0x3B9010", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_074_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3BF040"}}, +"wario_kart_frame075": {"output_dir": "wario/frames", "rom_offset": "0x3B9608", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_075_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3BF638"}}, +"wario_kart_frame076": {"output_dir": "wario/frames", "rom_offset": "0x3B9C1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_076_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3BFC4C"}}, +"wario_kart_frame077": {"output_dir": "wario/frames", "rom_offset": "0x3BA214", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_077_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C0244"}}, +"wario_kart_frame078": {"output_dir": "wario/frames", "rom_offset": "0x3BA828", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_078_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C0858"}}, +"wario_kart_frame079": {"output_dir": "wario/frames", "rom_offset": "0x3BAE58", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_079_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C0E88"}}, +"wario_kart_frame080": {"output_dir": "wario/frames", "rom_offset": "0x3BB484", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_080_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C14B4"}}, +"wario_kart_frame081": {"output_dir": "wario/frames", "rom_offset": "0x3BBAB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_081_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C1AE8"}}, +"wario_kart_frame082": {"output_dir": "wario/frames", "rom_offset": "0x3BC0F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_082_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C2128"}}, +"wario_kart_frame083": {"output_dir": "wario/frames", "rom_offset": "0x3BC73C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_083_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C276C"}}, +"wario_kart_frame084": {"output_dir": "wario/frames", "rom_offset": "0x3BCD94", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_084_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C2DC4"}}, +"wario_kart_frame085": {"output_dir": "wario/frames", "rom_offset": "0x3BD31C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_085_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C334C"}}, +"wario_kart_frame086": {"output_dir": "wario/frames", "rom_offset": "0x3BD8A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_086_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C38D4"}}, +"wario_kart_frame087": {"output_dir": "wario/frames", "rom_offset": "0x3BDE2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_087_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C3E5C"}}, +"wario_kart_frame088": {"output_dir": "wario/frames", "rom_offset": "0x3BE3F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_088_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C4420"}}, +"wario_kart_frame089": {"output_dir": "wario/frames", "rom_offset": "0x3BE9A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_089_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C49D0"}}, +"wario_kart_frame090": {"output_dir": "wario/frames", "rom_offset": "0x3BEF5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_090_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C4F8C"}}, +"wario_kart_frame091": {"output_dir": "wario/frames", "rom_offset": "0x3BF534", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_091_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C5564"}}, +"wario_kart_frame092": {"output_dir": "wario/frames", "rom_offset": "0x3BFB24", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_092_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C5B54"}}, +"wario_kart_frame093": {"output_dir": "wario/frames", "rom_offset": "0x3C0108", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_093_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C6138"}}, +"wario_kart_frame094": {"output_dir": "wario/frames", "rom_offset": "0x3C06EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_094_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C671C"}}, +"wario_kart_frame095": {"output_dir": "wario/frames", "rom_offset": "0x3C0CD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_095_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C6D08"}}, +"wario_kart_frame096": {"output_dir": "wario/frames", "rom_offset": "0x3C12E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_096_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C7314"}}, +"wario_kart_frame097": {"output_dir": "wario/frames", "rom_offset": "0x3C18E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_097_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C7914"}}, +"wario_kart_frame098": {"output_dir": "wario/frames", "rom_offset": "0x3C1EE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_098_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C7F18"}}, +"wario_kart_frame099": {"output_dir": "wario/frames", "rom_offset": "0x3C24F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_099_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C8520"}}, +"wario_kart_frame100": {"output_dir": "wario/frames", "rom_offset": "0x3C2B24", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_100_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C8B54"}}, +"wario_kart_frame101": {"output_dir": "wario/frames", "rom_offset": "0x3C3160", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_101_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C9190"}}, +"wario_kart_frame102": {"output_dir": "wario/frames", "rom_offset": "0x3C37A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_102_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C97D0"}}, +"wario_kart_frame103": {"output_dir": "wario/frames", "rom_offset": "0x3C3DE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_103_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3C9E18"}}, +"wario_kart_frame104": {"output_dir": "wario/frames", "rom_offset": "0x3C4440", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_104_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3CA470"}}, +"wario_kart_frame105": {"output_dir": "wario/frames", "rom_offset": "0x3C4AA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_105_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3CAAD8"}}, +"wario_kart_frame106": {"output_dir": "wario/frames", "rom_offset": "0x3C5038", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_106_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3CB068"}}, +"wario_kart_frame107": {"output_dir": "wario/frames", "rom_offset": "0x3C55DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_107_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3CB60C"}}, +"wario_kart_frame108": {"output_dir": "wario/frames", "rom_offset": "0x3C5B64", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_108_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3CBB94"}}, +"wario_kart_frame109": {"output_dir": "wario/frames", "rom_offset": "0x3C6110", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_109_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3CC140"}}, +"wario_kart_frame110": {"output_dir": "wario/frames", "rom_offset": "0x3C66D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_110_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3CC708"}}, +"wario_kart_frame111": {"output_dir": "wario/frames", "rom_offset": "0x3C6CAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_111_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3CCCDC"}}, +"wario_kart_frame112": {"output_dir": "wario/frames", "rom_offset": "0x3C7294", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_112_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3CD2C4"}}, +"wario_kart_frame113": {"output_dir": "wario/frames", "rom_offset": "0x3C7878", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_113_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3CD8A8"}}, +"wario_kart_frame114": {"output_dir": "wario/frames", "rom_offset": "0x3C7E68", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_114_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3CDE98"}}, +"wario_kart_frame115": {"output_dir": "wario/frames", "rom_offset": "0x3C846C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_115_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3CE49C"}}, +"wario_kart_frame116": {"output_dir": "wario/frames", "rom_offset": "0x3C8A68", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_116_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3CEA98"}}, +"wario_kart_frame117": {"output_dir": "wario/frames", "rom_offset": "0x3C9070", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_117_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3CF0A0"}}, +"wario_kart_frame118": {"output_dir": "wario/frames", "rom_offset": "0x3C967C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_118_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3CF6AC"}}, +"wario_kart_frame119": {"output_dir": "wario/frames", "rom_offset": "0x3C9C84", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_119_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3CFCB4"}}, +"wario_kart_frame120": {"output_dir": "wario/frames", "rom_offset": "0x3CA2A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_120_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D02D8"}}, +"wario_kart_frame121": {"output_dir": "wario/frames", "rom_offset": "0x3CA8E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_121_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D0910"}}, +"wario_kart_frame122": {"output_dir": "wario/frames", "rom_offset": "0x3CAF28", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_122_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D0F58"}}, +"wario_kart_frame123": {"output_dir": "wario/frames", "rom_offset": "0x3CB584", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_123_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D15B4"}}, +"wario_kart_frame124": {"output_dir": "wario/frames", "rom_offset": "0x3CBBE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_124_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D1C18"}}, +"wario_kart_frame125": {"output_dir": "wario/frames", "rom_offset": "0x3CC250", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_125_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D2280"}}, +"wario_kart_frame126": {"output_dir": "wario/frames", "rom_offset": "0x3CC8CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_126_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D28FC"}}, +"wario_kart_frame127": {"output_dir": "wario/frames", "rom_offset": "0x3CCE5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_127_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D2E8C"}}, +"wario_kart_frame128": {"output_dir": "wario/frames", "rom_offset": "0x3CD3F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_128_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D3428"}}, +"wario_kart_frame129": {"output_dir": "wario/frames", "rom_offset": "0x3CD9B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_129_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D39E4"}}, +"wario_kart_frame130": {"output_dir": "wario/frames", "rom_offset": "0x3CDF78", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_130_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D3FA8"}}, +"wario_kart_frame131": {"output_dir": "wario/frames", "rom_offset": "0x3CE534", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_131_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D4564"}}, +"wario_kart_frame132": {"output_dir": "wario/frames", "rom_offset": "0x3CEB00", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_132_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D4B30"}}, +"wario_kart_frame133": {"output_dir": "wario/frames", "rom_offset": "0x3CF0E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_133_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D5114"}}, +"wario_kart_frame134": {"output_dir": "wario/frames", "rom_offset": "0x3CF6D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_134_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D5708"}}, +"wario_kart_frame135": {"output_dir": "wario/frames", "rom_offset": "0x3CFCCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_135_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D5CFC"}}, +"wario_kart_frame136": {"output_dir": "wario/frames", "rom_offset": "0x3D02B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_136_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D62E0"}}, +"wario_kart_frame137": {"output_dir": "wario/frames", "rom_offset": "0x3D08B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_137_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D68E0"}}, +"wario_kart_frame138": {"output_dir": "wario/frames", "rom_offset": "0x3D0EB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_138_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D6EE8"}}, +"wario_kart_frame139": {"output_dir": "wario/frames", "rom_offset": "0x3D14B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_139_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D74E4"}}, +"wario_kart_frame140": {"output_dir": "wario/frames", "rom_offset": "0x3D1ABC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_140_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D7AEC"}}, +"wario_kart_frame141": {"output_dir": "wario/frames", "rom_offset": "0x3D20F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_141_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D8128"}}, +"wario_kart_frame142": {"output_dir": "wario/frames", "rom_offset": "0x3D2730", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_142_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D8760"}}, +"wario_kart_frame143": {"output_dir": "wario/frames", "rom_offset": "0x3D2D80", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_143_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D8DB0"}}, +"wario_kart_frame144": {"output_dir": "wario/frames", "rom_offset": "0x3D33CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_144_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D93FC"}}, +"wario_kart_frame145": {"output_dir": "wario/frames", "rom_offset": "0x3D3A24", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_145_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3D9A54"}}, +"wario_kart_frame146": {"output_dir": "wario/frames", "rom_offset": "0x3D4084", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_146_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3DA0B4"}}, +"wario_kart_frame147": {"output_dir": "wario/frames", "rom_offset": "0x3D4714", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_147_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3DA744"}}, +"wario_kart_frame148": {"output_dir": "wario/frames", "rom_offset": "0x3D4C98", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_148_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3DACC8"}}, +"wario_kart_frame149": {"output_dir": "wario/frames", "rom_offset": "0x3D5258", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_149_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3DB288"}}, +"wario_kart_frame150": {"output_dir": "wario/frames", "rom_offset": "0x3D57FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_150_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3DB82C"}}, +"wario_kart_frame151": {"output_dir": "wario/frames", "rom_offset": "0x3D5DC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_151_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3DBDF8"}}, +"wario_kart_frame152": {"output_dir": "wario/frames", "rom_offset": "0x3D6390", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_152_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3DC3C0"}}, +"wario_kart_frame153": {"output_dir": "wario/frames", "rom_offset": "0x3D6950", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_153_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3DC980"}}, +"wario_kart_frame154": {"output_dir": "wario/frames", "rom_offset": "0x3D6F34", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_154_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3DCF64"}}, +"wario_kart_frame155": {"output_dir": "wario/frames", "rom_offset": "0x3D7524", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_155_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3DD554"}}, +"wario_kart_frame156": {"output_dir": "wario/frames", "rom_offset": "0x3D7B24", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_156_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3DDB54"}}, +"wario_kart_frame157": {"output_dir": "wario/frames", "rom_offset": "0x3D8110", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_157_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3DE140"}}, +"wario_kart_frame158": {"output_dir": "wario/frames", "rom_offset": "0x3D872C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_158_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3DE75C"}}, +"wario_kart_frame159": {"output_dir": "wario/frames", "rom_offset": "0x3D8D3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_159_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3DED6C"}}, +"wario_kart_frame160": {"output_dir": "wario/frames", "rom_offset": "0x3D9344", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_160_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3DF374"}}, +"wario_kart_frame161": {"output_dir": "wario/frames", "rom_offset": "0x3D994C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_161_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3DF97C"}}, +"wario_kart_frame162": {"output_dir": "wario/frames", "rom_offset": "0x3D9F70", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_162_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3DFFA0"}}, +"wario_kart_frame163": {"output_dir": "wario/frames", "rom_offset": "0x3DA5C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_163_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E05F0"}}, +"wario_kart_frame164": {"output_dir": "wario/frames", "rom_offset": "0x3DAC18", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_164_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E0C48"}}, +"wario_kart_frame165": {"output_dir": "wario/frames", "rom_offset": "0x3DB284", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_165_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E12B4"}}, +"wario_kart_frame166": {"output_dir": "wario/frames", "rom_offset": "0x3DB8FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_166_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E192C"}}, +"wario_kart_frame167": {"output_dir": "wario/frames", "rom_offset": "0x3DBF88", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_167_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E1FB8"}}, +"wario_kart_frame168": {"output_dir": "wario/frames", "rom_offset": "0x3DC608", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_168_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E2638"}}, +"wario_kart_frame169": {"output_dir": "wario/frames", "rom_offset": "0x3DCBAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_169_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E2BDC"}}, +"wario_kart_frame170": {"output_dir": "wario/frames", "rom_offset": "0x3DD16C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_170_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E319C"}}, +"wario_kart_frame171": {"output_dir": "wario/frames", "rom_offset": "0x3DD710", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_171_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E3740"}}, +"wario_kart_frame172": {"output_dir": "wario/frames", "rom_offset": "0x3DDCE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_172_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E3D18"}}, +"wario_kart_frame173": {"output_dir": "wario/frames", "rom_offset": "0x3DE2B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_173_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E42E0"}}, +"wario_kart_frame174": {"output_dir": "wario/frames", "rom_offset": "0x3DE874", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_174_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E48A4"}}, +"wario_kart_frame175": {"output_dir": "wario/frames", "rom_offset": "0x3DEE48", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_175_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E4E78"}}, +"wario_kart_frame176": {"output_dir": "wario/frames", "rom_offset": "0x3DF434", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_176_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E5464"}}, +"wario_kart_frame177": {"output_dir": "wario/frames", "rom_offset": "0x3DFA38", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_177_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E5A68"}}, +"wario_kart_frame178": {"output_dir": "wario/frames", "rom_offset": "0x3E0034", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_178_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E6064"}}, +"wario_kart_frame179": {"output_dir": "wario/frames", "rom_offset": "0x3E0650", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_179_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E6680"}}, +"wario_kart_frame180": {"output_dir": "wario/frames", "rom_offset": "0x3E0C64", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_180_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E6C94"}}, +"wario_kart_frame181": {"output_dir": "wario/frames", "rom_offset": "0x3E1264", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_181_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E7294"}}, +"wario_kart_frame182": {"output_dir": "wario/frames", "rom_offset": "0x3E1878", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_182_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E78A8"}}, +"wario_kart_frame183": {"output_dir": "wario/frames", "rom_offset": "0x3E1EAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_183_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E7EDC"}}, +"wario_kart_frame184": {"output_dir": "wario/frames", "rom_offset": "0x3E24E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_184_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E8510"}}, +"wario_kart_frame185": {"output_dir": "wario/frames", "rom_offset": "0x3E2B34", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_185_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E8B64"}}, +"wario_kart_frame186": {"output_dir": "wario/frames", "rom_offset": "0x3E31A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_186_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E91D4"}}, +"wario_kart_frame187": {"output_dir": "wario/frames", "rom_offset": "0x3E3810", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_187_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E9840"}}, +"wario_kart_frame188": {"output_dir": "wario/frames", "rom_offset": "0x3E3EA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_188_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3E9ED8"}}, +"wario_kart_frame189": {"output_dir": "wario/frames", "rom_offset": "0x3E453C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_189_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3EA56C"}}, +"wario_kart_frame190": {"output_dir": "wario/frames", "rom_offset": "0x3E4A98", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_190_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3EAAC8"}}, +"wario_kart_frame191": {"output_dir": "wario/frames", "rom_offset": "0x3E5030", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_191_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3EB060"}}, +"wario_kart_frame192": {"output_dir": "wario/frames", "rom_offset": "0x3E55E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_192_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3EB618"}}, +"wario_kart_frame193": {"output_dir": "wario/frames", "rom_offset": "0x3E5BCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_193_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3EBBFC"}}, +"wario_kart_frame194": {"output_dir": "wario/frames", "rom_offset": "0x3E61B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_194_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3EC1E4"}}, +"wario_kart_frame195": {"output_dir": "wario/frames", "rom_offset": "0x3E67C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_195_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3EC7F8"}}, +"wario_kart_frame196": {"output_dir": "wario/frames", "rom_offset": "0x3E6E00", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_196_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3ECE30"}}, +"wario_kart_frame197": {"output_dir": "wario/frames", "rom_offset": "0x3E7448", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_197_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3ED478"}}, +"wario_kart_frame198": {"output_dir": "wario/frames", "rom_offset": "0x3E7A98", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_198_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3EDAC8"}}, +"wario_kart_frame199": {"output_dir": "wario/frames", "rom_offset": "0x3E811C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_199_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3EE14C"}}, +"wario_kart_frame200": {"output_dir": "wario/frames", "rom_offset": "0x3E87A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_200_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3EE7D4"}}, +"wario_kart_frame201": {"output_dir": "wario/frames", "rom_offset": "0x3E8E60", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_201_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3EEE90"}}, +"wario_kart_frame202": {"output_dir": "wario/frames", "rom_offset": "0x3E9520", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_202_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3EF550"}}, +"wario_kart_frame203": {"output_dir": "wario/frames", "rom_offset": "0x3E9BBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_203_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3EFBEC"}}, +"wario_kart_frame204": {"output_dir": "wario/frames", "rom_offset": "0x3EA268", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_204_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F0298"}}, +"wario_kart_frame205": {"output_dir": "wario/frames", "rom_offset": "0x3EA928", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_205_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F0958"}}, +"wario_kart_frame206": {"output_dir": "wario/frames", "rom_offset": "0x3EAFC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_206_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F0FF8"}}, +"wario_kart_frame207": {"output_dir": "wario/frames", "rom_offset": "0x3EB66C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_207_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F169C"}}, +"wario_kart_frame208": {"output_dir": "wario/frames", "rom_offset": "0x3EBD0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_208_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F1D3C"}}, +"wario_kart_frame209": {"output_dir": "wario/frames", "rom_offset": "0x3EC398", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_209_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F23C8"}}, +"wario_kart_frame210": {"output_dir": "wario/frames", "rom_offset": "0x3EC924", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_210_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F2954"}}, +"wario_kart_frame211": {"output_dir": "wario/frames", "rom_offset": "0x3ECED4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_211_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F2F04"}}, +"wario_kart_frame212": {"output_dir": "wario/frames", "rom_offset": "0x3ED4B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_212_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F34E8"}}, +"wario_kart_frame213": {"output_dir": "wario/frames", "rom_offset": "0x3EDAB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_213_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F3AE8"}}, +"wario_kart_frame214": {"output_dir": "wario/frames", "rom_offset": "0x3EE0E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_214_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F4110"}}, +"wario_kart_frame215": {"output_dir": "wario/frames", "rom_offset": "0x3EE71C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_215_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F474C"}}, +"wario_kart_frame216": {"output_dir": "wario/frames", "rom_offset": "0x3EED70", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_216_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F4DA0"}}, +"wario_kart_frame217": {"output_dir": "wario/frames", "rom_offset": "0x3EF3CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_217_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F53FC"}}, +"wario_kart_frame218": {"output_dir": "wario/frames", "rom_offset": "0x3EFA24", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_218_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F5A54"}}, +"wario_kart_frame219": {"output_dir": "wario/frames", "rom_offset": "0x3F00A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_219_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F60D4"}}, +"wario_kart_frame220": {"output_dir": "wario/frames", "rom_offset": "0x3F070C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_220_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F673C"}}, +"wario_kart_frame221": {"output_dir": "wario/frames", "rom_offset": "0x3F0D98", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_221_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F6DC8"}}, +"wario_kart_frame222": {"output_dir": "wario/frames", "rom_offset": "0x3F1410", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_222_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F7440"}}, +"wario_kart_frame223": {"output_dir": "wario/frames", "rom_offset": "0x3F1A8C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_223_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F7ABC"}}, +"wario_kart_frame224": {"output_dir": "wario/frames", "rom_offset": "0x3F20F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_224_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F8128"}}, +"wario_kart_frame225": {"output_dir": "wario/frames", "rom_offset": "0x3F2770", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_225_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F87A0"}}, +"wario_kart_frame226": {"output_dir": "wario/frames", "rom_offset": "0x3F2DCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_226_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F8DFC"}}, +"wario_kart_frame227": {"output_dir": "wario/frames", "rom_offset": "0x3F3420", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_227_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F9450"}}, +"wario_kart_frame228": {"output_dir": "wario/frames", "rom_offset": "0x3F3A6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_228_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3F9A9C"}}, +"wario_kart_frame229": {"output_dir": "wario/frames", "rom_offset": "0x3F40D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_229_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3FA104"}}, +"wario_kart_frame230": {"output_dir": "wario/frames", "rom_offset": "0x3F466C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_230_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3FA69C"}}, +"wario_kart_frame231": {"output_dir": "wario/frames", "rom_offset": "0x3F4C24", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_231_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3FAC54"}}, +"wario_kart_frame232": {"output_dir": "wario/frames", "rom_offset": "0x3F5208", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_232_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3FB238"}}, +"wario_kart_frame233": {"output_dir": "wario/frames", "rom_offset": "0x3F5824", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_233_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3FB854"}}, +"wario_kart_frame234": {"output_dir": "wario/frames", "rom_offset": "0x3F5E58", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_234_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3FBE88"}}, +"wario_kart_frame235": {"output_dir": "wario/frames", "rom_offset": "0x3F64A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_235_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3FC4D8"}}, +"wario_kart_frame236": {"output_dir": "wario/frames", "rom_offset": "0x3F6B24", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_236_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3FCB54"}}, +"wario_kart_frame237": {"output_dir": "wario/frames", "rom_offset": "0x3F7194", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_237_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3FD1C4"}}, +"wario_kart_frame238": {"output_dir": "wario/frames", "rom_offset": "0x3F7808", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_238_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3FD838"}}, +"wario_kart_frame239": {"output_dir": "wario/frames", "rom_offset": "0x3F7E68", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_239_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3FDE98"}}, +"wario_kart_frame240": {"output_dir": "wario/frames", "rom_offset": "0x3F84D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_240_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3FE500"}}, +"wario_kart_frame241": {"output_dir": "wario/frames", "rom_offset": "0x3F8B40", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_241_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3FEB70"}}, +"wario_kart_frame242": {"output_dir": "wario/frames", "rom_offset": "0x3F91AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_242_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3FF1DC"}}, +"wario_kart_frame243": {"output_dir": "wario/frames", "rom_offset": "0x3F9808", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_243_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3FF838"}}, +"wario_kart_frame244": {"output_dir": "wario/frames", "rom_offset": "0x3F9E50", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_244_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x3FFE80"}}, +"wario_kart_frame245": {"output_dir": "wario/frames", "rom_offset": "0x3FA490", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_245_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4004C0"}}, +"wario_kart_frame246": {"output_dir": "wario/frames", "rom_offset": "0x3FAAD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_246_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x400B04"}}, +"wario_kart_frame247": {"output_dir": "wario/frames", "rom_offset": "0x3FB10C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_247_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x40113C"}}, +"wario_kart_frame248": {"output_dir": "wario/frames", "rom_offset": "0x3FB720", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_248_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x401750"}}, +"wario_kart_frame249": {"output_dir": "wario/frames", "rom_offset": "0x3FBD28", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_249_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x401D58"}}, +"wario_kart_frame250": {"output_dir": "wario/frames", "rom_offset": "0x3FC2DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_250_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x40230C"}}, +"wario_kart_frame251": {"output_dir": "wario/frames", "rom_offset": "0x3FC8BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_251_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4028EC"}}, +"wario_kart_frame252": {"output_dir": "wario/frames", "rom_offset": "0x3FCEB0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_252_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x402EE0"}}, +"wario_kart_frame253": {"output_dir": "wario/frames", "rom_offset": "0x3FD4D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_253_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x403504"}}, +"wario_kart_frame254": {"output_dir": "wario/frames", "rom_offset": "0x3FDB24", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_254_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x403B54"}}, +"wario_kart_frame255": {"output_dir": "wario/frames", "rom_offset": "0x3FE194", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_255_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4041C4"}}, +"wario_kart_frame256": {"output_dir": "wario/frames", "rom_offset": "0x3FE808", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_256_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x404838"}}, +"wario_kart_frame257": {"output_dir": "wario/frames", "rom_offset": "0x3FEE90", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_257_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x404EC0"}}, +"wario_kart_frame258": {"output_dir": "wario/frames", "rom_offset": "0x3FF520", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_258_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x405550"}}, +"wario_kart_frame259": {"output_dir": "wario/frames", "rom_offset": "0x3FFB84", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_259_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x405BB4"}}, +"wario_kart_frame260": {"output_dir": "wario/frames", "rom_offset": "0x4001E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_260_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x406210"}}, +"wario_kart_frame261": {"output_dir": "wario/frames", "rom_offset": "0x40083C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_261_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x40686C"}}, +"wario_kart_frame262": {"output_dir": "wario/frames", "rom_offset": "0x400E70", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_262_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x406EA0"}}, +"wario_kart_frame263": {"output_dir": "wario/frames", "rom_offset": "0x401494", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_263_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4074C4"}}, +"wario_kart_frame264": {"output_dir": "wario/frames", "rom_offset": "0x401AA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_264_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x407AD8"}}, +"wario_kart_frame265": {"output_dir": "wario/frames", "rom_offset": "0x4020C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_265_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4080F4"}}, +"wario_kart_frame266": {"output_dir": "wario/frames", "rom_offset": "0x4026D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_266_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x408700"}}, +"wario_kart_frame267": {"output_dir": "wario/frames", "rom_offset": "0x402CD8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_267_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x408D08"}}, +"wario_kart_frame268": {"output_dir": "wario/frames", "rom_offset": "0x4032B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_268_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4092E8"}}, +"wario_kart_frame269": {"output_dir": "wario/frames", "rom_offset": "0x403890", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_269_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4098C0"}}, +"wario_kart_frame270": {"output_dir": "wario/frames", "rom_offset": "0x403E50", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_270_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x409E80"}}, +"wario_kart_frame271": {"output_dir": "wario/frames", "rom_offset": "0x404428", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_271_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x40A458"}}, +"wario_kart_frame272": {"output_dir": "wario/frames", "rom_offset": "0x404A44", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_272_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x40AA74"}}, +"wario_kart_frame273": {"output_dir": "wario/frames", "rom_offset": "0x405094", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_273_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x40B0C4"}}, +"wario_kart_frame274": {"output_dir": "wario/frames", "rom_offset": "0x4056F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_274_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x40B720"}}, +"wario_kart_frame275": {"output_dir": "wario/frames", "rom_offset": "0x405D6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_275_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x40BD9C"}}, +"wario_kart_frame276": {"output_dir": "wario/frames", "rom_offset": "0x406414", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_276_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x40C444"}}, +"wario_kart_frame277": {"output_dir": "wario/frames", "rom_offset": "0x406AA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_277_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x40CAD8"}}, +"wario_kart_frame278": {"output_dir": "wario/frames", "rom_offset": "0x407130", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_278_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x40D160"}}, +"wario_kart_frame279": {"output_dir": "wario/frames", "rom_offset": "0x407794", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_279_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x40D7C4"}}, +"wario_kart_frame280": {"output_dir": "wario/frames", "rom_offset": "0x407DF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_280_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x40DE24"}}, +"wario_kart_frame281": {"output_dir": "wario/frames", "rom_offset": "0x408438", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_281_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x40E468"}}, +"wario_kart_frame282": {"output_dir": "wario/frames", "rom_offset": "0x408A4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_282_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x40EA7C"}}, +"wario_kart_frame283": {"output_dir": "wario/frames", "rom_offset": "0x40905C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_283_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x40F08C"}}, +"wario_kart_frame284": {"output_dir": "wario/frames", "rom_offset": "0x40963C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_284_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x40F66C"}}, +"wario_kart_frame285": {"output_dir": "wario/frames", "rom_offset": "0x409C14", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_285_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x40FC44"}}, +"wario_kart_frame286": {"output_dir": "wario/frames", "rom_offset": "0x40A1E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_286_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x410210"}}, +"wario_kart_frame287": {"output_dir": "wario/frames", "rom_offset": "0x40A78C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_287_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4107BC"}}, +"wario_kart_frame288": {"output_dir": "wario/frames", "rom_offset": "0x40AD28", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_288_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x410D58"}}, +"wario_kart_frame289": {"output_dir": "wario/frames", "rom_offset": "0x40B28C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4112BC"}}, +"wario_kart_frame290": {"output_dir": "wario/frames", "rom_offset": "0x40B850", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x411880"}}, +"wario_kart_frame291": {"output_dir": "wario/frames", "rom_offset": "0x40BE54", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x411E84"}}, +"wario_kart_frame292": {"output_dir": "wario/frames", "rom_offset": "0x40C46C", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x41249C"}}, +"wario_kart_frame293": {"output_dir": "wario/frames", "rom_offset": "0x40CAD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x412B04"}}, +"wario_kart_frame294": {"output_dir": "wario/frames", "rom_offset": "0x40D094", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4130C4"}}, +"wario_kart_frame295": {"output_dir": "wario/frames", "rom_offset": "0x40D694", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4136C4"}}, +"wario_kart_frame296": {"output_dir": "wario/frames", "rom_offset": "0x40DCAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x413CDC"}}, +"wario_kart_frame297": {"output_dir": "wario/frames", "rom_offset": "0x40E2E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x414310"}}, +"wario_kart_frame298": {"output_dir": "wario/frames", "rom_offset": "0x40E8AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4148DC"}}, +"wario_kart_frame299": {"output_dir": "wario/frames", "rom_offset": "0x40EEE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x414F14"}}, +"wario_kart_frame300": {"output_dir": "wario/frames", "rom_offset": "0x40F4F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x415528"}}, +"wario_kart_frame301": {"output_dir": "wario/frames", "rom_offset": "0x40FA94", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x415AC4"}}, +"wario_kart_frame302": {"output_dir": "wario/frames", "rom_offset": "0x410000", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x416030"}}, +"wario_kart_frame303": {"output_dir": "wario/frames", "rom_offset": "0x4105C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4165F4"}}, +"wario_kart_frame304": {"output_dir": "wario/frames", "rom_offset": "0x410BDC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x416C0C"}}, +"wario_kart_frame305": {"output_dir": "wario/frames", "rom_offset": "0x411208", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x417238"}}, +"wario_kart_frame306": {"output_dir": "wario/frames", "rom_offset": "0x411754", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x417784"}}, +"wario_kart_frame307": {"output_dir": "wario/frames", "rom_offset": "0x411D64", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x417D94"}}, +"wario_kart_frame308": {"output_dir": "wario/frames", "rom_offset": "0x4123B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4183E0"}}, +"wario_kart_frame309": {"output_dir": "wario/frames", "rom_offset": "0x4129E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x418A14"}}, +"wario_kart_frame310": {"output_dir": "wario/frames", "rom_offset": "0x412FC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x418FF4"}}, +"wario_kart_frame311": {"output_dir": "wario/frames", "rom_offset": "0x4135C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x4195F0"}}, +"wario_kart_frame312": {"output_dir": "wario/frames", "rom_offset": "0x413BC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x419BF4"}}, +"wario_kart_frame313": {"output_dir": "wario/frames", "rom_offset": "0x4141B8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x41A1E8"}}, +"wario_kart_frame314": {"output_dir": "wario/frames", "rom_offset": "0x414788", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x41A7B8"}}, +"wario_kart_frame315": {"output_dir": "wario/frames", "rom_offset": "0x414DB8", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x41ADE8"}}, +"wario_kart_frame316": {"output_dir": "wario/frames", "rom_offset": "0x4153DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x41B40C"}}, +"wario_kart_frame317": {"output_dir": "wario/frames", "rom_offset": "0x415994", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x41B9C4"}}, +"wario_kart_frame318": {"output_dir": "wario/frames", "rom_offset": "0x415EFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x41BF2C"}}, +"wario_kart_frame319": {"output_dir": "wario/frames", "rom_offset": "0x416480", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x41C4B0"}}, +"wario_kart_frame320": {"output_dir": "wario/frames", "rom_offset": "0x416A50", "width": 64, "height": 64, "type": "ci8", "tlut": ["wario_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x41CA80"}}, +"kart_000_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41705C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D08C"}}, +"kart_000_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4170DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D10C"}}, +"kart_000_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41715C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D18C"}}, +"kart_000_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4171DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D20C"}}, +"kart_001_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41725C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D28C"}}, +"kart_001_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4172DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D30C"}}, +"kart_001_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41735C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D38C"}}, +"kart_001_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4173DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D40C"}}, +"kart_002_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41745C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D48C"}}, +"kart_002_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4174DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D50C"}}, +"kart_002_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41755C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D58C"}}, +"kart_002_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4175DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D60C"}}, +"kart_003_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41765C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D68C"}}, +"kart_003_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4176DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D70C"}}, +"kart_003_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41775C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D78C"}}, +"kart_003_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4177DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D80C"}}, +"kart_004_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41785C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D88C"}}, +"kart_004_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4178DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D90C"}}, +"kart_004_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41795C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41D98C"}}, +"kart_004_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4179DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41DA0C"}}, +"kart_005_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x417A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41DA8C"}}, +"kart_005_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x417ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41DB0C"}}, +"kart_005_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x417B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41DB8C"}}, +"kart_005_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x417BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41DC0C"}}, +"kart_006_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x417C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41DC8C"}}, +"kart_006_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x417CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41DD0C"}}, +"kart_006_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x417D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41DD8C"}}, +"kart_006_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x417DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41DE0C"}}, +"kart_007_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x417E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41DE8C"}}, +"kart_007_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x417EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41DF0C"}}, +"kart_007_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x417F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41DF8C"}}, +"kart_007_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x417FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E00C"}}, +"kart_008_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41805C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E08C"}}, +"kart_008_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4180DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E10C"}}, +"kart_008_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41815C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E18C"}}, +"kart_008_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4181DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E20C"}}, +"kart_009_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41825C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E28C"}}, +"kart_009_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4182DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E30C"}}, +"kart_009_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41835C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E38C"}}, +"kart_009_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4183DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E40C"}}, +"kart_010_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41845C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E48C"}}, +"kart_010_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4184DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E50C"}}, +"kart_010_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41855C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E58C"}}, +"kart_010_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4185DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E60C"}}, +"kart_011_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41865C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E68C"}}, +"kart_011_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4186DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E70C"}}, +"kart_011_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41875C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E78C"}}, +"kart_011_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4187DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E80C"}}, +"kart_012_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41885C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E88C"}}, +"kart_012_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4188DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E90C"}}, +"kart_012_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41895C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41E98C"}}, +"kart_012_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4189DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41EA0C"}}, +"kart_013_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x418A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41EA8C"}}, +"kart_013_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x418ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41EB0C"}}, +"kart_013_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x418B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41EB8C"}}, +"kart_013_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x418BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41EC0C"}}, +"kart_014_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x418C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41EC8C"}}, +"kart_014_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x418CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41ED0C"}}, +"kart_014_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x418D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41ED8C"}}, +"kart_014_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x418DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41EE0C"}}, +"kart_015_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x418E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41EE8C"}}, +"kart_015_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x418EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41EF0C"}}, +"kart_015_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x418F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41EF8C"}}, +"kart_015_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x418FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F00C"}}, +"kart_016_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41905C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F08C"}}, +"kart_016_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4190DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F10C"}}, +"kart_016_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41915C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F18C"}}, +"kart_016_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4191DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F20C"}}, +"kart_017_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41925C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F28C"}}, +"kart_017_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4192DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F30C"}}, +"kart_017_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41935C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F38C"}}, +"kart_017_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4193DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F40C"}}, +"kart_018_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41945C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F48C"}}, +"kart_018_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4194DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F50C"}}, +"kart_018_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41955C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F58C"}}, +"kart_018_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4195DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F60C"}}, +"kart_019_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41965C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F68C"}}, +"kart_019_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4196DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F70C"}}, +"kart_019_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41975C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F78C"}}, +"kart_019_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4197DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F80C"}}, +"kart_020_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41985C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F88C"}}, +"kart_020_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4198DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F90C"}}, +"kart_020_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41995C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41F98C"}}, +"kart_020_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4199DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41FA0C"}}, +"kart_021_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x419A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41FA8C"}}, +"kart_021_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x419ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41FB0C"}}, +"kart_021_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x419B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41FB8C"}}, +"kart_021_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x419BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41FC0C"}}, +"kart_022_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x419C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41FC8C"}}, +"kart_022_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x419CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41FD0C"}}, +"kart_022_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x419D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41FD8C"}}, +"kart_022_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x419DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41FE0C"}}, +"kart_023_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x419E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41FE8C"}}, +"kart_023_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x419EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41FF0C"}}, +"kart_023_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x419F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x41FF8C"}}, +"kart_023_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x419FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42000C"}}, +"kart_024_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41A05C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42008C"}}, +"kart_024_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41A0DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42010C"}}, +"kart_024_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41A15C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42018C"}}, +"kart_024_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41A1DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42020C"}}, +"kart_025_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41A25C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42028C"}}, +"kart_025_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41A2DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42030C"}}, +"kart_025_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41A35C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42038C"}}, +"kart_025_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41A3DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42040C"}}, +"kart_026_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41A45C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42048C"}}, +"kart_026_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41A4DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42050C"}}, +"kart_026_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41A55C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42058C"}}, +"kart_026_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41A5DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42060C"}}, +"kart_027_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41A65C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42068C"}}, +"kart_027_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41A6DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42070C"}}, +"kart_027_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41A75C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42078C"}}, +"kart_027_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41A7DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42080C"}}, +"kart_028_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41A85C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42088C"}}, +"kart_028_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41A8DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42090C"}}, +"kart_028_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41A95C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42098C"}}, +"kart_028_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41A9DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x420A0C"}}, +"kart_029_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41AA5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x420A8C"}}, +"kart_029_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41AADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x420B0C"}}, +"kart_029_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41AB5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x420B8C"}}, +"kart_029_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41ABDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x420C0C"}}, +"kart_030_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41AC5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x420C8C"}}, +"kart_030_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41ACDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x420D0C"}}, +"kart_030_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41AD5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x420D8C"}}, +"kart_030_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41ADDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x420E0C"}}, +"kart_031_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41AE5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x420E8C"}}, +"kart_031_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41AEDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x420F0C"}}, +"kart_031_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41AF5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x420F8C"}}, +"kart_031_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41AFDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42100C"}}, +"kart_032_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41B05C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42108C"}}, +"kart_032_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41B0DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42110C"}}, +"kart_032_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41B15C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42118C"}}, +"kart_032_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41B1DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42120C"}}, +"kart_033_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41B25C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42128C"}}, +"kart_033_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41B2DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42130C"}}, +"kart_033_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41B35C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42138C"}}, +"kart_033_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41B3DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42140C"}}, +"kart_034_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41B45C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42148C"}}, +"kart_034_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41B4DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42150C"}}, +"kart_034_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41B55C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42158C"}}, +"kart_034_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41B5DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42160C"}}, +"kart_035_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41B65C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42168C"}}, +"kart_035_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41B6DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42170C"}}, +"kart_035_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41B75C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42178C"}}, +"kart_035_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41B7DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42180C"}}, +"kart_036_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41B85C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42188C"}}, +"kart_036_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41B8DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42190C"}}, +"kart_036_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41B95C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42198C"}}, +"kart_036_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41B9DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x421A0C"}}, +"kart_037_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41BA5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x421A8C"}}, +"kart_037_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41BADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x421B0C"}}, +"kart_037_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41BB5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x421B8C"}}, +"kart_037_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41BBDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x421C0C"}}, +"kart_038_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41BC5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x421C8C"}}, +"kart_038_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41BCDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x421D0C"}}, +"kart_038_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41BD5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x421D8C"}}, +"kart_038_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41BDDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x421E0C"}}, +"kart_039_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41BE5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x421E8C"}}, +"kart_039_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41BEDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x421F0C"}}, +"kart_039_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41BF5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x421F8C"}}, +"kart_039_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41BFDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42200C"}}, +"kart_040_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41C05C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42208C"}}, +"kart_040_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41C0DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42210C"}}, +"kart_040_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41C15C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42218C"}}, +"kart_040_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41C1DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42220C"}}, +"kart_041_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41C25C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42228C"}}, +"kart_041_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41C2DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42230C"}}, +"kart_041_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41C35C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42238C"}}, +"kart_041_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41C3DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42240C"}}, +"kart_042_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41C45C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42248C"}}, +"kart_042_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41C4DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42250C"}}, +"kart_042_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41C55C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42258C"}}, +"kart_042_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41C5DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42260C"}}, +"kart_043_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41C65C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42268C"}}, +"kart_043_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41C6DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42270C"}}, +"kart_043_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41C75C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42278C"}}, +"kart_043_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41C7DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42280C"}}, +"kart_044_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41C85C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42288C"}}, +"kart_044_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41C8DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42290C"}}, +"kart_044_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41C95C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42298C"}}, +"kart_044_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41C9DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x422A0C"}}, +"kart_045_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41CA5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x422A8C"}}, +"kart_045_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41CADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x422B0C"}}, +"kart_045_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41CB5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x422B8C"}}, +"kart_045_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41CBDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x422C0C"}}, +"kart_046_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41CC5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x422C8C"}}, +"kart_046_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41CCDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x422D0C"}}, +"kart_046_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41CD5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x422D8C"}}, +"kart_046_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41CDDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x422E0C"}}, +"kart_047_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41CE5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x422E8C"}}, +"kart_047_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41CEDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x422F0C"}}, +"kart_047_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41CF5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x422F8C"}}, +"kart_047_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41CFDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42300C"}}, +"kart_048_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41D05C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42308C"}}, +"kart_048_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41D0DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42310C"}}, +"kart_048_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41D15C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42318C"}}, +"kart_048_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41D1DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42320C"}}, +"kart_049_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41D25C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42328C"}}, +"kart_049_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41D2DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42330C"}}, +"kart_049_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41D35C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42338C"}}, +"kart_049_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41D3DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42340C"}}, +"kart_050_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41D45C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42348C"}}, +"kart_050_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41D4DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42350C"}}, +"kart_050_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41D55C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42358C"}}, +"kart_050_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41D5DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42360C"}}, +"kart_051_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41D65C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42368C"}}, +"kart_051_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41D6DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42370C"}}, +"kart_051_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41D75C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42378C"}}, +"kart_051_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41D7DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42380C"}}, +"kart_052_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41D85C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42388C"}}, +"kart_052_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41D8DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42390C"}}, +"kart_052_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41D95C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42398C"}}, +"kart_052_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41D9DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x423A0C"}}, +"kart_053_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41DA5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x423A8C"}}, +"kart_053_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41DADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x423B0C"}}, +"kart_053_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41DB5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x423B8C"}}, +"kart_053_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41DBDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x423C0C"}}, +"kart_054_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41DC5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x423C8C"}}, +"kart_054_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41DCDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x423D0C"}}, +"kart_054_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41DD5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x423D8C"}}, +"kart_054_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41DDDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x423E0C"}}, +"kart_055_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41DE5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x423E8C"}}, +"kart_055_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41DEDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x423F0C"}}, +"kart_055_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41DF5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x423F8C"}}, +"kart_055_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41DFDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42400C"}}, +"kart_056_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41E05C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42408C"}}, +"kart_056_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41E0DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42410C"}}, +"kart_056_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41E15C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42418C"}}, +"kart_056_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41E1DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42420C"}}, +"kart_057_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41E25C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42428C"}}, +"kart_057_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41E2DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42430C"}}, +"kart_057_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41E35C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42438C"}}, +"kart_057_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41E3DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42440C"}}, +"kart_058_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41E45C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42448C"}}, +"kart_058_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41E4DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42450C"}}, +"kart_058_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41E55C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42458C"}}, +"kart_058_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41E5DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42460C"}}, +"kart_059_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41E65C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42468C"}}, +"kart_059_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41E6DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42470C"}}, +"kart_059_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41E75C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42478C"}}, +"kart_059_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41E7DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42480C"}}, +"kart_060_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41E85C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42488C"}}, +"kart_060_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41E8DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42490C"}}, +"kart_060_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41E95C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42498C"}}, +"kart_060_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41E9DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x424A0C"}}, +"kart_061_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41EA5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x424A8C"}}, +"kart_061_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41EADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x424B0C"}}, +"kart_061_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41EB5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x424B8C"}}, +"kart_061_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41EBDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x424C0C"}}, +"kart_062_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41EC5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x424C8C"}}, +"kart_062_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41ECDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x424D0C"}}, +"kart_062_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41ED5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x424D8C"}}, +"kart_062_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41EDDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x424E0C"}}, +"kart_063_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41EE5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x424E8C"}}, +"kart_063_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41EEDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x424F0C"}}, +"kart_063_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41EF5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x424F8C"}}, +"kart_063_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41EFDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42500C"}}, +"kart_064_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41F05C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42508C"}}, +"kart_064_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41F0DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42510C"}}, +"kart_064_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41F15C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42518C"}}, +"kart_064_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41F1DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42520C"}}, +"kart_065_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41F25C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42528C"}}, +"kart_065_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41F2DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42530C"}}, +"kart_065_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41F35C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42538C"}}, +"kart_065_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41F3DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42540C"}}, +"kart_066_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41F45C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42548C"}}, +"kart_066_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41F4DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42550C"}}, +"kart_066_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41F55C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42558C"}}, +"kart_066_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41F5DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42560C"}}, +"kart_067_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41F65C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42568C"}}, +"kart_067_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41F6DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42570C"}}, +"kart_067_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41F75C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42578C"}}, +"kart_067_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41F7DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42580C"}}, +"kart_068_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41F85C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42588C"}}, +"kart_068_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41F8DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42590C"}}, +"kart_068_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41F95C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42598C"}}, +"kart_068_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41F9DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x425A0C"}}, +"kart_069_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41FA5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x425A8C"}}, +"kart_069_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41FADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x425B0C"}}, +"kart_069_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41FB5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x425B8C"}}, +"kart_069_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41FBDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x425C0C"}}, +"kart_070_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41FC5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x425C8C"}}, +"kart_070_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41FCDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x425D0C"}}, +"kart_070_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41FD5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x425D8C"}}, +"kart_070_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41FDDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x425E0C"}}, +"kart_071_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x41FE5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x425E8C"}}, +"kart_071_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x41FEDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x425F0C"}}, +"kart_071_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x41FF5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x425F8C"}}, +"kart_071_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x41FFDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42600C"}}, +"kart_072_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42005C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42608C"}}, +"kart_072_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4200DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42610C"}}, +"kart_072_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42015C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42618C"}}, +"kart_072_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4201DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42620C"}}, +"kart_073_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42025C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42628C"}}, +"kart_073_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4202DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42630C"}}, +"kart_073_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42035C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42638C"}}, +"kart_073_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4203DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42640C"}}, +"kart_074_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42045C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42648C"}}, +"kart_074_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4204DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42650C"}}, +"kart_074_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42055C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42658C"}}, +"kart_074_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4205DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42660C"}}, +"kart_075_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42065C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42668C"}}, +"kart_075_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4206DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42670C"}}, +"kart_075_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42075C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42678C"}}, +"kart_075_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4207DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42680C"}}, +"kart_076_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42085C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42688C"}}, +"kart_076_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4208DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42690C"}}, +"kart_076_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42095C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42698C"}}, +"kart_076_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4209DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x426A0C"}}, +"kart_077_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x420A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x426A8C"}}, +"kart_077_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x420ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x426B0C"}}, +"kart_077_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x420B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x426B8C"}}, +"kart_077_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x420BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x426C0C"}}, +"kart_078_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x420C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x426C8C"}}, +"kart_078_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x420CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x426D0C"}}, +"kart_078_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x420D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x426D8C"}}, +"kart_078_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x420DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x426E0C"}}, +"kart_079_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x420E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x426E8C"}}, +"kart_079_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x420EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x426F0C"}}, +"kart_079_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x420F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x426F8C"}}, +"kart_079_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x420FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42700C"}}, +"kart_080_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42105C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42708C"}}, +"kart_080_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4210DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42710C"}}, +"kart_080_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42115C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42718C"}}, +"kart_080_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4211DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42720C"}}, +"kart_081_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42125C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42728C"}}, +"kart_081_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4212DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42730C"}}, +"kart_081_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42135C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42738C"}}, +"kart_081_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4213DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42740C"}}, +"kart_082_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42145C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42748C"}}, +"kart_082_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4214DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42750C"}}, +"kart_082_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42155C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42758C"}}, +"kart_082_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4215DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42760C"}}, +"kart_083_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42165C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42768C"}}, +"kart_083_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4216DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42770C"}}, +"kart_083_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42175C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42778C"}}, +"kart_083_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4217DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42780C"}}, +"kart_084_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42185C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42788C"}}, +"kart_084_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4218DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42790C"}}, +"kart_084_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42195C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42798C"}}, +"kart_084_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4219DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x427A0C"}}, +"kart_085_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x421A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x427A8C"}}, +"kart_085_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x421ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x427B0C"}}, +"kart_085_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x421B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x427B8C"}}, +"kart_085_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x421BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x427C0C"}}, +"kart_086_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x421C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x427C8C"}}, +"kart_086_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x421CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x427D0C"}}, +"kart_086_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x421D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x427D8C"}}, +"kart_086_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x421DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x427E0C"}}, +"kart_087_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x421E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x427E8C"}}, +"kart_087_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x421EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x427F0C"}}, +"kart_087_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x421F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x427F8C"}}, +"kart_087_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x421FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42800C"}}, +"kart_088_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42205C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42808C"}}, +"kart_088_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4220DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42810C"}}, +"kart_088_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42215C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42818C"}}, +"kart_088_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4221DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42820C"}}, +"kart_089_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42225C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42828C"}}, +"kart_089_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4222DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42830C"}}, +"kart_089_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42235C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42838C"}}, +"kart_089_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4223DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42840C"}}, +"kart_090_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42245C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42848C"}}, +"kart_090_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4224DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42850C"}}, +"kart_090_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42255C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42858C"}}, +"kart_090_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4225DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42860C"}}, +"kart_091_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42265C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42868C"}}, +"kart_091_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4226DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42870C"}}, +"kart_091_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42275C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42878C"}}, +"kart_091_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4227DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42880C"}}, +"kart_092_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42285C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42888C"}}, +"kart_092_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4228DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42890C"}}, +"kart_092_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42295C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42898C"}}, +"kart_092_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4229DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x428A0C"}}, +"kart_093_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x422A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x428A8C"}}, +"kart_093_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x422ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x428B0C"}}, +"kart_093_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x422B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x428B8C"}}, +"kart_093_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x422BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x428C0C"}}, +"kart_094_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x422C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x428C8C"}}, +"kart_094_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x422CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x428D0C"}}, +"kart_094_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x422D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x428D8C"}}, +"kart_094_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x422DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x428E0C"}}, +"kart_095_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x422E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x428E8C"}}, +"kart_095_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x422EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x428F0C"}}, +"kart_095_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x422F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x428F8C"}}, +"kart_095_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x422FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42900C"}}, +"kart_096_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42305C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42908C"}}, +"kart_096_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4230DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42910C"}}, +"kart_096_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42315C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42918C"}}, +"kart_096_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4231DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42920C"}}, +"kart_097_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42325C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42928C"}}, +"kart_097_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4232DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42930C"}}, +"kart_097_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42335C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42938C"}}, +"kart_097_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4233DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42940C"}}, +"kart_098_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42345C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42948C"}}, +"kart_098_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4234DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42950C"}}, +"kart_098_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42355C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42958C"}}, +"kart_098_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4235DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42960C"}}, +"kart_099_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42365C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42968C"}}, +"kart_099_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4236DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42970C"}}, +"kart_099_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42375C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42978C"}}, +"kart_099_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4237DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42980C"}}, +"kart_100_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42385C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42988C"}}, +"kart_100_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4238DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42990C"}}, +"kart_100_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42395C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42998C"}}, +"kart_100_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4239DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x429A0C"}}, +"kart_101_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x423A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x429A8C"}}, +"kart_101_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x423ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x429B0C"}}, +"kart_101_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x423B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x429B8C"}}, +"kart_101_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x423BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x429C0C"}}, +"kart_102_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x423C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x429C8C"}}, +"kart_102_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x423CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x429D0C"}}, +"kart_102_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x423D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x429D8C"}}, +"kart_102_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x423DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x429E0C"}}, +"kart_103_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x423E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x429E8C"}}, +"kart_103_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x423EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x429F0C"}}, +"kart_103_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x423F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x429F8C"}}, +"kart_103_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x423FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A00C"}}, +"kart_104_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42405C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A08C"}}, +"kart_104_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4240DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A10C"}}, +"kart_104_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42415C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A18C"}}, +"kart_104_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4241DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A20C"}}, +"kart_105_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42425C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A28C"}}, +"kart_105_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4242DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A30C"}}, +"kart_105_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42435C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A38C"}}, +"kart_105_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4243DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A40C"}}, +"kart_106_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42445C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A48C"}}, +"kart_106_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4244DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A50C"}}, +"kart_106_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42455C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A58C"}}, +"kart_106_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4245DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A60C"}}, +"kart_107_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42465C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A68C"}}, +"kart_107_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4246DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A70C"}}, +"kart_107_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42475C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A78C"}}, +"kart_107_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4247DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A80C"}}, +"kart_108_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42485C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A88C"}}, +"kart_108_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4248DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A90C"}}, +"kart_108_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42495C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42A98C"}}, +"kart_108_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4249DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42AA0C"}}, +"kart_109_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x424A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42AA8C"}}, +"kart_109_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x424ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42AB0C"}}, +"kart_109_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x424B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42AB8C"}}, +"kart_109_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x424BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42AC0C"}}, +"kart_110_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x424C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42AC8C"}}, +"kart_110_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x424CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42AD0C"}}, +"kart_110_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x424D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42AD8C"}}, +"kart_110_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x424DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42AE0C"}}, +"kart_111_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x424E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42AE8C"}}, +"kart_111_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x424EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42AF0C"}}, +"kart_111_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x424F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42AF8C"}}, +"kart_111_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x424FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B00C"}}, +"kart_112_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42505C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B08C"}}, +"kart_112_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4250DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B10C"}}, +"kart_112_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42515C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B18C"}}, +"kart_112_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4251DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B20C"}}, +"kart_113_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42525C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B28C"}}, +"kart_113_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4252DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B30C"}}, +"kart_113_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42535C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B38C"}}, +"kart_113_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4253DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B40C"}}, +"kart_114_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42545C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B48C"}}, +"kart_114_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4254DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B50C"}}, +"kart_114_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42555C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B58C"}}, +"kart_114_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4255DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B60C"}}, +"kart_115_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42565C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B68C"}}, +"kart_115_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4256DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B70C"}}, +"kart_115_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42575C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B78C"}}, +"kart_115_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4257DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B80C"}}, +"kart_116_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42585C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B88C"}}, +"kart_116_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4258DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B90C"}}, +"kart_116_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42595C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42B98C"}}, +"kart_116_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4259DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42BA0C"}}, +"kart_117_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x425A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42BA8C"}}, +"kart_117_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x425ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42BB0C"}}, +"kart_117_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x425B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42BB8C"}}, +"kart_117_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x425BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42BC0C"}}, +"kart_118_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x425C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42BC8C"}}, +"kart_118_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x425CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42BD0C"}}, +"kart_118_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x425D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42BD8C"}}, +"kart_118_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x425DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42BE0C"}}, +"kart_119_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x425E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42BE8C"}}, +"kart_119_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x425EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42BF0C"}}, +"kart_119_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x425F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42BF8C"}}, +"kart_119_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x425FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C00C"}}, +"kart_120_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42605C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C08C"}}, +"kart_120_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4260DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C10C"}}, +"kart_120_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42615C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C18C"}}, +"kart_120_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4261DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C20C"}}, +"kart_121_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42625C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C28C"}}, +"kart_121_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4262DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C30C"}}, +"kart_121_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42635C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C38C"}}, +"kart_121_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4263DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C40C"}}, +"kart_122_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42645C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C48C"}}, +"kart_122_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4264DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C50C"}}, +"kart_122_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42655C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C58C"}}, +"kart_122_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4265DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C60C"}}, +"kart_123_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42665C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C68C"}}, +"kart_123_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4266DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C70C"}}, +"kart_123_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42675C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C78C"}}, +"kart_123_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4267DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C80C"}}, +"kart_124_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42685C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C88C"}}, +"kart_124_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4268DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C90C"}}, +"kart_124_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42695C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42C98C"}}, +"kart_124_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4269DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42CA0C"}}, +"kart_125_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x426A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42CA8C"}}, +"kart_125_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x426ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42CB0C"}}, +"kart_125_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x426B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42CB8C"}}, +"kart_125_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x426BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42CC0C"}}, +"kart_126_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x426C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42CC8C"}}, +"kart_126_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x426CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42CD0C"}}, +"kart_126_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x426D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42CD8C"}}, +"kart_126_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x426DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42CE0C"}}, +"kart_127_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x426E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42CE8C"}}, +"kart_127_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x426EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42CF0C"}}, +"kart_127_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x426F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42CF8C"}}, +"kart_127_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x426FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D00C"}}, +"kart_128_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42705C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D08C"}}, +"kart_128_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4270DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D10C"}}, +"kart_128_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42715C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D18C"}}, +"kart_128_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4271DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D20C"}}, +"kart_129_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42725C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D28C"}}, +"kart_129_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4272DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D30C"}}, +"kart_129_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42735C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D38C"}}, +"kart_129_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4273DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D40C"}}, +"kart_130_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42745C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D48C"}}, +"kart_130_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4274DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D50C"}}, +"kart_130_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42755C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D58C"}}, +"kart_130_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4275DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D60C"}}, +"kart_131_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42765C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D68C"}}, +"kart_131_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4276DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D70C"}}, +"kart_131_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42775C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D78C"}}, +"kart_131_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4277DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D80C"}}, +"kart_132_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42785C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D88C"}}, +"kart_132_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4278DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D90C"}}, +"kart_132_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42795C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42D98C"}}, +"kart_132_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4279DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42DA0C"}}, +"kart_133_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x427A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42DA8C"}}, +"kart_133_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x427ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42DB0C"}}, +"kart_133_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x427B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42DB8C"}}, +"kart_133_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x427BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42DC0C"}}, +"kart_134_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x427C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42DC8C"}}, +"kart_134_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x427CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42DD0C"}}, +"kart_134_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x427D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42DD8C"}}, +"kart_134_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x427DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42DE0C"}}, +"kart_135_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x427E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42DE8C"}}, +"kart_135_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x427EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42DF0C"}}, +"kart_135_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x427F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42DF8C"}}, +"kart_135_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x427FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E00C"}}, +"kart_136_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42805C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E08C"}}, +"kart_136_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4280DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E10C"}}, +"kart_136_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42815C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E18C"}}, +"kart_136_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4281DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E20C"}}, +"kart_137_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42825C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E28C"}}, +"kart_137_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4282DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E30C"}}, +"kart_137_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42835C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E38C"}}, +"kart_137_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4283DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E40C"}}, +"kart_138_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42845C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E48C"}}, +"kart_138_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4284DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E50C"}}, +"kart_138_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42855C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E58C"}}, +"kart_138_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4285DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E60C"}}, +"kart_139_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42865C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E68C"}}, +"kart_139_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4286DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E70C"}}, +"kart_139_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42875C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E78C"}}, +"kart_139_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4287DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E80C"}}, +"kart_140_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42885C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E88C"}}, +"kart_140_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4288DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E90C"}}, +"kart_140_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42895C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42E98C"}}, +"kart_140_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4289DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42EA0C"}}, +"kart_141_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x428A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42EA8C"}}, +"kart_141_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x428ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42EB0C"}}, +"kart_141_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x428B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42EB8C"}}, +"kart_141_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x428BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42EC0C"}}, +"kart_142_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x428C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42EC8C"}}, +"kart_142_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x428CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42ED0C"}}, +"kart_142_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x428D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42ED8C"}}, +"kart_142_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x428DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42EE0C"}}, +"kart_143_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x428E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42EE8C"}}, +"kart_143_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x428EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42EF0C"}}, +"kart_143_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x428F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42EF8C"}}, +"kart_143_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x428FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F00C"}}, +"kart_144_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42905C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F08C"}}, +"kart_144_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4290DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F10C"}}, +"kart_144_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42915C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F18C"}}, +"kart_144_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4291DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F20C"}}, +"kart_145_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42925C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F28C"}}, +"kart_145_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4292DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F30C"}}, +"kart_145_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42935C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F38C"}}, +"kart_145_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4293DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F40C"}}, +"kart_146_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42945C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F48C"}}, +"kart_146_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4294DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F50C"}}, +"kart_146_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42955C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F58C"}}, +"kart_146_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4295DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F60C"}}, +"kart_147_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42965C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F68C"}}, +"kart_147_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4296DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F70C"}}, +"kart_147_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42975C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F78C"}}, +"kart_147_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4297DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F80C"}}, +"kart_148_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42985C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F88C"}}, +"kart_148_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4298DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F90C"}}, +"kart_148_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42995C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42F98C"}}, +"kart_148_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4299DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42FA0C"}}, +"kart_149_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x429A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42FA8C"}}, +"kart_149_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x429ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42FB0C"}}, +"kart_149_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x429B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42FB8C"}}, +"kart_149_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x429BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42FC0C"}}, +"kart_150_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x429C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42FC8C"}}, +"kart_150_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x429CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42FD0C"}}, +"kart_150_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x429D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42FD8C"}}, +"kart_150_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x429DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42FE0C"}}, +"kart_151_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x429E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42FE8C"}}, +"kart_151_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x429EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42FF0C"}}, +"kart_151_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x429F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x42FF8C"}}, +"kart_151_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x429FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43000C"}}, +"kart_152_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42A05C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43008C"}}, +"kart_152_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42A0DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43010C"}}, +"kart_152_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42A15C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43018C"}}, +"kart_152_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42A1DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43020C"}}, +"kart_153_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42A25C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43028C"}}, +"kart_153_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42A2DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43030C"}}, +"kart_153_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42A35C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43038C"}}, +"kart_153_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42A3DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43040C"}}, +"kart_154_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42A45C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43048C"}}, +"kart_154_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42A4DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43050C"}}, +"kart_154_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42A55C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43058C"}}, +"kart_154_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42A5DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43060C"}}, +"kart_155_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42A65C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43068C"}}, +"kart_155_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42A6DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43070C"}}, +"kart_155_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42A75C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43078C"}}, +"kart_155_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42A7DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43080C"}}, +"kart_156_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42A85C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43088C"}}, +"kart_156_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42A8DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43090C"}}, +"kart_156_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42A95C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43098C"}}, +"kart_156_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42A9DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x430A0C"}}, +"kart_157_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42AA5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x430A8C"}}, +"kart_157_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42AADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x430B0C"}}, +"kart_157_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42AB5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x430B8C"}}, +"kart_157_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42ABDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x430C0C"}}, +"kart_158_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42AC5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x430C8C"}}, +"kart_158_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42ACDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x430D0C"}}, +"kart_158_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42AD5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x430D8C"}}, +"kart_158_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42ADDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x430E0C"}}, +"kart_159_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42AE5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x430E8C"}}, +"kart_159_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42AEDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x430F0C"}}, +"kart_159_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42AF5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x430F8C"}}, +"kart_159_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42AFDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43100C"}}, +"kart_160_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42B05C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43108C"}}, +"kart_160_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42B0DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43110C"}}, +"kart_160_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42B15C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43118C"}}, +"kart_160_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42B1DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43120C"}}, +"kart_161_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42B25C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43128C"}}, +"kart_161_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42B2DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43130C"}}, +"kart_161_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42B35C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43138C"}}, +"kart_161_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42B3DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43140C"}}, +"kart_162_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42B45C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43148C"}}, +"kart_162_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42B4DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43150C"}}, +"kart_162_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42B55C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43158C"}}, +"kart_162_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42B5DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43160C"}}, +"kart_163_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42B65C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43168C"}}, +"kart_163_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42B6DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43170C"}}, +"kart_163_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42B75C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43178C"}}, +"kart_163_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42B7DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43180C"}}, +"kart_164_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42B85C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43188C"}}, +"kart_164_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42B8DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43190C"}}, +"kart_164_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42B95C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43198C"}}, +"kart_164_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42B9DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x431A0C"}}, +"kart_165_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42BA5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x431A8C"}}, +"kart_165_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42BADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x431B0C"}}, +"kart_165_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42BB5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x431B8C"}}, +"kart_165_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42BBDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x431C0C"}}, +"kart_166_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42BC5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x431C8C"}}, +"kart_166_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42BCDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x431D0C"}}, +"kart_166_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42BD5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x431D8C"}}, +"kart_166_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42BDDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x431E0C"}}, +"kart_167_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42BE5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x431E8C"}}, +"kart_167_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42BEDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x431F0C"}}, +"kart_167_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42BF5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x431F8C"}}, +"kart_167_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42BFDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43200C"}}, +"kart_168_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42C05C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43208C"}}, +"kart_168_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42C0DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43210C"}}, +"kart_168_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42C15C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43218C"}}, +"kart_168_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42C1DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43220C"}}, +"kart_169_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42C25C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43228C"}}, +"kart_169_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42C2DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43230C"}}, +"kart_169_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42C35C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43238C"}}, +"kart_169_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42C3DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43240C"}}, +"kart_170_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42C45C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43248C"}}, +"kart_170_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42C4DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43250C"}}, +"kart_170_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42C55C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43258C"}}, +"kart_170_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42C5DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43260C"}}, +"kart_171_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42C65C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43268C"}}, +"kart_171_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42C6DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43270C"}}, +"kart_171_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42C75C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43278C"}}, +"kart_171_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42C7DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43280C"}}, +"kart_172_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42C85C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43288C"}}, +"kart_172_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42C8DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43290C"}}, +"kart_172_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42C95C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43298C"}}, +"kart_172_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42C9DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x432A0C"}}, +"kart_173_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42CA5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x432A8C"}}, +"kart_173_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42CADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x432B0C"}}, +"kart_173_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42CB5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x432B8C"}}, +"kart_173_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42CBDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x432C0C"}}, +"kart_174_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42CC5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x432C8C"}}, +"kart_174_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42CCDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x432D0C"}}, +"kart_174_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42CD5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x432D8C"}}, +"kart_174_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42CDDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x432E0C"}}, +"kart_175_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42CE5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x432E8C"}}, +"kart_175_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42CEDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x432F0C"}}, +"kart_175_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42CF5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x432F8C"}}, +"kart_175_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42CFDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43300C"}}, +"kart_176_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42D05C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43308C"}}, +"kart_176_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42D0DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43310C"}}, +"kart_176_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42D15C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43318C"}}, +"kart_176_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42D1DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43320C"}}, +"kart_177_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42D25C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43328C"}}, +"kart_177_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42D2DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43330C"}}, +"kart_177_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42D35C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43338C"}}, +"kart_177_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42D3DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43340C"}}, +"kart_178_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42D45C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43348C"}}, +"kart_178_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42D4DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43350C"}}, +"kart_178_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42D55C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43358C"}}, +"kart_178_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42D5DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43360C"}}, +"kart_179_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42D65C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43368C"}}, +"kart_179_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42D6DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43370C"}}, +"kart_179_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42D75C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43378C"}}, +"kart_179_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42D7DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43380C"}}, +"kart_180_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42D85C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43388C"}}, +"kart_180_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42D8DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43390C"}}, +"kart_180_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42D95C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43398C"}}, +"kart_180_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42D9DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x433A0C"}}, +"kart_181_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42DA5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x433A8C"}}, +"kart_181_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42DADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x433B0C"}}, +"kart_181_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42DB5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x433B8C"}}, +"kart_181_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42DBDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x433C0C"}}, +"kart_182_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42DC5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x433C8C"}}, +"kart_182_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42DCDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x433D0C"}}, +"kart_182_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42DD5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x433D8C"}}, +"kart_182_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42DDDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x433E0C"}}, +"kart_183_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42DE5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x433E8C"}}, +"kart_183_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42DEDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x433F0C"}}, +"kart_183_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42DF5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x433F8C"}}, +"kart_183_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42DFDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43400C"}}, +"kart_184_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42E05C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43408C"}}, +"kart_184_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42E0DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43410C"}}, +"kart_184_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42E15C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43418C"}}, +"kart_184_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42E1DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43420C"}}, +"kart_185_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42E25C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43428C"}}, +"kart_185_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42E2DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43430C"}}, +"kart_185_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42E35C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43438C"}}, +"kart_185_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42E3DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43440C"}}, +"kart_186_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42E45C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43448C"}}, +"kart_186_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42E4DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43450C"}}, +"kart_186_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42E55C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43458C"}}, +"kart_186_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42E5DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43460C"}}, +"kart_187_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42E65C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43468C"}}, +"kart_187_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42E6DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43470C"}}, +"kart_187_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42E75C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43478C"}}, +"kart_187_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42E7DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43480C"}}, +"kart_188_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42E85C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43488C"}}, +"kart_188_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42E8DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43490C"}}, +"kart_188_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42E95C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43498C"}}, +"kart_188_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42E9DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x434A0C"}}, +"kart_189_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42EA5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x434A8C"}}, +"kart_189_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42EADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x434B0C"}}, +"kart_189_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42EB5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x434B8C"}}, +"kart_189_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42EBDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x434C0C"}}, +"kart_190_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42EC5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x434C8C"}}, +"kart_190_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42ECDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x434D0C"}}, +"kart_190_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42ED5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x434D8C"}}, +"kart_190_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42EDDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x434E0C"}}, +"kart_191_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42EE5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x434E8C"}}, +"kart_191_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42EEDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x434F0C"}}, +"kart_191_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42EF5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x434F8C"}}, +"kart_191_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42EFDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43500C"}}, +"kart_192_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42F05C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43508C"}}, +"kart_192_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42F0DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43510C"}}, +"kart_192_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42F15C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43518C"}}, +"kart_192_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42F1DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43520C"}}, +"kart_193_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42F25C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43528C"}}, +"kart_193_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42F2DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43530C"}}, +"kart_193_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42F35C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43538C"}}, +"kart_193_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42F3DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43540C"}}, +"kart_194_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42F45C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43548C"}}, +"kart_194_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42F4DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43550C"}}, +"kart_194_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42F55C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43558C"}}, +"kart_194_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42F5DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43560C"}}, +"kart_195_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42F65C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43568C"}}, +"kart_195_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42F6DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43570C"}}, +"kart_195_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42F75C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43578C"}}, +"kart_195_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42F7DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43580C"}}, +"kart_196_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42F85C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43588C"}}, +"kart_196_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42F8DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43590C"}}, +"kart_196_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42F95C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43598C"}}, +"kart_196_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42F9DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x435A0C"}}, +"kart_197_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42FA5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x435A8C"}}, +"kart_197_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42FADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x435B0C"}}, +"kart_197_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42FB5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x435B8C"}}, +"kart_197_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42FBDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x435C0C"}}, +"kart_198_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42FC5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x435C8C"}}, +"kart_198_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42FCDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x435D0C"}}, +"kart_198_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42FD5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x435D8C"}}, +"kart_198_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42FDDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x435E0C"}}, +"kart_199_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x42FE5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x435E8C"}}, +"kart_199_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x42FEDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x435F0C"}}, +"kart_199_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x42FF5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x435F8C"}}, +"kart_199_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x42FFDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43600C"}}, +"kart_200_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43005C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43608C"}}, +"kart_200_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4300DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43610C"}}, +"kart_200_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43015C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43618C"}}, +"kart_200_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4301DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43620C"}}, +"kart_201_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43025C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43628C"}}, +"kart_201_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4302DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43630C"}}, +"kart_201_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43035C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43638C"}}, +"kart_201_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4303DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43640C"}}, +"kart_202_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43045C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43648C"}}, +"kart_202_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4304DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43650C"}}, +"kart_202_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43055C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43658C"}}, +"kart_202_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4305DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43660C"}}, +"kart_203_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43065C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43668C"}}, +"kart_203_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4306DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43670C"}}, +"kart_203_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43075C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43678C"}}, +"kart_203_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4307DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43680C"}}, +"kart_204_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43085C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43688C"}}, +"kart_204_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4308DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43690C"}}, +"kart_204_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43095C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43698C"}}, +"kart_204_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4309DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x436A0C"}}, +"kart_205_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x430A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x436A8C"}}, +"kart_205_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x430ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x436B0C"}}, +"kart_205_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x430B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x436B8C"}}, +"kart_205_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x430BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x436C0C"}}, +"kart_206_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x430C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x436C8C"}}, +"kart_206_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x430CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x436D0C"}}, +"kart_206_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x430D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x436D8C"}}, +"kart_206_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x430DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x436E0C"}}, +"kart_207_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x430E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x436E8C"}}, +"kart_207_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x430EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x436F0C"}}, +"kart_207_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x430F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x436F8C"}}, +"kart_207_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x430FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43700C"}}, +"kart_208_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43105C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43708C"}}, +"kart_208_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4310DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43710C"}}, +"kart_208_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43115C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43718C"}}, +"kart_208_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4311DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43720C"}}, +"kart_209_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43125C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43728C"}}, +"kart_209_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4312DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43730C"}}, +"kart_209_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43135C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43738C"}}, +"kart_209_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4313DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43740C"}}, +"kart_210_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43145C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43748C"}}, +"kart_210_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4314DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43750C"}}, +"kart_210_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43155C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43758C"}}, +"kart_210_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4315DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43760C"}}, +"kart_211_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43165C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43768C"}}, +"kart_211_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4316DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43770C"}}, +"kart_211_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43175C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43778C"}}, +"kart_211_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4317DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43780C"}}, +"kart_212_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43185C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43788C"}}, +"kart_212_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4318DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43790C"}}, +"kart_212_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43195C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43798C"}}, +"kart_212_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4319DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x437A0C"}}, +"kart_213_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x431A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x437A8C"}}, +"kart_213_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x431ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x437B0C"}}, +"kart_213_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x431B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x437B8C"}}, +"kart_213_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x431BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x437C0C"}}, +"kart_214_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x431C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x437C8C"}}, +"kart_214_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x431CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x437D0C"}}, +"kart_214_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x431D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x437D8C"}}, +"kart_214_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x431DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x437E0C"}}, +"kart_215_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x431E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x437E8C"}}, +"kart_215_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x431EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x437F0C"}}, +"kart_215_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x431F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x437F8C"}}, +"kart_215_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x431FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43800C"}}, +"kart_216_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43205C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43808C"}}, +"kart_216_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4320DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43810C"}}, +"kart_216_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43215C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43818C"}}, +"kart_216_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4321DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43820C"}}, +"kart_217_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43225C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43828C"}}, +"kart_217_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4322DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43830C"}}, +"kart_217_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43235C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43838C"}}, +"kart_217_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4323DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43840C"}}, +"kart_218_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43245C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43848C"}}, +"kart_218_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4324DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43850C"}}, +"kart_218_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43255C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43858C"}}, +"kart_218_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4325DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43860C"}}, +"kart_219_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43265C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43868C"}}, +"kart_219_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4326DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43870C"}}, +"kart_219_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43275C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43878C"}}, +"kart_219_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4327DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43880C"}}, +"kart_220_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43285C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43888C"}}, +"kart_220_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4328DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43890C"}}, +"kart_220_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43295C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43898C"}}, +"kart_220_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4329DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x438A0C"}}, +"kart_221_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x432A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x438A8C"}}, +"kart_221_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x432ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x438B0C"}}, +"kart_221_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x432B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x438B8C"}}, +"kart_221_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x432BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x438C0C"}}, +"kart_222_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x432C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x438C8C"}}, +"kart_222_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x432CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x438D0C"}}, +"kart_222_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x432D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x438D8C"}}, +"kart_222_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x432DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x438E0C"}}, +"kart_223_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x432E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x438E8C"}}, +"kart_223_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x432EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x438F0C"}}, +"kart_223_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x432F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x438F8C"}}, +"kart_223_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x432FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43900C"}}, +"kart_224_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43305C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43908C"}}, +"kart_224_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4330DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43910C"}}, +"kart_224_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43315C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43918C"}}, +"kart_224_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4331DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43920C"}}, +"kart_225_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43325C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43928C"}}, +"kart_225_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4332DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43930C"}}, +"kart_225_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43335C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43938C"}}, +"kart_225_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4333DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43940C"}}, +"kart_226_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43345C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43948C"}}, +"kart_226_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4334DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43950C"}}, +"kart_226_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43355C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43958C"}}, +"kart_226_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4335DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43960C"}}, +"kart_227_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43365C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43968C"}}, +"kart_227_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4336DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43970C"}}, +"kart_227_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43375C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43978C"}}, +"kart_227_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4337DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43980C"}}, +"kart_228_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43385C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43988C"}}, +"kart_228_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4338DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43990C"}}, +"kart_228_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43395C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43998C"}}, +"kart_228_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4339DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x439A0C"}}, +"kart_229_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x433A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x439A8C"}}, +"kart_229_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x433ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x439B0C"}}, +"kart_229_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x433B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x439B8C"}}, +"kart_229_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x433BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x439C0C"}}, +"kart_230_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x433C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x439C8C"}}, +"kart_230_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x433CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x439D0C"}}, +"kart_230_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x433D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x439D8C"}}, +"kart_230_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x433DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x439E0C"}}, +"kart_231_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x433E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x439E8C"}}, +"kart_231_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x433EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x439F0C"}}, +"kart_231_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x433F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x439F8C"}}, +"kart_231_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x433FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A00C"}}, +"kart_232_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43405C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A08C"}}, +"kart_232_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4340DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A10C"}}, +"kart_232_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43415C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A18C"}}, +"kart_232_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4341DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A20C"}}, +"kart_233_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43425C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A28C"}}, +"kart_233_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4342DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A30C"}}, +"kart_233_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43435C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A38C"}}, +"kart_233_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4343DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A40C"}}, +"kart_234_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43445C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A48C"}}, +"kart_234_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4344DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A50C"}}, +"kart_234_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43455C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A58C"}}, +"kart_234_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4345DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A60C"}}, +"kart_235_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43465C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A68C"}}, +"kart_235_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4346DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A70C"}}, +"kart_235_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43475C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A78C"}}, +"kart_235_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4347DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A80C"}}, +"kart_236_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43485C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A88C"}}, +"kart_236_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4348DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A90C"}}, +"kart_236_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43495C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43A98C"}}, +"kart_236_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4349DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43AA0C"}}, +"kart_237_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x434A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43AA8C"}}, +"kart_237_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x434ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43AB0C"}}, +"kart_237_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x434B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43AB8C"}}, +"kart_237_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x434BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43AC0C"}}, +"kart_238_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x434C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43AC8C"}}, +"kart_238_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x434CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43AD0C"}}, +"kart_238_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x434D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43AD8C"}}, +"kart_238_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x434DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43AE0C"}}, +"kart_239_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x434E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43AE8C"}}, +"kart_239_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x434EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43AF0C"}}, +"kart_239_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x434F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43AF8C"}}, +"kart_239_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x434FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B00C"}}, +"kart_240_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43505C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B08C"}}, +"kart_240_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4350DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B10C"}}, +"kart_240_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43515C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B18C"}}, +"kart_240_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4351DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B20C"}}, +"kart_241_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43525C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B28C"}}, +"kart_241_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4352DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B30C"}}, +"kart_241_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43535C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B38C"}}, +"kart_241_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4353DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B40C"}}, +"kart_242_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43545C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B48C"}}, +"kart_242_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4354DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B50C"}}, +"kart_242_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43555C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B58C"}}, +"kart_242_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4355DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B60C"}}, +"kart_243_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43565C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B68C"}}, +"kart_243_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4356DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B70C"}}, +"kart_243_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43575C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B78C"}}, +"kart_243_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4357DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B80C"}}, +"kart_244_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43585C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B88C"}}, +"kart_244_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4358DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B90C"}}, +"kart_244_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43595C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43B98C"}}, +"kart_244_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4359DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43BA0C"}}, +"kart_245_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x435A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43BA8C"}}, +"kart_245_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x435ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43BB0C"}}, +"kart_245_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x435B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43BB8C"}}, +"kart_245_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x435BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43BC0C"}}, +"kart_246_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x435C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43BC8C"}}, +"kart_246_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x435CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43BD0C"}}, +"kart_246_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x435D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43BD8C"}}, +"kart_246_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x435DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43BE0C"}}, +"kart_247_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x435E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43BE8C"}}, +"kart_247_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x435EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43BF0C"}}, +"kart_247_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x435F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43BF8C"}}, +"kart_247_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x435FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C00C"}}, +"kart_248_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43605C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C08C"}}, +"kart_248_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4360DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C10C"}}, +"kart_248_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43615C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C18C"}}, +"kart_248_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4361DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C20C"}}, +"kart_249_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43625C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C28C"}}, +"kart_249_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4362DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C30C"}}, +"kart_249_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43635C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C38C"}}, +"kart_249_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4363DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C40C"}}, +"kart_250_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43645C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C48C"}}, +"kart_250_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4364DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C50C"}}, +"kart_250_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43655C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C58C"}}, +"kart_250_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4365DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C60C"}}, +"kart_251_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43665C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C68C"}}, +"kart_251_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4366DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C70C"}}, +"kart_251_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43675C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C78C"}}, +"kart_251_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4367DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C80C"}}, +"kart_252_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43685C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C88C"}}, +"kart_252_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4368DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C90C"}}, +"kart_252_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43695C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43C98C"}}, +"kart_252_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4369DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43CA0C"}}, +"kart_253_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x436A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43CA8C"}}, +"kart_253_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x436ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43CB0C"}}, +"kart_253_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x436B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43CB8C"}}, +"kart_253_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x436BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43CC0C"}}, +"kart_254_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x436C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43CC8C"}}, +"kart_254_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x436CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43CD0C"}}, +"kart_254_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x436D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43CD8C"}}, +"kart_254_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x436DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43CE0C"}}, +"kart_255_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x436E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43CE8C"}}, +"kart_255_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x436EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43CF0C"}}, +"kart_255_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x436F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43CF8C"}}, +"kart_255_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x436FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D00C"}}, +"kart_256_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43705C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D08C"}}, +"kart_256_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4370DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D10C"}}, +"kart_256_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43715C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D18C"}}, +"kart_256_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4371DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D20C"}}, +"kart_257_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43725C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D28C"}}, +"kart_257_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4372DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D30C"}}, +"kart_257_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43735C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D38C"}}, +"kart_257_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4373DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D40C"}}, +"kart_258_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43745C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D48C"}}, +"kart_258_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4374DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D50C"}}, +"kart_258_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43755C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D58C"}}, +"kart_258_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4375DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D60C"}}, +"kart_259_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43765C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D68C"}}, +"kart_259_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4376DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D70C"}}, +"kart_259_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43775C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D78C"}}, +"kart_259_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4377DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D80C"}}, +"kart_260_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43785C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D88C"}}, +"kart_260_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4378DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D90C"}}, +"kart_260_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43795C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43D98C"}}, +"kart_260_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4379DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43DA0C"}}, +"kart_261_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x437A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43DA8C"}}, +"kart_261_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x437ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43DB0C"}}, +"kart_261_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x437B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43DB8C"}}, +"kart_261_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x437BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43DC0C"}}, +"kart_262_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x437C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43DC8C"}}, +"kart_262_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x437CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43DD0C"}}, +"kart_262_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x437D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43DD8C"}}, +"kart_262_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x437DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43DE0C"}}, +"kart_263_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x437E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43DE8C"}}, +"kart_263_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x437EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43DF0C"}}, +"kart_263_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x437F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43DF8C"}}, +"kart_263_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x437FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E00C"}}, +"kart_264_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43805C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E08C"}}, +"kart_264_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4380DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E10C"}}, +"kart_264_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43815C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E18C"}}, +"kart_264_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4381DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E20C"}}, +"kart_265_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43825C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E28C"}}, +"kart_265_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4382DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E30C"}}, +"kart_265_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43835C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E38C"}}, +"kart_265_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4383DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E40C"}}, +"kart_266_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43845C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E48C"}}, +"kart_266_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4384DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E50C"}}, +"kart_266_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43855C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E58C"}}, +"kart_266_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4385DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E60C"}}, +"kart_267_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43865C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E68C"}}, +"kart_267_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4386DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E70C"}}, +"kart_267_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43875C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E78C"}}, +"kart_267_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4387DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E80C"}}, +"kart_268_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43885C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E88C"}}, +"kart_268_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4388DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E90C"}}, +"kart_268_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43895C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43E98C"}}, +"kart_268_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4389DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43EA0C"}}, +"kart_269_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x438A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43EA8C"}}, +"kart_269_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x438ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43EB0C"}}, +"kart_269_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x438B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43EB8C"}}, +"kart_269_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x438BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43EC0C"}}, +"kart_270_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x438C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43EC8C"}}, +"kart_270_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x438CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43ED0C"}}, +"kart_270_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x438D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43ED8C"}}, +"kart_270_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x438DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43EE0C"}}, +"kart_271_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x438E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43EE8C"}}, +"kart_271_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x438EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43EF0C"}}, +"kart_271_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x438F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43EF8C"}}, +"kart_271_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x438FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F00C"}}, +"kart_272_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43905C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F08C"}}, +"kart_272_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4390DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F10C"}}, +"kart_272_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43915C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F18C"}}, +"kart_272_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4391DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F20C"}}, +"kart_273_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43925C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F28C"}}, +"kart_273_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4392DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F30C"}}, +"kart_273_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43935C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F38C"}}, +"kart_273_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4393DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F40C"}}, +"kart_274_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43945C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F48C"}}, +"kart_274_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4394DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F50C"}}, +"kart_274_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43955C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F58C"}}, +"kart_274_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4395DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F60C"}}, +"kart_275_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43965C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F68C"}}, +"kart_275_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4396DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F70C"}}, +"kart_275_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43975C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F78C"}}, +"kart_275_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4397DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F80C"}}, +"kart_276_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43985C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F88C"}}, +"kart_276_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x4398DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F90C"}}, +"kart_276_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43995C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43F98C"}}, +"kart_276_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x4399DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43FA0C"}}, +"kart_277_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x439A5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43FA8C"}}, +"kart_277_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x439ADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43FB0C"}}, +"kart_277_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x439B5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43FB8C"}}, +"kart_277_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x439BDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43FC0C"}}, +"kart_278_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x439C5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43FC8C"}}, +"kart_278_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x439CDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43FD0C"}}, +"kart_278_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x439D5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43FD8C"}}, +"kart_278_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x439DDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43FE0C"}}, +"kart_279_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x439E5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43FE8C"}}, +"kart_279_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x439EDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43FF0C"}}, +"kart_279_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x439F5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x43FF8C"}}, +"kart_279_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x439FDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44000C"}}, +"kart_280_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43A05C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44008C"}}, +"kart_280_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x43A0DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44010C"}}, +"kart_280_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43A15C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44018C"}}, +"kart_280_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x43A1DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44020C"}}, +"kart_281_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43A25C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44028C"}}, +"kart_281_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x43A2DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44030C"}}, +"kart_281_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43A35C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44038C"}}, +"kart_281_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x43A3DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44040C"}}, +"kart_282_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43A45C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44048C"}}, +"kart_282_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x43A4DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44050C"}}, +"kart_282_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43A55C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44058C"}}, +"kart_282_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x43A5DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44060C"}}, +"kart_283_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43A65C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44068C"}}, +"kart_283_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x43A6DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44070C"}}, +"kart_283_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43A75C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44078C"}}, +"kart_283_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x43A7DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44080C"}}, +"kart_284_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43A85C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44088C"}}, +"kart_284_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x43A8DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44090C"}}, +"kart_284_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43A95C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44098C"}}, +"kart_284_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x43A9DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x440A0C"}}, +"kart_285_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43AA5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x440A8C"}}, +"kart_285_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x43AADC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x440B0C"}}, +"kart_285_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43AB5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x440B8C"}}, +"kart_285_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x43ABDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x440C0C"}}, +"kart_286_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43AC5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x440C8C"}}, +"kart_286_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x43ACDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x440D0C"}}, +"kart_286_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43AD5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x440D8C"}}, +"kart_286_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x43ADDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x440E0C"}}, +"kart_287_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43AE5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x440E8C"}}, +"kart_287_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x43AEDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x440F0C"}}, +"kart_287_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43AF5C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x440F8C"}}, +"kart_287_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x43AFDC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44100C"}}, +"kart_288_wheel_0": {"output_dir": "wario/palettes", "rom_offset": "0x43B05C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44108C"}}, +"kart_288_wheel_1": {"output_dir": "wario/palettes", "rom_offset": "0x43B0DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44110C"}}, +"kart_288_wheel_2": {"output_dir": "wario/palettes", "rom_offset": "0x43B15C", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44118C"}}, +"kart_288_wheel_3": {"output_dir": "wario/palettes", "rom_offset": "0x43B1DC", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x44120C"}}, +"wario_kart_palette": {"output_dir": "wario/palettes", "rom_offset": "0x43B25C", "width": 16, "height": 12, "type": "rgba16", "jp.v11": {"rom_offset": "0x44128C"}} } \ No newline at end of file diff --git a/assets/karts/yoshi_kart.json b/assets/karts/yoshi_kart.json index 25a293568d..e9303a1e9e 100644 --- a/assets/karts/yoshi_kart.json +++ b/assets/karts/yoshi_kart.json @@ -1,1480 +1,1480 @@ { -"yoshi_kart_frame000": {"output_dir": "yoshi/frames", "rom_offset": "0x272A20", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame001": {"output_dir": "yoshi/frames", "rom_offset": "0x272EF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_001_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame002": {"output_dir": "yoshi/frames", "rom_offset": "0x2733E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_002_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame003": {"output_dir": "yoshi/frames", "rom_offset": "0x2738D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_003_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame004": {"output_dir": "yoshi/frames", "rom_offset": "0x273DC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_004_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame005": {"output_dir": "yoshi/frames", "rom_offset": "0x2742C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_005_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame006": {"output_dir": "yoshi/frames", "rom_offset": "0x2747D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_006_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame007": {"output_dir": "yoshi/frames", "rom_offset": "0x274CFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_007_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame008": {"output_dir": "yoshi/frames", "rom_offset": "0x275234", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_008_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame009": {"output_dir": "yoshi/frames", "rom_offset": "0x27577C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_009_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame010": {"output_dir": "yoshi/frames", "rom_offset": "0x275CE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_010_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame011": {"output_dir": "yoshi/frames", "rom_offset": "0x276258", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_011_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame012": {"output_dir": "yoshi/frames", "rom_offset": "0x2767DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_012_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame013": {"output_dir": "yoshi/frames", "rom_offset": "0x276D4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_013_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame014": {"output_dir": "yoshi/frames", "rom_offset": "0x2772E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_014_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame015": {"output_dir": "yoshi/frames", "rom_offset": "0x277880", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_015_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame016": {"output_dir": "yoshi/frames", "rom_offset": "0x277E38", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_016_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame017": {"output_dir": "yoshi/frames", "rom_offset": "0x278424", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_017_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame018": {"output_dir": "yoshi/frames", "rom_offset": "0x278A1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_018_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame019": {"output_dir": "yoshi/frames", "rom_offset": "0x279020", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_019_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame020": {"output_dir": "yoshi/frames", "rom_offset": "0x279634", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_020_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame021": {"output_dir": "yoshi/frames", "rom_offset": "0x279C58", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_021_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame022": {"output_dir": "yoshi/frames", "rom_offset": "0x27A138", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_022_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame023": {"output_dir": "yoshi/frames", "rom_offset": "0x27A614", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_023_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame024": {"output_dir": "yoshi/frames", "rom_offset": "0x27AAF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_024_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame025": {"output_dir": "yoshi/frames", "rom_offset": "0x27B008", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_025_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame026": {"output_dir": "yoshi/frames", "rom_offset": "0x27B528", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_026_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame027": {"output_dir": "yoshi/frames", "rom_offset": "0x27BA3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_027_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame028": {"output_dir": "yoshi/frames", "rom_offset": "0x27BF7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_028_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame029": {"output_dir": "yoshi/frames", "rom_offset": "0x27C4C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_029_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame030": {"output_dir": "yoshi/frames", "rom_offset": "0x27CA20", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_030_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame031": {"output_dir": "yoshi/frames", "rom_offset": "0x27CF9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_031_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame032": {"output_dir": "yoshi/frames", "rom_offset": "0x27D52C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_032_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame033": {"output_dir": "yoshi/frames", "rom_offset": "0x27DAA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_033_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame034": {"output_dir": "yoshi/frames", "rom_offset": "0x27E040", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_034_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame035": {"output_dir": "yoshi/frames", "rom_offset": "0x27E5E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_035_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame036": {"output_dir": "yoshi/frames", "rom_offset": "0x27EB98", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_036_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame037": {"output_dir": "yoshi/frames", "rom_offset": "0x27F16C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_037_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame038": {"output_dir": "yoshi/frames", "rom_offset": "0x27F74C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_038_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame039": {"output_dir": "yoshi/frames", "rom_offset": "0x27FD48", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_039_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame040": {"output_dir": "yoshi/frames", "rom_offset": "0x280354", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_040_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame041": {"output_dir": "yoshi/frames", "rom_offset": "0x280974", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_041_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame042": {"output_dir": "yoshi/frames", "rom_offset": "0x280F88", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_042_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame043": {"output_dir": "yoshi/frames", "rom_offset": "0x28146C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_043_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame044": {"output_dir": "yoshi/frames", "rom_offset": "0x281958", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_044_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame045": {"output_dir": "yoshi/frames", "rom_offset": "0x281E74", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_045_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame046": {"output_dir": "yoshi/frames", "rom_offset": "0x282388", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_046_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame047": {"output_dir": "yoshi/frames", "rom_offset": "0x2828C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_047_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame048": {"output_dir": "yoshi/frames", "rom_offset": "0x282DF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_048_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame049": {"output_dir": "yoshi/frames", "rom_offset": "0x28334C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_049_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame050": {"output_dir": "yoshi/frames", "rom_offset": "0x2838B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_050_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame051": {"output_dir": "yoshi/frames", "rom_offset": "0x283E28", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_051_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame052": {"output_dir": "yoshi/frames", "rom_offset": "0x2843C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_052_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame053": {"output_dir": "yoshi/frames", "rom_offset": "0x284958", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_053_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame054": {"output_dir": "yoshi/frames", "rom_offset": "0x284EF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_054_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame055": {"output_dir": "yoshi/frames", "rom_offset": "0x28548C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_055_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame056": {"output_dir": "yoshi/frames", "rom_offset": "0x285A30", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_056_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame057": {"output_dir": "yoshi/frames", "rom_offset": "0x285FE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_057_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame058": {"output_dir": "yoshi/frames", "rom_offset": "0x2865B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_058_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame059": {"output_dir": "yoshi/frames", "rom_offset": "0x286B98", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_059_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame060": {"output_dir": "yoshi/frames", "rom_offset": "0x287198", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_060_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame061": {"output_dir": "yoshi/frames", "rom_offset": "0x2877BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_061_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame062": {"output_dir": "yoshi/frames", "rom_offset": "0x287DFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_062_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame063": {"output_dir": "yoshi/frames", "rom_offset": "0x288434", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_063_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame064": {"output_dir": "yoshi/frames", "rom_offset": "0x288940", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_064_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame065": {"output_dir": "yoshi/frames", "rom_offset": "0x288E4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_065_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame066": {"output_dir": "yoshi/frames", "rom_offset": "0x289360", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_066_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame067": {"output_dir": "yoshi/frames", "rom_offset": "0x289890", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_067_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame068": {"output_dir": "yoshi/frames", "rom_offset": "0x289DE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_068_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame069": {"output_dir": "yoshi/frames", "rom_offset": "0x28A330", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_069_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame070": {"output_dir": "yoshi/frames", "rom_offset": "0x28A888", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_070_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame071": {"output_dir": "yoshi/frames", "rom_offset": "0x28ADF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_071_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame072": {"output_dir": "yoshi/frames", "rom_offset": "0x28B374", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_072_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame073": {"output_dir": "yoshi/frames", "rom_offset": "0x28B910", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_073_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame074": {"output_dir": "yoshi/frames", "rom_offset": "0x28BEA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_074_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame075": {"output_dir": "yoshi/frames", "rom_offset": "0x28C430", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_075_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame076": {"output_dir": "yoshi/frames", "rom_offset": "0x28C9C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_076_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame077": {"output_dir": "yoshi/frames", "rom_offset": "0x28CF6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_077_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame078": {"output_dir": "yoshi/frames", "rom_offset": "0x28D524", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_078_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame079": {"output_dir": "yoshi/frames", "rom_offset": "0x28DAF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_079_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame080": {"output_dir": "yoshi/frames", "rom_offset": "0x28E0E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_080_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame081": {"output_dir": "yoshi/frames", "rom_offset": "0x28E6FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_081_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame082": {"output_dir": "yoshi/frames", "rom_offset": "0x28ED18", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_082_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame083": {"output_dir": "yoshi/frames", "rom_offset": "0x28F34C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_083_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame084": {"output_dir": "yoshi/frames", "rom_offset": "0x28F994", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_084_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame085": {"output_dir": "yoshi/frames", "rom_offset": "0x28FEA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_085_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame086": {"output_dir": "yoshi/frames", "rom_offset": "0x2903D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_086_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame087": {"output_dir": "yoshi/frames", "rom_offset": "0x290900", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_087_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame088": {"output_dir": "yoshi/frames", "rom_offset": "0x290E40", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_088_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame089": {"output_dir": "yoshi/frames", "rom_offset": "0x29139C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_089_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame090": {"output_dir": "yoshi/frames", "rom_offset": "0x291910", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_090_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame091": {"output_dir": "yoshi/frames", "rom_offset": "0x291E70", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_091_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame092": {"output_dir": "yoshi/frames", "rom_offset": "0x2923F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_092_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame093": {"output_dir": "yoshi/frames", "rom_offset": "0x292968", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_093_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame094": {"output_dir": "yoshi/frames", "rom_offset": "0x292ED0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_094_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame095": {"output_dir": "yoshi/frames", "rom_offset": "0x293468", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_095_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame096": {"output_dir": "yoshi/frames", "rom_offset": "0x293A04", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_096_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame097": {"output_dir": "yoshi/frames", "rom_offset": "0x293F9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_097_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame098": {"output_dir": "yoshi/frames", "rom_offset": "0x294538", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_098_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame099": {"output_dir": "yoshi/frames", "rom_offset": "0x294AEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_099_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame100": {"output_dir": "yoshi/frames", "rom_offset": "0x2950DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_100_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame101": {"output_dir": "yoshi/frames", "rom_offset": "0x2956D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_101_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame102": {"output_dir": "yoshi/frames", "rom_offset": "0x295CF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_102_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame103": {"output_dir": "yoshi/frames", "rom_offset": "0x296320", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_103_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame104": {"output_dir": "yoshi/frames", "rom_offset": "0x29695C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_104_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame105": {"output_dir": "yoshi/frames", "rom_offset": "0x296FB4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_105_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame106": {"output_dir": "yoshi/frames", "rom_offset": "0x2974F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_106_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame107": {"output_dir": "yoshi/frames", "rom_offset": "0x297A34", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_107_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame108": {"output_dir": "yoshi/frames", "rom_offset": "0x297F84", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_108_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame109": {"output_dir": "yoshi/frames", "rom_offset": "0x2984D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_109_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame110": {"output_dir": "yoshi/frames", "rom_offset": "0x298A2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_110_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame111": {"output_dir": "yoshi/frames", "rom_offset": "0x298F9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_111_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame112": {"output_dir": "yoshi/frames", "rom_offset": "0x299524", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_112_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame113": {"output_dir": "yoshi/frames", "rom_offset": "0x299AA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_113_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame114": {"output_dir": "yoshi/frames", "rom_offset": "0x29A028", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_114_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame115": {"output_dir": "yoshi/frames", "rom_offset": "0x29A5A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_115_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame116": {"output_dir": "yoshi/frames", "rom_offset": "0x29AB4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_116_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame117": {"output_dir": "yoshi/frames", "rom_offset": "0x29B0E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_117_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame118": {"output_dir": "yoshi/frames", "rom_offset": "0x29B688", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_118_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame119": {"output_dir": "yoshi/frames", "rom_offset": "0x29BC34", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_119_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame120": {"output_dir": "yoshi/frames", "rom_offset": "0x29C1F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_120_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame121": {"output_dir": "yoshi/frames", "rom_offset": "0x29C7D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_121_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame122": {"output_dir": "yoshi/frames", "rom_offset": "0x29CDC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_122_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame123": {"output_dir": "yoshi/frames", "rom_offset": "0x29D3D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_123_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame124": {"output_dir": "yoshi/frames", "rom_offset": "0x29DA28", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_124_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame125": {"output_dir": "yoshi/frames", "rom_offset": "0x29E084", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_125_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame126": {"output_dir": "yoshi/frames", "rom_offset": "0x29E6F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_126_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame127": {"output_dir": "yoshi/frames", "rom_offset": "0x29EC40", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_127_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame128": {"output_dir": "yoshi/frames", "rom_offset": "0x29F18C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_128_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame129": {"output_dir": "yoshi/frames", "rom_offset": "0x29F700", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_129_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame130": {"output_dir": "yoshi/frames", "rom_offset": "0x29FC7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_130_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame131": {"output_dir": "yoshi/frames", "rom_offset": "0x2A0210", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_131_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame132": {"output_dir": "yoshi/frames", "rom_offset": "0x2A0788", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_132_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame133": {"output_dir": "yoshi/frames", "rom_offset": "0x2A0CFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_133_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame134": {"output_dir": "yoshi/frames", "rom_offset": "0x2A1268", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_134_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame135": {"output_dir": "yoshi/frames", "rom_offset": "0x2A17D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_135_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame136": {"output_dir": "yoshi/frames", "rom_offset": "0x2A1D74", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_136_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame137": {"output_dir": "yoshi/frames", "rom_offset": "0x2A2304", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_137_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame138": {"output_dir": "yoshi/frames", "rom_offset": "0x2A2890", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_138_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame139": {"output_dir": "yoshi/frames", "rom_offset": "0x2A2E28", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_139_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame140": {"output_dir": "yoshi/frames", "rom_offset": "0x2A33D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_140_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame141": {"output_dir": "yoshi/frames", "rom_offset": "0x2A3998", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_141_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame142": {"output_dir": "yoshi/frames", "rom_offset": "0x2A3F70", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_142_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame143": {"output_dir": "yoshi/frames", "rom_offset": "0x2A4564", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_143_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame144": {"output_dir": "yoshi/frames", "rom_offset": "0x2A4B78", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_144_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame145": {"output_dir": "yoshi/frames", "rom_offset": "0x2A51B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_145_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame146": {"output_dir": "yoshi/frames", "rom_offset": "0x2A5814", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_146_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame147": {"output_dir": "yoshi/frames", "rom_offset": "0x2A5E7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_147_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame148": {"output_dir": "yoshi/frames", "rom_offset": "0x2A63DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_148_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame149": {"output_dir": "yoshi/frames", "rom_offset": "0x2A6954", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_149_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame150": {"output_dir": "yoshi/frames", "rom_offset": "0x2A6EE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_150_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame151": {"output_dir": "yoshi/frames", "rom_offset": "0x2A7464", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_151_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame152": {"output_dir": "yoshi/frames", "rom_offset": "0x2A79FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_152_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame153": {"output_dir": "yoshi/frames", "rom_offset": "0x2A7F7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_153_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame154": {"output_dir": "yoshi/frames", "rom_offset": "0x2A84F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_154_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame155": {"output_dir": "yoshi/frames", "rom_offset": "0x2A8A90", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_155_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame156": {"output_dir": "yoshi/frames", "rom_offset": "0x2A9028", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_156_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame157": {"output_dir": "yoshi/frames", "rom_offset": "0x2A9598", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_157_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame158": {"output_dir": "yoshi/frames", "rom_offset": "0x2A9B34", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_158_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame159": {"output_dir": "yoshi/frames", "rom_offset": "0x2AA0C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_159_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame160": {"output_dir": "yoshi/frames", "rom_offset": "0x2AA668", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_160_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame161": {"output_dir": "yoshi/frames", "rom_offset": "0x2AAC14", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_161_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame162": {"output_dir": "yoshi/frames", "rom_offset": "0x2AB1D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_162_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame163": {"output_dir": "yoshi/frames", "rom_offset": "0x2AB7A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_163_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame164": {"output_dir": "yoshi/frames", "rom_offset": "0x2ABD94", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_164_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame165": {"output_dir": "yoshi/frames", "rom_offset": "0x2AC3AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_165_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame166": {"output_dir": "yoshi/frames", "rom_offset": "0x2AC9F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_166_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame167": {"output_dir": "yoshi/frames", "rom_offset": "0x2AD054", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_167_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame168": {"output_dir": "yoshi/frames", "rom_offset": "0x2AD6CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_168_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame169": {"output_dir": "yoshi/frames", "rom_offset": "0x2ADC40", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_169_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame170": {"output_dir": "yoshi/frames", "rom_offset": "0x2AE1D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_170_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame171": {"output_dir": "yoshi/frames", "rom_offset": "0x2AE778", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_171_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame172": {"output_dir": "yoshi/frames", "rom_offset": "0x2AED10", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_172_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame173": {"output_dir": "yoshi/frames", "rom_offset": "0x2AF2B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_173_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame174": {"output_dir": "yoshi/frames", "rom_offset": "0x2AF850", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_174_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame175": {"output_dir": "yoshi/frames", "rom_offset": "0x2AFDE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_175_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame176": {"output_dir": "yoshi/frames", "rom_offset": "0x2B0358", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_176_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame177": {"output_dir": "yoshi/frames", "rom_offset": "0x2B08E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_177_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame178": {"output_dir": "yoshi/frames", "rom_offset": "0x2B0E74", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_178_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame179": {"output_dir": "yoshi/frames", "rom_offset": "0x2B1410", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_179_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame180": {"output_dir": "yoshi/frames", "rom_offset": "0x2B199C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_180_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame181": {"output_dir": "yoshi/frames", "rom_offset": "0x2B1F34", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_181_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame182": {"output_dir": "yoshi/frames", "rom_offset": "0x2B24D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_182_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame183": {"output_dir": "yoshi/frames", "rom_offset": "0x2B2A88", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_183_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame184": {"output_dir": "yoshi/frames", "rom_offset": "0x2B306C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_184_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame185": {"output_dir": "yoshi/frames", "rom_offset": "0x2B3658", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_185_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame186": {"output_dir": "yoshi/frames", "rom_offset": "0x2B3C84", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_186_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame187": {"output_dir": "yoshi/frames", "rom_offset": "0x2B42E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_187_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame188": {"output_dir": "yoshi/frames", "rom_offset": "0x2B4960", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_188_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame189": {"output_dir": "yoshi/frames", "rom_offset": "0x2B4FD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_189_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame190": {"output_dir": "yoshi/frames", "rom_offset": "0x2B54D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_190_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame191": {"output_dir": "yoshi/frames", "rom_offset": "0x2B59F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_191_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame192": {"output_dir": "yoshi/frames", "rom_offset": "0x2B5F64", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_192_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame193": {"output_dir": "yoshi/frames", "rom_offset": "0x2B64F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_193_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame194": {"output_dir": "yoshi/frames", "rom_offset": "0x2B6ABC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_194_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame195": {"output_dir": "yoshi/frames", "rom_offset": "0x2B70B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_195_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame196": {"output_dir": "yoshi/frames", "rom_offset": "0x2B76D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_196_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame197": {"output_dir": "yoshi/frames", "rom_offset": "0x2B7D20", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_197_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame198": {"output_dir": "yoshi/frames", "rom_offset": "0x2B838C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_198_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame199": {"output_dir": "yoshi/frames", "rom_offset": "0x2B8A0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_199_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame200": {"output_dir": "yoshi/frames", "rom_offset": "0x2B9094", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_200_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame201": {"output_dir": "yoshi/frames", "rom_offset": "0x2B9738", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_201_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame202": {"output_dir": "yoshi/frames", "rom_offset": "0x2B9DF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_202_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame203": {"output_dir": "yoshi/frames", "rom_offset": "0x2BA494", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_203_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame204": {"output_dir": "yoshi/frames", "rom_offset": "0x2BAB28", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_204_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame205": {"output_dir": "yoshi/frames", "rom_offset": "0x2BB19C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_205_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame206": {"output_dir": "yoshi/frames", "rom_offset": "0x2BB7E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_206_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame207": {"output_dir": "yoshi/frames", "rom_offset": "0x2BBDE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_207_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame208": {"output_dir": "yoshi/frames", "rom_offset": "0x2BC3C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_208_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame209": {"output_dir": "yoshi/frames", "rom_offset": "0x2BC97C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_209_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame210": {"output_dir": "yoshi/frames", "rom_offset": "0x2BCEA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_210_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame211": {"output_dir": "yoshi/frames", "rom_offset": "0x2BD40C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_211_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame212": {"output_dir": "yoshi/frames", "rom_offset": "0x2BD9C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_212_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame213": {"output_dir": "yoshi/frames", "rom_offset": "0x2BDF94", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_213_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame214": {"output_dir": "yoshi/frames", "rom_offset": "0x2BE59C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_214_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame215": {"output_dir": "yoshi/frames", "rom_offset": "0x2BEBC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_215_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame216": {"output_dir": "yoshi/frames", "rom_offset": "0x2BF218", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_216_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame217": {"output_dir": "yoshi/frames", "rom_offset": "0x2BF860", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_217_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame218": {"output_dir": "yoshi/frames", "rom_offset": "0x2BFED0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_218_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame219": {"output_dir": "yoshi/frames", "rom_offset": "0x2C054C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_219_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame220": {"output_dir": "yoshi/frames", "rom_offset": "0x2C0BCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_220_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame221": {"output_dir": "yoshi/frames", "rom_offset": "0x2C125C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_221_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame222": {"output_dir": "yoshi/frames", "rom_offset": "0x2C18F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_222_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame223": {"output_dir": "yoshi/frames", "rom_offset": "0x2C1F6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_223_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame224": {"output_dir": "yoshi/frames", "rom_offset": "0x2C25B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_224_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame225": {"output_dir": "yoshi/frames", "rom_offset": "0x2C2BE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_225_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame226": {"output_dir": "yoshi/frames", "rom_offset": "0x2C31D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_226_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame227": {"output_dir": "yoshi/frames", "rom_offset": "0x2C3798", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_227_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame228": {"output_dir": "yoshi/frames", "rom_offset": "0x2C3D20", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_228_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame229": {"output_dir": "yoshi/frames", "rom_offset": "0x2C4278", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_229_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame230": {"output_dir": "yoshi/frames", "rom_offset": "0x2C47C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_230_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame231": {"output_dir": "yoshi/frames", "rom_offset": "0x2C4D54", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_231_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame232": {"output_dir": "yoshi/frames", "rom_offset": "0x2C5314", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_232_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame233": {"output_dir": "yoshi/frames", "rom_offset": "0x2C591C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_233_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame234": {"output_dir": "yoshi/frames", "rom_offset": "0x2C5F28", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_234_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame235": {"output_dir": "yoshi/frames", "rom_offset": "0x2C6554", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_235_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame236": {"output_dir": "yoshi/frames", "rom_offset": "0x2C6BC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_236_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame237": {"output_dir": "yoshi/frames", "rom_offset": "0x2C7234", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_237_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame238": {"output_dir": "yoshi/frames", "rom_offset": "0x2C78B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_238_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame239": {"output_dir": "yoshi/frames", "rom_offset": "0x2C7F34", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_239_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame240": {"output_dir": "yoshi/frames", "rom_offset": "0x2C85B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_240_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame241": {"output_dir": "yoshi/frames", "rom_offset": "0x2C8C3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_241_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame242": {"output_dir": "yoshi/frames", "rom_offset": "0x2C92A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_242_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame243": {"output_dir": "yoshi/frames", "rom_offset": "0x2C9900", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_243_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame244": {"output_dir": "yoshi/frames", "rom_offset": "0x2C9F30", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_244_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame245": {"output_dir": "yoshi/frames", "rom_offset": "0x2CA520", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_245_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame246": {"output_dir": "yoshi/frames", "rom_offset": "0x2CAAF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_246_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame247": {"output_dir": "yoshi/frames", "rom_offset": "0x2CB0A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_247_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame248": {"output_dir": "yoshi/frames", "rom_offset": "0x2CB5F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_248_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame249": {"output_dir": "yoshi/frames", "rom_offset": "0x2CBB04", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_249_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame250": {"output_dir": "yoshi/frames", "rom_offset": "0x2CC07C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_250_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame251": {"output_dir": "yoshi/frames", "rom_offset": "0x2CC61C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_251_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame252": {"output_dir": "yoshi/frames", "rom_offset": "0x2CCBE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_252_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame253": {"output_dir": "yoshi/frames", "rom_offset": "0x2CD1F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_253_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame254": {"output_dir": "yoshi/frames", "rom_offset": "0x2CD820", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_254_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame255": {"output_dir": "yoshi/frames", "rom_offset": "0x2CDE78", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_255_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame256": {"output_dir": "yoshi/frames", "rom_offset": "0x2CE4EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_256_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame257": {"output_dir": "yoshi/frames", "rom_offset": "0x2CEB70", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_257_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame258": {"output_dir": "yoshi/frames", "rom_offset": "0x2CF200", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_258_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame259": {"output_dir": "yoshi/frames", "rom_offset": "0x2CF88C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_259_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame260": {"output_dir": "yoshi/frames", "rom_offset": "0x2CFF20", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_260_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame261": {"output_dir": "yoshi/frames", "rom_offset": "0x2D0584", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_261_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame262": {"output_dir": "yoshi/frames", "rom_offset": "0x2D0BF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_262_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame263": {"output_dir": "yoshi/frames", "rom_offset": "0x2D122C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_263_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame264": {"output_dir": "yoshi/frames", "rom_offset": "0x2D1814", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_264_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame265": {"output_dir": "yoshi/frames", "rom_offset": "0x2D1DE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_265_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame266": {"output_dir": "yoshi/frames", "rom_offset": "0x2D2358", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_266_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame267": {"output_dir": "yoshi/frames", "rom_offset": "0x2D289C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_267_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame268": {"output_dir": "yoshi/frames", "rom_offset": "0x2D2DC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_268_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame269": {"output_dir": "yoshi/frames", "rom_offset": "0x2D32B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_269_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame270": {"output_dir": "yoshi/frames", "rom_offset": "0x2D3864", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_270_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame271": {"output_dir": "yoshi/frames", "rom_offset": "0x2D3E38", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_271_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame272": {"output_dir": "yoshi/frames", "rom_offset": "0x2D4434", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_272_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame273": {"output_dir": "yoshi/frames", "rom_offset": "0x2D4A50", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_273_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame274": {"output_dir": "yoshi/frames", "rom_offset": "0x2D50A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_274_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame275": {"output_dir": "yoshi/frames", "rom_offset": "0x2D570C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_275_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame276": {"output_dir": "yoshi/frames", "rom_offset": "0x2D5DA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_276_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame277": {"output_dir": "yoshi/frames", "rom_offset": "0x2D641C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_277_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame278": {"output_dir": "yoshi/frames", "rom_offset": "0x2D6A84", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_278_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame279": {"output_dir": "yoshi/frames", "rom_offset": "0x2D7104", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_279_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame280": {"output_dir": "yoshi/frames", "rom_offset": "0x2D776C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_280_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame281": {"output_dir": "yoshi/frames", "rom_offset": "0x2D7DBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_281_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame282": {"output_dir": "yoshi/frames", "rom_offset": "0x2D83F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_282_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame283": {"output_dir": "yoshi/frames", "rom_offset": "0x2D89F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_283_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame284": {"output_dir": "yoshi/frames", "rom_offset": "0x2D8FC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_284_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame285": {"output_dir": "yoshi/frames", "rom_offset": "0x2D9558", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_285_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame286": {"output_dir": "yoshi/frames", "rom_offset": "0x2D9AA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_286_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame287": {"output_dir": "yoshi/frames", "rom_offset": "0x2D9F98", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_287_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame288": {"output_dir": "yoshi/frames", "rom_offset": "0x2DA464", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_288_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame289": {"output_dir": "yoshi/frames", "rom_offset": "0x2DA8F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame290": {"output_dir": "yoshi/frames", "rom_offset": "0x2DADE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame291": {"output_dir": "yoshi/frames", "rom_offset": "0x2DB32C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame292": {"output_dir": "yoshi/frames", "rom_offset": "0x2DB8F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame293": {"output_dir": "yoshi/frames", "rom_offset": "0x2DBF80", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame294": {"output_dir": "yoshi/frames", "rom_offset": "0x2DC574", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame295": {"output_dir": "yoshi/frames", "rom_offset": "0x2DCB78", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame296": {"output_dir": "yoshi/frames", "rom_offset": "0x2DD13C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame297": {"output_dir": "yoshi/frames", "rom_offset": "0x2DD680", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame298": {"output_dir": "yoshi/frames", "rom_offset": "0x2DDB3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame299": {"output_dir": "yoshi/frames", "rom_offset": "0x2DE098", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame300": {"output_dir": "yoshi/frames", "rom_offset": "0x2DE64C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame301": {"output_dir": "yoshi/frames", "rom_offset": "0x2DEC2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame302": {"output_dir": "yoshi/frames", "rom_offset": "0x2DF1E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame303": {"output_dir": "yoshi/frames", "rom_offset": "0x2DF788", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame304": {"output_dir": "yoshi/frames", "rom_offset": "0x2DFD30", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame305": {"output_dir": "yoshi/frames", "rom_offset": "0x2E0284", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame306": {"output_dir": "yoshi/frames", "rom_offset": "0x2E06E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame307": {"output_dir": "yoshi/frames", "rom_offset": "0x2E0C3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame308": {"output_dir": "yoshi/frames", "rom_offset": "0x2E1250", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame309": {"output_dir": "yoshi/frames", "rom_offset": "0x2E189C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame310": {"output_dir": "yoshi/frames", "rom_offset": "0x2E1E90", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame311": {"output_dir": "yoshi/frames", "rom_offset": "0x2E24A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame312": {"output_dir": "yoshi/frames", "rom_offset": "0x2E2A5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame313": {"output_dir": "yoshi/frames", "rom_offset": "0x2E2F70", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame314": {"output_dir": "yoshi/frames", "rom_offset": "0x2E3440", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame315": {"output_dir": "yoshi/frames", "rom_offset": "0x2E39A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame316": {"output_dir": "yoshi/frames", "rom_offset": "0x2E3F2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame317": {"output_dir": "yoshi/frames", "rom_offset": "0x2E44E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame318": {"output_dir": "yoshi/frames", "rom_offset": "0x2E4AAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame319": {"output_dir": "yoshi/frames", "rom_offset": "0x2E5054", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"yoshi_kart_frame320": {"output_dir": "yoshi/frames", "rom_offset": "0x2E5628", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"]}, -"kart_000_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E5BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E5C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E5CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_000_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E5D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E5DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E5E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E5EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_001_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E5F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E5FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E60C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_002_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E61C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E62C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_003_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E63C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E64C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_004_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E65C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E66C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_005_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E67C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E68C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_006_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E69C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_007_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_008_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_009_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E70C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_010_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E71C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E72C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_011_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E73C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E74C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_012_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E75C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E76C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_013_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E77C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E78C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_014_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E79C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_015_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_016_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_017_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E80C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_018_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E81C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E82C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_019_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E83C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E84C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_020_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E85C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E86C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_021_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E87C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E88C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_022_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E89C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_023_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_024_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_025_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E90C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_026_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E91C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E92C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_027_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E93C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E94C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_028_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E95C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E96C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_029_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E97C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E98C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_030_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E99C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_031_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_032_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_033_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_034_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_035_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_036_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_037_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_038_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EAA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EAAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_039_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EAB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EABC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EAC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EACC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_040_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EAD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EADC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EAE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EAEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_041_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EAF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EAFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_042_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_043_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_044_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_045_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_046_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_047_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBCC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_048_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_049_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_050_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_051_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_052_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_053_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_054_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_055_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECCC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_056_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_057_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_058_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_059_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_060_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_061_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_062_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_063_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDCC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_064_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_065_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_066_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_067_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_068_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_069_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_070_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_071_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EECC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_072_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EED48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_073_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_074_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_075_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_076_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_077_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_078_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_079_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFCC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_080_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_081_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F00C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_082_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F01C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F02C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_083_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F03C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F04C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_084_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F05C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F06C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_085_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F07C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F08C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_086_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F09C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_087_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_088_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_089_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F10C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_090_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F11C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F12C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_091_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F13C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F14C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_092_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F15C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F16C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_093_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F17C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F18C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_094_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F19C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_095_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_096_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_097_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F20C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_098_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F21C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F22C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_099_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F23C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F24C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_100_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F25C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F26C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_101_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F27C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F28C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_102_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F29C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_103_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_104_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_105_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F30C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_106_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F31C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F32C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_107_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F33C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F34C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_108_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F35C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F36C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_109_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F37C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F38C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_110_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F39C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_111_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_112_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_113_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F40C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_114_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F41C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F42C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_115_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F43C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F44C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_116_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F45C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F46C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_117_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F47C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F48C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_118_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F49C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_119_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_120_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_121_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F50C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_122_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F51C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F52C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_123_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F53C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F54C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_124_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F55C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F56C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_125_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F57C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F58C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_126_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F59C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_127_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_128_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_129_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F60C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_130_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F61C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F62C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_131_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F63C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F64C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_132_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F65C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F66C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_133_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F67C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F68C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_134_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F69C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_135_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_136_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_137_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F70C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_138_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F71C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F72C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_139_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F73C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F74C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_140_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F75C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F76C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_141_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F77C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F78C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_142_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F79C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_143_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_144_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_145_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F80C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_146_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F81C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F82C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_147_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F83C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F84C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_148_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F85C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F86C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_149_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F87C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F88C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_150_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F89C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_151_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_152_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_153_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F90C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_154_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F91C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F92C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_155_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F93C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F94C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_156_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F95C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F96C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_157_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F97C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F98C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_158_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F99C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_159_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_160_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_161_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_162_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_163_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_164_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_165_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_166_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FAA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FAAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_167_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FAB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FABC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FAC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FACC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_168_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FAD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FADC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FAE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FAEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_169_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FAF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FAFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_170_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_171_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_172_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_173_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_174_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_175_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBCC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_176_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_177_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_178_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_179_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_180_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_181_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_182_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_183_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCCC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_184_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_185_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_186_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_187_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_188_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_189_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_190_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_191_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDCC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_192_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_193_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_194_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_195_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_196_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_197_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_198_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_199_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FECC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_200_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FED48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_201_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF0C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_202_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF1C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF2C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_203_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF3C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF4C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_204_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF5C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF6C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_205_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF7C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF8C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_206_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF9C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFA48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFAC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_207_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFB48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFBC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFC48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFCC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_208_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFD48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFDC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFE48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFEC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_209_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFF48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFFC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x300048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3000C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_210_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x300148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3001C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x300248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3002C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_211_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x300348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3003C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x300448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3004C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_212_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x300548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3005C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x300648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3006C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_213_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x300748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3007C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x300848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3008C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_214_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x300948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3009C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x300A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x300AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_215_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x300B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x300BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x300C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x300CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_216_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x300D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x300DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x300E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x300EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_217_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x300F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x300FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x301048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3010C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_218_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x301148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3011C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x301248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3012C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_219_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x301348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3013C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x301448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3014C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_220_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x301548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3015C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x301648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3016C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_221_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x301748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3017C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x301848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3018C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_222_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x301948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3019C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x301A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x301AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_223_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x301B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x301BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x301C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x301CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_224_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x301D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x301DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x301E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x301EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_225_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x301F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x301FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x302048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3020C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_226_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x302148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3021C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x302248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3022C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_227_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x302348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3023C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x302448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3024C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_228_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x302548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3025C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x302648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3026C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_229_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x302748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3027C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x302848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3028C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_230_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x302948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3029C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x302A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x302AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_231_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x302B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x302BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x302C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x302CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_232_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x302D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x302DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x302E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x302EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_233_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x302F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x302FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x303048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3030C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_234_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x303148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3031C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x303248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3032C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_235_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x303348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3033C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x303448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3034C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_236_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x303548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3035C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x303648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3036C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_237_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x303748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3037C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x303848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3038C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_238_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x303948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3039C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x303A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x303AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_239_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x303B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x303BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x303C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x303CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_240_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x303D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x303DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x303E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x303EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_241_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x303F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x303FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x304048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3040C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_242_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x304148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3041C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x304248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3042C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_243_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x304348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3043C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x304448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3044C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_244_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x304548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3045C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x304648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3046C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_245_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x304748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3047C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x304848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3048C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_246_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x304948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3049C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x304A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x304AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_247_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x304B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x304BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x304C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x304CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_248_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x304D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x304DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x304E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x304EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_249_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x304F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x304FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x305048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3050C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_250_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x305148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3051C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x305248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3052C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_251_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x305348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3053C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x305448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3054C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_252_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x305548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3055C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x305648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3056C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_253_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x305748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3057C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x305848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3058C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_254_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x305948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3059C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x305A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x305AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_255_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x305B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x305BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x305C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x305CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_256_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x305D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x305DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x305E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x305EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_257_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x305F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x305FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x306048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3060C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_258_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x306148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3061C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x306248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3062C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_259_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x306348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3063C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x306448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3064C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_260_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x306548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3065C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x306648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3066C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_261_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x306748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3067C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x306848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3068C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_262_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x306948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3069C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x306A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x306AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_263_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x306B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x306BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x306C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x306CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_264_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x306D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x306DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x306E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x306EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_265_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x306F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x306FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x307048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3070C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_266_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x307148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3071C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x307248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3072C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_267_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x307348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3073C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x307448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3074C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_268_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x307548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3075C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x307648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3076C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_269_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x307748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3077C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x307848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3078C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_270_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x307948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3079C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x307A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x307AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_271_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x307B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x307BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x307C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x307CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_272_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x307D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x307DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x307E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x307EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_273_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x307F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x307FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x308048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3080C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_274_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x308148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3081C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x308248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3082C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_275_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x308348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3083C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x308448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3084C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_276_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x308548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3085C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x308648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3086C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_277_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x308748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3087C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x308848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3088C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_278_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x308948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3089C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x308A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x308AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_279_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x308B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x308BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x308C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x308CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_280_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x308D48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x308DC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x308E48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x308EC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_281_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x308F48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x308FC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x309048", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3090C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_282_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x309148", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3091C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x309248", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3092C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_283_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x309348", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3093C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x309448", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3094C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_284_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x309548", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3095C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x309648", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3096C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_285_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x309748", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3097C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x309848", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3098C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_286_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x309948", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3099C8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x309A48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x309AC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_287_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x309B48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x309BC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x309C48", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x309CC8", "width": 16, "height": 4, "type": "rgba16"}, -"kart_288_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x309D48", "width": 16, "height": 4, "type": "rgba16"}, -"yoshi_kart_palette": {"output_dir": "yoshi/palettes", "rom_offset": "0x309DC8", "width": 16, "height": 12, "type": "rgba16"} +"yoshi_kart_frame000": {"output_dir": "yoshi/frames", "rom_offset": "0x272A20", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x278A50"}}, +"yoshi_kart_frame001": {"output_dir": "yoshi/frames", "rom_offset": "0x272EF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_001_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x278F20"}}, +"yoshi_kart_frame002": {"output_dir": "yoshi/frames", "rom_offset": "0x2733E8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_002_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x279418"}}, +"yoshi_kart_frame003": {"output_dir": "yoshi/frames", "rom_offset": "0x2738D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_003_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x279904"}}, +"yoshi_kart_frame004": {"output_dir": "yoshi/frames", "rom_offset": "0x273DC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_004_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x279DF4"}}, +"yoshi_kart_frame005": {"output_dir": "yoshi/frames", "rom_offset": "0x2742C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_005_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x27A2F8"}}, +"yoshi_kart_frame006": {"output_dir": "yoshi/frames", "rom_offset": "0x2747D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_006_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x27A804"}}, +"yoshi_kart_frame007": {"output_dir": "yoshi/frames", "rom_offset": "0x274CFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_007_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x27AD2C"}}, +"yoshi_kart_frame008": {"output_dir": "yoshi/frames", "rom_offset": "0x275234", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_008_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x27B264"}}, +"yoshi_kart_frame009": {"output_dir": "yoshi/frames", "rom_offset": "0x27577C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_009_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x27B7AC"}}, +"yoshi_kart_frame010": {"output_dir": "yoshi/frames", "rom_offset": "0x275CE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_010_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x27BD10"}}, +"yoshi_kart_frame011": {"output_dir": "yoshi/frames", "rom_offset": "0x276258", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_011_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x27C288"}}, +"yoshi_kart_frame012": {"output_dir": "yoshi/frames", "rom_offset": "0x2767DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_012_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x27C80C"}}, +"yoshi_kart_frame013": {"output_dir": "yoshi/frames", "rom_offset": "0x276D4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_013_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x27CD7C"}}, +"yoshi_kart_frame014": {"output_dir": "yoshi/frames", "rom_offset": "0x2772E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_014_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x27D310"}}, +"yoshi_kart_frame015": {"output_dir": "yoshi/frames", "rom_offset": "0x277880", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_015_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x27D8B0"}}, +"yoshi_kart_frame016": {"output_dir": "yoshi/frames", "rom_offset": "0x277E38", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_016_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x27DE68"}}, +"yoshi_kart_frame017": {"output_dir": "yoshi/frames", "rom_offset": "0x278424", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_017_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x27E454"}}, +"yoshi_kart_frame018": {"output_dir": "yoshi/frames", "rom_offset": "0x278A1C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_018_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x27EA4C"}}, +"yoshi_kart_frame019": {"output_dir": "yoshi/frames", "rom_offset": "0x279020", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_019_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x27F050"}}, +"yoshi_kart_frame020": {"output_dir": "yoshi/frames", "rom_offset": "0x279634", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_020_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x27F664"}}, +"yoshi_kart_frame021": {"output_dir": "yoshi/frames", "rom_offset": "0x279C58", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_021_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x27FC88"}}, +"yoshi_kart_frame022": {"output_dir": "yoshi/frames", "rom_offset": "0x27A138", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_022_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x280168"}}, +"yoshi_kart_frame023": {"output_dir": "yoshi/frames", "rom_offset": "0x27A614", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_023_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x280644"}}, +"yoshi_kart_frame024": {"output_dir": "yoshi/frames", "rom_offset": "0x27AAF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_024_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x280B28"}}, +"yoshi_kart_frame025": {"output_dir": "yoshi/frames", "rom_offset": "0x27B008", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_025_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x281038"}}, +"yoshi_kart_frame026": {"output_dir": "yoshi/frames", "rom_offset": "0x27B528", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_026_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x281558"}}, +"yoshi_kart_frame027": {"output_dir": "yoshi/frames", "rom_offset": "0x27BA3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_027_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x281A6C"}}, +"yoshi_kart_frame028": {"output_dir": "yoshi/frames", "rom_offset": "0x27BF7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_028_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x281FAC"}}, +"yoshi_kart_frame029": {"output_dir": "yoshi/frames", "rom_offset": "0x27C4C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_029_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2824F4"}}, +"yoshi_kart_frame030": {"output_dir": "yoshi/frames", "rom_offset": "0x27CA20", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_030_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x282A50"}}, +"yoshi_kart_frame031": {"output_dir": "yoshi/frames", "rom_offset": "0x27CF9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_031_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x282FCC"}}, +"yoshi_kart_frame032": {"output_dir": "yoshi/frames", "rom_offset": "0x27D52C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_032_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28355C"}}, +"yoshi_kart_frame033": {"output_dir": "yoshi/frames", "rom_offset": "0x27DAA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_033_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x283AD8"}}, +"yoshi_kart_frame034": {"output_dir": "yoshi/frames", "rom_offset": "0x27E040", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_034_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x284070"}}, +"yoshi_kart_frame035": {"output_dir": "yoshi/frames", "rom_offset": "0x27E5E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_035_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x284610"}}, +"yoshi_kart_frame036": {"output_dir": "yoshi/frames", "rom_offset": "0x27EB98", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_036_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x284BC8"}}, +"yoshi_kart_frame037": {"output_dir": "yoshi/frames", "rom_offset": "0x27F16C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_037_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28519C"}}, +"yoshi_kart_frame038": {"output_dir": "yoshi/frames", "rom_offset": "0x27F74C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_038_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28577C"}}, +"yoshi_kart_frame039": {"output_dir": "yoshi/frames", "rom_offset": "0x27FD48", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_039_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x285D78"}}, +"yoshi_kart_frame040": {"output_dir": "yoshi/frames", "rom_offset": "0x280354", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_040_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x286384"}}, +"yoshi_kart_frame041": {"output_dir": "yoshi/frames", "rom_offset": "0x280974", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_041_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2869A4"}}, +"yoshi_kart_frame042": {"output_dir": "yoshi/frames", "rom_offset": "0x280F88", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_042_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x286FB8"}}, +"yoshi_kart_frame043": {"output_dir": "yoshi/frames", "rom_offset": "0x28146C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_043_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28749C"}}, +"yoshi_kart_frame044": {"output_dir": "yoshi/frames", "rom_offset": "0x281958", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_044_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x287988"}}, +"yoshi_kart_frame045": {"output_dir": "yoshi/frames", "rom_offset": "0x281E74", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_045_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x287EA4"}}, +"yoshi_kart_frame046": {"output_dir": "yoshi/frames", "rom_offset": "0x282388", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_046_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2883B8"}}, +"yoshi_kart_frame047": {"output_dir": "yoshi/frames", "rom_offset": "0x2828C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_047_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2888F0"}}, +"yoshi_kart_frame048": {"output_dir": "yoshi/frames", "rom_offset": "0x282DF8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_048_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x288E28"}}, +"yoshi_kart_frame049": {"output_dir": "yoshi/frames", "rom_offset": "0x28334C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_049_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28937C"}}, +"yoshi_kart_frame050": {"output_dir": "yoshi/frames", "rom_offset": "0x2838B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_050_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2898E4"}}, +"yoshi_kart_frame051": {"output_dir": "yoshi/frames", "rom_offset": "0x283E28", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_051_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x289E58"}}, +"yoshi_kart_frame052": {"output_dir": "yoshi/frames", "rom_offset": "0x2843C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_052_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28A3F8"}}, +"yoshi_kart_frame053": {"output_dir": "yoshi/frames", "rom_offset": "0x284958", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_053_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28A988"}}, +"yoshi_kart_frame054": {"output_dir": "yoshi/frames", "rom_offset": "0x284EF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_054_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28AF20"}}, +"yoshi_kart_frame055": {"output_dir": "yoshi/frames", "rom_offset": "0x28548C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_055_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28B4BC"}}, +"yoshi_kart_frame056": {"output_dir": "yoshi/frames", "rom_offset": "0x285A30", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_056_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28BA60"}}, +"yoshi_kart_frame057": {"output_dir": "yoshi/frames", "rom_offset": "0x285FE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_057_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28C018"}}, +"yoshi_kart_frame058": {"output_dir": "yoshi/frames", "rom_offset": "0x2865B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_058_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28C5E0"}}, +"yoshi_kart_frame059": {"output_dir": "yoshi/frames", "rom_offset": "0x286B98", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_059_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28CBC8"}}, +"yoshi_kart_frame060": {"output_dir": "yoshi/frames", "rom_offset": "0x287198", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_060_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28D1C8"}}, +"yoshi_kart_frame061": {"output_dir": "yoshi/frames", "rom_offset": "0x2877BC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_061_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28D7EC"}}, +"yoshi_kart_frame062": {"output_dir": "yoshi/frames", "rom_offset": "0x287DFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_062_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28DE2C"}}, +"yoshi_kart_frame063": {"output_dir": "yoshi/frames", "rom_offset": "0x288434", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_063_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28E464"}}, +"yoshi_kart_frame064": {"output_dir": "yoshi/frames", "rom_offset": "0x288940", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_064_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28E970"}}, +"yoshi_kart_frame065": {"output_dir": "yoshi/frames", "rom_offset": "0x288E4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_065_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28EE7C"}}, +"yoshi_kart_frame066": {"output_dir": "yoshi/frames", "rom_offset": "0x289360", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_066_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28F390"}}, +"yoshi_kart_frame067": {"output_dir": "yoshi/frames", "rom_offset": "0x289890", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_067_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28F8C0"}}, +"yoshi_kart_frame068": {"output_dir": "yoshi/frames", "rom_offset": "0x289DE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_068_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x28FE10"}}, +"yoshi_kart_frame069": {"output_dir": "yoshi/frames", "rom_offset": "0x28A330", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_069_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x290360"}}, +"yoshi_kart_frame070": {"output_dir": "yoshi/frames", "rom_offset": "0x28A888", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_070_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2908B8"}}, +"yoshi_kart_frame071": {"output_dir": "yoshi/frames", "rom_offset": "0x28ADF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_071_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x290E24"}}, +"yoshi_kart_frame072": {"output_dir": "yoshi/frames", "rom_offset": "0x28B374", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_072_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2913A4"}}, +"yoshi_kart_frame073": {"output_dir": "yoshi/frames", "rom_offset": "0x28B910", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_073_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x291940"}}, +"yoshi_kart_frame074": {"output_dir": "yoshi/frames", "rom_offset": "0x28BEA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_074_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x291ED4"}}, +"yoshi_kart_frame075": {"output_dir": "yoshi/frames", "rom_offset": "0x28C430", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_075_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x292460"}}, +"yoshi_kart_frame076": {"output_dir": "yoshi/frames", "rom_offset": "0x28C9C8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_076_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2929F8"}}, +"yoshi_kart_frame077": {"output_dir": "yoshi/frames", "rom_offset": "0x28CF6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_077_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x292F9C"}}, +"yoshi_kart_frame078": {"output_dir": "yoshi/frames", "rom_offset": "0x28D524", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_078_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x293554"}}, +"yoshi_kart_frame079": {"output_dir": "yoshi/frames", "rom_offset": "0x28DAF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_079_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x293B24"}}, +"yoshi_kart_frame080": {"output_dir": "yoshi/frames", "rom_offset": "0x28E0E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_080_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x294114"}}, +"yoshi_kart_frame081": {"output_dir": "yoshi/frames", "rom_offset": "0x28E6FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_081_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x29472C"}}, +"yoshi_kart_frame082": {"output_dir": "yoshi/frames", "rom_offset": "0x28ED18", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_082_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x294D48"}}, +"yoshi_kart_frame083": {"output_dir": "yoshi/frames", "rom_offset": "0x28F34C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_083_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x29537C"}}, +"yoshi_kart_frame084": {"output_dir": "yoshi/frames", "rom_offset": "0x28F994", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_084_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2959C4"}}, +"yoshi_kart_frame085": {"output_dir": "yoshi/frames", "rom_offset": "0x28FEA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_085_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x295ED8"}}, +"yoshi_kart_frame086": {"output_dir": "yoshi/frames", "rom_offset": "0x2903D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_086_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x296404"}}, +"yoshi_kart_frame087": {"output_dir": "yoshi/frames", "rom_offset": "0x290900", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_087_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x296930"}}, +"yoshi_kart_frame088": {"output_dir": "yoshi/frames", "rom_offset": "0x290E40", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_088_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x296E70"}}, +"yoshi_kart_frame089": {"output_dir": "yoshi/frames", "rom_offset": "0x29139C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_089_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2973CC"}}, +"yoshi_kart_frame090": {"output_dir": "yoshi/frames", "rom_offset": "0x291910", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_090_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x297940"}}, +"yoshi_kart_frame091": {"output_dir": "yoshi/frames", "rom_offset": "0x291E70", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_091_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x297EA0"}}, +"yoshi_kart_frame092": {"output_dir": "yoshi/frames", "rom_offset": "0x2923F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_092_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x298420"}}, +"yoshi_kart_frame093": {"output_dir": "yoshi/frames", "rom_offset": "0x292968", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_093_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x298998"}}, +"yoshi_kart_frame094": {"output_dir": "yoshi/frames", "rom_offset": "0x292ED0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_094_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x298F00"}}, +"yoshi_kart_frame095": {"output_dir": "yoshi/frames", "rom_offset": "0x293468", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_095_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x299498"}}, +"yoshi_kart_frame096": {"output_dir": "yoshi/frames", "rom_offset": "0x293A04", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_096_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x299A34"}}, +"yoshi_kart_frame097": {"output_dir": "yoshi/frames", "rom_offset": "0x293F9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_097_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x299FCC"}}, +"yoshi_kart_frame098": {"output_dir": "yoshi/frames", "rom_offset": "0x294538", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_098_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x29A568"}}, +"yoshi_kart_frame099": {"output_dir": "yoshi/frames", "rom_offset": "0x294AEC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_099_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x29AB1C"}}, +"yoshi_kart_frame100": {"output_dir": "yoshi/frames", "rom_offset": "0x2950DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_100_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x29B10C"}}, +"yoshi_kart_frame101": {"output_dir": "yoshi/frames", "rom_offset": "0x2956D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_101_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x29B708"}}, +"yoshi_kart_frame102": {"output_dir": "yoshi/frames", "rom_offset": "0x295CF0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_102_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x29BD20"}}, +"yoshi_kart_frame103": {"output_dir": "yoshi/frames", "rom_offset": "0x296320", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_103_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x29C350"}}, +"yoshi_kart_frame104": {"output_dir": "yoshi/frames", "rom_offset": "0x29695C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_104_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x29C98C"}}, +"yoshi_kart_frame105": {"output_dir": "yoshi/frames", "rom_offset": "0x296FB4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_105_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x29CFE4"}}, +"yoshi_kart_frame106": {"output_dir": "yoshi/frames", "rom_offset": "0x2974F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_106_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x29D520"}}, +"yoshi_kart_frame107": {"output_dir": "yoshi/frames", "rom_offset": "0x297A34", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_107_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x29DA64"}}, +"yoshi_kart_frame108": {"output_dir": "yoshi/frames", "rom_offset": "0x297F84", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_108_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x29DFB4"}}, +"yoshi_kart_frame109": {"output_dir": "yoshi/frames", "rom_offset": "0x2984D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_109_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x29E500"}}, +"yoshi_kart_frame110": {"output_dir": "yoshi/frames", "rom_offset": "0x298A2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_110_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x29EA5C"}}, +"yoshi_kart_frame111": {"output_dir": "yoshi/frames", "rom_offset": "0x298F9C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_111_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x29EFCC"}}, +"yoshi_kart_frame112": {"output_dir": "yoshi/frames", "rom_offset": "0x299524", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_112_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x29F554"}}, +"yoshi_kart_frame113": {"output_dir": "yoshi/frames", "rom_offset": "0x299AA8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_113_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x29FAD8"}}, +"yoshi_kart_frame114": {"output_dir": "yoshi/frames", "rom_offset": "0x29A028", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_114_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A0058"}}, +"yoshi_kart_frame115": {"output_dir": "yoshi/frames", "rom_offset": "0x29A5A8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_115_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A05D8"}}, +"yoshi_kart_frame116": {"output_dir": "yoshi/frames", "rom_offset": "0x29AB4C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_116_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A0B7C"}}, +"yoshi_kart_frame117": {"output_dir": "yoshi/frames", "rom_offset": "0x29B0E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_117_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A1114"}}, +"yoshi_kart_frame118": {"output_dir": "yoshi/frames", "rom_offset": "0x29B688", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_118_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A16B8"}}, +"yoshi_kart_frame119": {"output_dir": "yoshi/frames", "rom_offset": "0x29BC34", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_119_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A1C64"}}, +"yoshi_kart_frame120": {"output_dir": "yoshi/frames", "rom_offset": "0x29C1F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_120_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A2224"}}, +"yoshi_kart_frame121": {"output_dir": "yoshi/frames", "rom_offset": "0x29C7D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_121_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A2800"}}, +"yoshi_kart_frame122": {"output_dir": "yoshi/frames", "rom_offset": "0x29CDC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_122_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A2DF0"}}, +"yoshi_kart_frame123": {"output_dir": "yoshi/frames", "rom_offset": "0x29D3D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_123_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A3408"}}, +"yoshi_kart_frame124": {"output_dir": "yoshi/frames", "rom_offset": "0x29DA28", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_124_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A3A58"}}, +"yoshi_kart_frame125": {"output_dir": "yoshi/frames", "rom_offset": "0x29E084", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_125_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A40B4"}}, +"yoshi_kart_frame126": {"output_dir": "yoshi/frames", "rom_offset": "0x29E6F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_126_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A4728"}}, +"yoshi_kart_frame127": {"output_dir": "yoshi/frames", "rom_offset": "0x29EC40", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_127_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A4C70"}}, +"yoshi_kart_frame128": {"output_dir": "yoshi/frames", "rom_offset": "0x29F18C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_128_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A51BC"}}, +"yoshi_kart_frame129": {"output_dir": "yoshi/frames", "rom_offset": "0x29F700", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_129_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A5730"}}, +"yoshi_kart_frame130": {"output_dir": "yoshi/frames", "rom_offset": "0x29FC7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_130_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A5CAC"}}, +"yoshi_kart_frame131": {"output_dir": "yoshi/frames", "rom_offset": "0x2A0210", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_131_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A6240"}}, +"yoshi_kart_frame132": {"output_dir": "yoshi/frames", "rom_offset": "0x2A0788", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_132_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A67B8"}}, +"yoshi_kart_frame133": {"output_dir": "yoshi/frames", "rom_offset": "0x2A0CFC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_133_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A6D2C"}}, +"yoshi_kart_frame134": {"output_dir": "yoshi/frames", "rom_offset": "0x2A1268", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_134_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A7298"}}, +"yoshi_kart_frame135": {"output_dir": "yoshi/frames", "rom_offset": "0x2A17D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_135_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A7808"}}, +"yoshi_kart_frame136": {"output_dir": "yoshi/frames", "rom_offset": "0x2A1D74", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_136_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A7DA4"}}, +"yoshi_kart_frame137": {"output_dir": "yoshi/frames", "rom_offset": "0x2A2304", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_137_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A8334"}}, +"yoshi_kart_frame138": {"output_dir": "yoshi/frames", "rom_offset": "0x2A2890", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_138_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A88C0"}}, +"yoshi_kart_frame139": {"output_dir": "yoshi/frames", "rom_offset": "0x2A2E28", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_139_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A8E58"}}, +"yoshi_kart_frame140": {"output_dir": "yoshi/frames", "rom_offset": "0x2A33D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_140_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A9404"}}, +"yoshi_kart_frame141": {"output_dir": "yoshi/frames", "rom_offset": "0x2A3998", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_141_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A99C8"}}, +"yoshi_kart_frame142": {"output_dir": "yoshi/frames", "rom_offset": "0x2A3F70", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_142_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2A9FA0"}}, +"yoshi_kart_frame143": {"output_dir": "yoshi/frames", "rom_offset": "0x2A4564", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_143_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2AA594"}}, +"yoshi_kart_frame144": {"output_dir": "yoshi/frames", "rom_offset": "0x2A4B78", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_144_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2AABA8"}}, +"yoshi_kart_frame145": {"output_dir": "yoshi/frames", "rom_offset": "0x2A51B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_145_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2AB1E0"}}, +"yoshi_kart_frame146": {"output_dir": "yoshi/frames", "rom_offset": "0x2A5814", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_146_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2AB844"}}, +"yoshi_kart_frame147": {"output_dir": "yoshi/frames", "rom_offset": "0x2A5E7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_147_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2ABEAC"}}, +"yoshi_kart_frame148": {"output_dir": "yoshi/frames", "rom_offset": "0x2A63DC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_148_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2AC40C"}}, +"yoshi_kart_frame149": {"output_dir": "yoshi/frames", "rom_offset": "0x2A6954", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_149_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2AC984"}}, +"yoshi_kart_frame150": {"output_dir": "yoshi/frames", "rom_offset": "0x2A6EE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_150_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2ACF10"}}, +"yoshi_kart_frame151": {"output_dir": "yoshi/frames", "rom_offset": "0x2A7464", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_151_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2AD494"}}, +"yoshi_kart_frame152": {"output_dir": "yoshi/frames", "rom_offset": "0x2A79FC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_152_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2ADA2C"}}, +"yoshi_kart_frame153": {"output_dir": "yoshi/frames", "rom_offset": "0x2A7F7C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_153_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2ADFAC"}}, +"yoshi_kart_frame154": {"output_dir": "yoshi/frames", "rom_offset": "0x2A84F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_154_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2AE528"}}, +"yoshi_kart_frame155": {"output_dir": "yoshi/frames", "rom_offset": "0x2A8A90", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_155_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2AEAC0"}}, +"yoshi_kart_frame156": {"output_dir": "yoshi/frames", "rom_offset": "0x2A9028", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_156_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2AF058"}}, +"yoshi_kart_frame157": {"output_dir": "yoshi/frames", "rom_offset": "0x2A9598", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_157_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2AF5C8"}}, +"yoshi_kart_frame158": {"output_dir": "yoshi/frames", "rom_offset": "0x2A9B34", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_158_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2AFB64"}}, +"yoshi_kart_frame159": {"output_dir": "yoshi/frames", "rom_offset": "0x2AA0C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_159_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B00F0"}}, +"yoshi_kart_frame160": {"output_dir": "yoshi/frames", "rom_offset": "0x2AA668", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_160_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B0698"}}, +"yoshi_kart_frame161": {"output_dir": "yoshi/frames", "rom_offset": "0x2AAC14", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_161_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B0C44"}}, +"yoshi_kart_frame162": {"output_dir": "yoshi/frames", "rom_offset": "0x2AB1D0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_162_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B1200"}}, +"yoshi_kart_frame163": {"output_dir": "yoshi/frames", "rom_offset": "0x2AB7A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_163_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B17D4"}}, +"yoshi_kart_frame164": {"output_dir": "yoshi/frames", "rom_offset": "0x2ABD94", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_164_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B1DC4"}}, +"yoshi_kart_frame165": {"output_dir": "yoshi/frames", "rom_offset": "0x2AC3AC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_165_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B23DC"}}, +"yoshi_kart_frame166": {"output_dir": "yoshi/frames", "rom_offset": "0x2AC9F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_166_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B2A20"}}, +"yoshi_kart_frame167": {"output_dir": "yoshi/frames", "rom_offset": "0x2AD054", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_167_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B3084"}}, +"yoshi_kart_frame168": {"output_dir": "yoshi/frames", "rom_offset": "0x2AD6CC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_168_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B36FC"}}, +"yoshi_kart_frame169": {"output_dir": "yoshi/frames", "rom_offset": "0x2ADC40", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_169_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B3C70"}}, +"yoshi_kart_frame170": {"output_dir": "yoshi/frames", "rom_offset": "0x2AE1D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_170_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B4204"}}, +"yoshi_kart_frame171": {"output_dir": "yoshi/frames", "rom_offset": "0x2AE778", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_171_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B47A8"}}, +"yoshi_kart_frame172": {"output_dir": "yoshi/frames", "rom_offset": "0x2AED10", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_172_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B4D40"}}, +"yoshi_kart_frame173": {"output_dir": "yoshi/frames", "rom_offset": "0x2AF2B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_173_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B52E0"}}, +"yoshi_kart_frame174": {"output_dir": "yoshi/frames", "rom_offset": "0x2AF850", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_174_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B5880"}}, +"yoshi_kart_frame175": {"output_dir": "yoshi/frames", "rom_offset": "0x2AFDE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_175_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B5E14"}}, +"yoshi_kart_frame176": {"output_dir": "yoshi/frames", "rom_offset": "0x2B0358", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_176_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B6388"}}, +"yoshi_kart_frame177": {"output_dir": "yoshi/frames", "rom_offset": "0x2B08E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_177_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B6914"}}, +"yoshi_kart_frame178": {"output_dir": "yoshi/frames", "rom_offset": "0x2B0E74", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_178_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B6EA4"}}, +"yoshi_kart_frame179": {"output_dir": "yoshi/frames", "rom_offset": "0x2B1410", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_179_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B7440"}}, +"yoshi_kart_frame180": {"output_dir": "yoshi/frames", "rom_offset": "0x2B199C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_180_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B79CC"}}, +"yoshi_kart_frame181": {"output_dir": "yoshi/frames", "rom_offset": "0x2B1F34", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_181_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B7F64"}}, +"yoshi_kart_frame182": {"output_dir": "yoshi/frames", "rom_offset": "0x2B24D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_182_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B8508"}}, +"yoshi_kart_frame183": {"output_dir": "yoshi/frames", "rom_offset": "0x2B2A88", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_183_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B8AB8"}}, +"yoshi_kart_frame184": {"output_dir": "yoshi/frames", "rom_offset": "0x2B306C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_184_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B909C"}}, +"yoshi_kart_frame185": {"output_dir": "yoshi/frames", "rom_offset": "0x2B3658", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_185_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B9688"}}, +"yoshi_kart_frame186": {"output_dir": "yoshi/frames", "rom_offset": "0x2B3C84", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_186_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2B9CB4"}}, +"yoshi_kart_frame187": {"output_dir": "yoshi/frames", "rom_offset": "0x2B42E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_187_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2BA310"}}, +"yoshi_kart_frame188": {"output_dir": "yoshi/frames", "rom_offset": "0x2B4960", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_188_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2BA990"}}, +"yoshi_kart_frame189": {"output_dir": "yoshi/frames", "rom_offset": "0x2B4FD4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_189_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2BB004"}}, +"yoshi_kart_frame190": {"output_dir": "yoshi/frames", "rom_offset": "0x2B54D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_190_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2BB504"}}, +"yoshi_kart_frame191": {"output_dir": "yoshi/frames", "rom_offset": "0x2B59F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_191_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2BBA24"}}, +"yoshi_kart_frame192": {"output_dir": "yoshi/frames", "rom_offset": "0x2B5F64", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_192_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2BBF94"}}, +"yoshi_kart_frame193": {"output_dir": "yoshi/frames", "rom_offset": "0x2B64F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_193_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2BC528"}}, +"yoshi_kart_frame194": {"output_dir": "yoshi/frames", "rom_offset": "0x2B6ABC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_194_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2BCAEC"}}, +"yoshi_kart_frame195": {"output_dir": "yoshi/frames", "rom_offset": "0x2B70B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_195_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2BD0E4"}}, +"yoshi_kart_frame196": {"output_dir": "yoshi/frames", "rom_offset": "0x2B76D4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_196_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2BD704"}}, +"yoshi_kart_frame197": {"output_dir": "yoshi/frames", "rom_offset": "0x2B7D20", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_197_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2BDD50"}}, +"yoshi_kart_frame198": {"output_dir": "yoshi/frames", "rom_offset": "0x2B838C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_198_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2BE3BC"}}, +"yoshi_kart_frame199": {"output_dir": "yoshi/frames", "rom_offset": "0x2B8A0C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_199_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2BEA3C"}}, +"yoshi_kart_frame200": {"output_dir": "yoshi/frames", "rom_offset": "0x2B9094", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_200_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2BF0C4"}}, +"yoshi_kart_frame201": {"output_dir": "yoshi/frames", "rom_offset": "0x2B9738", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_201_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2BF768"}}, +"yoshi_kart_frame202": {"output_dir": "yoshi/frames", "rom_offset": "0x2B9DF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_202_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2BFE24"}}, +"yoshi_kart_frame203": {"output_dir": "yoshi/frames", "rom_offset": "0x2BA494", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_203_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C04C4"}}, +"yoshi_kart_frame204": {"output_dir": "yoshi/frames", "rom_offset": "0x2BAB28", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_204_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C0B58"}}, +"yoshi_kart_frame205": {"output_dir": "yoshi/frames", "rom_offset": "0x2BB19C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_205_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C11CC"}}, +"yoshi_kart_frame206": {"output_dir": "yoshi/frames", "rom_offset": "0x2BB7E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_206_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C1810"}}, +"yoshi_kart_frame207": {"output_dir": "yoshi/frames", "rom_offset": "0x2BBDE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_207_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C1E14"}}, +"yoshi_kart_frame208": {"output_dir": "yoshi/frames", "rom_offset": "0x2BC3C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_208_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C23F4"}}, +"yoshi_kart_frame209": {"output_dir": "yoshi/frames", "rom_offset": "0x2BC97C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_209_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C29AC"}}, +"yoshi_kart_frame210": {"output_dir": "yoshi/frames", "rom_offset": "0x2BCEA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_210_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C2ED4"}}, +"yoshi_kart_frame211": {"output_dir": "yoshi/frames", "rom_offset": "0x2BD40C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_211_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C343C"}}, +"yoshi_kart_frame212": {"output_dir": "yoshi/frames", "rom_offset": "0x2BD9C0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_212_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C39F0"}}, +"yoshi_kart_frame213": {"output_dir": "yoshi/frames", "rom_offset": "0x2BDF94", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_213_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C3FC4"}}, +"yoshi_kart_frame214": {"output_dir": "yoshi/frames", "rom_offset": "0x2BE59C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_214_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C45CC"}}, +"yoshi_kart_frame215": {"output_dir": "yoshi/frames", "rom_offset": "0x2BEBC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_215_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C4BF4"}}, +"yoshi_kart_frame216": {"output_dir": "yoshi/frames", "rom_offset": "0x2BF218", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_216_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C5248"}}, +"yoshi_kart_frame217": {"output_dir": "yoshi/frames", "rom_offset": "0x2BF860", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_217_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C5890"}}, +"yoshi_kart_frame218": {"output_dir": "yoshi/frames", "rom_offset": "0x2BFED0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_218_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C5F00"}}, +"yoshi_kart_frame219": {"output_dir": "yoshi/frames", "rom_offset": "0x2C054C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_219_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C657C"}}, +"yoshi_kart_frame220": {"output_dir": "yoshi/frames", "rom_offset": "0x2C0BCC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_220_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C6BFC"}}, +"yoshi_kart_frame221": {"output_dir": "yoshi/frames", "rom_offset": "0x2C125C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_221_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C728C"}}, +"yoshi_kart_frame222": {"output_dir": "yoshi/frames", "rom_offset": "0x2C18F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_222_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C7924"}}, +"yoshi_kart_frame223": {"output_dir": "yoshi/frames", "rom_offset": "0x2C1F6C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_223_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C7F9C"}}, +"yoshi_kart_frame224": {"output_dir": "yoshi/frames", "rom_offset": "0x2C25B4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_224_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C85E4"}}, +"yoshi_kart_frame225": {"output_dir": "yoshi/frames", "rom_offset": "0x2C2BE0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_225_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C8C10"}}, +"yoshi_kart_frame226": {"output_dir": "yoshi/frames", "rom_offset": "0x2C31D8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_226_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C9208"}}, +"yoshi_kart_frame227": {"output_dir": "yoshi/frames", "rom_offset": "0x2C3798", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_227_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C97C8"}}, +"yoshi_kart_frame228": {"output_dir": "yoshi/frames", "rom_offset": "0x2C3D20", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_228_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2C9D50"}}, +"yoshi_kart_frame229": {"output_dir": "yoshi/frames", "rom_offset": "0x2C4278", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_229_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2CA2A8"}}, +"yoshi_kart_frame230": {"output_dir": "yoshi/frames", "rom_offset": "0x2C47C4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_230_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2CA7F4"}}, +"yoshi_kart_frame231": {"output_dir": "yoshi/frames", "rom_offset": "0x2C4D54", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_231_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2CAD84"}}, +"yoshi_kart_frame232": {"output_dir": "yoshi/frames", "rom_offset": "0x2C5314", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_232_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2CB344"}}, +"yoshi_kart_frame233": {"output_dir": "yoshi/frames", "rom_offset": "0x2C591C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_233_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2CB94C"}}, +"yoshi_kart_frame234": {"output_dir": "yoshi/frames", "rom_offset": "0x2C5F28", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_234_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2CBF58"}}, +"yoshi_kart_frame235": {"output_dir": "yoshi/frames", "rom_offset": "0x2C6554", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_235_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2CC584"}}, +"yoshi_kart_frame236": {"output_dir": "yoshi/frames", "rom_offset": "0x2C6BC0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_236_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2CCBF0"}}, +"yoshi_kart_frame237": {"output_dir": "yoshi/frames", "rom_offset": "0x2C7234", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_237_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2CD264"}}, +"yoshi_kart_frame238": {"output_dir": "yoshi/frames", "rom_offset": "0x2C78B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_238_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2CD8E0"}}, +"yoshi_kart_frame239": {"output_dir": "yoshi/frames", "rom_offset": "0x2C7F34", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_239_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2CDF64"}}, +"yoshi_kart_frame240": {"output_dir": "yoshi/frames", "rom_offset": "0x2C85B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_240_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2CE5E0"}}, +"yoshi_kart_frame241": {"output_dir": "yoshi/frames", "rom_offset": "0x2C8C3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_241_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2CEC6C"}}, +"yoshi_kart_frame242": {"output_dir": "yoshi/frames", "rom_offset": "0x2C92A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_242_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2CF2D0"}}, +"yoshi_kart_frame243": {"output_dir": "yoshi/frames", "rom_offset": "0x2C9900", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_243_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2CF930"}}, +"yoshi_kart_frame244": {"output_dir": "yoshi/frames", "rom_offset": "0x2C9F30", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_244_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2CFF60"}}, +"yoshi_kart_frame245": {"output_dir": "yoshi/frames", "rom_offset": "0x2CA520", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_245_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D0550"}}, +"yoshi_kart_frame246": {"output_dir": "yoshi/frames", "rom_offset": "0x2CAAF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_246_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D0B24"}}, +"yoshi_kart_frame247": {"output_dir": "yoshi/frames", "rom_offset": "0x2CB0A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_247_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D10D0"}}, +"yoshi_kart_frame248": {"output_dir": "yoshi/frames", "rom_offset": "0x2CB5F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_248_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D1620"}}, +"yoshi_kart_frame249": {"output_dir": "yoshi/frames", "rom_offset": "0x2CBB04", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_249_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D1B34"}}, +"yoshi_kart_frame250": {"output_dir": "yoshi/frames", "rom_offset": "0x2CC07C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_250_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D20AC"}}, +"yoshi_kart_frame251": {"output_dir": "yoshi/frames", "rom_offset": "0x2CC61C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_251_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D264C"}}, +"yoshi_kart_frame252": {"output_dir": "yoshi/frames", "rom_offset": "0x2CCBE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_252_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D2C18"}}, +"yoshi_kart_frame253": {"output_dir": "yoshi/frames", "rom_offset": "0x2CD1F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_253_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D3228"}}, +"yoshi_kart_frame254": {"output_dir": "yoshi/frames", "rom_offset": "0x2CD820", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_254_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D3850"}}, +"yoshi_kart_frame255": {"output_dir": "yoshi/frames", "rom_offset": "0x2CDE78", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_255_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D3EA8"}}, +"yoshi_kart_frame256": {"output_dir": "yoshi/frames", "rom_offset": "0x2CE4EC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_256_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D451C"}}, +"yoshi_kart_frame257": {"output_dir": "yoshi/frames", "rom_offset": "0x2CEB70", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_257_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D4BA0"}}, +"yoshi_kart_frame258": {"output_dir": "yoshi/frames", "rom_offset": "0x2CF200", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_258_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D5230"}}, +"yoshi_kart_frame259": {"output_dir": "yoshi/frames", "rom_offset": "0x2CF88C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_259_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D58BC"}}, +"yoshi_kart_frame260": {"output_dir": "yoshi/frames", "rom_offset": "0x2CFF20", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_260_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D5F50"}}, +"yoshi_kart_frame261": {"output_dir": "yoshi/frames", "rom_offset": "0x2D0584", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_261_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D65B4"}}, +"yoshi_kart_frame262": {"output_dir": "yoshi/frames", "rom_offset": "0x2D0BF4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_262_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D6C24"}}, +"yoshi_kart_frame263": {"output_dir": "yoshi/frames", "rom_offset": "0x2D122C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_263_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D725C"}}, +"yoshi_kart_frame264": {"output_dir": "yoshi/frames", "rom_offset": "0x2D1814", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_264_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D7844"}}, +"yoshi_kart_frame265": {"output_dir": "yoshi/frames", "rom_offset": "0x2D1DE4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_265_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D7E14"}}, +"yoshi_kart_frame266": {"output_dir": "yoshi/frames", "rom_offset": "0x2D2358", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_266_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D8388"}}, +"yoshi_kart_frame267": {"output_dir": "yoshi/frames", "rom_offset": "0x2D289C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_267_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D88CC"}}, +"yoshi_kart_frame268": {"output_dir": "yoshi/frames", "rom_offset": "0x2D2DC8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_268_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D8DF8"}}, +"yoshi_kart_frame269": {"output_dir": "yoshi/frames", "rom_offset": "0x2D32B0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_269_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D92E0"}}, +"yoshi_kart_frame270": {"output_dir": "yoshi/frames", "rom_offset": "0x2D3864", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_270_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D9894"}}, +"yoshi_kart_frame271": {"output_dir": "yoshi/frames", "rom_offset": "0x2D3E38", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_271_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2D9E68"}}, +"yoshi_kart_frame272": {"output_dir": "yoshi/frames", "rom_offset": "0x2D4434", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_272_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2DA464"}}, +"yoshi_kart_frame273": {"output_dir": "yoshi/frames", "rom_offset": "0x2D4A50", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_273_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2DAA80"}}, +"yoshi_kart_frame274": {"output_dir": "yoshi/frames", "rom_offset": "0x2D50A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_274_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2DB0D4"}}, +"yoshi_kart_frame275": {"output_dir": "yoshi/frames", "rom_offset": "0x2D570C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_275_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2DB73C"}}, +"yoshi_kart_frame276": {"output_dir": "yoshi/frames", "rom_offset": "0x2D5DA0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_276_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2DBDD0"}}, +"yoshi_kart_frame277": {"output_dir": "yoshi/frames", "rom_offset": "0x2D641C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_277_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2DC44C"}}, +"yoshi_kart_frame278": {"output_dir": "yoshi/frames", "rom_offset": "0x2D6A84", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_278_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2DCAB4"}}, +"yoshi_kart_frame279": {"output_dir": "yoshi/frames", "rom_offset": "0x2D7104", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_279_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2DD134"}}, +"yoshi_kart_frame280": {"output_dir": "yoshi/frames", "rom_offset": "0x2D776C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_280_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2DD79C"}}, +"yoshi_kart_frame281": {"output_dir": "yoshi/frames", "rom_offset": "0x2D7DBC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_281_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2DDDEC"}}, +"yoshi_kart_frame282": {"output_dir": "yoshi/frames", "rom_offset": "0x2D83F8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_282_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2DE428"}}, +"yoshi_kart_frame283": {"output_dir": "yoshi/frames", "rom_offset": "0x2D89F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_283_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2DEA24"}}, +"yoshi_kart_frame284": {"output_dir": "yoshi/frames", "rom_offset": "0x2D8FC4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_284_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2DEFF4"}}, +"yoshi_kart_frame285": {"output_dir": "yoshi/frames", "rom_offset": "0x2D9558", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_285_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2DF588"}}, +"yoshi_kart_frame286": {"output_dir": "yoshi/frames", "rom_offset": "0x2D9AA4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_286_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2DFAD4"}}, +"yoshi_kart_frame287": {"output_dir": "yoshi/frames", "rom_offset": "0x2D9F98", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_287_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2DFFC8"}}, +"yoshi_kart_frame288": {"output_dir": "yoshi/frames", "rom_offset": "0x2DA464", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_288_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E0494"}}, +"yoshi_kart_frame289": {"output_dir": "yoshi/frames", "rom_offset": "0x2DA8F0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E0920"}}, +"yoshi_kart_frame290": {"output_dir": "yoshi/frames", "rom_offset": "0x2DADE8", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E0E18"}}, +"yoshi_kart_frame291": {"output_dir": "yoshi/frames", "rom_offset": "0x2DB32C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E135C"}}, +"yoshi_kart_frame292": {"output_dir": "yoshi/frames", "rom_offset": "0x2DB8F4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E1924"}}, +"yoshi_kart_frame293": {"output_dir": "yoshi/frames", "rom_offset": "0x2DBF80", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E1FB0"}}, +"yoshi_kart_frame294": {"output_dir": "yoshi/frames", "rom_offset": "0x2DC574", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E25A4"}}, +"yoshi_kart_frame295": {"output_dir": "yoshi/frames", "rom_offset": "0x2DCB78", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E2BA8"}}, +"yoshi_kart_frame296": {"output_dir": "yoshi/frames", "rom_offset": "0x2DD13C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E316C"}}, +"yoshi_kart_frame297": {"output_dir": "yoshi/frames", "rom_offset": "0x2DD680", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E36B0"}}, +"yoshi_kart_frame298": {"output_dir": "yoshi/frames", "rom_offset": "0x2DDB3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E3B6C"}}, +"yoshi_kart_frame299": {"output_dir": "yoshi/frames", "rom_offset": "0x2DE098", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E40C8"}}, +"yoshi_kart_frame300": {"output_dir": "yoshi/frames", "rom_offset": "0x2DE64C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E467C"}}, +"yoshi_kart_frame301": {"output_dir": "yoshi/frames", "rom_offset": "0x2DEC2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E4C5C"}}, +"yoshi_kart_frame302": {"output_dir": "yoshi/frames", "rom_offset": "0x2DF1E0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E5210"}}, +"yoshi_kart_frame303": {"output_dir": "yoshi/frames", "rom_offset": "0x2DF788", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E57B8"}}, +"yoshi_kart_frame304": {"output_dir": "yoshi/frames", "rom_offset": "0x2DFD30", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E5D60"}}, +"yoshi_kart_frame305": {"output_dir": "yoshi/frames", "rom_offset": "0x2E0284", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E62B4"}}, +"yoshi_kart_frame306": {"output_dir": "yoshi/frames", "rom_offset": "0x2E06E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E6714"}}, +"yoshi_kart_frame307": {"output_dir": "yoshi/frames", "rom_offset": "0x2E0C3C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E6C6C"}}, +"yoshi_kart_frame308": {"output_dir": "yoshi/frames", "rom_offset": "0x2E1250", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E7280"}}, +"yoshi_kart_frame309": {"output_dir": "yoshi/frames", "rom_offset": "0x2E189C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E78CC"}}, +"yoshi_kart_frame310": {"output_dir": "yoshi/frames", "rom_offset": "0x2E1E90", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E7EC0"}}, +"yoshi_kart_frame311": {"output_dir": "yoshi/frames", "rom_offset": "0x2E24A4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E84D4"}}, +"yoshi_kart_frame312": {"output_dir": "yoshi/frames", "rom_offset": "0x2E2A5C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E8A8C"}}, +"yoshi_kart_frame313": {"output_dir": "yoshi/frames", "rom_offset": "0x2E2F70", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E8FA0"}}, +"yoshi_kart_frame314": {"output_dir": "yoshi/frames", "rom_offset": "0x2E3440", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E9470"}}, +"yoshi_kart_frame315": {"output_dir": "yoshi/frames", "rom_offset": "0x2E39A0", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E99D0"}}, +"yoshi_kart_frame316": {"output_dir": "yoshi/frames", "rom_offset": "0x2E3F2C", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2E9F5C"}}, +"yoshi_kart_frame317": {"output_dir": "yoshi/frames", "rom_offset": "0x2E44E4", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2EA514"}}, +"yoshi_kart_frame318": {"output_dir": "yoshi/frames", "rom_offset": "0x2E4AAC", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2EAADC"}}, +"yoshi_kart_frame319": {"output_dir": "yoshi/frames", "rom_offset": "0x2E5054", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2EB084"}}, +"yoshi_kart_frame320": {"output_dir": "yoshi/frames", "rom_offset": "0x2E5628", "width": 64, "height": 64, "type": "ci8", "tlut": ["yoshi_kart_palette", "kart_000_wheel_0"], "meta": ["stitched_palette"], "jp.v11": {"rom_offset": "0x2EB658"}}, +"kart_000_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E5BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EBBF8"}}, +"kart_000_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E5C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EBC78"}}, +"kart_000_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E5CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EBCF8"}}, +"kart_000_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E5D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EBD78"}}, +"kart_001_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E5DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EBDF8"}}, +"kart_001_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E5E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EBE78"}}, +"kart_001_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E5EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EBEF8"}}, +"kart_001_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E5F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EBF78"}}, +"kart_002_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E5FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EBFF8"}}, +"kart_002_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC078"}}, +"kart_002_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E60C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC0F8"}}, +"kart_002_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC178"}}, +"kart_003_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E61C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC1F8"}}, +"kart_003_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC278"}}, +"kart_003_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E62C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC2F8"}}, +"kart_003_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC378"}}, +"kart_004_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E63C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC3F8"}}, +"kart_004_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC478"}}, +"kart_004_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E64C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC4F8"}}, +"kart_004_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC578"}}, +"kart_005_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E65C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC5F8"}}, +"kart_005_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC678"}}, +"kart_005_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E66C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC6F8"}}, +"kart_005_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC778"}}, +"kart_006_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E67C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC7F8"}}, +"kart_006_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC878"}}, +"kart_006_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E68C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC8F8"}}, +"kart_006_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC978"}}, +"kart_007_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E69C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EC9F8"}}, +"kart_007_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ECA78"}}, +"kart_007_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ECAF8"}}, +"kart_007_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ECB78"}}, +"kart_008_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ECBF8"}}, +"kart_008_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ECC78"}}, +"kart_008_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ECCF8"}}, +"kart_008_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ECD78"}}, +"kart_009_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ECDF8"}}, +"kart_009_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ECE78"}}, +"kart_009_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ECEF8"}}, +"kart_009_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ECF78"}}, +"kart_010_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E6FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ECFF8"}}, +"kart_010_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED078"}}, +"kart_010_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E70C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED0F8"}}, +"kart_010_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED178"}}, +"kart_011_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E71C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED1F8"}}, +"kart_011_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED278"}}, +"kart_011_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E72C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED2F8"}}, +"kart_011_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED378"}}, +"kart_012_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E73C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED3F8"}}, +"kart_012_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED478"}}, +"kart_012_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E74C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED4F8"}}, +"kart_012_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED578"}}, +"kart_013_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E75C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED5F8"}}, +"kart_013_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED678"}}, +"kart_013_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E76C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED6F8"}}, +"kart_013_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED778"}}, +"kart_014_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E77C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED7F8"}}, +"kart_014_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED878"}}, +"kart_014_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E78C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED8F8"}}, +"kart_014_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED978"}}, +"kart_015_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E79C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2ED9F8"}}, +"kart_015_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EDA78"}}, +"kart_015_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EDAF8"}}, +"kart_015_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EDB78"}}, +"kart_016_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EDBF8"}}, +"kart_016_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EDC78"}}, +"kart_016_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EDCF8"}}, +"kart_016_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EDD78"}}, +"kart_017_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EDDF8"}}, +"kart_017_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EDE78"}}, +"kart_017_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EDEF8"}}, +"kart_017_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EDF78"}}, +"kart_018_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E7FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EDFF8"}}, +"kart_018_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE078"}}, +"kart_018_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E80C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE0F8"}}, +"kart_018_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE178"}}, +"kart_019_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E81C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE1F8"}}, +"kart_019_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE278"}}, +"kart_019_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E82C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE2F8"}}, +"kart_019_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE378"}}, +"kart_020_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E83C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE3F8"}}, +"kart_020_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE478"}}, +"kart_020_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E84C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE4F8"}}, +"kart_020_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE578"}}, +"kart_021_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E85C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE5F8"}}, +"kart_021_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE678"}}, +"kart_021_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E86C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE6F8"}}, +"kart_021_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE778"}}, +"kart_022_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E87C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE7F8"}}, +"kart_022_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE878"}}, +"kart_022_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E88C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE8F8"}}, +"kart_022_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE978"}}, +"kart_023_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E89C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EE9F8"}}, +"kart_023_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EEA78"}}, +"kart_023_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EEAF8"}}, +"kart_023_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EEB78"}}, +"kart_024_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EEBF8"}}, +"kart_024_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EEC78"}}, +"kart_024_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EECF8"}}, +"kart_024_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EED78"}}, +"kart_025_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EEDF8"}}, +"kart_025_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EEE78"}}, +"kart_025_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EEEF8"}}, +"kart_025_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EEF78"}}, +"kart_026_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E8FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EEFF8"}}, +"kart_026_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF078"}}, +"kart_026_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E90C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF0F8"}}, +"kart_026_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF178"}}, +"kart_027_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E91C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF1F8"}}, +"kart_027_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF278"}}, +"kart_027_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E92C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF2F8"}}, +"kart_027_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF378"}}, +"kart_028_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E93C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF3F8"}}, +"kart_028_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF478"}}, +"kart_028_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E94C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF4F8"}}, +"kart_028_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF578"}}, +"kart_029_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E95C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF5F8"}}, +"kart_029_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF678"}}, +"kart_029_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E96C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF6F8"}}, +"kart_029_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF778"}}, +"kart_030_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E97C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF7F8"}}, +"kart_030_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF878"}}, +"kart_030_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E98C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF8F8"}}, +"kart_030_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF978"}}, +"kart_031_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E99C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EF9F8"}}, +"kart_031_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EFA78"}}, +"kart_031_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EFAF8"}}, +"kart_031_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EFB78"}}, +"kart_032_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EFBF8"}}, +"kart_032_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EFC78"}}, +"kart_032_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EFCF8"}}, +"kart_032_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EFD78"}}, +"kart_033_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EFDF8"}}, +"kart_033_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EFE78"}}, +"kart_033_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EFEF8"}}, +"kart_033_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EFF78"}}, +"kart_034_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2E9FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2EFFF8"}}, +"kart_034_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0078"}}, +"kart_034_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F00F8"}}, +"kart_034_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0178"}}, +"kart_035_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F01F8"}}, +"kart_035_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0278"}}, +"kart_035_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F02F8"}}, +"kart_035_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0378"}}, +"kart_036_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F03F8"}}, +"kart_036_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0478"}}, +"kart_036_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F04F8"}}, +"kart_036_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0578"}}, +"kart_037_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F05F8"}}, +"kart_037_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0678"}}, +"kart_037_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F06F8"}}, +"kart_037_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0778"}}, +"kart_038_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F07F8"}}, +"kart_038_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0878"}}, +"kart_038_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F08F8"}}, +"kart_038_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0978"}}, +"kart_039_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EA9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F09F8"}}, +"kart_039_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EAA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0A78"}}, +"kart_039_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EAAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0AF8"}}, +"kart_039_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EAB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0B78"}}, +"kart_040_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EABC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0BF8"}}, +"kart_040_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EAC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0C78"}}, +"kart_040_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EACC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0CF8"}}, +"kart_040_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EAD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0D78"}}, +"kart_041_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EADC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0DF8"}}, +"kart_041_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EAE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0E78"}}, +"kart_041_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EAEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0EF8"}}, +"kart_041_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EAF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0F78"}}, +"kart_042_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EAFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F0FF8"}}, +"kart_042_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1078"}}, +"kart_042_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F10F8"}}, +"kart_042_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1178"}}, +"kart_043_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F11F8"}}, +"kart_043_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1278"}}, +"kart_043_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F12F8"}}, +"kart_043_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1378"}}, +"kart_044_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F13F8"}}, +"kart_044_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1478"}}, +"kart_044_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F14F8"}}, +"kart_044_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1578"}}, +"kart_045_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F15F8"}}, +"kart_045_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1678"}}, +"kart_045_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F16F8"}}, +"kart_045_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1778"}}, +"kart_046_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F17F8"}}, +"kart_046_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1878"}}, +"kart_046_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F18F8"}}, +"kart_046_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1978"}}, +"kart_047_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EB9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F19F8"}}, +"kart_047_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1A78"}}, +"kart_047_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1AF8"}}, +"kart_047_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1B78"}}, +"kart_048_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1BF8"}}, +"kart_048_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1C78"}}, +"kart_048_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBCC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1CF8"}}, +"kart_048_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1D78"}}, +"kart_049_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1DF8"}}, +"kart_049_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1E78"}}, +"kart_049_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1EF8"}}, +"kart_049_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1F78"}}, +"kart_050_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EBFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F1FF8"}}, +"kart_050_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2078"}}, +"kart_050_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F20F8"}}, +"kart_050_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2178"}}, +"kart_051_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F21F8"}}, +"kart_051_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2278"}}, +"kart_051_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F22F8"}}, +"kart_051_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2378"}}, +"kart_052_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F23F8"}}, +"kart_052_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2478"}}, +"kart_052_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F24F8"}}, +"kart_052_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2578"}}, +"kart_053_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F25F8"}}, +"kart_053_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2678"}}, +"kart_053_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F26F8"}}, +"kart_053_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2778"}}, +"kart_054_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F27F8"}}, +"kart_054_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2878"}}, +"kart_054_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F28F8"}}, +"kart_054_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2978"}}, +"kart_055_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EC9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F29F8"}}, +"kart_055_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2A78"}}, +"kart_055_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2AF8"}}, +"kart_055_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2B78"}}, +"kart_056_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2BF8"}}, +"kart_056_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2C78"}}, +"kart_056_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECCC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2CF8"}}, +"kart_056_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2D78"}}, +"kart_057_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2DF8"}}, +"kart_057_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2E78"}}, +"kart_057_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2EF8"}}, +"kart_057_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2F78"}}, +"kart_058_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ECFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F2FF8"}}, +"kart_058_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3078"}}, +"kart_058_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F30F8"}}, +"kart_058_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3178"}}, +"kart_059_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F31F8"}}, +"kart_059_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3278"}}, +"kart_059_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F32F8"}}, +"kart_059_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3378"}}, +"kart_060_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F33F8"}}, +"kart_060_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3478"}}, +"kart_060_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F34F8"}}, +"kart_060_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3578"}}, +"kart_061_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F35F8"}}, +"kart_061_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3678"}}, +"kart_061_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F36F8"}}, +"kart_061_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3778"}}, +"kart_062_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F37F8"}}, +"kart_062_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3878"}}, +"kart_062_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F38F8"}}, +"kart_062_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3978"}}, +"kart_063_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2ED9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F39F8"}}, +"kart_063_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3A78"}}, +"kart_063_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3AF8"}}, +"kart_063_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3B78"}}, +"kart_064_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3BF8"}}, +"kart_064_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3C78"}}, +"kart_064_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDCC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3CF8"}}, +"kart_064_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3D78"}}, +"kart_065_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3DF8"}}, +"kart_065_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3E78"}}, +"kart_065_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3EF8"}}, +"kart_065_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3F78"}}, +"kart_066_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EDFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F3FF8"}}, +"kart_066_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4078"}}, +"kart_066_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F40F8"}}, +"kart_066_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4178"}}, +"kart_067_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F41F8"}}, +"kart_067_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4278"}}, +"kart_067_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F42F8"}}, +"kart_067_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4378"}}, +"kart_068_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F43F8"}}, +"kart_068_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4478"}}, +"kart_068_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F44F8"}}, +"kart_068_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4578"}}, +"kart_069_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F45F8"}}, +"kart_069_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4678"}}, +"kart_069_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F46F8"}}, +"kart_069_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4778"}}, +"kart_070_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F47F8"}}, +"kart_070_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4878"}}, +"kart_070_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F48F8"}}, +"kart_070_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4978"}}, +"kart_071_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EE9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F49F8"}}, +"kart_071_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4A78"}}, +"kart_071_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4AF8"}}, +"kart_071_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4B78"}}, +"kart_072_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4BF8"}}, +"kart_072_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4C78"}}, +"kart_072_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EECC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4CF8"}}, +"kart_072_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EED48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4D78"}}, +"kart_073_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4DF8"}}, +"kart_073_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4E78"}}, +"kart_073_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4EF8"}}, +"kart_073_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4F78"}}, +"kart_074_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EEFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F4FF8"}}, +"kart_074_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5078"}}, +"kart_074_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F50F8"}}, +"kart_074_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5178"}}, +"kart_075_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F51F8"}}, +"kart_075_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5278"}}, +"kart_075_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F52F8"}}, +"kart_075_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5378"}}, +"kart_076_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F53F8"}}, +"kart_076_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5478"}}, +"kart_076_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F54F8"}}, +"kart_076_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5578"}}, +"kart_077_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F55F8"}}, +"kart_077_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5678"}}, +"kart_077_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F56F8"}}, +"kart_077_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5778"}}, +"kart_078_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F57F8"}}, +"kart_078_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5878"}}, +"kart_078_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F58F8"}}, +"kart_078_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5978"}}, +"kart_079_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EF9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F59F8"}}, +"kart_079_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5A78"}}, +"kart_079_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5AF8"}}, +"kart_079_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5B78"}}, +"kart_080_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5BF8"}}, +"kart_080_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5C78"}}, +"kart_080_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFCC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5CF8"}}, +"kart_080_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5D78"}}, +"kart_081_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5DF8"}}, +"kart_081_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5E78"}}, +"kart_081_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5EF8"}}, +"kart_081_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5F78"}}, +"kart_082_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2EFFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F5FF8"}}, +"kart_082_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6078"}}, +"kart_082_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F00C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F60F8"}}, +"kart_082_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6178"}}, +"kart_083_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F01C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F61F8"}}, +"kart_083_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6278"}}, +"kart_083_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F02C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F62F8"}}, +"kart_083_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6378"}}, +"kart_084_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F03C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F63F8"}}, +"kart_084_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6478"}}, +"kart_084_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F04C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F64F8"}}, +"kart_084_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6578"}}, +"kart_085_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F05C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F65F8"}}, +"kart_085_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6678"}}, +"kart_085_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F06C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F66F8"}}, +"kart_085_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6778"}}, +"kart_086_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F07C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F67F8"}}, +"kart_086_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6878"}}, +"kart_086_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F08C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F68F8"}}, +"kart_086_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6978"}}, +"kart_087_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F09C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F69F8"}}, +"kart_087_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6A78"}}, +"kart_087_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6AF8"}}, +"kart_087_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6B78"}}, +"kart_088_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6BF8"}}, +"kart_088_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6C78"}}, +"kart_088_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6CF8"}}, +"kart_088_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6D78"}}, +"kart_089_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6DF8"}}, +"kart_089_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6E78"}}, +"kart_089_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6EF8"}}, +"kart_089_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6F78"}}, +"kart_090_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F0FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F6FF8"}}, +"kart_090_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7078"}}, +"kart_090_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F10C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F70F8"}}, +"kart_090_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7178"}}, +"kart_091_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F11C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F71F8"}}, +"kart_091_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7278"}}, +"kart_091_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F12C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F72F8"}}, +"kart_091_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7378"}}, +"kart_092_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F13C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F73F8"}}, +"kart_092_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7478"}}, +"kart_092_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F14C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F74F8"}}, +"kart_092_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7578"}}, +"kart_093_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F15C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F75F8"}}, +"kart_093_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7678"}}, +"kart_093_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F16C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F76F8"}}, +"kart_093_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7778"}}, +"kart_094_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F17C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F77F8"}}, +"kart_094_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7878"}}, +"kart_094_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F18C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F78F8"}}, +"kart_094_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7978"}}, +"kart_095_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F19C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F79F8"}}, +"kart_095_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7A78"}}, +"kart_095_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7AF8"}}, +"kart_095_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7B78"}}, +"kart_096_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7BF8"}}, +"kart_096_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7C78"}}, +"kart_096_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7CF8"}}, +"kart_096_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7D78"}}, +"kart_097_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7DF8"}}, +"kart_097_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7E78"}}, +"kart_097_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7EF8"}}, +"kart_097_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7F78"}}, +"kart_098_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F1FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F7FF8"}}, +"kart_098_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8078"}}, +"kart_098_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F20C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F80F8"}}, +"kart_098_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8178"}}, +"kart_099_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F21C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F81F8"}}, +"kart_099_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8278"}}, +"kart_099_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F22C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F82F8"}}, +"kart_099_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8378"}}, +"kart_100_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F23C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F83F8"}}, +"kart_100_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8478"}}, +"kart_100_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F24C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F84F8"}}, +"kart_100_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8578"}}, +"kart_101_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F25C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F85F8"}}, +"kart_101_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8678"}}, +"kart_101_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F26C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F86F8"}}, +"kart_101_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8778"}}, +"kart_102_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F27C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F87F8"}}, +"kart_102_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8878"}}, +"kart_102_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F28C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F88F8"}}, +"kart_102_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8978"}}, +"kart_103_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F29C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F89F8"}}, +"kart_103_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8A78"}}, +"kart_103_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8AF8"}}, +"kart_103_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8B78"}}, +"kart_104_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8BF8"}}, +"kart_104_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8C78"}}, +"kart_104_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8CF8"}}, +"kart_104_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8D78"}}, +"kart_105_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8DF8"}}, +"kart_105_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8E78"}}, +"kart_105_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8EF8"}}, +"kart_105_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8F78"}}, +"kart_106_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F2FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F8FF8"}}, +"kart_106_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9078"}}, +"kart_106_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F30C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F90F8"}}, +"kart_106_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9178"}}, +"kart_107_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F31C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F91F8"}}, +"kart_107_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9278"}}, +"kart_107_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F32C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F92F8"}}, +"kart_107_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9378"}}, +"kart_108_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F33C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F93F8"}}, +"kart_108_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9478"}}, +"kart_108_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F34C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F94F8"}}, +"kart_108_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9578"}}, +"kart_109_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F35C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F95F8"}}, +"kart_109_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9678"}}, +"kart_109_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F36C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F96F8"}}, +"kart_109_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9778"}}, +"kart_110_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F37C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F97F8"}}, +"kart_110_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9878"}}, +"kart_110_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F38C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F98F8"}}, +"kart_110_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9978"}}, +"kart_111_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F39C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F99F8"}}, +"kart_111_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9A78"}}, +"kart_111_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9AF8"}}, +"kart_111_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9B78"}}, +"kart_112_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9BF8"}}, +"kart_112_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9C78"}}, +"kart_112_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9CF8"}}, +"kart_112_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9D78"}}, +"kart_113_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9DF8"}}, +"kart_113_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9E78"}}, +"kart_113_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9EF8"}}, +"kart_113_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9F78"}}, +"kart_114_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F3FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2F9FF8"}}, +"kart_114_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA078"}}, +"kart_114_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F40C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA0F8"}}, +"kart_114_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA178"}}, +"kart_115_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F41C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA1F8"}}, +"kart_115_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA278"}}, +"kart_115_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F42C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA2F8"}}, +"kart_115_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA378"}}, +"kart_116_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F43C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA3F8"}}, +"kart_116_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA478"}}, +"kart_116_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F44C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA4F8"}}, +"kart_116_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA578"}}, +"kart_117_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F45C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA5F8"}}, +"kart_117_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA678"}}, +"kart_117_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F46C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA6F8"}}, +"kart_117_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA778"}}, +"kart_118_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F47C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA7F8"}}, +"kart_118_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA878"}}, +"kart_118_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F48C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA8F8"}}, +"kart_118_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA978"}}, +"kart_119_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F49C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FA9F8"}}, +"kart_119_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FAA78"}}, +"kart_119_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FAAF8"}}, +"kart_119_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FAB78"}}, +"kart_120_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FABF8"}}, +"kart_120_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FAC78"}}, +"kart_120_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FACF8"}}, +"kart_120_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FAD78"}}, +"kart_121_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FADF8"}}, +"kart_121_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FAE78"}}, +"kart_121_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FAEF8"}}, +"kart_121_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FAF78"}}, +"kart_122_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F4FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FAFF8"}}, +"kart_122_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB078"}}, +"kart_122_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F50C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB0F8"}}, +"kart_122_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB178"}}, +"kart_123_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F51C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB1F8"}}, +"kart_123_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB278"}}, +"kart_123_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F52C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB2F8"}}, +"kart_123_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB378"}}, +"kart_124_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F53C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB3F8"}}, +"kart_124_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB478"}}, +"kart_124_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F54C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB4F8"}}, +"kart_124_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB578"}}, +"kart_125_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F55C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB5F8"}}, +"kart_125_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB678"}}, +"kart_125_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F56C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB6F8"}}, +"kart_125_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB778"}}, +"kart_126_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F57C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB7F8"}}, +"kart_126_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB878"}}, +"kart_126_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F58C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB8F8"}}, +"kart_126_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB978"}}, +"kart_127_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F59C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FB9F8"}}, +"kart_127_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FBA78"}}, +"kart_127_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FBAF8"}}, +"kart_127_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FBB78"}}, +"kart_128_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FBBF8"}}, +"kart_128_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FBC78"}}, +"kart_128_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FBCF8"}}, +"kart_128_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FBD78"}}, +"kart_129_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FBDF8"}}, +"kart_129_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FBE78"}}, +"kart_129_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FBEF8"}}, +"kart_129_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FBF78"}}, +"kart_130_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F5FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FBFF8"}}, +"kart_130_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC078"}}, +"kart_130_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F60C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC0F8"}}, +"kart_130_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC178"}}, +"kart_131_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F61C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC1F8"}}, +"kart_131_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC278"}}, +"kart_131_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F62C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC2F8"}}, +"kart_131_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC378"}}, +"kart_132_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F63C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC3F8"}}, +"kart_132_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC478"}}, +"kart_132_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F64C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC4F8"}}, +"kart_132_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC578"}}, +"kart_133_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F65C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC5F8"}}, +"kart_133_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC678"}}, +"kart_133_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F66C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC6F8"}}, +"kart_133_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC778"}}, +"kart_134_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F67C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC7F8"}}, +"kart_134_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC878"}}, +"kart_134_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F68C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC8F8"}}, +"kart_134_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC978"}}, +"kart_135_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F69C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FC9F8"}}, +"kart_135_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FCA78"}}, +"kart_135_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FCAF8"}}, +"kart_135_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FCB78"}}, +"kart_136_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FCBF8"}}, +"kart_136_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FCC78"}}, +"kart_136_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FCCF8"}}, +"kart_136_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FCD78"}}, +"kart_137_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FCDF8"}}, +"kart_137_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FCE78"}}, +"kart_137_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FCEF8"}}, +"kart_137_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FCF78"}}, +"kart_138_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F6FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FCFF8"}}, +"kart_138_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD078"}}, +"kart_138_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F70C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD0F8"}}, +"kart_138_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD178"}}, +"kart_139_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F71C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD1F8"}}, +"kart_139_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD278"}}, +"kart_139_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F72C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD2F8"}}, +"kart_139_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD378"}}, +"kart_140_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F73C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD3F8"}}, +"kart_140_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD478"}}, +"kart_140_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F74C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD4F8"}}, +"kart_140_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD578"}}, +"kart_141_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F75C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD5F8"}}, +"kart_141_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD678"}}, +"kart_141_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F76C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD6F8"}}, +"kart_141_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD778"}}, +"kart_142_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F77C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD7F8"}}, +"kart_142_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD878"}}, +"kart_142_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F78C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD8F8"}}, +"kart_142_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD978"}}, +"kart_143_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F79C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FD9F8"}}, +"kart_143_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FDA78"}}, +"kart_143_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FDAF8"}}, +"kart_143_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FDB78"}}, +"kart_144_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FDBF8"}}, +"kart_144_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FDC78"}}, +"kart_144_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FDCF8"}}, +"kart_144_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FDD78"}}, +"kart_145_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FDDF8"}}, +"kart_145_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FDE78"}}, +"kart_145_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FDEF8"}}, +"kart_145_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FDF78"}}, +"kart_146_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F7FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FDFF8"}}, +"kart_146_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE078"}}, +"kart_146_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F80C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE0F8"}}, +"kart_146_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE178"}}, +"kart_147_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F81C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE1F8"}}, +"kart_147_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE278"}}, +"kart_147_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F82C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE2F8"}}, +"kart_147_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE378"}}, +"kart_148_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F83C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE3F8"}}, +"kart_148_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE478"}}, +"kart_148_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F84C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE4F8"}}, +"kart_148_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE578"}}, +"kart_149_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F85C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE5F8"}}, +"kart_149_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE678"}}, +"kart_149_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F86C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE6F8"}}, +"kart_149_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE778"}}, +"kart_150_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F87C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE7F8"}}, +"kart_150_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE878"}}, +"kart_150_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F88C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE8F8"}}, +"kart_150_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE978"}}, +"kart_151_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F89C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FE9F8"}}, +"kart_151_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FEA78"}}, +"kart_151_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FEAF8"}}, +"kart_151_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FEB78"}}, +"kart_152_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FEBF8"}}, +"kart_152_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FEC78"}}, +"kart_152_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FECF8"}}, +"kart_152_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FED78"}}, +"kart_153_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FEDF8"}}, +"kart_153_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FEE78"}}, +"kart_153_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FEEF8"}}, +"kart_153_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FEF78"}}, +"kart_154_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F8FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FEFF8"}}, +"kart_154_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF078"}}, +"kart_154_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F90C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF0F8"}}, +"kart_154_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF178"}}, +"kart_155_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F91C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF1F8"}}, +"kart_155_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF278"}}, +"kart_155_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F92C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF2F8"}}, +"kart_155_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF378"}}, +"kart_156_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F93C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF3F8"}}, +"kart_156_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF478"}}, +"kart_156_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F94C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF4F8"}}, +"kart_156_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF578"}}, +"kart_157_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F95C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF5F8"}}, +"kart_157_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF678"}}, +"kart_157_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F96C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF6F8"}}, +"kart_157_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF778"}}, +"kart_158_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F97C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF7F8"}}, +"kart_158_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF878"}}, +"kart_158_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F98C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF8F8"}}, +"kart_158_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF978"}}, +"kart_159_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F99C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FF9F8"}}, +"kart_159_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FFA78"}}, +"kart_159_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FFAF8"}}, +"kart_159_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FFB78"}}, +"kart_160_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FFBF8"}}, +"kart_160_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FFC78"}}, +"kart_160_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FFCF8"}}, +"kart_160_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FFD78"}}, +"kart_161_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FFDF8"}}, +"kart_161_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FFE78"}}, +"kart_161_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FFEF8"}}, +"kart_161_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FFF78"}}, +"kart_162_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2F9FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x2FFFF8"}}, +"kart_162_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300078"}}, +"kart_162_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3000F8"}}, +"kart_162_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300178"}}, +"kart_163_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3001F8"}}, +"kart_163_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300278"}}, +"kart_163_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3002F8"}}, +"kart_163_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300378"}}, +"kart_164_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3003F8"}}, +"kart_164_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300478"}}, +"kart_164_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3004F8"}}, +"kart_164_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300578"}}, +"kart_165_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3005F8"}}, +"kart_165_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300678"}}, +"kart_165_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3006F8"}}, +"kart_165_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300778"}}, +"kart_166_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3007F8"}}, +"kart_166_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300878"}}, +"kart_166_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3008F8"}}, +"kart_166_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300978"}}, +"kart_167_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FA9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3009F8"}}, +"kart_167_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FAA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300A78"}}, +"kart_167_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FAAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300AF8"}}, +"kart_167_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FAB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300B78"}}, +"kart_168_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FABC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300BF8"}}, +"kart_168_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FAC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300C78"}}, +"kart_168_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FACC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300CF8"}}, +"kart_168_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FAD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300D78"}}, +"kart_169_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FADC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300DF8"}}, +"kart_169_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FAE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300E78"}}, +"kart_169_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FAEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300EF8"}}, +"kart_169_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FAF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300F78"}}, +"kart_170_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FAFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x300FF8"}}, +"kart_170_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301078"}}, +"kart_170_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3010F8"}}, +"kart_170_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301178"}}, +"kart_171_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3011F8"}}, +"kart_171_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301278"}}, +"kart_171_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3012F8"}}, +"kart_171_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301378"}}, +"kart_172_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3013F8"}}, +"kart_172_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301478"}}, +"kart_172_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3014F8"}}, +"kart_172_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301578"}}, +"kart_173_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3015F8"}}, +"kart_173_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301678"}}, +"kart_173_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3016F8"}}, +"kart_173_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301778"}}, +"kart_174_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3017F8"}}, +"kart_174_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301878"}}, +"kart_174_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3018F8"}}, +"kart_174_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301978"}}, +"kart_175_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FB9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3019F8"}}, +"kart_175_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301A78"}}, +"kart_175_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301AF8"}}, +"kart_175_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301B78"}}, +"kart_176_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301BF8"}}, +"kart_176_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301C78"}}, +"kart_176_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBCC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301CF8"}}, +"kart_176_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301D78"}}, +"kart_177_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301DF8"}}, +"kart_177_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301E78"}}, +"kart_177_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301EF8"}}, +"kart_177_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301F78"}}, +"kart_178_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FBFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x301FF8"}}, +"kart_178_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302078"}}, +"kart_178_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3020F8"}}, +"kart_178_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302178"}}, +"kart_179_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3021F8"}}, +"kart_179_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302278"}}, +"kart_179_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3022F8"}}, +"kart_179_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302378"}}, +"kart_180_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3023F8"}}, +"kart_180_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302478"}}, +"kart_180_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3024F8"}}, +"kart_180_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302578"}}, +"kart_181_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3025F8"}}, +"kart_181_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302678"}}, +"kart_181_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3026F8"}}, +"kart_181_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302778"}}, +"kart_182_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3027F8"}}, +"kart_182_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302878"}}, +"kart_182_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3028F8"}}, +"kart_182_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302978"}}, +"kart_183_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FC9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3029F8"}}, +"kart_183_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302A78"}}, +"kart_183_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302AF8"}}, +"kart_183_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302B78"}}, +"kart_184_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302BF8"}}, +"kart_184_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302C78"}}, +"kart_184_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCCC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302CF8"}}, +"kart_184_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302D78"}}, +"kart_185_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302DF8"}}, +"kart_185_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302E78"}}, +"kart_185_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302EF8"}}, +"kart_185_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302F78"}}, +"kart_186_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FCFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x302FF8"}}, +"kart_186_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303078"}}, +"kart_186_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3030F8"}}, +"kart_186_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303178"}}, +"kart_187_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3031F8"}}, +"kart_187_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303278"}}, +"kart_187_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3032F8"}}, +"kart_187_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303378"}}, +"kart_188_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3033F8"}}, +"kart_188_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303478"}}, +"kart_188_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3034F8"}}, +"kart_188_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303578"}}, +"kart_189_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3035F8"}}, +"kart_189_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303678"}}, +"kart_189_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3036F8"}}, +"kart_189_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303778"}}, +"kart_190_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3037F8"}}, +"kart_190_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303878"}}, +"kart_190_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3038F8"}}, +"kart_190_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303978"}}, +"kart_191_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FD9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3039F8"}}, +"kart_191_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303A78"}}, +"kart_191_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303AF8"}}, +"kart_191_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303B78"}}, +"kart_192_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303BF8"}}, +"kart_192_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303C78"}}, +"kart_192_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDCC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303CF8"}}, +"kart_192_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303D78"}}, +"kart_193_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303DF8"}}, +"kart_193_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303E78"}}, +"kart_193_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303EF8"}}, +"kart_193_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303F78"}}, +"kart_194_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FDFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x303FF8"}}, +"kart_194_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304078"}}, +"kart_194_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3040F8"}}, +"kart_194_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304178"}}, +"kart_195_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3041F8"}}, +"kart_195_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304278"}}, +"kart_195_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3042F8"}}, +"kart_195_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304378"}}, +"kart_196_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3043F8"}}, +"kart_196_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304478"}}, +"kart_196_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3044F8"}}, +"kart_196_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304578"}}, +"kart_197_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3045F8"}}, +"kart_197_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304678"}}, +"kart_197_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3046F8"}}, +"kart_197_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304778"}}, +"kart_198_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3047F8"}}, +"kart_198_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304878"}}, +"kart_198_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3048F8"}}, +"kart_198_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304978"}}, +"kart_199_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FE9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3049F8"}}, +"kart_199_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304A78"}}, +"kart_199_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304AF8"}}, +"kart_199_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304B78"}}, +"kart_200_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304BF8"}}, +"kart_200_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304C78"}}, +"kart_200_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FECC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304CF8"}}, +"kart_200_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FED48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304D78"}}, +"kart_201_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304DF8"}}, +"kart_201_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304E78"}}, +"kart_201_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304EF8"}}, +"kart_201_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304F78"}}, +"kart_202_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FEFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x304FF8"}}, +"kart_202_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305078"}}, +"kart_202_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF0C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3050F8"}}, +"kart_202_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305178"}}, +"kart_203_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF1C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3051F8"}}, +"kart_203_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305278"}}, +"kart_203_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF2C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3052F8"}}, +"kart_203_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305378"}}, +"kart_204_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF3C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3053F8"}}, +"kart_204_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305478"}}, +"kart_204_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF4C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3054F8"}}, +"kart_204_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305578"}}, +"kart_205_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF5C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3055F8"}}, +"kart_205_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305678"}}, +"kart_205_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF6C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3056F8"}}, +"kart_205_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305778"}}, +"kart_206_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF7C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3057F8"}}, +"kart_206_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305878"}}, +"kart_206_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF8C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3058F8"}}, +"kart_206_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305978"}}, +"kart_207_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FF9C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3059F8"}}, +"kart_207_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFA48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305A78"}}, +"kart_207_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFAC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305AF8"}}, +"kart_207_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFB48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305B78"}}, +"kart_208_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFBC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305BF8"}}, +"kart_208_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFC48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305C78"}}, +"kart_208_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFCC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305CF8"}}, +"kart_208_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFD48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305D78"}}, +"kart_209_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFDC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305DF8"}}, +"kart_209_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFE48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305E78"}}, +"kart_209_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFEC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305EF8"}}, +"kart_209_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFF48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305F78"}}, +"kart_210_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x2FFFC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x305FF8"}}, +"kart_210_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x300048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306078"}}, +"kart_210_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3000C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3060F8"}}, +"kart_210_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x300148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306178"}}, +"kart_211_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3001C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3061F8"}}, +"kart_211_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x300248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306278"}}, +"kart_211_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3002C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3062F8"}}, +"kart_211_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x300348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306378"}}, +"kart_212_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3003C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3063F8"}}, +"kart_212_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x300448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306478"}}, +"kart_212_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3004C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3064F8"}}, +"kart_212_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x300548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306578"}}, +"kart_213_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3005C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3065F8"}}, +"kart_213_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x300648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306678"}}, +"kart_213_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3006C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3066F8"}}, +"kart_213_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x300748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306778"}}, +"kart_214_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3007C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3067F8"}}, +"kart_214_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x300848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306878"}}, +"kart_214_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3008C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3068F8"}}, +"kart_214_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x300948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306978"}}, +"kart_215_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3009C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3069F8"}}, +"kart_215_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x300A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306A78"}}, +"kart_215_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x300AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306AF8"}}, +"kart_215_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x300B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306B78"}}, +"kart_216_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x300BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306BF8"}}, +"kart_216_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x300C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306C78"}}, +"kart_216_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x300CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306CF8"}}, +"kart_216_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x300D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306D78"}}, +"kart_217_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x300DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306DF8"}}, +"kart_217_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x300E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306E78"}}, +"kart_217_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x300EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306EF8"}}, +"kart_217_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x300F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306F78"}}, +"kart_218_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x300FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x306FF8"}}, +"kart_218_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x301048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307078"}}, +"kart_218_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3010C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3070F8"}}, +"kart_218_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x301148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307178"}}, +"kart_219_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3011C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3071F8"}}, +"kart_219_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x301248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307278"}}, +"kart_219_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3012C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3072F8"}}, +"kart_219_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x301348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307378"}}, +"kart_220_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3013C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3073F8"}}, +"kart_220_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x301448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307478"}}, +"kart_220_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3014C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3074F8"}}, +"kart_220_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x301548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307578"}}, +"kart_221_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3015C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3075F8"}}, +"kart_221_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x301648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307678"}}, +"kart_221_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3016C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3076F8"}}, +"kart_221_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x301748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307778"}}, +"kart_222_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3017C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3077F8"}}, +"kart_222_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x301848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307878"}}, +"kart_222_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3018C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3078F8"}}, +"kart_222_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x301948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307978"}}, +"kart_223_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3019C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3079F8"}}, +"kart_223_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x301A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307A78"}}, +"kart_223_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x301AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307AF8"}}, +"kart_223_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x301B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307B78"}}, +"kart_224_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x301BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307BF8"}}, +"kart_224_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x301C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307C78"}}, +"kart_224_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x301CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307CF8"}}, +"kart_224_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x301D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307D78"}}, +"kart_225_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x301DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307DF8"}}, +"kart_225_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x301E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307E78"}}, +"kart_225_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x301EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307EF8"}}, +"kart_225_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x301F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307F78"}}, +"kart_226_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x301FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x307FF8"}}, +"kart_226_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x302048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308078"}}, +"kart_226_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3020C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3080F8"}}, +"kart_226_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x302148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308178"}}, +"kart_227_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3021C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3081F8"}}, +"kart_227_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x302248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308278"}}, +"kart_227_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3022C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3082F8"}}, +"kart_227_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x302348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308378"}}, +"kart_228_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3023C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3083F8"}}, +"kart_228_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x302448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308478"}}, +"kart_228_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3024C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3084F8"}}, +"kart_228_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x302548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308578"}}, +"kart_229_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3025C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3085F8"}}, +"kart_229_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x302648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308678"}}, +"kart_229_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3026C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3086F8"}}, +"kart_229_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x302748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308778"}}, +"kart_230_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3027C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3087F8"}}, +"kart_230_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x302848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308878"}}, +"kart_230_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3028C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3088F8"}}, +"kart_230_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x302948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308978"}}, +"kart_231_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3029C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3089F8"}}, +"kart_231_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x302A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308A78"}}, +"kart_231_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x302AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308AF8"}}, +"kart_231_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x302B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308B78"}}, +"kart_232_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x302BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308BF8"}}, +"kart_232_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x302C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308C78"}}, +"kart_232_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x302CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308CF8"}}, +"kart_232_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x302D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308D78"}}, +"kart_233_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x302DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308DF8"}}, +"kart_233_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x302E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308E78"}}, +"kart_233_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x302EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308EF8"}}, +"kart_233_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x302F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308F78"}}, +"kart_234_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x302FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x308FF8"}}, +"kart_234_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x303048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309078"}}, +"kart_234_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3030C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3090F8"}}, +"kart_234_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x303148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309178"}}, +"kart_235_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3031C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3091F8"}}, +"kart_235_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x303248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309278"}}, +"kart_235_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3032C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3092F8"}}, +"kart_235_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x303348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309378"}}, +"kart_236_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3033C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3093F8"}}, +"kart_236_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x303448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309478"}}, +"kart_236_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3034C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3094F8"}}, +"kart_236_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x303548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309578"}}, +"kart_237_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3035C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3095F8"}}, +"kart_237_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x303648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309678"}}, +"kart_237_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3036C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3096F8"}}, +"kart_237_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x303748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309778"}}, +"kart_238_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3037C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3097F8"}}, +"kart_238_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x303848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309878"}}, +"kart_238_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3038C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3098F8"}}, +"kart_238_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x303948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309978"}}, +"kart_239_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3039C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x3099F8"}}, +"kart_239_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x303A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309A78"}}, +"kart_239_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x303AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309AF8"}}, +"kart_239_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x303B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309B78"}}, +"kart_240_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x303BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309BF8"}}, +"kart_240_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x303C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309C78"}}, +"kart_240_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x303CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309CF8"}}, +"kart_240_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x303D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309D78"}}, +"kart_241_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x303DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309DF8"}}, +"kart_241_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x303E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309E78"}}, +"kart_241_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x303EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309EF8"}}, +"kart_241_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x303F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309F78"}}, +"kart_242_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x303FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x309FF8"}}, +"kart_242_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x304048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A078"}}, +"kart_242_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3040C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A0F8"}}, +"kart_242_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x304148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A178"}}, +"kart_243_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3041C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A1F8"}}, +"kart_243_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x304248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A278"}}, +"kart_243_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3042C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A2F8"}}, +"kart_243_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x304348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A378"}}, +"kart_244_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3043C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A3F8"}}, +"kart_244_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x304448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A478"}}, +"kart_244_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3044C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A4F8"}}, +"kart_244_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x304548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A578"}}, +"kart_245_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3045C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A5F8"}}, +"kart_245_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x304648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A678"}}, +"kart_245_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3046C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A6F8"}}, +"kart_245_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x304748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A778"}}, +"kart_246_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3047C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A7F8"}}, +"kart_246_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x304848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A878"}}, +"kart_246_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3048C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A8F8"}}, +"kart_246_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x304948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A978"}}, +"kart_247_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3049C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30A9F8"}}, +"kart_247_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x304A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30AA78"}}, +"kart_247_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x304AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30AAF8"}}, +"kart_247_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x304B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30AB78"}}, +"kart_248_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x304BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30ABF8"}}, +"kart_248_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x304C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30AC78"}}, +"kart_248_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x304CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30ACF8"}}, +"kart_248_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x304D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30AD78"}}, +"kart_249_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x304DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30ADF8"}}, +"kart_249_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x304E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30AE78"}}, +"kart_249_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x304EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30AEF8"}}, +"kart_249_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x304F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30AF78"}}, +"kart_250_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x304FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30AFF8"}}, +"kart_250_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x305048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B078"}}, +"kart_250_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3050C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B0F8"}}, +"kart_250_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x305148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B178"}}, +"kart_251_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3051C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B1F8"}}, +"kart_251_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x305248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B278"}}, +"kart_251_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3052C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B2F8"}}, +"kart_251_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x305348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B378"}}, +"kart_252_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3053C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B3F8"}}, +"kart_252_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x305448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B478"}}, +"kart_252_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3054C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B4F8"}}, +"kart_252_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x305548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B578"}}, +"kart_253_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3055C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B5F8"}}, +"kart_253_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x305648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B678"}}, +"kart_253_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3056C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B6F8"}}, +"kart_253_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x305748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B778"}}, +"kart_254_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3057C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B7F8"}}, +"kart_254_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x305848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B878"}}, +"kart_254_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3058C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B8F8"}}, +"kart_254_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x305948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B978"}}, +"kart_255_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3059C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30B9F8"}}, +"kart_255_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x305A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30BA78"}}, +"kart_255_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x305AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30BAF8"}}, +"kart_255_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x305B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30BB78"}}, +"kart_256_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x305BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30BBF8"}}, +"kart_256_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x305C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30BC78"}}, +"kart_256_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x305CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30BCF8"}}, +"kart_256_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x305D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30BD78"}}, +"kart_257_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x305DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30BDF8"}}, +"kart_257_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x305E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30BE78"}}, +"kart_257_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x305EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30BEF8"}}, +"kart_257_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x305F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30BF78"}}, +"kart_258_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x305FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30BFF8"}}, +"kart_258_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x306048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C078"}}, +"kart_258_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3060C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C0F8"}}, +"kart_258_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x306148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C178"}}, +"kart_259_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3061C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C1F8"}}, +"kart_259_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x306248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C278"}}, +"kart_259_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3062C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C2F8"}}, +"kart_259_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x306348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C378"}}, +"kart_260_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3063C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C3F8"}}, +"kart_260_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x306448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C478"}}, +"kart_260_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3064C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C4F8"}}, +"kart_260_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x306548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C578"}}, +"kart_261_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3065C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C5F8"}}, +"kart_261_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x306648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C678"}}, +"kart_261_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3066C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C6F8"}}, +"kart_261_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x306748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C778"}}, +"kart_262_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3067C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C7F8"}}, +"kart_262_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x306848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C878"}}, +"kart_262_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3068C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C8F8"}}, +"kart_262_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x306948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C978"}}, +"kart_263_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3069C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30C9F8"}}, +"kart_263_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x306A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30CA78"}}, +"kart_263_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x306AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30CAF8"}}, +"kart_263_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x306B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30CB78"}}, +"kart_264_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x306BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30CBF8"}}, +"kart_264_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x306C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30CC78"}}, +"kart_264_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x306CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30CCF8"}}, +"kart_264_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x306D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30CD78"}}, +"kart_265_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x306DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30CDF8"}}, +"kart_265_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x306E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30CE78"}}, +"kart_265_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x306EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30CEF8"}}, +"kart_265_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x306F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30CF78"}}, +"kart_266_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x306FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30CFF8"}}, +"kart_266_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x307048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D078"}}, +"kart_266_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3070C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D0F8"}}, +"kart_266_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x307148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D178"}}, +"kart_267_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3071C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D1F8"}}, +"kart_267_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x307248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D278"}}, +"kart_267_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3072C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D2F8"}}, +"kart_267_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x307348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D378"}}, +"kart_268_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3073C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D3F8"}}, +"kart_268_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x307448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D478"}}, +"kart_268_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3074C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D4F8"}}, +"kart_268_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x307548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D578"}}, +"kart_269_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3075C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D5F8"}}, +"kart_269_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x307648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D678"}}, +"kart_269_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3076C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D6F8"}}, +"kart_269_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x307748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D778"}}, +"kart_270_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3077C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D7F8"}}, +"kart_270_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x307848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D878"}}, +"kart_270_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3078C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D8F8"}}, +"kart_270_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x307948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D978"}}, +"kart_271_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3079C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30D9F8"}}, +"kart_271_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x307A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30DA78"}}, +"kart_271_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x307AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30DAF8"}}, +"kart_271_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x307B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30DB78"}}, +"kart_272_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x307BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30DBF8"}}, +"kart_272_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x307C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30DC78"}}, +"kart_272_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x307CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30DCF8"}}, +"kart_272_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x307D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30DD78"}}, +"kart_273_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x307DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30DDF8"}}, +"kart_273_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x307E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30DE78"}}, +"kart_273_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x307EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30DEF8"}}, +"kart_273_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x307F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30DF78"}}, +"kart_274_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x307FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30DFF8"}}, +"kart_274_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x308048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E078"}}, +"kart_274_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3080C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E0F8"}}, +"kart_274_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x308148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E178"}}, +"kart_275_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3081C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E1F8"}}, +"kart_275_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x308248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E278"}}, +"kart_275_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3082C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E2F8"}}, +"kart_275_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x308348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E378"}}, +"kart_276_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3083C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E3F8"}}, +"kart_276_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x308448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E478"}}, +"kart_276_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3084C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E4F8"}}, +"kart_276_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x308548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E578"}}, +"kart_277_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3085C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E5F8"}}, +"kart_277_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x308648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E678"}}, +"kart_277_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3086C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E6F8"}}, +"kart_277_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x308748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E778"}}, +"kart_278_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3087C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E7F8"}}, +"kart_278_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x308848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E878"}}, +"kart_278_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3088C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E8F8"}}, +"kart_278_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x308948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E978"}}, +"kart_279_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3089C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30E9F8"}}, +"kart_279_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x308A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30EA78"}}, +"kart_279_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x308AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30EAF8"}}, +"kart_279_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x308B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30EB78"}}, +"kart_280_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x308BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30EBF8"}}, +"kart_280_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x308C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30EC78"}}, +"kart_280_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x308CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30ECF8"}}, +"kart_280_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x308D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30ED78"}}, +"kart_281_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x308DC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30EDF8"}}, +"kart_281_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x308E48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30EE78"}}, +"kart_281_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x308EC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30EEF8"}}, +"kart_281_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x308F48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30EF78"}}, +"kart_282_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x308FC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30EFF8"}}, +"kart_282_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x309048", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F078"}}, +"kart_282_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3090C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F0F8"}}, +"kart_282_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x309148", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F178"}}, +"kart_283_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3091C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F1F8"}}, +"kart_283_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x309248", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F278"}}, +"kart_283_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3092C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F2F8"}}, +"kart_283_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x309348", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F378"}}, +"kart_284_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3093C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F3F8"}}, +"kart_284_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x309448", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F478"}}, +"kart_284_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3094C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F4F8"}}, +"kart_284_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x309548", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F578"}}, +"kart_285_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3095C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F5F8"}}, +"kart_285_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x309648", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F678"}}, +"kart_285_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3096C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F6F8"}}, +"kart_285_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x309748", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F778"}}, +"kart_286_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3097C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F7F8"}}, +"kart_286_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x309848", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F878"}}, +"kart_286_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x3098C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F8F8"}}, +"kart_286_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x309948", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F978"}}, +"kart_287_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x3099C8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30F9F8"}}, +"kart_287_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x309A48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30FA78"}}, +"kart_287_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x309AC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30FAF8"}}, +"kart_287_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x309B48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30FB78"}}, +"kart_288_wheel_0": {"output_dir": "yoshi/palettes", "rom_offset": "0x309BC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30FBF8"}}, +"kart_288_wheel_1": {"output_dir": "yoshi/palettes", "rom_offset": "0x309C48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30FC78"}}, +"kart_288_wheel_2": {"output_dir": "yoshi/palettes", "rom_offset": "0x309CC8", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30FCF8"}}, +"kart_288_wheel_3": {"output_dir": "yoshi/palettes", "rom_offset": "0x309D48", "width": 16, "height": 4, "type": "rgba16", "jp.v11": {"rom_offset": "0x30FD78"}}, +"yoshi_kart_palette": {"output_dir": "yoshi/palettes", "rom_offset": "0x309DC8", "width": 16, "height": 12, "type": "rgba16", "jp.v11": {"rom_offset": "0x30FDF8"}} } \ No newline at end of file diff --git a/assets/lakitu/bluelight.json b/assets/lakitu/bluelight.json index 803da7299a..259918a75a 100644 --- a/assets/lakitu/bluelight.json +++ b/assets/lakitu/bluelight.json @@ -1,11 +1,11 @@ { -"common_tlut_lakitu_blue_lights": {"output_dir": "bluelight", "rom_offset": "0x132B50", "block_offset": "0x252D8", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureLakituBlueLight1": {"output_dir": "bluelight", "rom_offset": "0x6B84C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights"}, -"gTextureLakituBlueLight2": {"output_dir": "bluelight", "rom_offset": "0x6B9480", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights"}, -"gTextureLakituBlueLight3": {"output_dir": "bluelight", "rom_offset": "0x6BA440", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights"}, -"gTextureLakituBlueLight4": {"output_dir": "bluelight", "rom_offset": "0x6BB400", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights"}, -"gTextureLakituBlueLight5": {"output_dir": "bluelight", "rom_offset": "0x6BC3C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights"}, -"gTextureLakituBlueLight6": {"output_dir": "bluelight", "rom_offset": "0x6BD380", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights"}, -"gTextureLakituBlueLight7": {"output_dir": "bluelight", "rom_offset": "0x6BE340", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights"}, -"gTextureLakituBlueLight8": {"output_dir": "bluelight", "rom_offset": "0x6BF300", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights"} +"common_tlut_lakitu_blue_lights": {"output_dir": "bluelight", "rom_offset": "0x132B50", "block_offset": "0x252D8", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0", "block_offset": "0x24898"}}, +"gTextureLakituBlueLight1": {"output_dir": "bluelight", "rom_offset": "0x6B84C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C33A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituBlueLight2": {"output_dir": "bluelight", "rom_offset": "0x6B9480", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C4360", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituBlueLight3": {"output_dir": "bluelight", "rom_offset": "0x6BA440", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C5320", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituBlueLight4": {"output_dir": "bluelight", "rom_offset": "0x6BB400", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C62E0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituBlueLight5": {"output_dir": "bluelight", "rom_offset": "0x6BC3C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C72A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituBlueLight6": {"output_dir": "bluelight", "rom_offset": "0x6BD380", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C8260", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituBlueLight7": {"output_dir": "bluelight", "rom_offset": "0x6BE340", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C9220", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituBlueLight8": {"output_dir": "bluelight", "rom_offset": "0x6BF300", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6CA1E0", "type": "bin", "size": "0xFC0"}} } diff --git a/assets/lakitu/checkeredflag.json b/assets/lakitu/checkeredflag.json index f440f70508..26f96ca2b6 100644 --- a/assets/lakitu/checkeredflag.json +++ b/assets/lakitu/checkeredflag.json @@ -1,35 +1,35 @@ { -"common_tlut_lakitu_checkered_flag": {"output_dir": "checkeredflag", "rom_offset": "0x132B50", "block_offset": "0x254D8", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureLakituCheckeredFlag01": {"output_dir": "checkeredflag", "rom_offset": "0x6C02C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag02": {"output_dir": "checkeredflag", "rom_offset": "0x6C1280", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag03": {"output_dir": "checkeredflag", "rom_offset": "0x6C2240", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag04": {"output_dir": "checkeredflag", "rom_offset": "0x6C3200", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag05": {"output_dir": "checkeredflag", "rom_offset": "0x6C41C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag06": {"output_dir": "checkeredflag", "rom_offset": "0x6C5180", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag07": {"output_dir": "checkeredflag", "rom_offset": "0x6C6140", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag08": {"output_dir": "checkeredflag", "rom_offset": "0x6C7100", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag09": {"output_dir": "checkeredflag", "rom_offset": "0x6C80C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag10": {"output_dir": "checkeredflag", "rom_offset": "0x6C9080", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag11": {"output_dir": "checkeredflag", "rom_offset": "0x6CA040", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag12": {"output_dir": "checkeredflag", "rom_offset": "0x6CB000", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag13": {"output_dir": "checkeredflag", "rom_offset": "0x6CBFC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag14": {"output_dir": "checkeredflag", "rom_offset": "0x6CCF80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag15": {"output_dir": "checkeredflag", "rom_offset": "0x6CDF40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag16": {"output_dir": "checkeredflag", "rom_offset": "0x6CEF00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag17": {"output_dir": "checkeredflag", "rom_offset": "0x6CFEC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag18": {"output_dir": "checkeredflag", "rom_offset": "0x6D0E80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag19": {"output_dir": "checkeredflag", "rom_offset": "0x6D1E40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag20": {"output_dir": "checkeredflag", "rom_offset": "0x6D2E00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag21": {"output_dir": "checkeredflag", "rom_offset": "0x6D3DC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag22": {"output_dir": "checkeredflag", "rom_offset": "0x6D4D80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag23": {"output_dir": "checkeredflag", "rom_offset": "0x6D5D40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag24": {"output_dir": "checkeredflag", "rom_offset": "0x6D6D00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag25": {"output_dir": "checkeredflag", "rom_offset": "0x6D7CC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag26": {"output_dir": "checkeredflag", "rom_offset": "0x6D8C80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag27": {"output_dir": "checkeredflag", "rom_offset": "0x6D9C40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag28": {"output_dir": "checkeredflag", "rom_offset": "0x6DAC00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag29": {"output_dir": "checkeredflag", "rom_offset": "0x6DBBC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag30": {"output_dir": "checkeredflag", "rom_offset": "0x6DCB80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag31": {"output_dir": "checkeredflag", "rom_offset": "0x6DDB40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"}, -"gTextureLakituCheckeredFlag32": {"output_dir": "checkeredflag", "rom_offset": "0x6DEB00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag"} +"common_tlut_lakitu_checkered_flag": {"output_dir": "checkeredflag", "rom_offset": "0x132B50", "block_offset": "0x254D8", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0", "block_offset": "0x24A98"}}, +"gTextureLakituCheckeredFlag01": {"output_dir": "checkeredflag", "rom_offset": "0x6C02C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6CB1A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag02": {"output_dir": "checkeredflag", "rom_offset": "0x6C1280", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6CC160", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag03": {"output_dir": "checkeredflag", "rom_offset": "0x6C2240", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6CD120", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag04": {"output_dir": "checkeredflag", "rom_offset": "0x6C3200", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6CE0E0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag05": {"output_dir": "checkeredflag", "rom_offset": "0x6C41C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6CF0A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag06": {"output_dir": "checkeredflag", "rom_offset": "0x6C5180", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D0060", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag07": {"output_dir": "checkeredflag", "rom_offset": "0x6C6140", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D1020", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag08": {"output_dir": "checkeredflag", "rom_offset": "0x6C7100", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D1FE0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag09": {"output_dir": "checkeredflag", "rom_offset": "0x6C80C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D2FA0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag10": {"output_dir": "checkeredflag", "rom_offset": "0x6C9080", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D3F60", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag11": {"output_dir": "checkeredflag", "rom_offset": "0x6CA040", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D4F20", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag12": {"output_dir": "checkeredflag", "rom_offset": "0x6CB000", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D5EE0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag13": {"output_dir": "checkeredflag", "rom_offset": "0x6CBFC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D6EA0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag14": {"output_dir": "checkeredflag", "rom_offset": "0x6CCF80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D7E60", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag15": {"output_dir": "checkeredflag", "rom_offset": "0x6CDF40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D8E20", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag16": {"output_dir": "checkeredflag", "rom_offset": "0x6CEF00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D9DE0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag17": {"output_dir": "checkeredflag", "rom_offset": "0x6CFEC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6DADA0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag18": {"output_dir": "checkeredflag", "rom_offset": "0x6D0E80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6DBD60", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag19": {"output_dir": "checkeredflag", "rom_offset": "0x6D1E40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6DCD20", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag20": {"output_dir": "checkeredflag", "rom_offset": "0x6D2E00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6DDCE0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag21": {"output_dir": "checkeredflag", "rom_offset": "0x6D3DC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6DECA0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag22": {"output_dir": "checkeredflag", "rom_offset": "0x6D4D80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6DFC60", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag23": {"output_dir": "checkeredflag", "rom_offset": "0x6D5D40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E0C20", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag24": {"output_dir": "checkeredflag", "rom_offset": "0x6D6D00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E1BE0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag25": {"output_dir": "checkeredflag", "rom_offset": "0x6D7CC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E2BA0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag26": {"output_dir": "checkeredflag", "rom_offset": "0x6D8C80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E3B60", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag27": {"output_dir": "checkeredflag", "rom_offset": "0x6D9C40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E4B20", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag28": {"output_dir": "checkeredflag", "rom_offset": "0x6DAC00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E5AE0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag29": {"output_dir": "checkeredflag", "rom_offset": "0x6DBBC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E6AA0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag30": {"output_dir": "checkeredflag", "rom_offset": "0x6DCB80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E7A60", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag31": {"output_dir": "checkeredflag", "rom_offset": "0x6DDB40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E8A20", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituCheckeredFlag32": {"output_dir": "checkeredflag", "rom_offset": "0x6DEB00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E99E0", "type": "bin", "size": "0xFC0"}} } diff --git a/assets/lakitu/finallap.json b/assets/lakitu/finallap.json index 47129a4a27..d3a89fbd54 100644 --- a/assets/lakitu/finallap.json +++ b/assets/lakitu/finallap.json @@ -1,19 +1,19 @@ { -"common_tlut_lakitu_final_lap": {"output_dir": "finallap", "rom_offset": "0x132B50", "block_offset": "0x258D8", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureLakituFinalLap01": {"output_dir": "finallap", "rom_offset": "0x6EF6C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap"}, -"gTextureLakituFinalLap02": {"output_dir": "finallap", "rom_offset": "0x6F0680", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap"}, -"gTextureLakituFinalLap03": {"output_dir": "finallap", "rom_offset": "0x6F1640", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap"}, -"gTextureLakituFinalLap04": {"output_dir": "finallap", "rom_offset": "0x6F2600", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap"}, -"gTextureLakituFinalLap05": {"output_dir": "finallap", "rom_offset": "0x6F35C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap"}, -"gTextureLakituFinalLap06": {"output_dir": "finallap", "rom_offset": "0x6F4580", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap"}, -"gTextureLakituFinalLap07": {"output_dir": "finallap", "rom_offset": "0x6F5540", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap"}, -"gTextureLakituFinalLap08": {"output_dir": "finallap", "rom_offset": "0x6F6500", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap"}, -"gTextureLakituFinalLap09": {"output_dir": "finallap", "rom_offset": "0x6F74C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap"}, -"gTextureLakituFinalLap10": {"output_dir": "finallap", "rom_offset": "0x6F8480", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap"}, -"gTextureLakituFinalLap11": {"output_dir": "finallap", "rom_offset": "0x6F9440", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap"}, -"gTextureLakituFinalLap12": {"output_dir": "finallap", "rom_offset": "0x6FA400", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap"}, -"gTextureLakituFinalLap13": {"output_dir": "finallap", "rom_offset": "0x6FB3C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap"}, -"gTextureLakituFinalLap14": {"output_dir": "finallap", "rom_offset": "0x6FC380", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap"}, -"gTextureLakituFinalLap15": {"output_dir": "finallap", "rom_offset": "0x6FD340", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap"}, -"gTextureLakituFinalLap16": {"output_dir": "finallap", "rom_offset": "0x6FE300", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap"} +"common_tlut_lakitu_final_lap": {"output_dir": "finallap", "rom_offset": "0x132B50", "block_offset": "0x258D8", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0", "block_offset": "0x24E98"}}, +"gTextureLakituFinalLap01": {"output_dir": "finallap", "rom_offset": "0x6EF6C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x6FA5A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituFinalLap02": {"output_dir": "finallap", "rom_offset": "0x6F0680", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x6FB560", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituFinalLap03": {"output_dir": "finallap", "rom_offset": "0x6F1640", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x6FC520", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituFinalLap04": {"output_dir": "finallap", "rom_offset": "0x6F2600", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x6FD4E0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituFinalLap05": {"output_dir": "finallap", "rom_offset": "0x6F35C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x6FE4A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituFinalLap06": {"output_dir": "finallap", "rom_offset": "0x6F4580", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x6FF460", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituFinalLap07": {"output_dir": "finallap", "rom_offset": "0x6F5540", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x700420", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituFinalLap08": {"output_dir": "finallap", "rom_offset": "0x6F6500", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x7013E0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituFinalLap09": {"output_dir": "finallap", "rom_offset": "0x6F74C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x7023A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituFinalLap10": {"output_dir": "finallap", "rom_offset": "0x6F8480", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x703360", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituFinalLap11": {"output_dir": "finallap", "rom_offset": "0x6F9440", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x704320", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituFinalLap12": {"output_dir": "finallap", "rom_offset": "0x6FA400", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x7052E0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituFinalLap13": {"output_dir": "finallap", "rom_offset": "0x6FB3C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x7062A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituFinalLap14": {"output_dir": "finallap", "rom_offset": "0x6FC380", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x707260", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituFinalLap15": {"output_dir": "finallap", "rom_offset": "0x6FD340", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x708220", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituFinalLap16": {"output_dir": "finallap", "rom_offset": "0x6FE300", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x7091E0", "type": "bin", "size": "0xFC0"}} } diff --git a/assets/lakitu/fishing.json b/assets/lakitu/fishing.json index 2229fa190b..f044168a19 100644 --- a/assets/lakitu/fishing.json +++ b/assets/lakitu/fishing.json @@ -1,7 +1,7 @@ { -"common_tlut_lakitu_fishing": {"output_dir": "fishing", "rom_offset": "0x132B50", "block_offset": "0x25CD8", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureLakituFishing1": {"output_dir": "fishing", "rom_offset": "0x70EEC0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_fishing"}, -"gTextureLakituFishing2": {"output_dir": "fishing", "rom_offset": "0x70FE80", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_fishing"}, -"gTextureLakituFishing3": {"output_dir": "fishing", "rom_offset": "0x710E40", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_fishing"}, -"gTextureLakituFishing4": {"output_dir": "fishing", "rom_offset": "0x711E00", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_fishing"} +"common_tlut_lakitu_fishing": {"output_dir": "fishing", "rom_offset": "0x132B50", "block_offset": "0x25CD8", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0", "block_offset": "0x25298"}}, +"gTextureLakituFishing1": {"output_dir": "fishing", "rom_offset": "0x70EEC0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_fishing", "jp.v11": {"rom_offset": "0x719DA0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituFishing2": {"output_dir": "fishing", "rom_offset": "0x70FE80", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_fishing", "jp.v11": {"rom_offset": "0x71AD60", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituFishing3": {"output_dir": "fishing", "rom_offset": "0x710E40", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_fishing", "jp.v11": {"rom_offset": "0x71BD20", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituFishing4": {"output_dir": "fishing", "rom_offset": "0x711E00", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_fishing", "jp.v11": {"rom_offset": "0x71CCE0", "type": "bin", "size": "0xFC0"}} } diff --git a/assets/lakitu/nolights.json b/assets/lakitu/nolights.json index d076e65902..4334b0d334 100644 --- a/assets/lakitu/nolights.json +++ b/assets/lakitu/nolights.json @@ -1,11 +1,11 @@ { -"common_tlut_lakitu_no_lights": {"output_dir": "nolights", "rom_offset": "0x132B50", "block_offset": "0x24ED8", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureLakituNoLights1": {"output_dir": "nolights", "rom_offset": "0x6A0AC0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights"}, -"gTextureLakituNoLights2": {"output_dir": "nolights", "rom_offset": "0x6A1A80", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights"}, -"gTextureLakituNoLights3": {"output_dir": "nolights", "rom_offset": "0x6A2A40", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights"}, -"gTextureLakituNoLights4": {"output_dir": "nolights", "rom_offset": "0x6A3A00", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights"}, -"gTextureLakituNoLights5": {"output_dir": "nolights", "rom_offset": "0x6A49C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights"}, -"gTextureLakituNoLights6": {"output_dir": "nolights", "rom_offset": "0x6A5980", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights"}, -"gTextureLakituNoLights7": {"output_dir": "nolights", "rom_offset": "0x6A6940", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights"}, -"gTextureLakituNoLights8": {"output_dir": "nolights", "rom_offset": "0x6A7900", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights"} +"common_tlut_lakitu_no_lights": {"output_dir": "nolights", "rom_offset": "0x132B50", "block_offset": "0x24ED8", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0", "block_offset": "0x24498"}}, +"gTextureLakituNoLights1": {"output_dir": "nolights", "rom_offset": "0x6A0AC0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6AB9A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituNoLights2": {"output_dir": "nolights", "rom_offset": "0x6A1A80", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6AC960", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituNoLights3": {"output_dir": "nolights", "rom_offset": "0x6A2A40", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6AD920", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituNoLights4": {"output_dir": "nolights", "rom_offset": "0x6A3A00", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6AE8E0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituNoLights5": {"output_dir": "nolights", "rom_offset": "0x6A49C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6AF8A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituNoLights6": {"output_dir": "nolights", "rom_offset": "0x6A5980", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6B0860", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituNoLights7": {"output_dir": "nolights", "rom_offset": "0x6A6940", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6B1820", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituNoLights8": {"output_dir": "nolights", "rom_offset": "0x6A7900", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6B27E0", "type": "bin", "size": "0xFC0"}} } diff --git a/assets/lakitu/redlights.json b/assets/lakitu/redlights.json index 50c9d3392e..8efc1022bf 100644 --- a/assets/lakitu/redlights.json +++ b/assets/lakitu/redlights.json @@ -1,19 +1,19 @@ { -"common_tlut_lakitu_red_lights": {"output_dir": "redlights", "rom_offset": "0x132B50", "block_offset": "0x250D8", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureLakituRedLights01": {"output_dir": "redlights", "rom_offset": "0x6A88C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights"}, -"gTextureLakituRedLights02": {"output_dir": "redlights", "rom_offset": "0x6A9880", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights"}, -"gTextureLakituRedLights03": {"output_dir": "redlights", "rom_offset": "0x6AA840", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights"}, -"gTextureLakituRedLights04": {"output_dir": "redlights", "rom_offset": "0x6AB800", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights"}, -"gTextureLakituRedLights05": {"output_dir": "redlights", "rom_offset": "0x6AC7C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights"}, -"gTextureLakituRedLights06": {"output_dir": "redlights", "rom_offset": "0x6AD780", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights"}, -"gTextureLakituRedLights07": {"output_dir": "redlights", "rom_offset": "0x6AE740", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights"}, -"gTextureLakituRedLights08": {"output_dir": "redlights", "rom_offset": "0x6AF700", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights"}, -"gTextureLakituRedLights09": {"output_dir": "redlights", "rom_offset": "0x6B06C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights"}, -"gTextureLakituRedLights10": {"output_dir": "redlights", "rom_offset": "0x6B1680", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights"}, -"gTextureLakituRedLights11": {"output_dir": "redlights", "rom_offset": "0x6B2640", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights"}, -"gTextureLakituRedLights12": {"output_dir": "redlights", "rom_offset": "0x6B3600", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights"}, -"gTextureLakituRedLights13": {"output_dir": "redlights", "rom_offset": "0x6B45C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights"}, -"gTextureLakituRedLights14": {"output_dir": "redlights", "rom_offset": "0x6B5580", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights"}, -"gTextureLakituRedLights15": {"output_dir": "redlights", "rom_offset": "0x6B6540", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights"}, -"gTextureLakituRedLights16": {"output_dir": "redlights", "rom_offset": "0x6B7500", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights"} +"common_tlut_lakitu_red_lights": {"output_dir": "redlights", "rom_offset": "0x132B50", "block_offset": "0x250D8", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0", "block_offset": "0x24698"}}, +"gTextureLakituRedLights01": {"output_dir": "redlights", "rom_offset": "0x6A88C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B37A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituRedLights02": {"output_dir": "redlights", "rom_offset": "0x6A9880", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B4760", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituRedLights03": {"output_dir": "redlights", "rom_offset": "0x6AA840", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B5720", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituRedLights04": {"output_dir": "redlights", "rom_offset": "0x6AB800", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B66E0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituRedLights05": {"output_dir": "redlights", "rom_offset": "0x6AC7C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B76A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituRedLights06": {"output_dir": "redlights", "rom_offset": "0x6AD780", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B8660", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituRedLights07": {"output_dir": "redlights", "rom_offset": "0x6AE740", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B9620", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituRedLights08": {"output_dir": "redlights", "rom_offset": "0x6AF700", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6BA5E0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituRedLights09": {"output_dir": "redlights", "rom_offset": "0x6B06C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6BB5A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituRedLights10": {"output_dir": "redlights", "rom_offset": "0x6B1680", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6BC560", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituRedLights11": {"output_dir": "redlights", "rom_offset": "0x6B2640", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6BD520", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituRedLights12": {"output_dir": "redlights", "rom_offset": "0x6B3600", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6BE4E0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituRedLights13": {"output_dir": "redlights", "rom_offset": "0x6B45C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6BF4A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituRedLights14": {"output_dir": "redlights", "rom_offset": "0x6B5580", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6C0460", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituRedLights15": {"output_dir": "redlights", "rom_offset": "0x6B6540", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6C1420", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituRedLights16": {"output_dir": "redlights", "rom_offset": "0x6B7500", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6C23E0", "type": "bin", "size": "0xFC0"}} } diff --git a/assets/lakitu/reverse.json b/assets/lakitu/reverse.json index 512b51f3ce..631f433d80 100644 --- a/assets/lakitu/reverse.json +++ b/assets/lakitu/reverse.json @@ -1,19 +1,19 @@ { -"common_tlut_lakitu_reverse": {"output_dir": "reverse", "rom_offset": "0x132B50", "block_offset": "0x25AD8", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureLakituReverse01": {"output_dir": "reverse", "rom_offset": "0x6FF2C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse"}, -"gTextureLakituReverse02": {"output_dir": "reverse", "rom_offset": "0x700280", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse"}, -"gTextureLakituReverse03": {"output_dir": "reverse", "rom_offset": "0x701240", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse"}, -"gTextureLakituReverse04": {"output_dir": "reverse", "rom_offset": "0x702200", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse"}, -"gTextureLakituReverse05": {"output_dir": "reverse", "rom_offset": "0x7031C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse"}, -"gTextureLakituReverse06": {"output_dir": "reverse", "rom_offset": "0x704180", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse"}, -"gTextureLakituReverse07": {"output_dir": "reverse", "rom_offset": "0x705140", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse"}, -"gTextureLakituReverse08": {"output_dir": "reverse", "rom_offset": "0x706100", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse"}, -"gTextureLakituReverse09": {"output_dir": "reverse", "rom_offset": "0x7070C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse"}, -"gTextureLakituReverse10": {"output_dir": "reverse", "rom_offset": "0x708080", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse"}, -"gTextureLakituReverse11": {"output_dir": "reverse", "rom_offset": "0x709040", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse"}, -"gTextureLakituReverse12": {"output_dir": "reverse", "rom_offset": "0x70A000", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse"}, -"gTextureLakituReverse13": {"output_dir": "reverse", "rom_offset": "0x70AFC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse"}, -"gTextureLakituReverse14": {"output_dir": "reverse", "rom_offset": "0x70BF80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse"}, -"gTextureLakituReverse15": {"output_dir": "reverse", "rom_offset": "0x70CF40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse"}, -"gTextureLakituReverse16": {"output_dir": "reverse", "rom_offset": "0x70DF00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse"} +"common_tlut_lakitu_reverse": {"output_dir": "reverse", "rom_offset": "0x132B50", "block_offset": "0x25AD8", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0", "block_offset": "0x25098"}}, +"gTextureLakituReverse01": {"output_dir": "reverse", "rom_offset": "0x6FF2C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x70A1A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituReverse02": {"output_dir": "reverse", "rom_offset": "0x700280", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x70B160", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituReverse03": {"output_dir": "reverse", "rom_offset": "0x701240", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x70C120", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituReverse04": {"output_dir": "reverse", "rom_offset": "0x702200", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x70D0E0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituReverse05": {"output_dir": "reverse", "rom_offset": "0x7031C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x70E0A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituReverse06": {"output_dir": "reverse", "rom_offset": "0x704180", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x70F060", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituReverse07": {"output_dir": "reverse", "rom_offset": "0x705140", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x710020", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituReverse08": {"output_dir": "reverse", "rom_offset": "0x706100", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x710FE0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituReverse09": {"output_dir": "reverse", "rom_offset": "0x7070C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x711FA0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituReverse10": {"output_dir": "reverse", "rom_offset": "0x708080", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x712F60", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituReverse11": {"output_dir": "reverse", "rom_offset": "0x709040", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x713F20", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituReverse12": {"output_dir": "reverse", "rom_offset": "0x70A000", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x714EE0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituReverse13": {"output_dir": "reverse", "rom_offset": "0x70AFC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x715EA0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituReverse14": {"output_dir": "reverse", "rom_offset": "0x70BF80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x716E60", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituReverse15": {"output_dir": "reverse", "rom_offset": "0x70CF40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x717E20", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituReverse16": {"output_dir": "reverse", "rom_offset": "0x70DF00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x718DE0", "type": "bin", "size": "0xFC0"}} } diff --git a/assets/lakitu/secondlap.json b/assets/lakitu/secondlap.json index ffc292a50d..19ad8872af 100644 --- a/assets/lakitu/secondlap.json +++ b/assets/lakitu/secondlap.json @@ -1,19 +1,19 @@ { -"common_tlut_lakitu_second_lap": {"output_dir": "secondlap", "rom_offset": "0x132B50", "block_offset": "0x256D8", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureLakituSecondLap01": {"output_dir": "secondlap", "rom_offset": "0x6DFAC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap"}, -"gTextureLakituSecondLap02": {"output_dir": "secondlap", "rom_offset": "0x6E0A80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap"}, -"gTextureLakituSecondLap03": {"output_dir": "secondlap", "rom_offset": "0x6E1A40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap"}, -"gTextureLakituSecondLap04": {"output_dir": "secondlap", "rom_offset": "0x6E2A00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap"}, -"gTextureLakituSecondLap05": {"output_dir": "secondlap", "rom_offset": "0x6E39C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap"}, -"gTextureLakituSecondLap06": {"output_dir": "secondlap", "rom_offset": "0x6E4980", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap"}, -"gTextureLakituSecondLap07": {"output_dir": "secondlap", "rom_offset": "0x6E5940", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap"}, -"gTextureLakituSecondLap08": {"output_dir": "secondlap", "rom_offset": "0x6E6900", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap"}, -"gTextureLakituSecondLap09": {"output_dir": "secondlap", "rom_offset": "0x6E78C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap"}, -"gTextureLakituSecondLap10": {"output_dir": "secondlap", "rom_offset": "0x6E8880", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap"}, -"gTextureLakituSecondLap11": {"output_dir": "secondlap", "rom_offset": "0x6E9840", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap"}, -"gTextureLakituSecondLap12": {"output_dir": "secondlap", "rom_offset": "0x6EA800", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap"}, -"gTextureLakituSecondLap13": {"output_dir": "secondlap", "rom_offset": "0x6EB7C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap"}, -"gTextureLakituSecondLap14": {"output_dir": "secondlap", "rom_offset": "0x6EC780", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap"}, -"gTextureLakituSecondLap15": {"output_dir": "secondlap", "rom_offset": "0x6ED740", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap"}, -"gTextureLakituSecondLap16": {"output_dir": "secondlap", "rom_offset": "0x6EE700", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap"} +"common_tlut_lakitu_second_lap": {"output_dir": "secondlap", "rom_offset": "0x132B50", "block_offset": "0x256D8", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0", "block_offset": "0x24C98"}}, +"gTextureLakituSecondLap01": {"output_dir": "secondlap", "rom_offset": "0x6DFAC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6EA9A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituSecondLap02": {"output_dir": "secondlap", "rom_offset": "0x6E0A80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6EB960", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituSecondLap03": {"output_dir": "secondlap", "rom_offset": "0x6E1A40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6EC920", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituSecondLap04": {"output_dir": "secondlap", "rom_offset": "0x6E2A00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6ED8E0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituSecondLap05": {"output_dir": "secondlap", "rom_offset": "0x6E39C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6EE8A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituSecondLap06": {"output_dir": "secondlap", "rom_offset": "0x6E4980", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6EF860", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituSecondLap07": {"output_dir": "secondlap", "rom_offset": "0x6E5940", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F0820", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituSecondLap08": {"output_dir": "secondlap", "rom_offset": "0x6E6900", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F17E0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituSecondLap09": {"output_dir": "secondlap", "rom_offset": "0x6E78C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F27A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituSecondLap10": {"output_dir": "secondlap", "rom_offset": "0x6E8880", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F3760", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituSecondLap11": {"output_dir": "secondlap", "rom_offset": "0x6E9840", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F4720", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituSecondLap12": {"output_dir": "secondlap", "rom_offset": "0x6EA800", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F56E0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituSecondLap13": {"output_dir": "secondlap", "rom_offset": "0x6EB7C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F66A0", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituSecondLap14": {"output_dir": "secondlap", "rom_offset": "0x6EC780", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F7660", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituSecondLap15": {"output_dir": "secondlap", "rom_offset": "0x6ED740", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F8620", "type": "bin", "size": "0xFC0"}}, +"gTextureLakituSecondLap16": {"output_dir": "secondlap", "rom_offset": "0x6EE700", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F95E0", "type": "bin", "size": "0xFC0"}} } diff --git a/assets/onomatopoeia.json b/assets/onomatopoeia.json index 6880a55011..2922410ea4 100644 --- a/assets/onomatopoeia.json +++ b/assets/onomatopoeia.json @@ -1,11 +1,11 @@ { -"gTLUTOnomatopoeia": {"output_dir": "onomatopoeia", "rom_offset": "0xE5ED0", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureOnomatopoeiaCrash1": {"output_dir": "onomatopoeia", "rom_offset": "0x69F158", "width": 64, "height": 32, "type": "ci8", "tlut": "gTLUTOnomatopoeia"}, -"gTextureOnomatopoeiaCrash2": {"output_dir": "onomatopoeia", "rom_offset": "0x69F390", "width": 64, "height": 32, "type": "ci8", "tlut": "gTLUTOnomatopoeia"}, -"gTextureOnomatopoeiaWhrrrr1": {"output_dir": "onomatopoeia", "rom_offset": "0x69F5E4", "width": 64, "height": 32, "type": "ci8", "tlut": "gTLUTOnomatopoeia"}, -"gTextureOnomatopoeiaWhrrrr2": {"output_dir": "onomatopoeia", "rom_offset": "0x69F9C0", "width": 64, "height": 32, "type": "ci8", "tlut": "gTLUTOnomatopoeia"}, -"gTextureOnomatopoeiaPoomp1": {"output_dir": "onomatopoeia", "rom_offset": "0x69FD6C", "width": 64, "height": 32, "type": "ci8", "tlut": "gTLUTOnomatopoeia"}, -"gTextureOnomatopoeiaPoomp2": {"output_dir": "onomatopoeia", "rom_offset": "0x69FF30", "width": 64, "height": 32, "type": "ci8", "tlut": "gTLUTOnomatopoeia"}, -"gTextureBalloon1": {"output_dir": "onomatopoeia", "rom_offset": "0x6A010C", "width": 64, "height": 32, "type": "ci8", "tlut": "gTLUTOnomatopoeia"}, -"gTextureBalloon2": {"output_dir": "onomatopoeia", "rom_offset": "0x6A0350", "width": 64, "height": 32, "type": "ci8", "tlut": "gTLUTOnomatopoeia"} +"gTLUTOnomatopoeia": {"output_dir": "onomatopoeia", "rom_offset": "0xE5ED0", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0xE56E0"}}, +"gTextureOnomatopoeiaCrash1": {"output_dir": "onomatopoeia", "rom_offset": "0x69F158", "width": 64, "height": 32, "type": "ci8", "tlut": "gTLUTOnomatopoeia", "jp.v11": {"rom_offset": "0x6AA038"}}, +"gTextureOnomatopoeiaCrash2": {"output_dir": "onomatopoeia", "rom_offset": "0x69F390", "width": 64, "height": 32, "type": "ci8", "tlut": "gTLUTOnomatopoeia", "jp.v11": {"rom_offset": "0x6AA270"}}, +"gTextureOnomatopoeiaWhrrrr1": {"output_dir": "onomatopoeia", "rom_offset": "0x69F5E4", "width": 64, "height": 32, "type": "ci8", "tlut": "gTLUTOnomatopoeia", "jp.v11": {"rom_offset": "0x6AA4C4"}}, +"gTextureOnomatopoeiaWhrrrr2": {"output_dir": "onomatopoeia", "rom_offset": "0x69F9C0", "width": 64, "height": 32, "type": "ci8", "tlut": "gTLUTOnomatopoeia", "jp.v11": {"rom_offset": "0x6AA8A0"}}, +"gTextureOnomatopoeiaPoomp1": {"output_dir": "onomatopoeia", "rom_offset": "0x69FD6C", "width": 64, "height": 32, "type": "ci8", "tlut": "gTLUTOnomatopoeia", "jp.v11": {"rom_offset": "0x6AAC4C"}}, +"gTextureOnomatopoeiaPoomp2": {"output_dir": "onomatopoeia", "rom_offset": "0x69FF30", "width": 64, "height": 32, "type": "ci8", "tlut": "gTLUTOnomatopoeia", "jp.v11": {"rom_offset": "0x6AAE10"}}, +"gTextureBalloon1": {"output_dir": "onomatopoeia", "rom_offset": "0x6A010C", "width": 64, "height": 32, "type": "ci8", "tlut": "gTLUTOnomatopoeia", "jp.v11": {"rom_offset": "0x6AAFEC"}}, +"gTextureBalloon2": {"output_dir": "onomatopoeia", "rom_offset": "0x6A0350", "width": 64, "height": 32, "type": "ci8", "tlut": "gTLUTOnomatopoeia", "jp.v11": {"rom_offset": "0x6AB230"}} } diff --git a/assets/trees.json b/assets/trees.json index b63ec8df8b..5a6f662a35 100644 --- a/assets/trees.json +++ b/assets/trees.json @@ -1,13 +1,13 @@ { -"common_tlut_trees_import": {"output_dir": "trees", "rom_offset": "0x132B50", "block_offset": "0x04C68", "width": 8, "height": 29, "type": "rgba16"}, -"gTLUTTrees": {"output_dir": "trees", "rom_offset": "0x132B50", "block_offset": "0x04C68", "width": 16, "height": 16, "type": "rgba16"}, -"gTextureTrees1": {"output_dir": "trees", "rom_offset": "0x6913CC", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTTrees"}, -"gTextureTrees2": {"output_dir": "trees", "rom_offset": "0x691714", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTTrees"}, -"gTextureTrees3": {"output_dir": "trees", "rom_offset": "0x691AAC", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTTrees"}, -"gTextureTrees4Left": {"output_dir": "trees", "rom_offset": "0x691D98", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTTrees"}, -"gTextureTrees4Right": {"output_dir": "trees", "rom_offset": "0x692088", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTTrees"}, -"gTextureTrees5Left": {"output_dir": "trees", "rom_offset": "0x6923D8", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTTrees"}, -"gTextureTrees5Right": {"output_dir": "trees", "rom_offset": "0x6925E8", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTTrees"}, -"gTextureTrees6": {"output_dir": "trees", "rom_offset": "0x692888", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTTrees"}, -"gTextureTrees7": {"output_dir": "trees", "rom_offset": "0x692CC0", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTTrees"} +"common_tlut_trees_import": {"output_dir": "trees", "rom_offset": "0x132B50", "block_offset": "0x04C68", "width": 8, "height": 29, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0"}}, +"gTLUTTrees": {"output_dir": "trees", "rom_offset": "0x132B50", "block_offset": "0x04C68", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0"}}, +"gTextureTrees1": {"output_dir": "trees", "rom_offset": "0x6913CC", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTTrees", "jp.v11": {"rom_offset": "0x69C2AC"}}, +"gTextureTrees2": {"output_dir": "trees", "rom_offset": "0x691714", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTTrees", "jp.v11": {"rom_offset": "0x69C5F4"}}, +"gTextureTrees3": {"output_dir": "trees", "rom_offset": "0x691AAC", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTTrees", "jp.v11": {"rom_offset": "0x69C98C"}}, +"gTextureTrees4Left": {"output_dir": "trees", "rom_offset": "0x691D98", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTTrees", "jp.v11": {"rom_offset": "0x69CC78"}}, +"gTextureTrees4Right": {"output_dir": "trees", "rom_offset": "0x692088", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTTrees", "jp.v11": {"rom_offset": "0x69CF68"}}, +"gTextureTrees5Left": {"output_dir": "trees", "rom_offset": "0x6923D8", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTTrees", "jp.v11": {"rom_offset": "0x69D2B8"}}, +"gTextureTrees5Right": {"output_dir": "trees", "rom_offset": "0x6925E8", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTTrees", "jp.v11": {"rom_offset": "0x69D4C8"}}, +"gTextureTrees6": {"output_dir": "trees", "rom_offset": "0x692888", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTTrees", "jp.v11": {"rom_offset": "0x69D768"}}, +"gTextureTrees7": {"output_dir": "trees", "rom_offset": "0x692CC0", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTTrees", "jp.v11": {"rom_offset": "0x69DBA0"}} } From c8fa84a22be8b339d7ff26ae0dd6bcfc605a6548 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 02:06:17 -0700 Subject: [PATCH 10/41] jp.v11: Torch configuration Registers the Japanese 1.1 cartridge by checksum with its own segment table, and adds the yamls describing the segments it relocates. Co-Authored-By: Claude Fable 5 --- config.yml | 31 + yamls/jp.v11/ceremony_data.yml | 239 +++ yamls/jp.v11/common_data.yml | 2388 +++++++++++++++++++++++++++ yamls/jp.v11/course_metadata.yml | 4 + yamls/jp.v11/data_800E45C0.yml | 78 + yamls/jp.v11/data_800E8700.yml | 127 ++ yamls/jp.v11/data_segment2.yml | 327 ++++ yamls/jp.v11/rainbow_road_tluts.yml | 68 + yamls/jp.v11/startup_logo.yml | 119 ++ 9 files changed, 3381 insertions(+) create mode 100644 yamls/jp.v11/ceremony_data.yml create mode 100644 yamls/jp.v11/common_data.yml create mode 100644 yamls/jp.v11/course_metadata.yml create mode 100644 yamls/jp.v11/data_800E45C0.yml create mode 100644 yamls/jp.v11/data_800E8700.yml create mode 100644 yamls/jp.v11/data_segment2.yml create mode 100644 yamls/jp.v11/rainbow_road_tluts.yml create mode 100644 yamls/jp.v11/startup_logo.yml diff --git a/config.yml b/config.yml index c03c40e037..7a77201efe 100644 --- a/config.yml +++ b/config.yml @@ -28,3 +28,34 @@ - 0x132B50 - 0x000000 - 0x145470 + +9f439457585146a4e1da7e1dd9104f7f94381688: + name: Mario Kart 64 [JP v1.1] + path: yamls/jp.v11 + config: + gbi: F3DEX_MK64 + sort: OFFSET + enums: + - include/defines.h + output: + binary: mkcube.otr + headers: include/assets + code: assets/code/jp.v11 + metadata: [yamls/courses] + segments: + - 0x000000 + - 0x000000 + - 0x12A330 + - 0x000000 + - 0x000000 + - 0x000000 + - 0x1487D0 + - 0x000000 + - 0x000000 + - 0x88AF10 + - 0x72F100 + - 0x144CC0 + - 0x7FFAA0 + - 0x1323A0 + - 0x000000 + - 0x14B4A0 diff --git a/yamls/jp.v11/ceremony_data.yml b/yamls/jp.v11/ceremony_data.yml new file mode 100644 index 0000000000..d1945e5aeb --- /dev/null +++ b/yamls/jp.v11/ceremony_data.yml @@ -0,0 +1,239 @@ +:config: + segments: + - [0x0B, 0x144CC0] + header: + code: + - "#include " + header: + - "#include " + - "#include " + - "#include " + +silver_trophy_dl: + symbol: silver_trophy_dl + type: gfx + offset: 0xFE0 +silver_trophy_dl2: + symbol: silver_trophy_dl2 + type: gfx + offset: 0x10B8 +silver_trophy_dl3: + symbol: silver_trophy_dl3 + type: gfx + offset: 0x1188 +silver_trophy_dl4: + symbol: silver_trophy_dl4 + type: gfx + offset: 0x1260 +silver_trophy_dl5: + symbol: silver_trophy_dl5 + type: gfx + offset: 0x1418 +silver_trophy_dl6: + symbol: silver_trophy_dl6 + type: gfx + offset: 0x14D0 +some_vtx: + symbol: unused_trophy_base_with_handle + type: vtx + offset: 0x18C0 # 2200 + count: 211 # 274 +some_vtx2: + symbol: unused_trophy_base2 + type: vtx + offset: 0x2F30 + count: 63 +reflection_map_brass: + symbol: reflection_map_brass + type: texture + ctype: u16 + offset: 0x4670 + size: 2048 + width: 32 + height: 32 + format: RGBA16 +reflection_map_silver: + symbol: reflection_map_silver + type: texture + ctype: u16 + offset: 0x4E70 + size: 2048 + width: 32 + height: 32 + format: RGBA16 +reflection_map_gold: + symbol: reflection_map_gold + type: texture + ctype: u16 + offset: 0x5670 + size: 2048 + width: 32 + height: 32 + format: RGBA16 +gold_trophy_dl: + symbol: gold_trophy_dl + type: gfx + offset: 0x5E70 +gold_trophy_dl2: + symbol: gold_trophy_dl2 + type: gfx + offset: 0x5F20 +gold_trophy_dl3: + symbol: gold_trophy_dl3 + type: gfx + offset: 0x5FD0 +gold_trophy_dl4: + symbol: gold_trophy_dl4 + type: gfx + offset: 0x6218 +gold_trophy_dl5: + symbol: gold_trophy_dl5 + type: gfx + offset: 0x62C8 +gold_trophy_dl6: + symbol: gold_trophy_dl6 + type: gfx + offset: 0x6518 +gold_trophy_dl7: + symbol: gold_trophy_dl7 + type: gfx + offset: 0x6720 +gold_trophy_dl8: + symbol: gold_trophy_dl8 + type: gfx + offset: 0x6880 +gold_trophy_dl9: + symbol: gold_trophy_dl9 + type: gfx + offset: 0x6948 +gold_trophy_dl10: + symbol: gold_trophy_dl10 + type: gfx + offset: 0x69D8 +gold_trophy_dl11: + symbol: gold_trophy_dl11 + type: gfx + offset: 0x6A28 +gold_trophy_dl12: + symbol: gold_trophy_dl12 + type: gfx + offset: 0x6A78 +gold_trophy_dl13: + symbol: gold_trophy_dl13 + type: gfx + offset: 0x6AC8 +gold_trophy_dl14: + symbol: gold_trophy_dl14 + type: gfx + offset: 0x6B18 +gold_trophy_dl15: + symbol: gold_trophy_dl15 + type: gfx + offset: 0x6B68 +light1: + symbol: light1 + type: lights + offset: 0x6BB8 +texture_podium1: + symbol: gTexturePodium1 + type: texture + ctype: u16 + offset: 0x6BD0 + size: 2048 + width: 32 + height: 32 + format: RGBA16 +podium_dl: + symbol: podium_dl + type: gfx + offset: 0x7510 +podium_dl2: + symbol: podium_dl2 + type: gfx + offset: 0x75E0 +podium_dl3: + symbol: podium_dl3 + type: gfx + offset: 0x75F0 +podium_dl4: + symbol: podium_dl4 + type: gfx + offset: 0x7600 +light2: + symbol: light2 + type: lights + offset: 0x7748 +texture_podium2: + symbol: gTexturePodium2 + type: texture + ctype: u16 + offset: 0x7760 + size: 2048 + width: 32 + height: 32 + format: RGBA16 +podium2_dl: + symbol: podium2_dl + type: gfx + offset: 0x7F60 +podium2_dl2: + symbol: podium2_dl2 + type: gfx + offset: 0x8030 +podium2_dl3: + symbol: podium2_dl3 + type: gfx + offset: 0x8040 +podium2_dl4: + symbol: podium2_dl4 + type: gfx + offset: 0x8050 +light3: + symbol: light3 + type: lights + offset: 0x8058 +texture_podium3: + symbol: gTexturePodium3 + type: texture + ctype: u16 + offset: 0x8070 + size: 2048 + width: 32 + height: 32 + format: RGBA16 +podium3_dl: + symbol: podium3_dl + type: gfx + offset: 0x89B0 +podium3_dl2: + symbol: podium3_dl2 + type: gfx + offset: 0x8A80 +podium3_dl3: + symbol: podium3_dl3 + type: gfx + offset: 0x8A90 +podium3_dl4: + symbol: podium3_dl4 + type: gfx + offset: 0x8AA0 +ending_sequence: + symbol: podium_ceremony_path + type: mk64:track_path + offset: 0x8AA8 + count: 24 +ending_sequence2: + symbol: podium_ceremony_path_2 + type: mk64:track_path + offset: 0x8B68 + count: 23 +ending_sequence3: + symbol: podium_ceremony_path_3 + type: mk64:track_path + offset: 0x8C20 + count: 24 +ending_sequence4: + symbol: podium_ceremony_path_4 + type: mk64:track_path + offset: 0x8CE0 + count: 21 diff --git a/yamls/jp.v11/common_data.yml b/yamls/jp.v11/common_data.yml new file mode 100644 index 0000000000..41dbc4cc5a --- /dev/null +++ b/yamls/jp.v11/common_data.yml @@ -0,0 +1,2388 @@ +:config: + segments: + - [0x0D, 0x1323A0] + header: + code: + - '#include ' + - '#include ' + - '#include ' + header: + - '#include ' + - '#include ' + - '#include ' + tables: + common_grand_prix_human_item_curve: + range: [0x8150, 0x840C] + common_grand_prix_cpu_item_curve: + range: [0x8470, 0x872C] + common_versus_2_player_item_curve: + range: [0x8790, 0x87F4] + common_versus_3_player_item_curve: + range: [0x8858, 0x8920] + common_versus_4_player_item_curve: + range: [0x8984, 0x8AB0] + common_texture_hud_place: + range: [0xD258, 0x14258] + mode: APPEND + D_0D015258: + range: [0x15258, 0x16A58] + mode: APPEND + common_texture_player_emblem: + range: [0x17458, 0x18C58] + mode: APPEND + common_texture_hud_type_C_rank_font: + range: [0x19658, 0x19D58] + mode: APPEND + common_texture_hud_type_C_rank_tiny_font: + range: [0x1A058, 0x1A298] + mode: APPEND + common_tlut_lakitu_countdown: + range: [0x24ED8, 0x252D8] + mode: APPEND + common_texture_bomb: + range: [0x29858, 0x2A458] + mode: APPEND + common_texture_particle_spark: + range: [0x2AC58, 0x2B858] + mode: APPEND + common_texture_particle_smoke: + range: [0x2BC58, 0x2C858] + mode: APPEND +common_tlut_finish_line_banner: + symbol: common_tlut_finish_line_banner + type: texture + ctype: u16 + offset: 0x0 + size: 0x200 + width: 16 + height: 16 + format: RGBA16 +common_texture_particle_fire: + symbol: common_texture_particle_fire + type: texture + ctype: u16 + offset: 0x200 + size: 0x1000 + width: 16 + height: 16 + format: RGBA16 +D_0D001200: + symbol: D_0D001200 + type: vtx + offset: 0x1200 + count: 1 +D_0D001210: + symbol: D_0D001210 + type: vtx + offset: 0x1210 + count: 3 +D_0D001240: + symbol: D_0D001240 + type: vtx + offset: 0x1240 + count: 3 +D_0D001270: + symbol: D_0D001270 + type: vtx + offset: 0x1270 + count: 3 +D_0D0012A0: + symbol: D_0D0012A0 + type: vtx + offset: 0x12A0 + count: 3 +D_0D0012D0: + symbol: D_0D0012D0 + type: vtx + offset: 0x12D0 + count: 3 +D_0D001300: + symbol: D_0D001300 + type: vtx + offset: 0x1300 + count: 3 +D_0D001330: + symbol: D_0D001330 + type: vtx + offset: 0x1330 + count: 3 +D_0D001360: + symbol: D_0D001360 + type: vtx + offset: 0x1360 + count: 3 +common_vtx_finish_line_banner: + symbol: common_vtx_finish_line_banner + type: vtx + offset: 0x1390 + count: 32 +common_vtx_finish_post: + symbol: common_vtx_finish_post + type: vtx + offset: 0x1590 + count: 24 +D_0D001710: + symbol: D_0D001710 + type: vtx + offset: 0x1710 + count: 4 +D_0D001750: + symbol: D_0D001750 + type: gfx + offset: 0x1750 +D_0D001780: + symbol: D_0D001780 + type: gfx + offset: 0x1780 +D_0D001798: + symbol: D_0D001798 + type: gfx + offset: 0x1798 +D_0D0017B0: + symbol: D_0D0017B0 + type: gfx + offset: 0x17B0 +D_0D0017C8: + symbol: D_0D0017C8 + type: gfx + offset: 0x17C8 +D_0D0017E0: + symbol: D_0D0017E0 + type: gfx + offset: 0x17E0 +D_0D0017F8: + symbol: D_0D0017F8 + type: gfx + offset: 0x17F8 +D_0D001810: + symbol: D_0D001810 + type: gfx + offset: 0x1810 +D_0D001828: + symbol: D_0D001828 + type: gfx + offset: 0x1828 +D_0D001840: + symbol: D_0D001840 + type: gfx + offset: 0x1840 +common_model_finish_post: + symbol: common_model_finish_post + type: gfx + offset: 0x1AB8 +D_0D001B68: + symbol: D_0D001B68 + type: gfx + offset: 0x1B68 +D_0D001B90: + symbol: D_0D001B90 + type: gfx + offset: 0x1B90 +D_0D001BD8: + symbol: D_0D001BD8 + type: gfx + offset: 0x1BD8 +D_0D001C20: + symbol: D_0D001C20 + type: gfx + offset: 0x1C20 +D_0D001C88: + symbol: D_0D001C88 + type: gfx + offset: 0x1C88 + +common_vtx_itembox: + symbol: common_vtx_itembox + type: VTX + offset: 0x0D001CE8 + count: 32 +common_texture_item_box_question_mark: + symbol: common_texture_item_box_question_mark + type: texture + ctype: u16 + offset: 0x1EE8 + size: 4096 + width: 32 + height: 64 + format: RGBA16 +D_0D002EE8: + symbol: D_0D002EE8 + type: gfx + offset: 0x2EE8 +common_fake_item_box_question_mark_vertices: + symbol: common_fake_item_box_question_mark_vertices + type: vtx + offset: 0x2F40 + count: 4 +common_model_fake_itembox: + symbol: common_model_fake_itembox + type: gfx + offset: 0x2F80 +itemBoxQuestionMarkModel: + symbol: itemBoxQuestionMarkModel + type: gfx + offset: 0x3008 + +D_0D003090: + symbol: D_0D003090 + type: gfx + offset: 0x0D003090 +D_0D0030F8: + symbol: D_0D0030F8 + type: gfx + offset: 0x30F8 +D_0D003128: + symbol: D_0D003128 + type: gfx + offset: 0x3128 +D_0D003158: + symbol: D_0D003158 + type: gfx + offset: 0x3158 +D_0D003188: + symbol: D_0D003188 + type: gfx + offset: 0x3188 +D_0D0031B8: + symbol: D_0D0031B8 + type: gfx + offset: 0x31B8 +D_0D0031E8: + symbol: D_0D0031E8 + type: gfx + offset: 0x31E8 +D_0D003218: + symbol: D_0D003218 + type: gfx + offset: 0x3218 +D_0D003248: + symbol: D_0D003248 + type: gfx + offset: 0x3248 +D_0D003278: + symbol: D_0D003278 + type: gfx + offset: 0x3278 +D_0D003288: + symbol: D_0D003288 + type: gfx + offset: 0x3288 +common_vtx_banana: + symbol: common_vtx_banana + type: vtx + count: 5 + offset: 0x3298 +common_vtx_flat_banana: + symbol: common_vtx_flat_banana + type: vtx + count: 6 + offset: 0x32E8 +common_texture_banana: + symbol: common_texture_banana + type: texture + ctype: u16 + size: 2048 + width: 32 + height: 32 + offset: 0x3348 + format: RGBA16 +common_texture_flat_banana: + symbol: common_texture_flat_banana + type: texture + ctype: u16 + size: 4096 + width: 64 + height: 32 + offset: 0x3B48 + format: RGBA16 +common_model_banana: + symbol: common_model_banana + type: gfx + offset: 0x4B48 +common_model_flat_banana: + symbol: common_model_flat_banana + type: gfx + offset: 0x4BD8 +common_tlut_trees_import: + symbol: common_tlut_trees_import + type: texture + ctype: u16 + size: 0x1D0 + width: 8 + height: 29 + offset: 0x4C68 + format: RGBA16 +common_tlut_green_shell: + symbol: common_tlut_green_shell + type: texture + ctype: u16 + size: 0x200 + width: 16 + height: 16 + offset: 0x4E38 + format: RGBA16 +common_tlut_blue_shell: + symbol: common_tlut_blue_shell + type: texture + ctype: u16 + size: 0x200 + width: 16 + height: 16 + offset: 0x5038 + format: RGBA16 +D_0D0052B8: + symbol: D_0D0052B8 + type: gfx + offset: 0x52B8 +D_0D005308: + symbol: D_0D005308 + type: gfx + offset: 0x5308 +D_0D005338: + symbol: D_0D005338 + type: gfx + offset: 0x5338 +D_0D005368: + symbol: D_0D005368 + type: gfx + offset: 0x5368 +D_toads_turnpike_0D005398: + symbol: D_toads_turnpike_0D005398 + type: gfx + offset: 0x5398 +D_toads_turnpike_0D0053B0: + symbol: D_toads_turnpike_0D0053B0 + type: gfx + offset: 0x53B0 +D_toads_turnpike_0D0053C8: + symbol: D_toads_turnpike_0D0053C8 + type: gfx + offset: 0x53C8 +D_toads_turnpike_0D0053F0: + symbol: D_toads_turnpike_0D0053F0 + type: gfx + offset: 0x53F0 +D_toads_turnpike_0D005418: + symbol: D_toads_turnpike_0D005418 + type: gfx + offset: 0x5418 +D_0D005430: + symbol: D_0D005430 + type: vtx + offset: 0x5430 + count: 4 +common_vtx_player_minimap_icon: + symbol: common_vtx_player_minimap_icon + type: vtx + offset: 0x5470 + count: 4 +D_0D0054B0: + symbol: D_0D0054B0 + type: vtx + offset: 0x54B0 + count: 44 +common_vtx_rectangle: + symbol: common_vtx_rectangle + type: vtx + offset: 0x5770 + count: 4 +D_0D0057B0: + symbol: D_0D0057B0 + type: vtx + offset: 0x57B0 + count: 4 +D_0D0057F0: + symbol: D_0D0057F0 + type: vtx + offset: 0x57F0 + count: 15 +D_0D005920: + symbol: D_0D005920 + type: vtx + offset: 0x5920 + count: 24 +D_0D005AA0: + symbol: D_0D005AA0 + type: vtx + offset: 0x5AA0 + count: 4 +D_0D005AE0: + symbol: D_0D005AE0 + type: vtx + offset: 0x5AE0 + count: 4 +D_0D005B20: + symbol: D_0D005B20 + type: vtx + offset: 0x5B20 + count: 4 +D_0D005B60: + symbol: D_0D005B60 + type: vtx + offset: 0x5B60 + count: 4 +D_0D005BA0: + symbol: D_0D005BA0 + type: vtx + offset: 0x5BA0 + count: 3 +D_0D005BD0: + symbol: D_0D005BD0 + type: vtx + offset: 0x5BD0 + count: 3 +D_0D005C00: + symbol: D_0D005C00 + type: vtx + offset: 0x5C00 + count: 3 +D_0D005C30: + symbol: D_0D005C30 + type: vtx + offset: 0x5C30 + count: 37 +D_0D005E80: + symbol: D_0D005E80 + type: vtx + offset: 0x5E80 + count: 3 +common_vtx_lakitu: + symbol: common_vtx_lakitu + type: vtx + offset: 0x5EB0 + count: 8 +D_0D005F30: + symbol: D_0D005F30 + type: vtx + offset: 0x5F30 + count: 8 +D_0D005FB0: + symbol: D_0D005FB0 + type: vtx + offset: 0x5FB0 + count: 4 +D_0D005FF0: + symbol: D_0D005FF0 + type: vtx + offset: 0x5FF0 + count: 4 +D_0D006030: + symbol: D_0D006030 + type: vtx + offset: 0x6030 + count: 8 +common_vtx_hedgehog: + symbol: common_vtx_hedgehog + type: vtx + offset: 0x60B0 + count: 8 +D_0D006130: + symbol: D_0D006130 + type: vtx + offset: 0x6130 + count: 8 +D_0D0061B0: + symbol: D_0D0061B0 + type: vtx + offset: 0x61B0 + count: 16 +D_0D0062B0: + symbol: D_0D0062B0 + type: vtx + offset: 0x62B0 + count: 32 +D_0D0064B0: + symbol: D_0D0064B0 + type: vtx + offset: 0x64B0 + count: 40 +common_vtx_also_lakitu: + symbol: common_vtx_also_lakitu + type: vtx + offset: 0x6730 + count: 28 +D_0D0068F0: + symbol: D_0D0068F0 + type: vtx + offset: 0x68F0 + count: 4 +D_0D006930: + symbol: D_0D006930 + type: gfx + offset: 0x6930 +common_rectangle_display: + symbol: common_rectangle_display + type: gfx + offset: 0x6940 +D_0D006950: + symbol: D_0D006950 + type: gfx + offset: 0x6950 +D_0D006968: + symbol: D_0D006968 + type: gfx + offset: 0x6968 +D_0D006980: + symbol: D_0D006980 + type: gfx + offset: 0x6980 +D_0D006998: + symbol: D_0D006998 + type: gfx + offset: 0x6998 +D_0D0069B0: + symbol: D_0D0069B0 + type: gfx + offset: 0x69B0 +D_0D0069C8: + symbol: D_0D0069C8 + type: gfx + offset: 0x69C8 +D_0D0069E0: + symbol: D_0D0069E0 + type: gfx + offset: 0x69E0 +D_0D0069F8: + symbol: D_0D0069F8 + type: gfx + offset: 0x69F8 +D_0D006A10: + symbol: D_0D006A10 + type: gfx + offset: 0x6A10 +D_0D006A28: + symbol: D_0D006A28 + type: gfx + offset: 0x6A28 +D_0D006A40: + symbol: D_0D006A40 + type: gfx + offset: 0x6A40 +common_shadow_i4: + symbol: common_shadow_i4 + offset: 0x6A58 + size: 0x80 + type: texture + width: 32 + height: 32 + format: i4 +D_0D006AD8: + symbol: D_0D006AD8 + offset: 0x6AD8 + size: 0x400 + type: texture + width: 32 + height: 32 + format: i4 +common_tlut_debug_font: + symbol: common_tlut_debug_font + offset: 0x6ED8 + size: 0x20 + type: texture + ctype: u16 + colors: 32 + height: 32 + format: tlut +common_texture_debug_font: + symbol: common_texture_debug_font + type: texture + offset: 0x6EF8 + size: 0x800 + colors: 32 + ctype: u16 + height: 32 + format: tlut +D_0D0076F8: + symbol: D_0D0076F8 + type: gfx + offset: 0x76F8 +D_0D007780: + symbol: D_0D007780 + type: gfx + offset: 0x7780 +D_0D0077A0: + symbol: D_0D0077A0 + type: gfx + offset: 0x77A0 +D_0D0077D0: + symbol: D_0D0077D0 + type: gfx + offset: 0x77D0 +D_0D0077F8: + symbol: D_0D0077F8 + type: gfx + offset: 0x77F8 +D_0D007828: + symbol: D_0D007828 + type: gfx + offset: 0x7828 +D_0D007850: + symbol: D_0D007850 + type: gfx + offset: 0x7850 +D_0D007878: + symbol: D_0D007878 + type: gfx + offset: 0x7878 +D_0D0078A0: + symbol: D_0D0078A0 + type: gfx + offset: 0x78A0 +D_0D0078D0: + symbol: D_0D0078D0 + type: gfx + offset: 0x78D0 +D_0D0078F8: + symbol: D_0D0078F8 + type: gfx + offset: 0x78F8 +D_0D007928: + symbol: D_0D007928 + type: gfx + offset: 0x7928 +D_0D007948: + symbol: D_0D007948 + type: gfx + offset: 0x7948 +D_0D007968: + symbol: D_0D007968 + type: gfx + offset: 0x7968 +D_0D007988: + symbol: D_0D007988 + type: gfx + offset: 0x7988 +D_0D0079A8: + symbol: D_0D0079A8 + type: gfx + offset: 0x79A8 +D_0D0079C8: + symbol: D_0D0079C8 + type: gfx + offset: 0x79C8 +D_0D0079E8: + symbol: D_0D0079E8 + type: gfx + offset: 0x79E8 +D_0D007A08: + symbol: D_0D007A08 + type: gfx + offset: 0x7A08 +D_0D007A40: + symbol: D_0D007A40 + type: gfx + offset: 0x7A40 +D_0D007A60: + symbol: D_0D007A60 + type: gfx + offset: 0x7A60 +D_0D007A80: + symbol: D_0D007A80 + type: gfx + offset: 0x7A80 +D_0D007AA0: + symbol: D_0D007AA0 + type: gfx + offset: 0x7AA0 +D_0D007AC0: + symbol: D_0D007AC0 + type: gfx + offset: 0x7AC0 +D_0D007AE0: + symbol: D_0D007AE0 + type: gfx + offset: 0x7AE0 +D_0D007B00: + symbol: D_0D007B00 + type: gfx + offset: 0x7B00 +D_0D007B20: + symbol: D_0D007B20 + type: gfx + offset: 0x7B20 +D_0D007B98: + symbol: D_0D007B98 + type: gfx + offset: 0x7B98 +D_0D007C10: + symbol: D_0D007C10 + type: gfx + offset: 0x7C10 +D_0D007C88: + symbol: D_0D007C88 + type: gfx + offset: 0x7C88 +D_0D007CB8: + symbol: D_0D007CB8 + type: gfx + offset: 0x7CB8 +D_0D007CD8: + symbol: D_0D007CD8 + type: gfx + offset: 0x7CD8 +D_0D007CF8: + symbol: D_0D007CF8 + type: gfx + offset: 0x7CF8 +D_0D007D18: + symbol: D_0D007D18 + type: gfx + offset: 0x7D18 +D_0D007D38: + symbol: D_0D007D38 + type: gfx + offset: 0x7D38 +D_0D007D58: + symbol: D_0D007D58 + type: gfx + offset: 0x7D58 +D_0D007D78: + symbol: D_0D007D78 + type: gfx + offset: 0x7D78 +D_0D007D98: + symbol: D_0D007D98 + type: gfx + offset: 0x7D98 +D_0D007DB8: + symbol: D_0D007DB8 + type: gfx + offset: 0x7DB8 +D_0D007DD8: + symbol: D_0D007DD8 + type: gfx + offset: 0x7DD8 +D_0D007DF8: + symbol: D_0D007DF8 + type: gfx + offset: 0x7DF8 +D_0D007E18: + symbol: D_0D007E18 + type: gfx + offset: 0x7E18 +D_0D007E38: + symbol: D_0D007E38 + type: gfx + offset: 0x7E38 +D_0D007E58: + symbol: D_0D007E58 + type: gfx + offset: 0x7E58 +D_0D007E78: + symbol: D_0D007E78 + type: gfx + offset: 0x7E78 +D_0D007E98: + symbol: D_0D007E98 + type: gfx + offset: 0x7E98 +D_0D007EB8: + symbol: D_0D007EB8 + type: gfx + offset: 0x7EB8 +D_0D007ED8: + symbol: D_0D007ED8 + type: gfx + offset: 0x7ED8 +D_0D007EF8: + symbol: D_0D007EF8 + type: gfx + offset: 0x7EF8 +D_0D007F18: + symbol: D_0D007F18 + type: gfx + offset: 0x7F18 +D_0D007F38: + symbol: D_0D007F38 + type: gfx + offset: 0x7F38 +D_0D007F58: + symbol: D_0D007F58 + type: gfx + offset: 0x7F58 +D_0D007F78: + symbol: D_0D007F78 + type: gfx + offset: 0x7F78 +D_0D007F98: + symbol: D_0D007F98 + type: gfx + offset: 0x7F98 +D_0D007FB8: + symbol: D_0D007FB8 + type: gfx + offset: 0x7FB8 +D_0D007FE0: + symbol: D_0D007FE0 + type: gfx + offset: 0x7FE0 +D_0D008000: + symbol: D_0D008000 + type: gfx + offset: 0x8000 +D_0D008020: + symbol: D_0D008020 + type: gfx + offset: 0x8020 +D_0D008040: + symbol: D_0D008040 + type: gfx + offset: 0x8040 +D_0D008060: + symbol: D_0D008060 + type: gfx + offset: 0x8060 +D_0D008080: + symbol: D_0D008080 + type: gfx + offset: 0x8080 +D_0D008108: + symbol: D_0D008108 + type: gfx + offset: 0x8108 +D_0D008120: + symbol: D_0D008120 + type: gfx + offset: 0x8120 +D_0D008138: + symbol: D_0D008138 + type: gfx + offset: 0x8138 +common_grand_prix_human_item_curve: + symbol: common_grand_prix_human_item_curve + type: mk64:item_curve + offset: 0x8150 +common_grand_prix_human_item_curve2: + symbol: common_grand_prix_human_item_curve2 + type: mk64:item_curve + offset: 0x81B4 +common_grand_prix_human_item_curve3: + symbol: common_grand_prix_human_item_curve3 + type: mk64:item_curve + offset: 0x8218 +common_grand_prix_human_item_curve4: + symbol: common_grand_prix_human_item_curve4 + type: mk64:item_curve + offset: 0x827C +common_grand_prix_human_item_curve5: + symbol: common_grand_prix_human_item_curve5 + type: mk64:item_curve + offset: 0x82E0 +common_grand_prix_human_item_curve6: + symbol: common_grand_prix_human_item_curve6 + type: mk64:item_curve + offset: 0x8344 +common_grand_prix_human_item_curve7: + symbol: common_grand_prix_human_item_curve7 + type: mk64:item_curve + offset: 0x83A8 +common_grand_prix_human_item_curve8: + symbol: common_grand_prix_human_item_curve8 + type: mk64:item_curve + offset: 0x840C +common_grand_prix_cpu_item_curve: + symbol: common_grand_prix_cpu_item_curve + type: mk64:item_curve + offset: 0x8470 +common_grand_prix_cpu_item_curve2: + symbol: common_grand_prix_cpu_item_curve2 + type: mk64:item_curve + offset: 0x84D4 +common_grand_prix_cpu_item_curve3: + symbol: common_grand_prix_cpu_item_curve3 + type: mk64:item_curve + offset: 0x8538 +common_grand_prix_cpu_item_curve4: + symbol: common_grand_prix_cpu_item_curve4 + type: mk64:item_curve + offset: 0x859C +common_grand_prix_cpu_item_curve5: + symbol: common_grand_prix_cpu_item_curve5 + type: mk64:item_curve + offset: 0x8600 +common_grand_prix_cpu_item_curve6: + symbol: common_grand_prix_cpu_item_curve6 + type: mk64:item_curve + offset: 0x8664 +common_grand_prix_cpu_item_curve7: + symbol: common_grand_prix_cpu_item_curve7 + type: mk64:item_curve + offset: 0x86C8 +common_grand_prix_cpu_item_curve8: + symbol: common_grand_prix_cpu_item_curve8 + type: mk64:item_curve + offset: 0x872C +common_versus_2_player_item_curve: + symbol: common_versus_2_player_item_curve + type: mk64:item_curve + offset: 0x8790 +common_versus_2_player_item_curve2: + symbol: common_versus_2_player_item_curve2 + type: mk64:item_curve + offset: 0x87F4 +common_versus_3_player_item_curve: + symbol: common_versus_3_player_item_curve + type: mk64:item_curve + offset: 0x8858 +common_versus_3_player_item_curve2: + symbol: common_versus_3_player_item_curve2 + type: mk64:item_curve + offset: 0x88BC +common_versus_3_player_item_curve3: + symbol: common_versus_3_player_item_curve3 + type: mk64:item_curve + offset: 0x8920 +common_versus_4_player_item_curve: + symbol: common_versus_4_player_item_curve + type: mk64:item_curve + offset: 0x8984 +common_versus_4_player_item_curve2: + symbol: common_versus_4_player_item_curve2 + type: mk64:item_curve + offset: 0x89E8 +common_versus_4_player_item_curve3: + symbol: common_versus_4_player_item_curve3 + type: mk64:item_curve + offset: 0x8A4C +common_versus_4_player_item_curve4: + symbol: common_versus_4_player_item_curve4 + type: mk64:item_curve + offset: 0x8AB0 +common_battle_item_curve: + symbol: common_battle_item_curve + type: mk64:item_curve + offset: 0x8B14 +D_0D008B78: + symbol: D_0D008B78 + type: vtx + offset: 0x8B78 + count: 4 +D_0D008BB8: + symbol: D_0D008BB8 + type: vtx + offset: 0x8BB8 + count: 4 +D_0D008BF8: + symbol: D_0D008BF8 + type: vtx + offset: 0x8BF8 + count: 4 +D_0D008C38: + symbol: D_0D008C38 + type: vtx + offset: 0x8C38 + count: 4 + +common_square_plain_render: + symbol: common_square_plain_render + type: gfx + offset: 0x8C78 +D_0D008C90: + symbol: D_0D008C90 + type: gfx + offset: 0x8C90 +common_setting_render_character: + symbol: common_setting_render_character + type: gfx + offset: 0x8CD8 +D_0D008D10: + symbol: D_0D008D10 + type: gfx + offset: 0x8D10 +D_0D008D58: + symbol: D_0D008D58 + type: gfx + offset: 0x8D58 +D_0D008DA0: + symbol: D_0D008DA0 + type: gfx + offset: 0x8DA0 +D_0D008DB8: + symbol: D_0D008DB8 + type: gfx + offset: 0x8DB8 +D_0D008DF8: + symbol: D_0D008DF8 + type: gfx + offset: 0x8DF8 +D_0D008E20: + symbol: D_0D008E20 + type: gfx + offset: 0x8E20 +D_0D008E48: + symbol: D_0D008E48 + type: gfx + offset: 0x8E48 +D_0D008E70: + symbol: D_0D008E70 + type: gfx + offset: 0x8E70 +D_0D008E98: + symbol: D_0D008E98 + type: mtx + offset: 0x8E98 + count: 1 +D_0D008ED8: # These 4 vtx may be an mtx like the one before here. It's difficult to say though as there are no references in the code-base. + symbol: D_0D008ED8 + type: mtx + offset: 0x8ED8 + count: 1 +D_0D008F18: + symbol: D_0D008F18 + type: mk64:driving_behaviour + offset: 0x8F18 +D_0D008F28: + symbol: D_0D008F28 + type: mk64:driving_behaviour + offset: 0x8F28 +D_0D008F80: + symbol: D_0D008F80 + type: mk64:driving_behaviour + offset: 0x8F80 +D_0D008FB8: + symbol: D_0D008FB8 + type: mk64:driving_behaviour + offset: 0x8FB8 +D_0D009058: + symbol: D_0D009058 + type: mk64:driving_behaviour + offset: 0x9058 +D_0D0090B8: + symbol: D_0D0090B8 + type: mk64:driving_behaviour + offset: 0x90B8 +D_0D0090F8: + symbol: D_0D0090F8 + type: mk64:driving_behaviour + offset: 0x90F8 +D_0D009158: + symbol: D_0D009158 + type: mk64:driving_behaviour + offset: 0x9158 +D_0D009158: + symbol: D_0D009188 + type: mk64:driving_behaviour + offset: 0x9188 +D_0D0091E8: + symbol: D_0D0091E8 + type: mk64:driving_behaviour + offset: 0x91E8 +D_0D009210: + symbol: D_0D009210 + type: mk64:driving_behaviour + offset: 0x9210 +D_0D009238: + symbol: D_0D009238 + type: mk64:driving_behaviour + offset: 0x9238 +D_0D009260: + symbol: D_0D009260 + type: mk64:driving_behaviour + offset: 0x9260 +D_0D009280: + symbol: D_0D009280 + type: mk64:driving_behaviour + offset: 0x9280 +D_0D0092C8: + symbol: D_0D0092C8 + type: mk64:driving_behaviour + offset: 0x92C8 +D_0D009310: + symbol: D_0D009310 + type: mk64:driving_behaviour + offset: 0x9310 +D_0D0093C0: + symbol: D_0D0093C0 + type: mk64:driving_behaviour + offset: 0x93C0 +cpu_CurveTargetSpeed: + symbol: cpu_CurveTargetSpeed + type: inc + offset: 0x9418 + ctype: Vec4f + offset: 0x9418 + file_path: "assets/course_metadata/cpu_CurveTargetSpeed.inc.c" +cpu_NormalTargetSpeed: + symbol: cpu_NormalTargetSpeed + type: inc + offset: 0x9568 + ctype: Vec4f + file_path: "assets/course_metadata/cpu_NormalTargetSpeed.inc.c" +D_0D0096B8: + symbol: D_0D0096B8 + type: inc + offset: 0x96B8 + ctype: Vec4f + file_path: "assets/course_metadata/D_0D0096B8.inc.c" +cpu_OffTrackTargetSpeed: + symbol: cpu_OffTrackTargetSpeed + type: inc + offset: 0x9808 + ctype: Vec4f + file_path: "assets/course_metadata/cpu_OffTrackTargetSpeed.inc.c" +common_texture_speedometer: + symbol: common_texture_speedometer + type: texture + ctype: u8 + offset: 0x9958 + size: 0xC00 + width: 64 + height: 96 + format: I4 +common_texture_speedometer_needle: + symbol: common_texture_speedometer_needle + type: texture + offset: 0xA558 + ctype: u8 + size: 0x400 + width: 64 + height: 32 + format: I4 +common_texture_hud_lap: + symbol: common_texture_hud_lap + type: texture + offset: 0xA958 + ctype: u16 + size: 0x200 + width: 32 + height: 8 + format: RGBA16 +common_texture_hud_123: + symbol: common_texture_hud_123 + type: texture + offset: 0xAB58 + size: 0x200 + ctype: u16 + width: 32 + height: 8 + format: RGBA16 +common_texture_hud_lap_time: + symbol: common_texture_hud_lap_time + type: texture + offset: 0xAD58 + size: 0x400 + ctype: u16 + width: 32 + height: 16 + format: RGBA16 +common_texture_hud_lap_1_on_3: + symbol: common_texture_hud_lap_1_on_3 + type: texture + offset: 0xB158 + size: 0x400 + ctype: u16 + width: 32 + height: 16 + format: RGBA16 +common_texture_hud_lap_2_on_3: + symbol: common_texture_hud_lap_2_on_3 + type: texture + offset: 0xB558 + ctype: u16 + size: 0x400 + width: 32 + height: 16 + format: RGBA16 +common_texture_hud_lap_3_on_3: + symbol: common_texture_hud_lap_3_on_3 + type: texture + offset: 0xB958 + size: 0x400 + ctype: u16 + width: 32 + height: 16 + format: RGBA16 +common_texture_hud_total_time: + symbol: common_texture_hud_total_time + type: texture + offset: 0xBD58 + size: 0x400 + ctype: u16 + width: 32 + height: 16 + format: RGBA16 +common_texture_hud_time: + symbol: common_texture_hud_time + type: texture + offset: 0xC158 + size: 0x400 + ctype: u16 + width: 32 + height: 16 + format: RGBA16 +common_texture_hud_normal_digit: + symbol: common_texture_hud_normal_digit + type: texture + offset: 0xC558 + size: 0xD00 + ctype: u16 + width: 104 + height: 16 + format: RGBA16 +common_texture_hud_1st: + symbol: common_texture_hud_1st + type: texture + offset: 0xD258 + size: 0x1000 + ctype: u8 + width: 128 + height: 64 + format: I4 +common_texture_hud_2nd: + symbol: common_texture_hud_2nd + type: texture + offset: 0xE258 + size: 0x1000 + ctype: u8 + width: 128 + height: 64 + format: I4 +common_texture_hud_3rd: + symbol: common_texture_hud_3rd + type: texture + offset: 0xF258 + size: 0x1000 + ctype: u8 + width: 128 + height: 64 + format: I4 +common_texture_hud_4th: + symbol: common_texture_hud_4th + type: texture + offset: 0x10258 + size: 0x1000 + ctype: u8 + width: 128 + height: 64 + format: I4 +common_texture_hud_5th: + symbol: common_texture_hud_5th + type: texture + offset: 0x11258 + size: 0x1000 + ctype: u8 + width: 128 + height: 64 + format: I4 +common_texture_hud_6th: + symbol: common_texture_hud_6th + type: texture + offset: 0x12258 + size: 0x1000 + ctype: u8 + width: 128 + height: 64 + format: I4 +common_texture_hud_7th: + symbol: common_texture_hud_7th + type: texture + offset: 0x13258 + size: 0x1000 + ctype: u8 + width: 128 + height: 64 + format: I4 +common_texture_hud_8th: + symbol: common_texture_hud_8th + type: texture + offset: 0x14258 + size: 0x1000 + ctype: u8 + width: 128 + height: 64 + format: I4 +common_texture_first_place: + symbol: common_texture_first_place # 132B50_15258 + type: texture + offset: 0x15258 + size: 0x800 + ctype: u8 + width: 64 + height: 64 + format: I4 +common_texture_second_place: + symbol: common_texture_second_place # 132B50_15A58 + type: texture + offset: 0x15A58 + size: 0x800 + ctype: u8 + width: 64 + height: 64 + format: I4 +common_texture_third_place: + symbol: common_texture_third_place # 132B50_16258 + type: texture + offset: 0x16258 + size: 0x800 + ctype: u8 + width: 64 + height: 64 + format: I4 +common_texture_fourth_place: + symbol: common_texture_fourth_place # 132B50_16A58 + type: texture + offset: 0x16A58 + size: 0x800 + ctype: u8 + width: 64 + height: 64 + format: I4 +common_tlut_player_emblem: # // tlut for 1p, 2p, 3p, 4p + symbol: common_tlut_player_emblem + type: texture + offset: 0x17258 + size: 0x200 + ctype: u16 + colors: 16 + height: 16 + format: tlut +common_texture_player_emblem_1p: + symbol: common_texture_player_emblem_1p + type: texture + offset: 0x17458 + size: 0x800 + ctype: u8 + width: 64 + height: 32 + format: CI8 + tlut_symbol: common_tlut_player_emblem +common_texture_player_emblem_2p: + symbol: common_texture_player_emblem_2p + type: texture + offset: 0x17C58 + size: 0x800 + ctype: u8 + width: 64 + height: 32 + format: CI8 + tlut_symbol: common_tlut_player_emblem +common_texture_player_emblem_3p: + symbol: common_texture_player_emblem_3p + type: texture + offset: 0x18458 + size: 0x800 + ctype: u8 + width: 64 + height: 32 + format: CI8 + tlut_symbol: common_tlut_player_emblem +common_texture_player_emblem_4p: + symbol: common_texture_player_emblem_4p + type: texture + offset: 0x18C58 + size: 0x800 + ctype: u8 + width: 64 + height: 32 + format: CI8 + tlut_symbol: common_tlut_player_emblem +common_tlut_hud_type_C_rank_font: # Font tlut for 12345678 + symbol: common_tlut_hud_type_C_rank_font + type: texture + offset: 0x19458 + size: 0x200 + ctype: u16 + colors: 16 + height: 16 + format: tlut +common_texture_hud_type_C_rank_font_1: + symbol: common_texture_hud_type_C_rank_font_1 + type: texture + offset: 0x19658 + size: 0x100 + ctype: u8 + width: 16 + height: 16 + format: CI8 + tlut_symbol: common_tlut_hud_type_C_rank_font +common_texture_hud_type_C_rank_font_2: + symbol: common_texture_hud_type_C_rank_font_2 + type: texture + offset: 0x19758 + size: 0x100 + ctype: u8 + width: 16 + height: 16 + format: CI8 + tlut_symbol: common_tlut_hud_type_C_rank_font +common_texture_hud_type_C_rank_font_3: + symbol: common_texture_hud_type_C_rank_font_3 + type: texture + offset: 0x19858 + size: 0x100 + ctype: u8 + width: 16 + height: 16 + format: CI8 + tlut_symbol: common_tlut_hud_type_C_rank_font +common_texture_hud_type_C_rank_font_4: + symbol: common_texture_hud_type_C_rank_font_4 + type: texture + offset: 0x19958 + size: 0x100 + ctype: u8 + width: 16 + height: 16 + format: CI8 + tlut_symbol: common_tlut_hud_type_C_rank_font +common_texture_hud_type_C_rank_font_5: + symbol: common_texture_hud_type_C_rank_font_5 + type: texture + offset: 0x19A58 + size: 0x100 + ctype: u8 + width: 16 + height: 16 + format: CI8 + tlut_symbol: common_tlut_hud_type_C_rank_font +common_texture_hud_type_C_rank_font_6: + symbol: common_texture_hud_type_C_rank_font_6 + type: texture + offset: 0x19B58 + size: 0x100 + ctype: u8 + width: 16 + height: 16 + format: CI8 + tlut_symbol: common_tlut_hud_type_C_rank_font +common_texture_hud_type_C_rank_font_7: + symbol: common_texture_hud_type_C_rank_font_7 + type: texture + offset: 0x19C58 + size: 0x100 + ctype: u8 + width: 16 + height: 16 + format: CI8 + tlut_symbol: common_tlut_hud_type_C_rank_font +common_texture_hud_type_C_rank_font_8: + symbol: common_texture_hud_type_C_rank_font_8 + type: texture + offset: 0x19D58 + size: 0x100 + ctype: u8 + width: 16 + height: 16 + format: CI8 + tlut_symbol: common_tlut_hud_type_C_rank_font +common_tlut_hud_type_C_rank_tiny_font: # Font tlut for 0123456789 + symbol: common_tlut_hud_type_C_rank_tiny_font + type: texture + offset: 0x19E58 + size: 0x200 + ctype: u16 + colors: 16 + height: 16 + format: tlut +common_texture_hud_type_C_rank_tiny_font_0: + symbol: common_texture_hud_type_C_rank_tiny_font_0 + type: texture + offset: 0x1A058 + size: 0x40 + ctype: u8 + width: 8 + height: 8 + format: CI8 + tlut_symbol: common_tlut_hud_type_C_rank_tiny_font +common_texture_hud_type_C_rank_tiny_font_1: + symbol: common_texture_hud_type_C_rank_tiny_font_1 + type: texture + offset: 0x1A098 + size: 0x40 + ctype: u8 + width: 8 + height: 8 + format: CI8 + tlut_symbol: common_tlut_hud_type_C_rank_tiny_font +common_texture_hud_type_C_rank_tiny_font_2: + symbol: common_texture_hud_type_C_rank_tiny_font_2 + type: texture + offset: 0x1A0D8 + size: 0x40 + ctype: u8 + width: 8 + height: 8 + format: CI8 + tlut_symbol: common_tlut_hud_type_C_rank_tiny_font +common_texture_hud_type_C_rank_tiny_font_3: + symbol: common_texture_hud_type_C_rank_tiny_font_3 + type: texture + offset: 0x1A118 + size: 0x40 + ctype: u8 + width: 8 + height: 8 + format: CI8 + tlut_symbol: common_tlut_hud_type_C_rank_tiny_font +common_texture_hud_type_C_rank_tiny_font_4: + symbol: common_texture_hud_type_C_rank_tiny_font_4 + type: texture + offset: 0x1A158 + size: 0x40 + ctype: u8 + width: 8 + height: 8 + format: CI8 + tlut_symbol: common_tlut_hud_type_C_rank_tiny_font +common_texture_hud_type_C_rank_tiny_font_5: + symbol: common_texture_hud_type_C_rank_tiny_font_5 + type: texture + offset: 0x1A198 + size: 0x40 + ctype: u8 + width: 8 + height: 8 + format: CI8 + tlut_symbol: common_tlut_hud_type_C_rank_tiny_font +common_texture_hud_type_C_rank_tiny_font_6: + symbol: common_texture_hud_type_C_rank_tiny_font_6 + type: texture + offset: 0x1A1D8 + size: 0x40 + ctype: u8 + width: 8 + height: 8 + format: CI8 + tlut_symbol: common_tlut_hud_type_C_rank_tiny_font +common_texture_hud_type_C_rank_tiny_font_7: + symbol: common_texture_hud_type_C_rank_tiny_font_7 + type: texture + offset: 0x1A218 + size: 0x40 + ctype: u8 + width: 8 + height: 8 + format: CI8 + tlut_symbol: common_tlut_hud_type_C_rank_tiny_font +common_texture_hud_type_C_rank_tiny_font_8: + symbol: common_texture_hud_type_C_rank_tiny_font_8 + type: texture + offset: 0x1A258 + size: 0x40 + ctype: u8 + width: 8 + height: 8 + format: CI8 + tlut_symbol: common_tlut_hud_type_C_rank_tiny_font +common_texture_hud_type_C_rank_tiny_font_9: + symbol: common_texture_hud_type_C_rank_tiny_font_9 + type: texture + offset: 0x1A298 + size: 0x40 + ctype: u8 + width: 8 + height: 8 + format: CI8 + tlut_symbol: common_tlut_hud_type_C_rank_tiny_font +common_texture_character_portrait_border: + symbol: common_texture_character_portrait_border + type: texture + offset: 0x1A2D8 + size: 0x200 + ctype: u8 + width: 32 + height: 32 + format: IA4 +common_tlut_portrait_mario: + symbol: common_tlut_portrait_mario + type: texture + offset: 0x1A4D8 + size: 0x200 + ctype: u16 + colors: 16 + height: 16 + format: tlut +common_tlut_portrait_luigi: + symbol: common_tlut_portrait_luigi + type: texture + offset: 0x1A6D8 + size: 0x200 + ctype: u16 + colors: 16 + height: 16 + format: tlut +common_tlut_portrait_peach: + symbol: common_tlut_portrait_peach + type: texture + offset: 0x1A8D8 + size: 0x200 + ctype: u16 + colors: 16 + height: 16 + format: tlut +common_tlut_portrait_toad: + symbol: common_tlut_portrait_toad + type: texture + offset: 0x1AAD8 + size: 0x200 + ctype: u16 + colors: 16 + height: 16 + format: tlut +common_tlut_portrait_yoshi: + symbol: common_tlut_portrait_yoshi + type: texture + offset: 0x1ACD8 + size: 0x200 + ctype: u16 + colors: 16 + height: 16 + format: tlut +common_tlut_portrait_donkey_kong: + symbol: common_tlut_portrait_donkey_kong + type: texture + offset: 0x1AED8 + size: 0x200 + ctype: u16 + colors: 16 + height: 16 + format: tlut +common_tlut_portrait_wario: + symbol: common_tlut_portrait_wario + type: texture + offset: 0x1B0D8 + size: 0x200 + ctype: u16 + colors: 16 + height: 16 + format: tlut +common_tlut_portrait_bowser: + symbol: common_tlut_portrait_bowser + type: texture + offset: 0x1B2D8 + size: 0x200 + ctype: u16 + colors: 16 + height: 16 + format: tlut +common_tlut_portrait_bomb_kart_and_question_mark: + symbol: common_tlut_portrait_bomb_kart_and_question_mark + type: texture + offset: 0x1B4D8 + size: 0x200 + ctype: u16 + colors: 16 + height: 16 + format: tlut +common_texture_portrait_mario: + symbol: common_texture_portrait_mario # 132B50_16A58 + type: texture + offset: 0x1B6D8 + size: 0x400 + ctype: u8 + width: 32 + height: 32 + format: CI8 + tlut_symbol: common_tlut_portrait_mario +common_texture_portrait_luigi: + symbol: common_texture_portrait_luigi # 132B50_16A58 + type: texture + offset: 0x1BAD8 + size: 0x400 + ctype: u8 + width: 32 + height: 32 + format: CI8 + tlut_symbol: common_tlut_portrait_luigi +common_texture_portrait_peach: + symbol: common_texture_portrait_peach # 132B50_16A58 + type: texture + offset: 0x1BED8 + size: 0x400 + ctype: u8 + width: 32 + height: 32 + format: CI8 + tlut_symbol: common_tlut_portrait_peach +common_texture_portrait_toad: + symbol: common_texture_portrait_toad # 132B50_16A58 + type: texture + offset: 0x1C2D8 + size: 0x400 + ctype: u8 + width: 32 + height: 32 + format: CI8 + tlut_symbol: common_tlut_portrait_toad +common_texture_portrait_yoshi: + symbol: common_texture_portrait_yoshi # 132B50_16A58 + type: texture + offset: 0x1C6D8 + size: 0x400 + ctype: u8 + width: 32 + height: 32 + format: CI8 + tlut_symbol: common_tlut_portrait_yoshi +common_texture_portrait_donkey_kong: + symbol: common_texture_portrait_donkey_kong # 132B50_16A58 + type: texture + offset: 0x1CAD8 + size: 0x400 + ctype: u8 + width: 32 + height: 32 + format: CI8 + tlut_symbol: common_tlut_portrait_donkey_kong +common_texture_portrait_wario: + symbol: common_texture_portrait_wario # 132B50_16A58 + type: texture + offset: 0x1CED8 + size: 0x400 + ctype: u8 + width: 32 + height: 32 + format: CI8 + tlut_symbol: common_tlut_portrait_wario +common_texture_portrait_bowser: + symbol: common_texture_portrait_bowser # 132B50_16A58 + type: texture + offset: 0x1D2D8 + size: 0x400 + ctype: u8 + width: 32 + height: 32 + format: CI8 + tlut_symbol: common_tlut_portrait_bowser +common_texture_portrait_bomb_kart: + symbol: common_texture_portrait_bomb_kart # 132B50_16A58 + type: texture + offset: 0x1D6D8 + size: 0x400 + ctype: u8 + width: 32 + height: 32 + format: CI8 + tlut_symbol: common_tlut_portrait_bomb_kart_and_question_mark +common_texture_portrait_question_mark: + symbol: common_texture_portrait_question_mark # 132B50_16A58 + type: texture + offset: 0x1DAD8 + size: 0x400 + ctype: u8 + width: 32 + height: 32 + format: CI8 + tlut_symbol: common_tlut_portrait_bomb_kart_and_question_mark +common_tlut_item_window_none: + symbol: common_tlut_item_window_none + type: texture + offset: 0x1DED8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_tlut_item_window_banana: + symbol: common_tlut_item_window_banana + type: texture + offset: 0x1E0D8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_tlut_item_window_banana_bunch: + symbol: common_tlut_item_window_banana_bunch + type: texture + offset: 0x1E2D8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_tlut_item_window_mushroom: + symbol: common_tlut_item_window_mushroom + type: texture + offset: 0x1E4D8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_tlut_item_window_double_mushroom: + symbol: common_tlut_item_window_double_mushroom + type: texture + offset: 0x1E6D8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_tlut_item_window_triple_mushroom: + symbol: common_tlut_item_window_triple_mushroom + type: texture + offset: 0x1E8D8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_tlut_item_window_super_mushroom: + symbol: common_tlut_item_window_super_mushroom + type: texture + offset: 0x1EAD8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_tlut_item_window_blue_shell: + symbol: common_tlut_item_window_blue_shell + type: texture + offset: 0x1ECD8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_tlut_item_window_boo: + symbol: common_tlut_item_window_boo + type: texture + offset: 0x1EED8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_tlut_item_window_green_shell: + symbol: common_tlut_item_window_green_shell + type: texture + offset: 0x1F0D8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_tlut_item_window_triple_green_shell: + symbol: common_tlut_item_window_triple_green_shell + type: texture + offset: 0x1F2D8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_tlut_item_window_red_shell: + symbol: common_tlut_item_window_red_shell + type: texture + offset: 0x1F4D8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_tlut_item_window_triple_red_shell: + symbol: common_tlut_item_window_triple_red_shell + type: texture + offset: 0x1F6D8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_tlut_item_window_star: + symbol: common_tlut_item_window_star + type: texture + offset: 0x1F8D8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_tlut_item_window_thunder_bolt: + symbol: common_tlut_item_window_thunder_bolt + type: texture + offset: 0x1FAD8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_tlut_item_window_fake_item_box: + symbol: common_tlut_item_window_fake_item_box + type: texture + offset: 0x1FCD8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_texture_item_window_none: + symbol: common_texture_item_window_none + type: texture + offset: 0x1FED8 + width: 40 + height: 32 + format: ci8 + tlut_symbol: common_tlut_item_window_none +common_texture_item_window_banana: + symbol: common_texture_item_window_banana + type: texture + offset: 0x203D8 + width: 40 + height: 32 + format: ci8 + tlut_symbol: common_tlut_item_window_banana +common_texture_item_window_banana_bunch: + symbol: common_texture_item_window_banana_bunch + type: texture + offset: 0x208D8 + width: 40 + height: 32 + format: ci8 + tlut_symbol: common_tlut_item_window_banana_bunch +common_texture_item_window_mushroom: + symbol: common_texture_item_window_mushroom + type: texture + offset: 0x20DD8 + width: 40 + height: 32 + format: ci8 + tlut_symbol: common_tlut_item_window_mushroom +common_texture_item_window_double_mushroom: + symbol: common_texture_item_window_double_mushroom + type: texture + offset: 0x212D8 + width: 40 + height: 32 + format: ci8 + tlut_symbol: common_tlut_item_window_double_mushroom +common_texture_item_window_triple_mushroom: + symbol: common_texture_item_window_triple_mushroom + type: texture + offset: 0x217D8 + width: 40 + height: 32 + format: ci8 + tlut_symbol: common_tlut_item_window_triple_mushroom +common_texture_item_window_super_mushroom: + symbol: common_texture_item_window_super_mushroom + type: texture + offset: 0x21CD8 + width: 40 + height: 32 + format: ci8 + tlut_symbol: common_tlut_item_window_super_mushroom +common_texture_item_window_blue_shell: + symbol: common_texture_item_window_blue_shell + type: texture + offset: 0x221D8 + width: 40 + height: 32 + format: ci8 + tlut_symbol: common_tlut_item_window_blue_shell +common_texture_item_window_boo: + symbol: common_texture_item_window_boo + type: texture + offset: 0x226D8 + width: 40 + height: 32 + format: ci8 + tlut_symbol: common_tlut_item_window_boo +common_texture_item_window_green_shell: + symbol: common_texture_item_window_green_shell + type: texture + offset: 0x22BD8 + width: 40 + height: 32 + format: ci8 + tlut_symbol: common_tlut_item_window_green_shell +common_texture_item_window_triple_green_shell: + symbol: common_texture_item_window_triple_green_shell + type: texture + offset: 0x230D8 + width: 40 + height: 32 + format: ci8 + tlut_symbol: common_tlut_item_window_triple_green_shell +common_texture_item_window_red_shell: + symbol: common_texture_item_window_red_shell + type: texture + offset: 0x235D8 + width: 40 + height: 32 + format: ci8 + tlut_symbol: common_tlut_item_window_red_shell +common_texture_item_window_triple_red_shell: + symbol: common_texture_item_window_triple_red_shell + type: texture + offset: 0x23AD8 + width: 40 + height: 32 + format: ci8 + tlut_symbol: common_tlut_item_window_triple_red_shell +common_texture_item_window_star: + symbol: common_texture_item_window_star + type: texture + offset: 0x23FD8 + width: 40 + height: 32 + format: ci8 + tlut_symbol: common_tlut_item_window_star +common_texture_item_window_thunder_bolt: + symbol: common_texture_item_window_thunder_bolt + type: texture + offset: 0x244D8 + width: 40 + height: 32 + format: ci8 + tlut_symbol: common_tlut_item_window_thunder_bolt +common_texture_item_window_fake_item_box: + symbol: common_texture_item_window_fake_item_box + type: texture + offset: 0x249D8 + width: 40 + height: 32 + format: ci8 + tlut_symbol: common_tlut_item_window_fake_item_box +common_tlut_lakitu_no_lights: + symbol: common_tlut_lakitu_no_lights + type: texture + offset: 0x24ED8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_tlut_lakitu_red_lights: + symbol: common_tlut_lakitu_red_lights + type: texture + offset: 0x250D8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_tlut_lakitu_blue_lights: + symbol: common_tlut_lakitu_blue_lights + type: texture + offset: 0x252D8 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_tlut_lakitu_checkered_flag: + symbol: common_tlut_lakitu_checkered_flag + type: texture + offset: 0x254D8 + ctype: u16 + width: 16 + height: 16 + format: rgba16 +common_tlut_lakitu_second_lap: + symbol: common_tlut_lakitu_second_lap + type: texture + offset: 0x256D8 + ctype: u16 + width: 16 + height: 16 + format: rgba16 +common_tlut_lakitu_final_lap: + symbol: common_tlut_lakitu_final_lap + type: texture + offset: 0x258D8 + ctype: u16 + width: 16 + height: 16 + format: rgba16 +common_tlut_lakitu_reverse: + symbol: common_tlut_lakitu_reverse + type: texture + offset: 0x25AD8 + ctype: u16 + width: 16 + height: 16 + format: rgba16 +common_tlut_lakitu_fishing: + symbol: common_tlut_lakitu_fishing + type: texture + offset: 0x25CD8 + ctype: u16 + width: 16 + height: 16 + format: rgba16 +common_tlut_traffic_light: + symbol: common_tlut_traffic_light + type: texture + offset: 0x25ED8 + ctype: u16 + colors: 256 + format: tlut +common_texture_traffic_light_01: + symbol: common_texture_traffic_light_01 + type: texture + offset: 0x260D8 + width: 24 + height: 48 + format: ci8 + tlut_symbol: common_tlut_traffic_light +common_texture_traffic_light_02: + symbol: common_texture_traffic_light_02 + type: texture + offset: 0x26558 + width: 24 + height: 48 + format: ci8 + tlut_symbol: common_tlut_traffic_light +common_texture_traffic_light_03: + symbol: common_texture_traffic_light_03 + type: texture + offset: 0x269D8 + width: 24 + height: 48 + format: ci8 + tlut_symbol: common_tlut_traffic_light +common_texture_traffic_light_04: + symbol: common_texture_traffic_light_04 + type: texture + offset: 0x26E58 + width: 24 + height: 48 + format: ci8 + tlut_symbol: common_tlut_traffic_light +common_texture_traffic_light_05: + symbol: common_texture_traffic_light_05 + type: texture + offset: 0x272D8 + width: 24 + height: 48 + format: ci8 + tlut_symbol: common_tlut_traffic_light +common_texture_traffic_light_06: + symbol: common_texture_traffic_light_06 + type: texture + offset: 0x27758 + width: 24 + height: 48 + format: ci8 + tlut_symbol: common_tlut_traffic_light +common_texture_traffic_light_07: + symbol: common_texture_traffic_light_07 + type: texture + offset: 0x27BD8 + width: 24 + height: 48 + format: ci8 + tlut_symbol: common_tlut_traffic_light +common_texture_traffic_light_08: + symbol: common_texture_traffic_light_08 + type: texture + offset: 0x28058 + width: 24 + height: 48 + format: ci8 + tlut_symbol: common_tlut_traffic_light +common_texture_traffic_light_09: + symbol: common_texture_traffic_light_09 + type: texture + offset: 0x284D8 + width: 24 + height: 48 + format: ci8 + tlut_symbol: common_tlut_traffic_light +common_texture_traffic_light_10: + symbol: common_texture_traffic_light_10 + type: texture + offset: 0x28958 + width: 24 + height: 48 + format: ci8 + tlut_symbol: common_tlut_traffic_light +common_texture_particle_leaf: + symbol: common_texture_particle_leaf + type: texture + offset: 0x28DD8 + width: 32 + height: 16 + ctype: u16 + format: rgba16 +common_texture_unused_particle_leaf: + symbol: common_texture_unused_particle_leaf + type: texture + offset: 0x291D8 + width: 16 + height: 16 + ctype: u16 + format: rgba16 +D_0D0293D8: # Cloud, smoke, or fog? + symbol: D_0D0293D8 + type: texture + offset: 0x293D8 + width: 16 + height: 16 + format: i4 +D_0D029458: # Smoke? + symbol: D_0D029458 + type: texture + offset: 0x29458 + width: 32 + height: 32 + format: i8 +common_tlut_bomb: # This is placed below in rom. Hack to make torch extract the tlut first. + symbol: common_tlut_bomb + type: texture + offset: 0x2A858 + ctype: u16 + colors: 256 + height: 16 + format: tlut +common_texture_bomb_1: # Smoke? + symbol: common_texture_bomb_1 + type: texture + offset: 0x29858 + width: 32 + height: 32 + format: ci8 + tlut_symbol: common_tlut_bomb +common_texture_bomb_2: # Smoke? + symbol: common_texture_bomb_2 + type: texture + offset: 0x29C58 + width: 32 + height: 32 + format: ci8 + tlut_symbol: common_tlut_bomb +common_texture_bomb_3: # Smoke? + symbol: common_texture_bomb_3 + type: texture + offset: 0x2A058 + width: 32 + height: 32 + format: ci8 + tlut_symbol: common_tlut_bomb +common_texture_bomb_4: # Smoke? + symbol: common_texture_bomb_4 + type: texture + offset: 0x2A458 + width: 32 + height: 32 + format: ci8 + tlut_symbol: common_tlut_bomb +D_0D02AA58: + symbol: D_0D02AA58 + type: texture + offset: 0x2AA58 + ctype: u16 + width: 16 + height: 16 + format: rgba16 +common_texture_particle_spark_1: + symbol: common_texture_particle_spark_1 + offset: 0x2AC58 + width: 32 + height: 32 + ctype: u8 + type: texture + format: i8 +common_texture_particle_spark_2: + symbol: common_texture_particle_spark_2 + offset: 0x2B058 + width: 32 + height: 32 + type: texture + format: i8 +common_texture_particle_spark_3: + symbol: common_texture_particle_spark_3 + offset: 0x2B458 + width: 32 + height: 32 + type: texture + format: i8 +common_texture_particle_spark_4: + symbol: common_texture_particle_spark_4 + offset: 0x2B858 + width: 32 + height: 32 + type: texture + format: i8 +common_texture_particle_smoke_1: + symbol: common_texture_particle_smoke_1 + offset: 0x2BC58 + width: 32 + height: 32 + type: texture + format: i8 +common_texture_particle_smoke_2: + symbol: common_texture_particle_smoke_2 + offset: 0x2C058 + width: 32 + height: 32 + type: texture + format: i8 +common_texture_particle_smoke_3: + symbol: common_texture_particle_smoke_3 + offset: 0x2C458 + width: 32 + height: 32 + type: texture + format: i8 +common_texture_particle_smoke_4: + symbol: common_texture_particle_smoke_4 + offset: 0x2C858 + width: 32 + height: 32 + type: texture + format: i8 +common_texture_minimap_finish_line: + symbol: common_texture_minimap_finish_line + offset: 0x2CC58 + width: 8 + height: 8 + ctype: u16 + type: texture + format: rgba16 +common_texture_minimap_kart_mario: + symbol: common_texture_minimap_kart_mario + offset: 0x2CCD8 + ctype: u16 + width: 8 + height: 8 + type: texture + format: rgba16 +common_texture_minimap_kart_luigi: + symbol: common_texture_minimap_kart_luigi + offset: 0x2CD58 + ctype: u16 + width: 8 + height: 8 + type: texture + format: rgba16 +common_texture_minimap_kart_yoshi: + symbol: common_texture_minimap_kart_yoshi + offset: 0x2CDD8 + ctype: u16 + width: 8 + height: 8 + type: texture + format: rgba16 +common_texture_minimap_kart_toad: + symbol: common_texture_minimap_kart_toad + offset: 0x2CE58 + ctype: u16 + width: 8 + height: 8 + type: texture + format: rgba16 +common_texture_minimap_kart_donkey_kong: + symbol: common_texture_minimap_kart_donkey_kong + offset: 0x2CED8 + ctype: u16 + width: 8 + height: 8 + type: texture + format: rgba16 +common_texture_minimap_kart_wario: + symbol: common_texture_minimap_kart_wario + offset: 0x2CF58 + ctype: u16 + width: 8 + height: 8 + type: texture + format: rgba16 +common_texture_minimap_kart_peach: + symbol: common_texture_minimap_kart_peach + offset: 0x2CFD8 + ctype: u16 + width: 8 + height: 8 + type: texture + format: rgba16 +common_texture_minimap_kart_bowser: + symbol: common_texture_minimap_kart_bowser + offset: 0x2D058 + ctype: u16 + width: 8 + height: 8 + type: texture + format: rgba16 +common_texture_minimap_progress_dot: + symbol: common_texture_minimap_progress_dot + offset: 0x2D0D8 + ctype: u16 + width: 8 + height: 8 + type: texture + format: rgba16 diff --git a/yamls/jp.v11/course_metadata.yml b/yamls/jp.v11/course_metadata.yml new file mode 100644 index 0000000000..67d780d644 --- /dev/null +++ b/yamls/jp.v11/course_metadata.yml @@ -0,0 +1,4 @@ +course_metadata: + type: mk64:metadata + input_directory: yamls/courses + out_directory: "assets/course_metadata" diff --git a/yamls/jp.v11/data_800E45C0.yml b/yamls/jp.v11/data_800E45C0.yml new file mode 100644 index 0000000000..e188f076b3 --- /dev/null +++ b/yamls/jp.v11/data_800E45C0.yml @@ -0,0 +1,78 @@ +:config: + vram: + addr: 0x800E3DD0 + offset: 0xE49D0 + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + tables: + D_800E45C0: + range: [0x800E3DD0, 0x800E3E18] + mode: APPEND +D_800E45C0: + symbol: D_800E45C0 + type: lights + offset: 0x800E3DD0 +D_800E45D8: + symbol: D_800E45D8 + type: lights + offset: 0x800E3DE8 +D_800E45F0: + symbol: D_800E45F0 + type: lights + offset: 0x800E3E00 +D_800E4608: + symbol: D_800E4608 + type: lights + offset: 0x800E3E18 +D_800E4620: + symbol: D_800E4620 + type: lights + offset: 0x800E3E30 +D_800E4638: + symbol: D_800E4638 + type: lights + offset: 0x800E3E48 +D_800E4650: + symbol: D_800E4650 + type: lights + offset: 0x800E3E60 +D_800E4668: + symbol: D_800E4668 + type: lights + offset: 0x800E3E78 +D_800E4680: + symbol: D_800E4680 + type: lights + offset: 0x800E3E90 +D_800E4698: + symbol: D_800E4698 + type: lights + offset: 0x800E3EA8 +D_800E46B0: + symbol: D_800E46B0 + type: lights + offset: 0x800E3EC0 +D_800E46C8: + symbol: D_800E46C8 + type: lights + offset: 0x800E3ED8 +D_800E46E0: + symbol: D_800E46E0 + type: lights + offset: 0x800E3EF0 +D_800E46F8: + symbol: D_800E46F8 + type: array + offset: 0x800E3F08 + count: 3 + array_type: Vec3iu +D_800E471C: + symbol: D_800E471C + type: array + offset: 0x800E3F2C + count: 7 + array_type: u8 diff --git a/yamls/jp.v11/data_800E8700.yml b/yamls/jp.v11/data_800E8700.yml new file mode 100644 index 0000000000..9ec37f677b --- /dev/null +++ b/yamls/jp.v11/data_800E8700.yml @@ -0,0 +1,127 @@ +:config: + vram: + addr: 0x800E97C0 + offset: 0xEA3C0 + header: + code: + - '#include ' + - '#include ' + header: + - '#include ' + tables: + D_800E8900: + range: [0x800E99C0, 0x800E9A80] + mode: APPEND +D_800E8700: + symbol: D_800E8700 + type: vtx + offset: 0x800E97C0 + count: 4 +D_800E8740: + symbol: D_800E8740 + type: vtx + offset: 0x800E9800 + count: 4 +D_800E8780: + symbol: D_800E8780 + type: vtx + offset: 0x800E9840 + count: 4 +D_800E87C0: + symbol: D_800E87C0 + type: vtx + offset: 0x800E9880 + count: 4 +D_800E8800: + symbol: D_800E8800 + type: vtx + offset: 0x800E98C0 + count: 4 +D_800E8840: + symbol: D_800E8840 + type: vtx + offset: 0x800E9900 + count: 4 +D_800E8880: + symbol: D_800E8880 + type: vtx + offset: 0x800E9940 + count: 4 +D_800E88C0: + symbol: D_800E88C0 + type: vtx + offset: 0x800E9980 + count: 4 +D_800E8900: + symbol: D_800E8900 + type: vtx + offset: 0x800E99C0 + count: 4 +D_800E8940: + symbol: D_800E8940 + type: vtx + offset: 0x800E9A00 + count: 4 +D_800E8980: + symbol: D_800E8980 + type: vtx + offset: 0x800E9A40 + count: 4 +D_800E89C0: + symbol: D_800E89C0 + type: vtx + offset: 0x800E9A80 + count: 4 +D_800E8A00: + symbol: D_800E8A00 + type: vtx + offset: 0x800E9AC0 + count: 4 +D_800E8A40: + symbol: D_800E8A40 + type: vtx + offset: 0x800E9B00 + count: 4 +D_800E8A80: + symbol: D_800E8A80 + type: vtx + offset: 0x800E9B40 + count: 4 +D_800E8AC0: + symbol: D_800E8AC0 + type: vtx + offset: 0x800E9B80 + count: 4 +D_800E8B00: + symbol: D_800E8B00 + type: vtx + offset: 0x800E9BC0 + count: 4 +D_800E8B40: + symbol: D_800E8B40 + type: vtx + offset: 0x800E9C00 + count: 4 +D_800E8B80: + symbol: D_800E8B80 + type: vtx + offset: 0x800E9C40 + count: 4 +D_800E8BC0: + symbol: D_800E8BC0 + type: vtx + offset: 0x800E9C80 + count: 4 +D_800E8C00: + symbol: D_800E8C00 + type: vtx + offset: 0x800E9CC0 + count: 4 +D_800E8D40: + symbol: D_800E8D40 + type: gfx + offset: 0x800E9E00 +D_800E8DD0: + symbol: D_800E8DD0 + type: gfx + offset: 0x800E9E90 diff --git a/yamls/jp.v11/data_segment2.yml b/yamls/jp.v11/data_segment2.yml new file mode 100644 index 0000000000..86f7bc025d --- /dev/null +++ b/yamls/jp.v11/data_segment2.yml @@ -0,0 +1,327 @@ +:config: + segments: + - [0x02, 0x12A330] + - [0x0D, 0x1323A0] + header: + code: + - '#include ' + - '#include ' + - '#include ' + - '#include ' + - '#include ' + - '#include "data_segment2.h"' + - '#include ' + header: + - '#include ' +# D_02007650: +# symbol: D_02007650 +# type: gfx +# offset: 0x7650 +# D_020076B0: +# symbol: D_020076B0 +# type: Gfx +# offset: 0x76B0 +# D_020076E0: +# symbol: D_020076E0 +# type: Gfx +# offset: 0x76E0 +# D_02007708: +# symbol: D_02007708 +# type: Gfx +# offset: 0x7708 +# D_02007728: +# symbol: D_02007728 +# type: Gfx +# offset: 0x7728 +# D_02007748: +# symbol: D_02007748 +# type: Gfx +# offset: 0x7748 +# D_02007768: +# symbol: D_02007768 +# type: Gfx +# offset: 0x7768 +# D_02007788: +# symbol: D_02007788 +# type: Gfx +# offset: 0x7788 +# D_020077A8: +# symbol: D_020077A8 +# type: Gfx +# offset: 0x77A8 +# D_020077D8: +# symbol: D_020077D8 +# type: Gfx +# offset: 0x77D8 +# D_020077F8: +# symbol: D_020077F8 +# type: Gfx +# offset: 0x77F8 +# D_02007818: +# symbol: D_02007818 +# type: Gfx +# offset: 0x7818 +# D_02007838: +# symbol: D_02007838 +# type: Gfx +# offset: 0x7838 +# D_02007858: +# symbol: D_02007858 +# type: Gfx +# offset: 0x7858 +# D_02007878: +# symbol: D_02007878 +# type: Gfx +# offset: 0x7878 +# D_02007898: +# symbol: D_02007898 +# type: Gfx +# offset: 0x7898 +# D_020078B8: +# symbol: D_020078B8 +# type: Gfx +# offset: 0x78B8 +# D_020078D8: +# symbol: D_020078D8 +# type: Gfx +# offset: 0x78D8 +# D_020078F8: +# symbol: D_020078F8 +# type: Gfx +# offset: 0x78F8 +# D_02007918: +# symbol: D_02007918 +# type: Gfx +# offset: 0x7918 +# D_02007938: +# symbol: D_02007938 +# type: Gfx +# offset: 0x7938 +# D_02007958: +# symbol: D_02007958 +# type: Gfx +# offset: 0x7958 +# D_02007978: +# symbol: D_02007978 +# type: Gfx +# offset: 0x7978 +# D_02007998: +# symbol: D_02007998 +# type: Gfx +# offset: 0x7998 +# D_020079B8: +# symbol: D_020079B8 +# type: Gfx +# offset: 0x79B8 +# D_020079D8: +# symbol: D_020079D8 +# type: Gfx +# offset: 0x79D8 +# D_020079F8: +# symbol: D_020079F8 +# type: Gfx +# offset: 0x79F8 +# D_02007A18: +# symbol: D_02007A18 +# type: Gfx +# offset: 0x7A18 +# D_02007A38: +# symbol: D_02007A38 +# type: Gfx +# offset: 0x7A38 +# D_02007A58: +# symbol: D_02007A58 +# type: Gfx +# offset: 0x7A58 +# D_02007A78: +# symbol: D_02007A78 +# type: Gfx +# offset: 0x7A78 +# D_02007A98: +# symbol: D_02007A98 +# type: Gfx +# offset: 0x7A98 +# D_02007AB8: +# symbol: D_02007AB8 +# type: Gfx +# offset: 0x7AB8 +# D_02007AD8: +# symbol: D_02007AD8 +# type: Gfx +# offset: 0x7AD8 +# D_02007AF8: +# symbol: D_02007AF8 +# type: Gfx +# offset: 0x7AF8 +# D_02007B18: +# symbol: D_02007B18 +# type: Gfx +# offset: 0x7B18 +# D_02007B38: # unused +# symbol: D_02007B38 +# type: vtx +# offset: 0x7B38 +# count: 8 +# D_02007BB8: +# symbol: D_02007BB8 +# type: vtx +# offset: 0x7BB8 +# count: 54 +# D_02007BD8: +# symbol: D_02007BD8 +# type: vtx +# offset: 0x7BD8 +# count: 2 +# D_02007BF8: +# symbol: D_02007BF8 +# type: vtx +# offset: 0x7BF8 +# count: 2 +# D_02007C18: +# symbol: D_02007C18 +# type: vtx +# offset: 0x7C18 +# count: 2 +# D_02007C38: +# symbol: D_02007C38 +# type: vtx +# offset: 0x7C38 +# count: 2 +# D_02007C58: +# symbol: D_02007C58 +# type: vtx +# offset: 0x7C58 +# count: 2 +# D_02007C78: +# symbol: D_02007C78 +# type: vtx +# offset: 0x7C78 +# count: 2 +# D_02007C98: +# symbol: D_02007C98 +# type: vtx +# offset: 0x7C98 +# count: 2 +# D_02007CB8: +# symbol: D_02007CB8 +# type: vtx +# offset: 0x7CB8 +# count: 2 +# D_02007CD8: +# symbol: D_02007CD8 +# type: vtx +# offset: 0x7CD8 +# count: 2 +# D_02007CF8: +# symbol: D_02007CF8 +# type: vtx +# offset: 0x7CF8 +# count: 2 +# D_02007D18: +# symbol: D_02007D18 +# type: vtx +# offset: 0x7D18 +# count: 2 +# D_02007D38: +# symbol: D_02007D38 +# type: vtx +# offset: 0x7D38 +# count: 2 +# D_02007D58: +# symbol: D_02007D58 +# type: vtx +# offset: 0x7D58 +# count: 2 +# D_02007D78: +# symbol: D_02007D78 +# type: vtx +# offset: 0x7D78 +# count: 2 +# D_02007D98: +# symbol: D_02007D98 +# type: vtx +# offset: 0x7D98 +# count: 2 +# D_02007DB8: +# symbol: D_02007DB8 +# type: vtx +# offset: 0x7DB8 +# count: 2 +# D_02007DD8: +# symbol: D_02007DD8 +# type: vtx +# offset: 0x7DD8 +# count: 2 +# D_02007DF8: +# symbol: D_02007DF8 +# type: vtx +# offset: 0x7DF8 +# count: 2 +# D_02007E18: +# symbol: D_02007E18 +# type: vtx +# offset: 0x7E18 +# count: 2 +# D_02007E38: +# symbol: D_02007E38 +# type: vtx +# offset: 0x7E38 +# count: 2 +# D_02007E58: +# symbol: D_02007E58 +# type: vtx +# offset: 0x7E58 +# count: 2 +# D_02007E78: +# symbol: D_02007E78 +# type: vtx +# offset: 0x7E78 +# count: 2 +# D_02007E98: +# symbol: D_02007E98 +# type: vtx +# offset: 0x7E98 +# count: 2 +# D_02007EB8: +# symbol: D_02007EB8 +# type: vtx +# offset: 0x7EB8 +# count: 2 +# D_02007ED8: +# symbol: D_02007ED8 +# type: vtx +# offset: 0x7ED8 +# count: 2 +# D_02007EF8: +# symbol: D_02007EF8 +# type: vtx +# offset: 0x7EF8 +# count: 2 +# D_02007F18: +# symbol: D_02007F18 +# type: gfx +# offset: 0x7F18 +# D_02007F48: +# symbol: D_02007F48 +# type: gfx +# offset: 0x7F48 +# D_02007F60: +# symbol: D_02007F60 +# type: gfx +# offset: 0x7F60 +# D_02007FC8: +# symbol: D_02007FC8 +# type: gfx +# offset: 0x7FC8 +# D_02008008: +# symbol: D_02008008 +# type: gfx +# offset: 0x8008 +# D_02008030: +# symbol: D_02008030 +# type: gfx +# offset: 0x8030 +# D_02008058: +# symbol: D_02008058 +# type: gfx +# offset: 0x8058 diff --git a/yamls/jp.v11/rainbow_road_tluts.yml b/yamls/jp.v11/rainbow_road_tluts.yml new file mode 100644 index 0000000000..37cd924b99 --- /dev/null +++ b/yamls/jp.v11/rainbow_road_tluts.yml @@ -0,0 +1,68 @@ +# This file is only used for compilation +# Because u16 output is required. +# The png output in assets/courses/ is from the identical .json extraction file +# JP offsets are NOT the US ones: JP moves the path arrays to the end of the +# block, so everything after them sits 0x3A30 lower. +:config: + segments: + - [0x06, 0x870CF0] + header: + code: + - '#include ' + - '#include ' +gTLUTRainbowRoadNeonPeach: + symbol: gTLUTRainbowRoadNeonPeach + type: texture + ctype: u16 + width: 16 + height: 16 + offset: 0x037D0 + format: rgba16 +gTLUTRainbowRoadNeonLuigi: + symbol: gTLUTRainbowRoadNeonLuigi + type: texture + ctype: u16 + width: 16 + height: 16 + offset: 0x039D0 + format: rgba16 +gTLUTRainbowRoadNeonDonkeyKong: + symbol: gTLUTRainbowRoadNeonDonkeyKong + type: texture + ctype: u16 + width: 16 + height: 16 + offset: 0x03BD0 + format: rgba16 +gTLUTRainbowRoadNeonYoshi: + symbol: gTLUTRainbowRoadNeonYoshi + type: texture + ctype: u16 + width: 16 + height: 16 + offset: 0x03DD0 + format: rgba16 +gTLUTRainbowRoadNeonBowser: + symbol: gTLUTRainbowRoadNeonBowser + type: texture + ctype: u16 + width: 16 + height: 16 + offset: 0x03FD0 + format: rgba16 +gTLUTRainbowRoadNeonWario: + symbol: gTLUTRainbowRoadNeonWario + type: texture + ctype: u16 + width: 16 + height: 16 + offset: 0x041D0 + format: rgba16 +gTLUTRainbowRoadNeonToad: + symbol: gTLUTRainbowRoadNeonToad + type: texture + ctype: u16 + width: 16 + height: 16 + offset: 0x043D0 + format: rgba16 diff --git a/yamls/jp.v11/startup_logo.yml b/yamls/jp.v11/startup_logo.yml new file mode 100644 index 0000000000..52147cc704 --- /dev/null +++ b/yamls/jp.v11/startup_logo.yml @@ -0,0 +1,119 @@ +:config: + segments: + - [0x06, 0x1487D0] + header: + code: + - '#include ' + header: + - '#include ' + - '#include ' + +dl1: + symbol: startup_logo_dl + type: gfx + offset: 0x2B00 +dl2: + symbol: startup_logo_dl2 + type: gfx + offset: 0x2C88 +dl3: + symbol: startup_logo_dl3 + type: gfx + offset: 0x2D58 +dl4: + symbol: startup_logo_dl4 + type: gfx + offset: 0x2F20 +dl5: + symbol: startup_logo_dl5 + type: gfx + offset: 0x2FF0 +dl6: + symbol: startup_logo_dl6 + type: gfx + offset: 0x3180 +dl7: + symbol: startup_logo_dl7 + type: gfx + offset: 0x3308 +dl8: + symbol: startup_logo_dl8 + type: gfx + offset: 0x33D8 +dl9: + symbol: startup_logo_dl9 + type: gfx + offset: 0x7988 +dl10: + symbol: startup_logo_dl10 + type: gfx + offset: 0x7C18 +dl11: + symbol: startup_logo_dl11 + type: gfx + offset: 0x7CE8 +dl12: + symbol: startup_logo_dl12 + type: gfx + offset: 0x7E50 +dl13: + symbol: startup_logo_dl13 + type: gfx + offset: 0x7E90 +dl14: + symbol: startup_logo_dl14 + type: gfx + offset: 0x7ED0 +dl15: + symbol: startup_logo_dl15 + type: gfx + offset: 0x7F88 +dl16: + symbol: startup_logo_dl16 + type: gfx + offset: 0x80F0 +dl17: + symbol: startup_logo_dl17 + type: gfx + offset: 0x8250 +dl18: + symbol: startup_logo_dl18 + type: gfx + offset: 0x83C8 +dl19: + symbol: startup_logo_dl19 + type: gfx + offset: 0x8548 +dl20: + symbol: startup_logo_dl20 + type: gfx + offset: 0x87A0 +reflection_map_gold: + symbol: reflection_map_gold + type: texture + ctype: u16 + offset: 0x8A48 + size: 2048 + width: 32 + height: 32 + format: RGBA16 +startup_texture_dl1: + symbol: startup_texture_dl1 + type: gfx + offset: 0x9248 +lights: + symbol: lights + type: lights + offset: 0x9308 +startup_texture_dl2: + symbol: startup_texture_dl2 + type: gfx + offset: 0x9320 +startup_texture_dl3: + symbol: startup_texture_dl3 + type: gfx + offset: 0x93F8 +startup_texture_dl4: + symbol: startup_texture_dl4 + type: gfx + offset: 0x9410 From c525438f676bb19f64bec5fecd37e2ac5e5099d8 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 02:09:35 -0700 Subject: [PATCH 11/41] jp.v11: extract the tkmk00 blobs from the cart The 39 tkmk00 menu textures the Japanese build needs are sliced straight out of the cartridge, the same way the US blobs already are, so nothing has to be checked in for them. Offsets were derived by locating each blob in the cartridge; every one occurs exactly once, and all 39 agree with the offsets recorded when the match was originally worked out. Co-Authored-By: Claude Fable 5 --- assets.json | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/assets.json b/assets.json index e664be90d9..8a865e9e17 100644 --- a/assets.json +++ b/assets.json @@ -199,6 +199,45 @@ "bin/gTextureWhiteStripe.rgba16.tkmk00": {"meta":{"size":"0x100"}, "offsets":{"us":["0x8209C0","0x0"],"jp.v11":["0x825ba0","0x0"]}}, "bin/gTexturePinkBar.rgba16.tkmk00": {"meta":{"size":"0x500"}, "offsets":{"us":["0x820AC0","0x0"],"jp.v11":["0x825ca0","0x0"]}}, "bin/gTextureGoldBar.rgba16.tkmk00": {"meta":{"size":"0xD50"}, "offsets":{"us":["0x820FC0","0x0"],"jp.v11":["0x8261a0","0x0"]}}, +"bin/jp.v11/gTextureMenuMushroomCup.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x8081a0","0x0"]}}, +"bin/jp.v11/gTextureTitleBansheeBoardwalk.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x802ba0","0x0"]}}, +"bin/jp.v11/gTextureTitleBigDonut.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x806da0","0x0"]}}, +"bin/jp.v11/gTextureTitleBlockFort.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x805ba0","0x0"]}}, +"bin/jp.v11/gTextureTitleBowsersCastle.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x8027a0","0x0"]}}, +"bin/jp.v11/gTextureTitleChocoMountain.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x8023a0","0x0"]}}, +"bin/jp.v11/gTextureTitleDKsJungleParkway.rgba16.tkmk00": {"meta":{"size":"0x600"}, "offsets":{"jp.v11":["0x8067a0","0x0"]}}, +"bin/jp.v11/gTextureTitleDoubleDeck.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x8063a0","0x0"]}}, +"bin/jp.v11/gTextureTitleFrappeSnowland.rgba16.tkmk00": {"meta":{"size":"0x500"}, "offsets":{"jp.v11":["0x8032a0","0x0"]}}, +"bin/jp.v11/gTextureTitleKalimariDesert.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x804ba0","0x0"]}}, +"bin/jp.v11/gTextureTitleKoopaTroopaBeach.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets":{"jp.v11":["0x8037a0","0x0"]}}, +"bin/jp.v11/gTextureTitleLuigiRaceway.rgba16.tkmk00": {"meta":{"size":"0x500"}, "offsets":{"jp.v11":["0x803ea0","0x0"]}}, +"bin/jp.v11/gTextureTitleMarioRaceway.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x801fa0","0x0"]}}, +"bin/jp.v11/gTextureTitleMooMooFarm.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x8043a0","0x0"]}}, +"bin/jp.v11/gTextureTitleRainbowRoad.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x8053a0","0x0"]}}, +"bin/jp.v11/gTextureTitleRoyalRaceway.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x803aa0","0x0"]}}, +"bin/jp.v11/gTextureTitleSherbetLand.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x804fa0","0x0"]}}, +"bin/jp.v11/gTextureTitleSkyscraper.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x805fa0","0x0"]}}, +"bin/jp.v11/gTextureTitleToadsTurnpike.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x8047a0","0x0"]}}, +"bin/jp.v11/gTextureTitleWarioStadium.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x8057a0","0x0"]}}, +"bin/jp.v11/gTextureTitleYoshiValley.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets":{"jp.v11":["0x802fa0","0x0"]}}, +"bin/jp.v11/texture_begin.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets":{"jp.v11":["0x80dea0","0x0"]}}, +"bin/jp.v11/texture_data.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets":{"jp.v11":["0x80e2a0","0x0"]}}, +"bin/jp.v11/texture_extra.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets":{"jp.v11":["0x80d6a0","0x0"]}}, +"bin/jp.v11/texture_l_option.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x80c9a0","0x0"]}}, +"bin/jp.v11/texture_menu_ghost.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets":{"jp.v11":["0x80e0a0","0x0"]}}, +"bin/jp.v11/texture_mode_battle.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x80baa0","0x0"]}}, +"bin/jp.v11/texture_mode_mario_gp.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x80c2a0","0x0"]}}, +"bin/jp.v11/texture_mode_time_trials.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets":{"jp.v11":["0x80bea0","0x0"]}}, +"bin/jp.v11/texture_mode_vs.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets":{"jp.v11":["0x80c6a0","0x0"]}}, +"bin/jp.v11/texture_name_bowser.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets":{"jp.v11":["0x8013a0","0x0"]}}, +"bin/jp.v11/texture_name_dk.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets":{"jp.v11":["0x800fa0","0x0"]}}, +"bin/jp.v11/texture_name_luigi.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets":{"jp.v11":["0x8015a0","0x0"]}}, +"bin/jp.v11/texture_name_mario.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets":{"jp.v11":["0x8017a0","0x0"]}}, +"bin/jp.v11/texture_name_peach.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets":{"jp.v11":["0x8019a0","0x0"]}}, +"bin/jp.v11/texture_name_toad.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets":{"jp.v11":["0x8011a0","0x0"]}}, +"bin/jp.v11/texture_name_wario.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets":{"jp.v11":["0x801ba0","0x0"]}}, +"bin/jp.v11/texture_name_yoshi.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets":{"jp.v11":["0x801da0","0x0"]}}, +"bin/jp.v11/texture_r_data.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets":{"jp.v11":["0x80cda0","0x0"]}}, "textures/common/common_texture_particle_fire.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x132B50","0x200"],"jp.v11":["0x1323a0","0x200"]}}, "textures/common/common_texture_item_box_question_mark.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x132B50","0x01EE8"],"jp.v11":["0x1323a0","0x01EE8"]}}, From 138cc69424939dc9205a92c310497aa3748c4d00 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 02:09:35 -0700 Subject: [PATCH 12/41] jp.v11: code, data and linker differences Every difference is behind #ifdef VERSION_JP, so the other three versions compile exactly as before. Track path data moves out of course_data.c into .inc.c files so the two versions can share it. Co-Authored-By: Claude Fable 5 --- asm/entry.s | 9 + asm/os/parameters.s | 7 + asm/rom_header.s | 19 +- asm/tkmk00_decode.s | 14 + asm/unused/unused_jp_utils.s | 23 + courses/all_course_model.h | 6 + courses/banshee_boardwalk/course_data.c | 464 +-- ..._course_banshee_boardwalk_track_path.inc.c | 329 ++ ...ourse_banshee_boardwalk_unknown_path.inc.c | 20 + courses/bowsers_castle/course_data.c | 1102 ++---- .../d_course_bowsers_castle_track_path.inc.c | 685 ++++ ...d_course_bowsers_castle_unknown_path.inc.c | 15 + courses/choco_mountain/course_data.c | 413 +-- courses/choco_mountain/course_offsets.c | 26 + .../d_course_choco_mountain_track_path.inc.c | 202 ++ ...d_course_choco_mountain_unknown_path.inc.c | 22 + courses/dks_jungle_parkway/course_data.c | 931 +---- ...course_dks_jungle_parkway_ferry_path.inc.c | 7 + ...course_dks_jungle_parkway_track_path.inc.c | 787 +++++ ...urse_dks_jungle_parkway_unknown_path.inc.c | 26 + courses/frappe_snowland/course_data.c | 677 +--- .../d_course_frappe_snowland_track_path.inc.c | 647 ++++ ..._course_frappe_snowland_unknown_path.inc.c | 15 + courses/kalimari_desert/course_data.c | 380 +- courses/kalimari_desert/course_offsets.c | 31 + .../d_course_kalimari_desert_track_path.inc.c | 166 + .../d_course_kalimari_desert_train_path.inc.c | 16 + ..._course_kalimari_desert_unknown_path.inc.c | 11 + courses/koopa_troopa_beach/course_data.c | 961 +---- ...course_koopa_troopa_beach_track_path.inc.c | 203 ++ ...urse_koopa_troopa_beach_track_path_2.inc.c | 559 +++ ...urse_koopa_troopa_beach_unknown_path.inc.c | 13 + ...rse_koopa_troopa_beach_unknown_path1.inc.c | 15 + courses/luigi_raceway/course_data.c | 1490 ++++++-- .../course_displaylists.jp.v11.s | 1092 ++++++ courses/luigi_raceway/course_offsets.c | 46 + .../d_course_luigi_raceway_track_path.inc.c | 158 + .../d_course_luigi_raceway_unknown_path.inc.c | 13 + courses/mario_raceway/course_data.c | 433 ++- courses/mario_raceway/course_offsets.c | 36 + .../d_course_mario_raceway_track_path.inc.c | 125 + .../d_course_mario_raceway_unknown_path.inc.c | 15 + courses/moo_moo_farm/course_data.c | 311 +- courses/moo_moo_farm/course_offsets.c | 34 + .../d_course_moo_moo_farm_track_path.inc.c | 155 + .../d_course_moo_moo_farm_unknown_path.inc.c | 9 + courses/rainbow_road/course_data.c | 628 +--- .../d_course_rainbow_road_track_path.inc.c | 587 ++++ .../d_course_rainbow_road_unknown_path.inc.c | 26 + courses/royal_raceway/course_data.c | 1502 +++++--- courses/royal_raceway/course_offsets.c | 49 + .../d_course_royal_raceway_track_path.inc.c | 301 ++ .../d_course_royal_raceway_unknown_path.inc.c | 20 + courses/sherbet_land/course_data.c | 516 ++- .../d_course_sherbet_land_track_path.inc.c | 222 ++ .../d_course_sherbet_land_unknown_path.inc.c | 16 + courses/toads_turnpike/course_data.c | 1611 ++++----- courses/toads_turnpike/course_offsets.c | 25 + .../d_course_toads_turnpike_track_path.inc.c | 913 +++++ ...d_course_toads_turnpike_unknown_path.inc.c | 14 + courses/wario_stadium/course_data.c | 1183 ++++--- .../d_course_wario_stadium_track_path.inc.c | 467 +++ .../d_course_wario_stadium_unknown_path.inc.c | 20 + courses/yoshi_valley/course_data.c | 2828 ++------------- .../d_course_yoshi_valley_track_path.inc.c | 226 ++ .../d_course_yoshi_valley_track_path_2.inc.c | 667 ++++ .../d_course_yoshi_valley_track_path_3.inc.c | 679 ++++ .../d_course_yoshi_valley_track_path_4.inc.c | 793 +++++ .../d_course_yoshi_valley_unknown_path.inc.c | 19 + ...d_course_yoshi_valley_unknown_path_2.inc.c | 19 + ...d_course_yoshi_valley_unknown_path_3.inc.c | 21 + ...d_course_yoshi_valley_unknown_path_4.inc.c | 22 + data/other_textures.s | 5 + data/sound_data/audiobanks.s | 4 + data/sound_data/audiotables.s | 4 + data/sound_data/sequences.s | 20 + data/texture_tkmk00.s | 161 + include/PR/abi.h | 4 +- mk64.ld | 162 +- src/actors.c | 0 src/actors/trees/render.inc.c | 7 + src/audio/data.h | 2 +- src/audio/external.c | 28 +- src/audio/load.c | 3 + src/audio/playback.c | 2 +- src/audio/seqplayer.c | 10 +- src/code_80091440.c | 2 + src/cpu_vehicles_camera_path.c | 145 + .../cpu_item_strategy.inc.c | 10 + .../cpu_speed_control.inc.c | 172 +- src/cpu_vehicles_camera_path/path_utils.inc.c | 117 + src/data/some_data.c | 4 + src/data/textures.c | 54 + src/effects.c | 2 +- src/ending/credits.c | 27 + src/ending/credits.h | 4 + src/main.c | 6 + src/main.h | 4 + src/menu_items.c | 3128 +++++++++++++---- src/racing/race_logic.c | 4 + src/racing/render_courses.c | 30 +- src/racing/skybox_and_splitscreen.c | 22 +- src/render_objects.c | 14 + src/render_player.c | 5 + src/spawn_players.c | 12 + tools/linkonly_generator.py | 22 +- 106 files changed, 19605 insertions(+), 10683 deletions(-) create mode 100644 asm/unused/unused_jp_utils.s create mode 100644 courses/banshee_boardwalk/d_course_banshee_boardwalk_track_path.inc.c create mode 100644 courses/banshee_boardwalk/d_course_banshee_boardwalk_unknown_path.inc.c create mode 100644 courses/bowsers_castle/d_course_bowsers_castle_track_path.inc.c create mode 100644 courses/bowsers_castle/d_course_bowsers_castle_unknown_path.inc.c create mode 100644 courses/choco_mountain/d_course_choco_mountain_track_path.inc.c create mode 100644 courses/choco_mountain/d_course_choco_mountain_unknown_path.inc.c create mode 100644 courses/dks_jungle_parkway/d_course_dks_jungle_parkway_ferry_path.inc.c create mode 100644 courses/dks_jungle_parkway/d_course_dks_jungle_parkway_track_path.inc.c create mode 100644 courses/dks_jungle_parkway/d_course_dks_jungle_parkway_unknown_path.inc.c create mode 100644 courses/frappe_snowland/d_course_frappe_snowland_track_path.inc.c create mode 100644 courses/frappe_snowland/d_course_frappe_snowland_unknown_path.inc.c create mode 100644 courses/kalimari_desert/d_course_kalimari_desert_track_path.inc.c create mode 100644 courses/kalimari_desert/d_course_kalimari_desert_train_path.inc.c create mode 100644 courses/kalimari_desert/d_course_kalimari_desert_unknown_path.inc.c create mode 100644 courses/koopa_troopa_beach/d_course_koopa_troopa_beach_track_path.inc.c create mode 100644 courses/koopa_troopa_beach/d_course_koopa_troopa_beach_track_path_2.inc.c create mode 100644 courses/koopa_troopa_beach/d_course_koopa_troopa_beach_unknown_path.inc.c create mode 100644 courses/koopa_troopa_beach/d_course_koopa_troopa_beach_unknown_path1.inc.c create mode 100644 courses/luigi_raceway/course_displaylists.jp.v11.s create mode 100644 courses/luigi_raceway/d_course_luigi_raceway_track_path.inc.c create mode 100644 courses/luigi_raceway/d_course_luigi_raceway_unknown_path.inc.c create mode 100644 courses/mario_raceway/d_course_mario_raceway_track_path.inc.c create mode 100644 courses/mario_raceway/d_course_mario_raceway_unknown_path.inc.c create mode 100644 courses/moo_moo_farm/d_course_moo_moo_farm_track_path.inc.c create mode 100644 courses/moo_moo_farm/d_course_moo_moo_farm_unknown_path.inc.c create mode 100644 courses/rainbow_road/d_course_rainbow_road_track_path.inc.c create mode 100644 courses/rainbow_road/d_course_rainbow_road_unknown_path.inc.c create mode 100644 courses/royal_raceway/d_course_royal_raceway_track_path.inc.c create mode 100644 courses/royal_raceway/d_course_royal_raceway_unknown_path.inc.c create mode 100644 courses/sherbet_land/d_course_sherbet_land_track_path.inc.c create mode 100644 courses/sherbet_land/d_course_sherbet_land_unknown_path.inc.c create mode 100644 courses/toads_turnpike/d_course_toads_turnpike_track_path.inc.c create mode 100644 courses/toads_turnpike/d_course_toads_turnpike_unknown_path.inc.c create mode 100644 courses/wario_stadium/d_course_wario_stadium_track_path.inc.c create mode 100644 courses/wario_stadium/d_course_wario_stadium_unknown_path.inc.c create mode 100644 courses/yoshi_valley/d_course_yoshi_valley_track_path.inc.c create mode 100644 courses/yoshi_valley/d_course_yoshi_valley_track_path_2.inc.c create mode 100644 courses/yoshi_valley/d_course_yoshi_valley_track_path_3.inc.c create mode 100644 courses/yoshi_valley/d_course_yoshi_valley_track_path_4.inc.c create mode 100644 courses/yoshi_valley/d_course_yoshi_valley_unknown_path.inc.c create mode 100644 courses/yoshi_valley/d_course_yoshi_valley_unknown_path_2.inc.c create mode 100644 courses/yoshi_valley/d_course_yoshi_valley_unknown_path_3.inc.c create mode 100644 courses/yoshi_valley/d_course_yoshi_valley_unknown_path_4.inc.c create mode 100644 src/actors.c diff --git a/asm/entry.s b/asm/entry.s index a91719a636..adac36b3d6 100644 --- a/asm/entry.s +++ b/asm/entry.s @@ -12,9 +12,18 @@ glabel entry_point /* 001000 80000400 3C08800F */ lui $t0, %hi(_mainSegmentEnd) # $t0, 0x800f +.ifdef VERSION_JP +/* JP clears a smaller region */ + lui $t1, (0x0009DEF0 >> 16) +.else /* 001004 80000404 3C09000A */ lui $t1, (0x000A0FC0 >> 16) # lui $t1, 0xa +.endif /* 001008 80000408 25086910 */ addiu $t0, %lo(_mainSegmentEnd) # addiu $t0, $t0, 0x6910 +.ifdef VERSION_JP + ori $t1, (0x0009DEF0 & 0xFFFF) +.else /* 00100C 8000040C 35290FC0 */ ori $t1, (0x000A0FC0 & 0xFFFF) # ori $t1, $t1, 0xfc0 +.endif .L80000410: /* 001010 80000410 2129FFF8 */ addi $t1, $t1, -8 /* 001014 80000414 AD000000 */ sw $zero, ($t0) diff --git a/asm/os/parameters.s b/asm/os/parameters.s index f561f175d8..6a0b82e2ec 100644 --- a/asm/os/parameters.s +++ b/asm/os/parameters.s @@ -1,5 +1,12 @@ .ifdef VERSION_EU +.set NO_PARAM_NOPS, 1 +.endif +.ifdef VERSION_JP +.set NO_PARAM_NOPS, 1 +.endif + +.ifdef NO_PARAM_NOPS .macro gsymbol sym addr .global \sym .set \sym, \addr diff --git a/asm/rom_header.s b/asm/rom_header.s index 119f217f32..33612bd6dd 100644 --- a/asm/rom_header.s +++ b/asm/rom_header.s @@ -23,12 +23,27 @@ .ifdef VERSION_EU .ascii "P" /* PAL (Europe) */ -.else +.endif + +.ifdef VERSION_JP +.ascii "J" /* NTSC-J (Japan) */ +.endif + +.ifdef VERSION_US .ascii "E" /* NTSC-U (North America) */ .endif + .ifdef VERSION_EU_V11 +.set REVISION_V11, 1 +.endif + +.ifdef VERSION_JP_V11 +.set REVISION_V11, 1 +.endif + +.ifdef REVISION_V11 .byte 0x01 /* Version */ .else .byte 0x00 /* Version */ -.endif +.endif \ No newline at end of file diff --git a/asm/tkmk00_decode.s b/asm/tkmk00_decode.s index 2897489f7a..3e585f3a06 100644 --- a/asm/tkmk00_decode.s +++ b/asm/tkmk00_decode.s @@ -11,7 +11,11 @@ .section .text, "ax" glabel tkmk00decode +.ifdef VERSION_JP +/* JP uses a 0x1F0 frame (no high scratch buffer) */ addi $sp, $sp, -0x1f0 +.else /* 0411D0 800405D0 23BDFC00 */ addi $sp, $sp, -0x400 +.endif /* 0411D4 800405D4 AFB0019C */ sw $s0, 0x19c($sp) /* 0411D8 800405D8 AFB10198 */ sw $s1, 0x198($sp) /* 0411DC 800405DC AFB20194 */ sw $s2, 0x194($sp) @@ -70,11 +74,17 @@ glabel tkmk00decode /* 04129C 8004069C AFA001E4 */ sw $zero, 0x1e4($sp) /* 0412A0 800406A0 AFA001E8 */ sw $zero, 0x1e8($sp) /* 0412A4 800406A4 AFA001EC */ sw $zero, 0x1ec($sp) +.ifndef VERSION_JP /* 0412A8 800406A8 03A09825 */ move $s3, $sp +.endif /* 0412AC 800406AC 00003825 */ move $a3, $zero /* 0412B0 800406B0 8C88002C */ lw $t0, 0x2c($a0) /* 0412B4 800406B4 20840030 */ addi $a0, $a0, 0x30 +.ifdef VERSION_JP +/* JP: s3 points at sp directly */ move $s3, $sp +.else /* 0412B8 800406B8 227303F0 */ addi $s3, $s3, 0x3f0 +.endif /* 0412BC 800406BC 04110140 */ bal func_80040BC0 /* 0412C0 800406C0 24140020 */ li $s4, 32 /* 0412C4 800406C4 00404825 */ move $t1, $v0 @@ -340,7 +350,11 @@ glabel tkmk00decode /* 041650 80040A50 8FB10198 */ lw $s1, 0x198($sp) /* 041654 80040A54 8FB0019C */ lw $s0, 0x19c($sp) /* 041658 80040A58 03E00008 */ jr $ra +.ifdef VERSION_JP + addi $sp, $sp, 0x1f0 +.else /* 04165C 80040A5C 23BD0400 */ addi $sp, $sp, 0x400 +.endif glabel func_80040A60 /* 041660 80040A60 00E3C820 */ add $t9, $a3, $v1 diff --git a/asm/unused/unused_jp_utils.s b/asm/unused/unused_jp_utils.s new file mode 100644 index 0000000000..01fb8efb6c --- /dev/null +++ b/asm/unused/unused_jp_utils.s @@ -0,0 +1,23 @@ +# JP-only unused leftover utilities, removed in the US revision. +# Their codegen (trapping add, result computed in the jr delay slot) does not +# come out of IDO -O2, so they are kept as assembly. + +.set noat # allow manual use of $at +.set noreorder # don't insert nops after branches +.set gp=64 + +.include "macros.inc" + +.section .text, "ax" + +# returns (a + b) > 0xFFFF (unsigned compare of a trapping signed sum) +glabel func_8001E650 +/* 01F250 8001E650 00853020 */ add $a2, $a0, $a1 +/* 01F254 8001E654 3403FFFF */ ori $v1, $zero, 0xffff +/* 01F258 8001E658 03E00008 */ jr $ra +/* 01F25C 8001E65C 0066102B */ sltu $v0, $v1, $a2 + +# returns a < b (signed) +glabel func_8001E660 +/* 01F260 8001E660 03E00008 */ jr $ra +/* 01F264 8001E664 0085102A */ slt $v0, $a0, $a1 diff --git a/courses/all_course_model.h b/courses/all_course_model.h index 744c3ab78e..2865072bd0 100644 --- a/courses/all_course_model.h +++ b/courses/all_course_model.h @@ -20,7 +20,13 @@ extern CourseVtx d_course_mario_raceway_vertex[0x167D]; extern CourseVtx d_course_toads_turnpike_vertex[0x18D7]; extern CourseVtx d_course_kalimari_desert_vertex[0x18F9]; extern CourseVtx d_course_koopa_troopa_beach_vertex[0x24A0]; +#ifdef VERSION_JP +/* JP's luigi_raceway model carries 13 more vertices - it is the one course whose + geography genuinely differs. bin/jp.v11/luigi_raceway_vertices.bin is 0x173D * 14. */ +extern CourseVtx d_course_luigi_raceway_vertex[0x173D]; +#else extern CourseVtx d_course_luigi_raceway_vertex[0x1730]; +#endif extern CourseVtx d_course_moo_moo_farm_vertex[0x1F24]; extern CourseVtx d_course_banshee_boardwalk_vertex[0x1351]; extern CourseVtx d_course_dks_jungle_parkway_vertex[0x162F]; diff --git a/courses/banshee_boardwalk/course_data.c b/courses/banshee_boardwalk/course_data.c index 072d429cbd..5057372b36 100644 --- a/courses/banshee_boardwalk/course_data.c +++ b/courses/banshee_boardwalk/course_data.c @@ -100,13 +100,17 @@ Gfx d_course_banshee_boardwalk_dl_160[] = { Gfx d_course_banshee_boardwalk_dl_210[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_27D0), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_28D0), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_29A0), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2F38), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_3020), gsSPDisplayList(d_course_banshee_boardwalk_dl_68), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_C98), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_D30), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_DF0), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_11D8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1260), gsSPEndDisplayList(), @@ -138,7 +142,9 @@ Gfx d_course_banshee_boardwalk_dl_270[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1610), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1320), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1008), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1108), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_11D8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1260), gsSPEndDisplayList(), @@ -152,13 +158,29 @@ Gfx d_course_banshee_boardwalk_dl_358[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_26E8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_22C8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2398), +#ifdef VERSION_JP + gsSPDisplayList(d_course_banshee_boardwalk_dl_68), +#else gsSPDisplayList(d_course_banshee_boardwalk_dl_0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_5278), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_52F8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2100), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_21D8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_dl_38), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_dl_68), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_C98), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_D30), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_DF0), @@ -237,10 +259,14 @@ Gfx d_course_banshee_boardwalk_dl_540[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_DF0), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_EA0), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_BC8), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_8A8), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1610), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1320), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1008), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1260), gsSPEndDisplayList(), }; @@ -321,8 +347,12 @@ Gfx d_course_banshee_boardwalk_dl_7C0[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_BC8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_8A8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_930), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1008), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1108), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_11D8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1260), gsSPEndDisplayList(), @@ -658,14 +688,20 @@ Gfx d_course_banshee_boardwalk_dl_1160[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2398), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2440), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2520), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2608), +#endif gsSPDisplayList(d_course_banshee_boardwalk_dl_68), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_8A8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_930), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_9B8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_A50), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_AE8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_F80), +#endif gsSPEndDisplayList(), }; @@ -751,13 +787,19 @@ Gfx d_course_banshee_boardwalk_dl_13F0[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2398), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2440), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2520), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2608), +#endif gsSPDisplayList(d_course_banshee_boardwalk_dl_68), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_930), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_9B8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_A50), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_AE8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_F80), +#endif gsSPEndDisplayList(), }; @@ -929,15 +971,21 @@ Gfx d_course_banshee_boardwalk_dl_1820[] = { }; Gfx d_course_banshee_boardwalk_dl_18D8[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2440), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2520), gsSPClearGeometryMode(G_CULL_BACK), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2608), gsSPSetGeometryMode(G_CULL_BACK), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2B78), gsSPDisplayList(d_course_banshee_boardwalk_dl_68), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_8A8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_930), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_A50), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_AE8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_F80), @@ -948,7 +996,9 @@ Gfx d_course_banshee_boardwalk_dl_1940[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2A70), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_26E8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_22C8), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2440), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2520), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2608), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2B78), @@ -967,7 +1017,9 @@ Gfx d_course_banshee_boardwalk_dl_1940[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_EA0), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_BC8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_8A8), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_930), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_A50), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_AE8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_F80), @@ -1038,9 +1090,15 @@ Gfx d_course_banshee_boardwalk_dl_1BA0[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2B78), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_3240), gsSPDisplayList(d_course_banshee_boardwalk_dl_68), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_BC8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_8A8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_930), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_9B8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_A50), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_AE8), @@ -1109,9 +1167,13 @@ Gfx d_course_banshee_boardwalk_dl_1D90[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_34A0), gsSPDisplayList(d_course_banshee_boardwalk_dl_0), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_51E0), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_5278), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2058), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2100), +#endif gsSPDisplayList(d_course_banshee_boardwalk_dl_38), gsSPDisplayList(d_course_banshee_boardwalk_dl_68), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_AE8), @@ -1298,11 +1360,23 @@ Gfx d_course_banshee_boardwalk_dl_22D8[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_3310), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_33C8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_34A0), +#ifdef VERSION_JP + gsSPDisplayList(d_course_banshee_boardwalk_dl_68), +#else gsSPDisplayList(d_course_banshee_boardwalk_dl_0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_51E0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2058), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_dl_38), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_dl_68), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_13E0), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1478), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1560), @@ -1326,10 +1400,14 @@ Gfx d_course_banshee_boardwalk_dl_2340[] = { gsSPDisplayList(d_course_banshee_boardwalk_dl_0), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_4EF8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_51E0), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_5278), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1DB0), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2058), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2100), +#endif gsSPDisplayList(d_course_banshee_boardwalk_dl_38), gsSPDisplayList(d_course_banshee_boardwalk_dl_68), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_BC8), @@ -2310,15 +2388,25 @@ Gfx d_course_banshee_boardwalk_dl_3EB0[] = { }; Gfx d_course_banshee_boardwalk_dl_3EF0[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_27D0), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2D40), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2E40), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2F38), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_3020), +#endif gsSPDisplayList(d_course_banshee_boardwalk_dl_68), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_C98), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_D30), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_DF0), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1008), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1108), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_11D8), @@ -2406,14 +2494,20 @@ Gfx d_course_banshee_boardwalk_dl_4118[] = { Gfx d_course_banshee_boardwalk_dl_4188[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_27D0), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_28D0), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2E40), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2F38), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_3020), gsSPDisplayList(d_course_banshee_boardwalk_dl_68), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_C98), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_D30), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_DF0), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1108), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_11D8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1260), @@ -2508,7 +2602,9 @@ Gfx d_course_banshee_boardwalk_dl_4428[] = { gsSPDisplayList(d_course_banshee_boardwalk_dl_68), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_C98), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_D30), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_DF0), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_11D8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1260), gsSPEndDisplayList(), @@ -2522,7 +2618,9 @@ Gfx d_course_banshee_boardwalk_dl_4480[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_30F0), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2C20), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2D40), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2E40), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2F38), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_3020), gsSPDisplayList(d_course_banshee_boardwalk_dl_0), @@ -2542,367 +2640,26 @@ Gfx d_course_banshee_boardwalk_dl_4480[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1610), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1320), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1008), +#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1108), +#endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_11D8), gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1260), gsSPEndDisplayList(), }; // 0x4578 Spawn location +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_banshee_boardwalk_unknown_path[] = { - { 5, 0, -65, 0 }, { 5, 0, -90, 0 }, { 4, 0, -203, 0 }, { 5, 0, -501, 0 }, - { -13, 0, -575, 0 }, { -54, 0, -598, 0 }, { -244, 0, -605, 0 }, { -634, 0, -602, 0 }, - { -688, 0, -629, 0 }, { -704, 0, -697, 0 }, { -702, 0, -895, 0 }, { -702, 0, -1095, 0 }, - { -673, 0, -1167, 0 }, { -507, 0, -1346, 0 }, { -104, 0, -1739, 0 }, { -9, 0, -1856, 0 }, - { 32, 0, -1975, 0 }, { 6, 0, -2019, 0 }, { -64, 0, -2046, 0 }, { -242, 0, -2050, 0 }, - { -650, 0, -2050, 0 }, { -1249, 0, -2050, 0 }, { -1594, 0, -2045, 0 }, { -1677, 0, -2025, 0 }, - { -1907, 0, -1796, 0 }, { -2202, 0, -1495, 0 }, { -2299, 0, -1376, 0 }, { -2304, 0, -1297, 0 }, - { -2304, 0, -1195, 0 }, { -2496, 0, -997, 0 }, { -2903, 0, -595, 0 }, { -3079, 0, -422, 0 }, - { -3103, 0, -357, 0 }, { -3099, 0, -98, 0 }, { -3060, 0, 2, 0 }, { -2948, 0, 56, 0 }, - { -2749, 0, 58, 0 }, { -2534, 0, 55, 0 }, { -2446, 0, 105, 0 }, { -2330, 0, 172, 0 }, - { -2231, 0, 172, 0 }, { -2007, 0, 140, 0 }, { -1928, 0, 98, 0 }, { -1877, 0, 22, 0 }, - { -1834, 0, -78, 0 }, { -1796, 0, -177, 0 }, { -1744, 0, -198, 0 }, { -1671, 0, -177, 0 }, - { -1622, 0, -98, 0 }, { -1569, 0, 35, 0 }, { -1483, 0, 130, 0 }, { -1398, 0, 155, 0 }, - { -1316, 0, 141, 0 }, { -1272, 0, 132, 0 }, { -1232, 0, 124, 0 }, { -1174, 0, 120, 0 }, - { -1109, 0, 121, 0 }, { -1060, 0, 122, 0 }, { -1000, 0, 125, 0 }, { -923, 0, 128, 0 }, - { -819, 0, 133, 0 }, { -746, 0, 180, 0 }, { -703, 0, 241, 0 }, { -695, 0, 309, 0 }, - { -697, 0, 401, 0 }, { -701, 0, 694, 0 }, { -702, 0, 1117, 0 }, { -696, 0, 1237, 0 }, - { -637, 0, 1316, 0 }, { -456, 0, 1452, 0 }, { -381, 0, 1465, 0 }, { -138, 0, 1458, 0 }, - { -39, 0, 1407, 0 }, { 2, 0, 1307, 0 }, { 13, 0, 1108, 0 }, { 5, 0, 808, 0 }, - { 5, 0, 100, 0 }, { 7, 0, -28, 0 }, { -32768, 0, 0, 0 }, +#include "courses/banshee_boardwalk/d_course_banshee_boardwalk_unknown_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_banshee_boardwalk_track_path[] = { - { 5, 12, -77, 1 }, { 4, 12, -97, 1 }, - { 4, 12, -117, 1 }, { 4, 12, -137, 1 }, - { 4, 12, -157, 1 }, { 4, 12, -177, 1 }, - { 4, 12, -197, 1 }, { 4, 12, -217, 1 }, - { 4, 12, -237, 1 }, { 4, 12, -257, 1 }, - { 4, 12, -277, 1 }, { 4, 12, -297, 1 }, - { 4, 12, -317, 2 }, { 4, 12, -337, 2 }, - { 4, 12, -357, 2 }, { 4, 12, -377, 2 }, - { 4, 12, -397, 2 }, { 4, 12, -417, 2 }, - { 3, 12, -437, 2 }, { 3, 12, -457, 2 }, - { 2, 12, -477, 2 }, { 1, 12, -497, 2 }, - { 0, 12, -517, 2 }, { -3, 12, -537, 2 }, - { -9, 12, -556, 2 }, { -19, 12, -573, 2 }, - { -34, 12, -587, 2 }, { -53, 12, -592, 3 }, - { -73, 12, -596, 3 }, { -93, 12, -598, 3 }, - { -113, 12, -599, 3 }, { -133, 12, -600, 3 }, - { -153, 12, -601, 3 }, { -173, 12, -602, 3 }, - { -193, 12, -602, 3 }, { -213, 12, -603, 3 }, - { -233, 12, -603, 3 }, { -253, 12, -603, 3 }, - { -273, 12, -603, 3 }, { -293, 12, -603, 3 }, - { -313, 12, -603, 3 }, { -333, 12, -603, 3 }, - { -353, 12, -603, 3 }, { -373, 12, -603, 3 }, - { -393, 12, -603, 3 }, { -413, 12, -603, 3 }, - { -433, 12, -603, 3 }, { -453, 12, -603, 3 }, - { -473, 12, -603, 3 }, { -493, 12, -603, 3 }, - { -513, 12, -603, 3 }, { -533, 12, -603, 3 }, - { -553, 12, -604, 3 }, { -573, 12, -604, 3 }, - { -593, 12, -605, 3 }, { -613, 12, -607, 3 }, - { -633, 12, -609, 3 }, { -652, 12, -612, 4 }, - { -670, 12, -621, 4 }, { -684, 12, -635, 4 }, - { -693, 12, -653, 4 }, { -697, 12, -673, 4 }, - { -700, 12, -693, 4 }, { -701, 12, -713, 4 }, - { -702, 12, -733, 4 }, { -702, 12, -753, 4 }, - { -703, 12, -773, 4 }, { -703, 12, -793, 4 }, - { -702, 12, -813, 4 }, { -702, 12, -833, 4 }, - { -702, 12, -853, 4 }, { -702, 12, -873, 4 }, - { -702, 12, -893, 4 }, { -702, 12, -913, 4 }, - { -702, 12, -933, 4 }, { -702, 12, -953, 4 }, - { -702, 12, -973, 4 }, { -702, 12, -993, 4 }, - { -701, 12, -1013, 4 }, { -701, 12, -1033, 4 }, - { -700, 12, -1053, 4 }, { -698, 12, -1073, 4 }, - { -696, 12, -1093, 4 }, { -693, 12, -1112, 4 }, - { -687, 12, -1131, 4 }, { -677, 12, -1149, 5 }, - { -666, 12, -1166, 5 }, { -654, 12, -1182, 5 }, - { -641, 12, -1197, 5 }, { -629, 12, -1212, 5 }, - { -615, 12, -1228, 5 }, { -602, 12, -1242, 5 }, - { -588, 12, -1257, 5 }, { -575, 12, -1272, 5 }, - { -561, 12, -1286, 5 }, { -547, 12, -1301, 5 }, - { -533, 12, -1315, 5 }, { -519, 12, -1329, 5 }, - { -505, 12, -1344, 5 }, { -491, 12, -1358, 5 }, - { -477, 12, -1372, 5 }, { -463, 12, -1386, 5 }, - { -449, 12, -1400, 5 }, { -435, 12, -1414, 5 }, - { -420, 12, -1429, 5 }, { -406, 12, -1443, 5 }, - { -392, 12, -1457, 5 }, { -378, 12, -1471, 5 }, - { -363, 12, -1485, 5 }, { -349, 12, -1499, 5 }, - { -335, 12, -1513, 5 }, { -321, 12, -1527, 5 }, - { -306, 12, -1541, 5 }, { -292, 12, -1555, 6 }, - { -278, 12, -1569, 6 }, { -263, 12, -1583, 6 }, - { -249, 12, -1597, 6 }, { -235, 12, -1611, 6 }, - { -221, 12, -1625, 6 }, { -206, 12, -1639, 6 }, - { -192, 12, -1653, 6 }, { -178, 12, -1667, 6 }, - { -164, 12, -1682, 6 }, { -150, 12, -1696, 6 }, - { -136, 12, -1710, 6 }, { -122, 12, -1725, 6 }, - { -108, 12, -1739, 6 }, { -94, 12, -1754, 6 }, - { -81, 12, -1768, 6 }, { -68, 12, -1783, 6 }, - { -55, 12, -1799, 6 }, { -42, 12, -1814, 6 }, - { -31, 12, -1831, 6 }, { -20, 12, -1848, 6 }, - { -10, 12, -1865, 7 }, { -1, 12, -1883, 7 }, - { 6, 12, -1901, 7 }, { 13, 12, -1920, 7 }, - { 18, 12, -1939, 7 }, { 22, 12, -1959, 7 }, - { 23, 12, -1979, 7 }, { 18, 12, -1998, 7 }, - { 5, 12, -2013, 7 }, { -11, 12, -2024, 7 }, - { -29, 12, -2032, 7 }, { -48, 12, -2038, 7 }, - { -68, 12, -2041, 7 }, { -88, 12, -2044, 7 }, - { -108, 12, -2046, 7 }, { -128, 12, -2047, 7 }, - { -148, 12, -2047, 7 }, { -168, 12, -2048, 8 }, - { -188, 12, -2048, 8 }, { -208, 12, -2048, 8 }, - { -228, 12, -2049, 8 }, { -248, 12, -2049, 8 }, - { -268, 12, -2049, 8 }, { -288, 12, -2049, 8 }, - { -308, 12, -2049, 8 }, { -328, 12, -2049, 8 }, - { -348, 12, -2049, 8 }, { -368, 12, -2049, 8 }, - { -388, 12, -2049, 8 }, { -408, 12, -2049, 8 }, - { -428, 12, -2049, 8 }, { -448, 12, -2050, 8 }, - { -468, 9, -2050, 8 }, { -488, 6, -2050, 8 }, - { -508, 3, -2050, 8 }, { -528, 0, -2050, 8 }, - { -548, -2, -2050, 8 }, { -568, -5, -2050, 8 }, - { -588, -8, -2050, 8 }, { -608, -11, -2050, 8 }, - { -628, -14, -2050, 8 }, { -648, -17, -2050, 8 }, - { -668, -18, -2050, 9 }, { -688, -18, -2050, 9 }, - { -708, -18, -2050, 9 }, { -728, -18, -2050, 9 }, - { -748, -18, -2050, 9 }, { -768, -18, -2050, 9 }, - { -788, -18, -2050, 9 }, { -808, -18, -2050, 9 }, - { -828, -18, -2050, 9 }, { -848, -18, -2050, 9 }, - { -868, -18, -2050, 9 }, { -888, -18, -2050, 9 }, - { -908, -18, -2050, 9 }, { -928, -18, -2050, 9 }, - { -948, -18, -2050, 9 }, { -968, -18, -2049, 9 }, - { -988, -18, -2049, 9 }, { -1008, -18, -2049, 9 }, - { -1028, -18, -2049, 9 }, { -1048, -18, -2049, 9 }, - { -1068, -18, -2049, 9 }, { -1088, -18, -2049, 9 }, - { -1108, -18, -2049, 9 }, { -1128, -18, -2049, 9 }, - { -1148, -18, -2049, 9 }, { -1168, -18, -2049, 9 }, - { -1188, -18, -2049, 9 }, { -1208, -18, -2049, 9 }, - { -1228, -18, -2049, 9 }, { -1248, -18, -2049, 9 }, - { -1268, -15, -2049, 10 }, { -1288, -12, -2048, 10 }, - { -1308, -9, -2048, 10 }, { -1328, -6, -2048, 10 }, - { -1348, -3, -2048, 10 }, { -1368, 0, -2048, 10 }, - { -1388, 2, -2047, 10 }, { -1408, 5, -2047, 10 }, - { -1428, 8, -2047, 10 }, { -1448, 11, -2047, 10 }, - { -1469, 12, -2046, 10 }, { -1489, 12, -2046, 10 }, - { -1509, 12, -2045, 10 }, { -1529, 12, -2044, 10 }, - { -1549, 12, -2043, 10 }, { -1568, 12, -2042, 10 }, - { -1588, 12, -2041, 10 }, { -1608, 12, -2039, 10 }, - { -1628, 12, -2036, 10 }, { -1647, 12, -2030, 10 }, - { -1665, 12, -2020, 10 }, { -1681, 12, -2009, 10 }, - { -1697, 12, -1997, 10 }, { -1712, 12, -1984, 10 }, - { -1727, 12, -1971, 10 }, { -1742, 12, -1957, 10 }, - { -1757, 12, -1944, 10 }, { -1771, 12, -1930, 10 }, - { -1786, 12, -1916, 10 }, { -1800, 12, -1902, 10 }, - { -1814, 12, -1888, 10 }, { -1828, 12, -1873, 10 }, - { -1842, 12, -1859, 10 }, { -1856, 12, -1845, 10 }, - { -1871, 12, -1831, 10 }, { -1885, 12, -1817, 10 }, - { -1899, 12, -1803, 10 }, { -1913, 12, -1788, 11 }, - { -1927, 12, -1774, 11 }, { -1941, 12, -1760, 11 }, - { -1955, 12, -1746, 11 }, { -1969, 12, -1731, 11 }, - { -1983, 12, -1717, 11 }, { -1997, 12, -1703, 11 }, - { -2011, 12, -1689, 11 }, { -2025, 12, -1674, 11 }, - { -2039, 12, -1660, 11 }, { -2053, 12, -1646, 11 }, - { -2067, 12, -1631, 11 }, { -2081, 12, -1617, 11 }, - { -2095, 12, -1603, 11 }, { -2109, 12, -1588, 11 }, - { -2123, 12, -1574, 11 }, { -2137, 12, -1559, 11 }, - { -2151, 12, -1545, 11 }, { -2164, 12, -1530, 11 }, - { -2178, 12, -1516, 11 }, { -2192, 12, -1501, 11 }, - { -2205, 12, -1486, 11 }, { -2219, 12, -1472, 11 }, - { -2232, 12, -1457, 11 }, { -2245, 12, -1441, 11 }, - { -2257, 12, -1426, 11 }, { -2269, 12, -1410, 11 }, - { -2280, 12, -1393, 12 }, { -2290, 12, -1375, 12 }, - { -2297, 12, -1357, 12 }, { -2301, 12, -1337, 12 }, - { -2302, 12, -1317, 12 }, { -2303, 12, -1297, 12 }, - { -2303, 12, -1277, 12 }, { -2303, 12, -1257, 12 }, - { -2304, 12, -1237, 12 }, { -2309, 12, -1218, 12 }, - { -2317, 12, -1200, 12 }, { -2328, 12, -1182, 12 }, - { -2339, 12, -1166, 12 }, { -2351, 12, -1150, 12 }, - { -2364, 12, -1134, 12 }, { -2377, 12, -1119, 12 }, - { -2391, 12, -1105, 12 }, { -2405, 12, -1090, 12 }, - { -2418, 12, -1076, 12 }, { -2433, 12, -1062, 12 }, - { -2447, 12, -1047, 12 }, { -2461, 12, -1033, 12 }, - { -2475, 12, -1019, 12 }, { -2489, 12, -1005, 12 }, - { -2503, 12, -991, 13 }, { -2517, 12, -976, 13 }, - { -2531, 12, -962, 13 }, { -2545, 12, -948, 13 }, - { -2559, 12, -934, 13 }, { -2574, 12, -920, 13 }, - { -2588, 12, -906, 13 }, { -2602, 12, -892, 13 }, - { -2616, 12, -877, 13 }, { -2630, 12, -863, 13 }, - { -2645, 12, -849, 13 }, { -2659, 12, -835, 13 }, - { -2673, 12, -821, 13 }, { -2687, 12, -807, 13 }, - { -2702, 2, -793, 13 }, { -2716, -8, -779, 13 }, - { -2730, -18, -765, 13 }, { -2744, -28, -751, 13 }, - { -2758, -29, -737, 13 }, { -2773, -27, -723, 13 }, - { -2787, -25, -709, 13 }, { -2801, -24, -695, 13 }, - { -2815, -22, -681, 13 }, { -2830, -20, -666, 13 }, - { -2844, -18, -652, 13 }, { -2858, -17, -638, 13 }, - { -2872, -15, -624, 13 }, { -2887, -13, -610, 13 }, - { -2901, -11, -596, 14 }, { -2915, -10, -582, 14 }, - { -2929, -8, -568, 14 }, { -2944, -6, -554, 14 }, - { -2958, -4, -540, 14 }, { -2972, -3, -526, 14 }, - { -2986, -1, -512, 14 }, { -3001, 0, -498, 14 }, - { -3015, 1, -484, 14 }, { -3029, 3, -469, 14 }, - { -3042, 5, -455, 14 }, { -3056, 7, -440, 14 }, - { -3068, 9, -424, 14 }, { -3080, 10, -408, 14 }, - { -3090, 12, -391, 14 }, { -3095, 12, -371, 14 }, - { -3097, 12, -351, 14 }, { -3099, 12, -331, 14 }, - { -3100, 12, -311, 14 }, { -3101, 12, -291, 14 }, - { -3101, 12, -271, 14 }, { -3101, 12, -251, 14 }, - { -3101, 12, -231, 14 }, { -3100, 12, -211, 14 }, - { -3100, 12, -191, 14 }, { -3099, 12, -171, 14 }, - { -3097, 12, -151, 14 }, { -3096, 12, -131, 14 }, - { -3093, 12, -112, 14 }, { -3090, 12, -92, 15 }, - { -3086, 12, -72, 15 }, { -3081, 12, -53, 15 }, - { -3073, 12, -35, 15 }, { -3063, 12, -18, 15 }, - { -3050, 12, -2, 15 }, { -3035, 12, 10, 15 }, - { -3018, 12, 21, 15 }, { -3000, 12, 30, 15 }, - { -2982, 12, 37, 15 }, { -2962, 12, 43, 15 }, - { -2943, 12, 48, 15 }, { -2923, 12, 51, 15 }, - { -2903, 12, 54, 15 }, { -2883, 12, 55, 15 }, - { -2863, 12, 56, 15 }, { -2843, 12, 57, 15 }, - { -2823, 12, 57, 15 }, { -2803, 12, 57, 15 }, - { -2783, 12, 57, 15 }, { -2763, 12, 57, 15 }, - { -2743, 12, 57, 15 }, { -2723, 12, 57, 15 }, - { -2703, 12, 57, 15 }, { -2683, 12, 56, 15 }, - { -2663, 12, 56, 15 }, { -2643, 12, 56, 15 }, - { -2623, 12, 56, 15 }, { -2603, 12, 56, 15 }, - { -2583, 12, 57, 15 }, { -2563, 12, 59, 15 }, - { -2543, 12, 62, 16 }, { -2524, 12, 66, 16 }, - { -2505, 12, 72, 16 }, { -2487, 12, 81, 16 }, - { -2469, 12, 91, 16 }, { -2452, 12, 101, 16 }, - { -2435, 12, 111, 16 }, { -2417, 12, 121, 16 }, - { -2400, 12, 131, 16 }, { -2383, 12, 141, 16 }, - { -2365, 12, 150, 16 }, { -2347, 12, 158, 16 }, - { -2328, 12, 164, 16 }, { -2308, 12, 169, 16 }, - { -2288, 12, 171, 16 }, { -2268, 12, 171, 16 }, - { -2248, 12, 170, 16 }, { -2228, 12, 169, 16 }, - { -2208, 12, 167, 16 }, { -2188, 12, 165, 16 }, - { -2169, 12, 162, 16 }, { -2149, 12, 160, 16 }, - { -2129, 12, 157, 16 }, { -2109, 12, 154, 16 }, - { -2089, 12, 151, 16 }, { -2070, 12, 148, 16 }, - { -2050, 12, 144, 16 }, { -2030, 12, 140, 16 }, - { -2011, 12, 135, 16 }, { -1992, 12, 129, 16 }, - { -1973, 12, 122, 16 }, { -1956, 12, 112, 16 }, - { -1939, 12, 100, 16 }, { -1925, 12, 87, 17 }, - { -1911, 12, 72, 17 }, { -1900, 12, 56, 17 }, - { -1889, 12, 39, 17 }, { -1879, 12, 21, 17 }, - { -1870, 12, 4, 17 }, { -1861, 12, -13, 17 }, - { -1853, 12, -32, 17 }, { -1845, 12, -50, 17 }, - { -1838, 12, -69, 17 }, { -1830, 12, -87, 17 }, - { -1823, 12, -106, 17 }, { -1816, 12, -124, 17 }, - { -1808, 12, -143, 17 }, { -1798, 12, -160, 17 }, - { -1786, 12, -176, 17 }, { -1769, 12, -187, 17 }, - { -1750, 12, -192, 17 }, { -1730, 12, -192, 18 }, - { -1710, 12, -188, 18 }, { -1692, 12, -181, 18 }, - { -1675, 12, -170, 18 }, { -1660, 12, -156, 18 }, - { -1648, 12, -140, 18 }, { -1638, 12, -123, 18 }, - { -1628, 12, -106, 18 }, { -1620, 12, -88, 18 }, - { -1611, 12, -70, 18 }, { -1603, 12, -51, 18 }, - { -1596, 12, -33, 18 }, { -1588, 12, -14, 18 }, - { -1579, 12, 3, 18 }, { -1570, 12, 20, 18 }, - { -1559, 12, 38, 18 }, { -1548, 12, 54, 18 }, - { -1536, 12, 70, 18 }, { -1523, 12, 85, 18 }, - { -1509, 12, 99, 18 }, { -1494, 12, 112, 18 }, - { -1477, 12, 124, 18 }, { -1460, 12, 134, 18 }, - { -1442, 12, 142, 18 }, { -1422, 12, 146, 18 }, - { -1402, 12, 149, 18 }, { -1382, 12, 150, 18 }, - { -1362, 12, 148, 18 }, { -1343, 12, 145, 18 }, - { -1323, 12, 142, 18 }, { -1303, 12, 138, 19 }, - { -1284, 12, 134, 19 }, { -1264, 12, 130, 19 }, - { -1244, 12, 126, 19 }, { -1225, 12, 123, 19 }, - { -1205, 12, 122, 19 }, { -1185, 12, 121, 19 }, - { -1165, 12, 120, 19 }, { -1145, 12, 120, 19 }, - { -1125, 12, 120, 19 }, { -1105, 12, 121, 19 }, - { -1085, 12, 121, 19 }, { -1065, 12, 122, 19 }, - { -1045, 12, 122, 19 }, { -1025, 12, 123, 19 }, - { -1005, 12, 124, 19 }, { -985, 12, 125, 19 }, - { -965, 12, 126, 19 }, { -945, 12, 127, 20 }, - { -925, 12, 128, 20 }, { -905, 12, 128, 20 }, - { -885, 12, 129, 20 }, { -865, 12, 130, 20 }, - { -845, 12, 133, 20 }, { -825, 12, 137, 20 }, - { -806, 12, 143, 20 }, { -788, 12, 152, 20 }, - { -772, 12, 163, 20 }, { -756, 12, 175, 20 }, - { -741, 12, 189, 20 }, { -728, 12, 204, 20 }, - { -717, 12, 221, 20 }, { -708, 12, 239, 20 }, - { -702, 12, 258, 20 }, { -698, 12, 277, 20 }, - { -696, 12, 297, 20 }, { -696, 12, 317, 20 }, - { -695, 12, 337, 20 }, { -696, 12, 357, 20 }, - { -696, 12, 377, 20 }, { -696, 12, 397, 20 }, - { -697, 12, 417, 20 }, { -697, 12, 437, 20 }, - { -697, 12, 457, 20 }, { -698, 12, 477, 20 }, - { -698, 12, 497, 20 }, { -698, 12, 517, 20 }, - { -698, 12, 537, 20 }, { -699, 12, 557, 20 }, - { -699, 12, 577, 20 }, { -699, 12, 597, 20 }, - { -699, 12, 617, 21 }, { -700, 12, 637, 21 }, - { -700, 12, 657, 21 }, { -700, 12, 677, 21 }, - { -700, 12, 697, 21 }, { -700, 12, 717, 21 }, - { -700, 12, 737, 21 }, { -700, 12, 757, 21 }, - { -701, 12, 777, 21 }, { -701, 12, 797, 21 }, - { -701, 12, 817, 21 }, { -701, 12, 837, 21 }, - { -701, 12, 857, 21 }, { -701, 12, 877, 21 }, - { -701, 12, 897, 21 }, { -701, 12, 917, 21 }, - { -701, 12, 937, 21 }, { -701, 12, 957, 21 }, - { -701, 12, 977, 21 }, { -701, 12, 997, 21 }, - { -701, 12, 1017, 21 }, { -701, 12, 1037, 21 }, - { -701, 12, 1058, 21 }, { -701, 12, 1078, 21 }, - { -700, 12, 1098, 21 }, { -700, 12, 1118, 21 }, - { -700, 12, 1138, 21 }, { -699, 12, 1158, 21 }, - { -698, 12, 1178, 21 }, { -697, 12, 1197, 21 }, - { -693, 12, 1217, 22 }, { -687, 12, 1236, 22 }, - { -679, 12, 1255, 22 }, { -669, 12, 1272, 22 }, - { -657, 12, 1288, 22 }, { -643, 12, 1302, 22 }, - { -629, 12, 1316, 22 }, { -614, 12, 1329, 22 }, - { -598, 12, 1342, 22 }, { -583, 12, 1355, 22 }, - { -567, 12, 1367, 22 }, { -551, 12, 1380, 22 }, - { -535, 12, 1392, 22 }, { -519, 12, 1403, 22 }, - { -503, 12, 1415, 22 }, { -486, 12, 1426, 22 }, - { -469, 12, 1436, 22 }, { -451, 12, 1446, 22 }, - { -433, 12, 1454, 22 }, { -414, 12, 1459, 22 }, - { -394, 12, 1461, 22 }, { -374, 12, 1462, 22 }, - { -354, 12, 1462, 22 }, { -334, 12, 1462, 22 }, - { -314, 12, 1462, 22 }, { -294, 12, 1462, 22 }, - { -274, 12, 1461, 22 }, { -254, 12, 1461, 22 }, - { -234, 12, 1460, 23 }, { -214, 12, 1459, 23 }, - { -194, 12, 1457, 23 }, { -174, 12, 1455, 23 }, - { -154, 12, 1452, 23 }, { -134, 12, 1448, 23 }, - { -115, 12, 1443, 23 }, { -96, 12, 1436, 23 }, - { -78, 12, 1427, 23 }, { -62, 12, 1415, 23 }, - { -47, 12, 1402, 23 }, { -34, 12, 1387, 23 }, - { -24, 12, 1369, 23 }, { -16, 12, 1351, 23 }, - { -10, 12, 1332, 23 }, { -5, 12, 1313, 23 }, - { -1, 12, 1293, 23 }, { 1, 12, 1273, 23 }, - { 3, 12, 1253, 23 }, { 5, 12, 1234, 23 }, - { 7, 12, 1214, 23 }, { 8, 12, 1194, 23 }, - { 9, 12, 1174, 23 }, { 9, 12, 1154, 23 }, - { 10, 12, 1134, 23 }, { 10, 12, 1114, 23 }, - { 10, 12, 1094, 24 }, { 10, 12, 1074, 24 }, - { 10, 12, 1054, 24 }, { 10, 12, 1034, 24 }, - { 10, 12, 1013, 24 }, { 9, 12, 993, 24 }, - { 9, 12, 974, 24 }, { 8, 12, 954, 24 }, - { 8, 12, 934, 24 }, { 7, 12, 914, 24 }, - { 7, 12, 894, 24 }, { 7, 12, 873, 24 }, - { 7, 12, 853, 24 }, { 6, 12, 833, 24 }, - { 6, 12, 813, 24 }, { 6, 12, 793, 24 }, - { 6, 12, 773, 24 }, { 5, 12, 753, 24 }, - { 5, 12, 733, 24 }, { 5, 12, 713, 24 }, - { 5, 12, 693, 24 }, { 5, 12, 673, 24 }, - { 5, 12, 653, 24 }, { 5, 12, 633, 24 }, - { 5, 12, 613, 24 }, { 5, 12, 593, 24 }, - { 5, 12, 573, 24 }, { 5, 12, 553, 24 }, - { 5, 12, 533, 24 }, { 5, 12, 513, 24 }, - { 5, 12, 493, 25 }, { 5, 12, 473, 25 }, - { 5, 12, 453, 25 }, { 5, 12, 433, 25 }, - { 5, 12, 413, 25 }, { 4, 12, 393, 25 }, - { 5, 12, 373, 25 }, { 5, 12, 353, 25 }, - { 5, 12, 333, 25 }, { 5, 12, 313, 25 }, - { 4, 12, 293, 25 }, { 4, 12, 273, 25 }, - { 5, 12, 253, 25 }, { 5, 12, 233, 25 }, - { 5, 12, 213, 25 }, { 5, 12, 193, 25 }, - { 5, 12, 173, 25 }, { 5, 12, 153, 25 }, - { 5, 12, 133, 25 }, { 5, 12, 113, 25 }, - { 5, 12, 93, 1 }, { 5, 12, 73, 1 }, - { 5, 12, 53, 1 }, { 5, 12, 33, 1 }, - { 5, 12, 13, 1 }, { 5, 12, -6, 1 }, - { 5, 12, -26, 1 }, { 5, 12, -46, 1 }, - { 5, 12, -66, 1 }, { -32768, -32768, -32768, 0 }, +#include "courses/banshee_boardwalk/d_course_banshee_boardwalk_track_path.inc.c" }; +#endif // 5C80 u8 d_course_banshee_boardwalk_boo_tlut[] = { @@ -3665,3 +3422,12 @@ TrackSections d_course_banshee_boardwalk_track_sections[] = { { d_course_banshee_boardwalk_packed_dl_1748, BRIDGE, 255, 0x8000 }, { 0x00000000, 0, 0, 0x0000 }, }; + +#ifdef VERSION_JP /* VERSION_JP path order: JP puts the paths last */ +TrackPathPoint d_course_banshee_boardwalk_unknown_path[] = { +#include "courses/banshee_boardwalk/d_course_banshee_boardwalk_unknown_path.inc.c" +}; +TrackPathPoint d_course_banshee_boardwalk_track_path[] = { +#include "courses/banshee_boardwalk/d_course_banshee_boardwalk_track_path.inc.c" +}; +#endif diff --git a/courses/banshee_boardwalk/d_course_banshee_boardwalk_track_path.inc.c b/courses/banshee_boardwalk/d_course_banshee_boardwalk_track_path.inc.c new file mode 100644 index 0000000000..e32b8b3a22 --- /dev/null +++ b/courses/banshee_boardwalk/d_course_banshee_boardwalk_track_path.inc.c @@ -0,0 +1,329 @@ + { 5, 12, -77, 1 }, { 4, 12, -97, 1 }, + { 4, 12, -117, 1 }, { 4, 12, -137, 1 }, + { 4, 12, -157, 1 }, { 4, 12, -177, 1 }, + { 4, 12, -197, 1 }, { 4, 12, -217, 1 }, + { 4, 12, -237, 1 }, { 4, 12, -257, 1 }, + { 4, 12, -277, 1 }, { 4, 12, -297, 1 }, + { 4, 12, -317, 2 }, { 4, 12, -337, 2 }, + { 4, 12, -357, 2 }, { 4, 12, -377, 2 }, + { 4, 12, -397, 2 }, { 4, 12, -417, 2 }, + { 3, 12, -437, 2 }, { 3, 12, -457, 2 }, + { 2, 12, -477, 2 }, { 1, 12, -497, 2 }, + { 0, 12, -517, 2 }, { -3, 12, -537, 2 }, + { -9, 12, -556, 2 }, { -19, 12, -573, 2 }, + { -34, 12, -587, 2 }, { -53, 12, -592, 3 }, + { -73, 12, -596, 3 }, { -93, 12, -598, 3 }, + { -113, 12, -599, 3 }, { -133, 12, -600, 3 }, + { -153, 12, -601, 3 }, { -173, 12, -602, 3 }, + { -193, 12, -602, 3 }, { -213, 12, -603, 3 }, + { -233, 12, -603, 3 }, { -253, 12, -603, 3 }, + { -273, 12, -603, 3 }, { -293, 12, -603, 3 }, + { -313, 12, -603, 3 }, { -333, 12, -603, 3 }, + { -353, 12, -603, 3 }, { -373, 12, -603, 3 }, + { -393, 12, -603, 3 }, { -413, 12, -603, 3 }, + { -433, 12, -603, 3 }, { -453, 12, -603, 3 }, + { -473, 12, -603, 3 }, { -493, 12, -603, 3 }, + { -513, 12, -603, 3 }, { -533, 12, -603, 3 }, + { -553, 12, -604, 3 }, { -573, 12, -604, 3 }, + { -593, 12, -605, 3 }, { -613, 12, -607, 3 }, + { -633, 12, -609, 3 }, { -652, 12, -612, 4 }, + { -670, 12, -621, 4 }, { -684, 12, -635, 4 }, + { -693, 12, -653, 4 }, { -697, 12, -673, 4 }, + { -700, 12, -693, 4 }, { -701, 12, -713, 4 }, + { -702, 12, -733, 4 }, { -702, 12, -753, 4 }, + { -703, 12, -773, 4 }, { -703, 12, -793, 4 }, + { -702, 12, -813, 4 }, { -702, 12, -833, 4 }, + { -702, 12, -853, 4 }, { -702, 12, -873, 4 }, + { -702, 12, -893, 4 }, { -702, 12, -913, 4 }, + { -702, 12, -933, 4 }, { -702, 12, -953, 4 }, + { -702, 12, -973, 4 }, { -702, 12, -993, 4 }, + { -701, 12, -1013, 4 }, { -701, 12, -1033, 4 }, + { -700, 12, -1053, 4 }, { -698, 12, -1073, 4 }, + { -696, 12, -1093, 4 }, { -693, 12, -1112, 4 }, + { -687, 12, -1131, 4 }, { -677, 12, -1149, 5 }, + { -666, 12, -1166, 5 }, { -654, 12, -1182, 5 }, + { -641, 12, -1197, 5 }, { -629, 12, -1212, 5 }, + { -615, 12, -1228, 5 }, { -602, 12, -1242, 5 }, + { -588, 12, -1257, 5 }, { -575, 12, -1272, 5 }, + { -561, 12, -1286, 5 }, { -547, 12, -1301, 5 }, + { -533, 12, -1315, 5 }, { -519, 12, -1329, 5 }, + { -505, 12, -1344, 5 }, { -491, 12, -1358, 5 }, + { -477, 12, -1372, 5 }, { -463, 12, -1386, 5 }, + { -449, 12, -1400, 5 }, { -435, 12, -1414, 5 }, + { -420, 12, -1429, 5 }, { -406, 12, -1443, 5 }, + { -392, 12, -1457, 5 }, { -378, 12, -1471, 5 }, + { -363, 12, -1485, 5 }, { -349, 12, -1499, 5 }, + { -335, 12, -1513, 5 }, { -321, 12, -1527, 5 }, + { -306, 12, -1541, 5 }, { -292, 12, -1555, 6 }, + { -278, 12, -1569, 6 }, { -263, 12, -1583, 6 }, + { -249, 12, -1597, 6 }, { -235, 12, -1611, 6 }, + { -221, 12, -1625, 6 }, { -206, 12, -1639, 6 }, + { -192, 12, -1653, 6 }, { -178, 12, -1667, 6 }, + { -164, 12, -1682, 6 }, { -150, 12, -1696, 6 }, + { -136, 12, -1710, 6 }, { -122, 12, -1725, 6 }, + { -108, 12, -1739, 6 }, { -94, 12, -1754, 6 }, + { -81, 12, -1768, 6 }, { -68, 12, -1783, 6 }, + { -55, 12, -1799, 6 }, { -42, 12, -1814, 6 }, + { -31, 12, -1831, 6 }, { -20, 12, -1848, 6 }, + { -10, 12, -1865, 7 }, { -1, 12, -1883, 7 }, + { 6, 12, -1901, 7 }, { 13, 12, -1920, 7 }, + { 18, 12, -1939, 7 }, { 22, 12, -1959, 7 }, + { 23, 12, -1979, 7 }, { 18, 12, -1998, 7 }, + { 5, 12, -2013, 7 }, { -11, 12, -2024, 7 }, + { -29, 12, -2032, 7 }, { -48, 12, -2038, 7 }, + { -68, 12, -2041, 7 }, { -88, 12, -2044, 7 }, + { -108, 12, -2046, 7 }, { -128, 12, -2047, 7 }, + { -148, 12, -2047, 7 }, { -168, 12, -2048, 8 }, + { -188, 12, -2048, 8 }, { -208, 12, -2048, 8 }, + { -228, 12, -2049, 8 }, { -248, 12, -2049, 8 }, + { -268, 12, -2049, 8 }, { -288, 12, -2049, 8 }, + { -308, 12, -2049, 8 }, { -328, 12, -2049, 8 }, + { -348, 12, -2049, 8 }, { -368, 12, -2049, 8 }, + { -388, 12, -2049, 8 }, { -408, 12, -2049, 8 }, + { -428, 12, -2049, 8 }, { -448, 12, -2050, 8 }, + { -468, 9, -2050, 8 }, { -488, 6, -2050, 8 }, + { -508, 3, -2050, 8 }, { -528, 0, -2050, 8 }, + { -548, -2, -2050, 8 }, { -568, -5, -2050, 8 }, + { -588, -8, -2050, 8 }, { -608, -11, -2050, 8 }, + { -628, -14, -2050, 8 }, { -648, -17, -2050, 8 }, + { -668, -18, -2050, 9 }, { -688, -18, -2050, 9 }, + { -708, -18, -2050, 9 }, { -728, -18, -2050, 9 }, + { -748, -18, -2050, 9 }, { -768, -18, -2050, 9 }, + { -788, -18, -2050, 9 }, { -808, -18, -2050, 9 }, + { -828, -18, -2050, 9 }, { -848, -18, -2050, 9 }, + { -868, -18, -2050, 9 }, { -888, -18, -2050, 9 }, + { -908, -18, -2050, 9 }, { -928, -18, -2050, 9 }, + { -948, -18, -2050, 9 }, { -968, -18, -2049, 9 }, + { -988, -18, -2049, 9 }, { -1008, -18, -2049, 9 }, + { -1028, -18, -2049, 9 }, { -1048, -18, -2049, 9 }, + { -1068, -18, -2049, 9 }, { -1088, -18, -2049, 9 }, + { -1108, -18, -2049, 9 }, { -1128, -18, -2049, 9 }, + { -1148, -18, -2049, 9 }, { -1168, -18, -2049, 9 }, + { -1188, -18, -2049, 9 }, { -1208, -18, -2049, 9 }, + { -1228, -18, -2049, 9 }, { -1248, -18, -2049, 9 }, + { -1268, -15, -2049, 10 }, { -1288, -12, -2048, 10 }, + { -1308, -9, -2048, 10 }, { -1328, -6, -2048, 10 }, + { -1348, -3, -2048, 10 }, { -1368, 0, -2048, 10 }, + { -1388, 2, -2047, 10 }, { -1408, 5, -2047, 10 }, + { -1428, 8, -2047, 10 }, { -1448, 11, -2047, 10 }, + { -1469, 12, -2046, 10 }, { -1489, 12, -2046, 10 }, + { -1509, 12, -2045, 10 }, { -1529, 12, -2044, 10 }, + { -1549, 12, -2043, 10 }, { -1568, 12, -2042, 10 }, + { -1588, 12, -2041, 10 }, { -1608, 12, -2039, 10 }, + { -1628, 12, -2036, 10 }, { -1647, 12, -2030, 10 }, + { -1665, 12, -2020, 10 }, { -1681, 12, -2009, 10 }, + { -1697, 12, -1997, 10 }, { -1712, 12, -1984, 10 }, + { -1727, 12, -1971, 10 }, { -1742, 12, -1957, 10 }, + { -1757, 12, -1944, 10 }, { -1771, 12, -1930, 10 }, + { -1786, 12, -1916, 10 }, { -1800, 12, -1902, 10 }, + { -1814, 12, -1888, 10 }, { -1828, 12, -1873, 10 }, + { -1842, 12, -1859, 10 }, { -1856, 12, -1845, 10 }, + { -1871, 12, -1831, 10 }, { -1885, 12, -1817, 10 }, + { -1899, 12, -1803, 10 }, { -1913, 12, -1788, 11 }, + { -1927, 12, -1774, 11 }, { -1941, 12, -1760, 11 }, + { -1955, 12, -1746, 11 }, { -1969, 12, -1731, 11 }, + { -1983, 12, -1717, 11 }, { -1997, 12, -1703, 11 }, + { -2011, 12, -1689, 11 }, { -2025, 12, -1674, 11 }, + { -2039, 12, -1660, 11 }, { -2053, 12, -1646, 11 }, + { -2067, 12, -1631, 11 }, { -2081, 12, -1617, 11 }, + { -2095, 12, -1603, 11 }, { -2109, 12, -1588, 11 }, + { -2123, 12, -1574, 11 }, { -2137, 12, -1559, 11 }, + { -2151, 12, -1545, 11 }, { -2164, 12, -1530, 11 }, + { -2178, 12, -1516, 11 }, { -2192, 12, -1501, 11 }, + { -2205, 12, -1486, 11 }, { -2219, 12, -1472, 11 }, + { -2232, 12, -1457, 11 }, { -2245, 12, -1441, 11 }, + { -2257, 12, -1426, 11 }, { -2269, 12, -1410, 11 }, + { -2280, 12, -1393, 12 }, { -2290, 12, -1375, 12 }, + { -2297, 12, -1357, 12 }, { -2301, 12, -1337, 12 }, + { -2302, 12, -1317, 12 }, { -2303, 12, -1297, 12 }, + { -2303, 12, -1277, 12 }, { -2303, 12, -1257, 12 }, + { -2304, 12, -1237, 12 }, { -2309, 12, -1218, 12 }, + { -2317, 12, -1200, 12 }, { -2328, 12, -1182, 12 }, + { -2339, 12, -1166, 12 }, { -2351, 12, -1150, 12 }, + { -2364, 12, -1134, 12 }, { -2377, 12, -1119, 12 }, + { -2391, 12, -1105, 12 }, { -2405, 12, -1090, 12 }, + { -2418, 12, -1076, 12 }, { -2433, 12, -1062, 12 }, + { -2447, 12, -1047, 12 }, { -2461, 12, -1033, 12 }, + { -2475, 12, -1019, 12 }, { -2489, 12, -1005, 12 }, + { -2503, 12, -991, 13 }, { -2517, 12, -976, 13 }, + { -2531, 12, -962, 13 }, { -2545, 12, -948, 13 }, + { -2559, 12, -934, 13 }, { -2574, 12, -920, 13 }, + { -2588, 12, -906, 13 }, { -2602, 12, -892, 13 }, + { -2616, 12, -877, 13 }, { -2630, 12, -863, 13 }, + { -2645, 12, -849, 13 }, { -2659, 12, -835, 13 }, + { -2673, 12, -821, 13 }, { -2687, 12, -807, 13 }, + { -2702, 2, -793, 13 }, { -2716, -8, -779, 13 }, + { -2730, -18, -765, 13 }, { -2744, -28, -751, 13 }, + { -2758, -29, -737, 13 }, { -2773, -27, -723, 13 }, + { -2787, -25, -709, 13 }, { -2801, -24, -695, 13 }, + { -2815, -22, -681, 13 }, { -2830, -20, -666, 13 }, + { -2844, -18, -652, 13 }, { -2858, -17, -638, 13 }, + { -2872, -15, -624, 13 }, { -2887, -13, -610, 13 }, + { -2901, -11, -596, 14 }, { -2915, -10, -582, 14 }, + { -2929, -8, -568, 14 }, { -2944, -6, -554, 14 }, + { -2958, -4, -540, 14 }, { -2972, -3, -526, 14 }, + { -2986, -1, -512, 14 }, { -3001, 0, -498, 14 }, + { -3015, 1, -484, 14 }, { -3029, 3, -469, 14 }, + { -3042, 5, -455, 14 }, { -3056, 7, -440, 14 }, + { -3068, 9, -424, 14 }, { -3080, 10, -408, 14 }, + { -3090, 12, -391, 14 }, { -3095, 12, -371, 14 }, + { -3097, 12, -351, 14 }, { -3099, 12, -331, 14 }, + { -3100, 12, -311, 14 }, { -3101, 12, -291, 14 }, + { -3101, 12, -271, 14 }, { -3101, 12, -251, 14 }, + { -3101, 12, -231, 14 }, { -3100, 12, -211, 14 }, + { -3100, 12, -191, 14 }, { -3099, 12, -171, 14 }, + { -3097, 12, -151, 14 }, { -3096, 12, -131, 14 }, + { -3093, 12, -112, 14 }, { -3090, 12, -92, 15 }, + { -3086, 12, -72, 15 }, { -3081, 12, -53, 15 }, + { -3073, 12, -35, 15 }, { -3063, 12, -18, 15 }, + { -3050, 12, -2, 15 }, { -3035, 12, 10, 15 }, + { -3018, 12, 21, 15 }, { -3000, 12, 30, 15 }, + { -2982, 12, 37, 15 }, { -2962, 12, 43, 15 }, + { -2943, 12, 48, 15 }, { -2923, 12, 51, 15 }, + { -2903, 12, 54, 15 }, { -2883, 12, 55, 15 }, + { -2863, 12, 56, 15 }, { -2843, 12, 57, 15 }, + { -2823, 12, 57, 15 }, { -2803, 12, 57, 15 }, + { -2783, 12, 57, 15 }, { -2763, 12, 57, 15 }, + { -2743, 12, 57, 15 }, { -2723, 12, 57, 15 }, + { -2703, 12, 57, 15 }, { -2683, 12, 56, 15 }, + { -2663, 12, 56, 15 }, { -2643, 12, 56, 15 }, + { -2623, 12, 56, 15 }, { -2603, 12, 56, 15 }, + { -2583, 12, 57, 15 }, { -2563, 12, 59, 15 }, + { -2543, 12, 62, 16 }, { -2524, 12, 66, 16 }, + { -2505, 12, 72, 16 }, { -2487, 12, 81, 16 }, + { -2469, 12, 91, 16 }, { -2452, 12, 101, 16 }, + { -2435, 12, 111, 16 }, { -2417, 12, 121, 16 }, + { -2400, 12, 131, 16 }, { -2383, 12, 141, 16 }, + { -2365, 12, 150, 16 }, { -2347, 12, 158, 16 }, + { -2328, 12, 164, 16 }, { -2308, 12, 169, 16 }, + { -2288, 12, 171, 16 }, { -2268, 12, 171, 16 }, + { -2248, 12, 170, 16 }, { -2228, 12, 169, 16 }, + { -2208, 12, 167, 16 }, { -2188, 12, 165, 16 }, + { -2169, 12, 162, 16 }, { -2149, 12, 160, 16 }, + { -2129, 12, 157, 16 }, { -2109, 12, 154, 16 }, + { -2089, 12, 151, 16 }, { -2070, 12, 148, 16 }, + { -2050, 12, 144, 16 }, { -2030, 12, 140, 16 }, + { -2011, 12, 135, 16 }, { -1992, 12, 129, 16 }, + { -1973, 12, 122, 16 }, { -1956, 12, 112, 16 }, + { -1939, 12, 100, 16 }, { -1925, 12, 87, 17 }, + { -1911, 12, 72, 17 }, { -1900, 12, 56, 17 }, + { -1889, 12, 39, 17 }, { -1879, 12, 21, 17 }, + { -1870, 12, 4, 17 }, { -1861, 12, -13, 17 }, + { -1853, 12, -32, 17 }, { -1845, 12, -50, 17 }, + { -1838, 12, -69, 17 }, { -1830, 12, -87, 17 }, + { -1823, 12, -106, 17 }, { -1816, 12, -124, 17 }, + { -1808, 12, -143, 17 }, { -1798, 12, -160, 17 }, + { -1786, 12, -176, 17 }, { -1769, 12, -187, 17 }, + { -1750, 12, -192, 17 }, { -1730, 12, -192, 18 }, + { -1710, 12, -188, 18 }, { -1692, 12, -181, 18 }, + { -1675, 12, -170, 18 }, { -1660, 12, -156, 18 }, + { -1648, 12, -140, 18 }, { -1638, 12, -123, 18 }, + { -1628, 12, -106, 18 }, { -1620, 12, -88, 18 }, + { -1611, 12, -70, 18 }, { -1603, 12, -51, 18 }, + { -1596, 12, -33, 18 }, { -1588, 12, -14, 18 }, + { -1579, 12, 3, 18 }, { -1570, 12, 20, 18 }, + { -1559, 12, 38, 18 }, { -1548, 12, 54, 18 }, + { -1536, 12, 70, 18 }, { -1523, 12, 85, 18 }, + { -1509, 12, 99, 18 }, { -1494, 12, 112, 18 }, + { -1477, 12, 124, 18 }, { -1460, 12, 134, 18 }, + { -1442, 12, 142, 18 }, { -1422, 12, 146, 18 }, + { -1402, 12, 149, 18 }, { -1382, 12, 150, 18 }, + { -1362, 12, 148, 18 }, { -1343, 12, 145, 18 }, + { -1323, 12, 142, 18 }, { -1303, 12, 138, 19 }, + { -1284, 12, 134, 19 }, { -1264, 12, 130, 19 }, + { -1244, 12, 126, 19 }, { -1225, 12, 123, 19 }, + { -1205, 12, 122, 19 }, { -1185, 12, 121, 19 }, + { -1165, 12, 120, 19 }, { -1145, 12, 120, 19 }, + { -1125, 12, 120, 19 }, { -1105, 12, 121, 19 }, + { -1085, 12, 121, 19 }, { -1065, 12, 122, 19 }, + { -1045, 12, 122, 19 }, { -1025, 12, 123, 19 }, + { -1005, 12, 124, 19 }, { -985, 12, 125, 19 }, + { -965, 12, 126, 19 }, { -945, 12, 127, 20 }, + { -925, 12, 128, 20 }, { -905, 12, 128, 20 }, + { -885, 12, 129, 20 }, { -865, 12, 130, 20 }, + { -845, 12, 133, 20 }, { -825, 12, 137, 20 }, + { -806, 12, 143, 20 }, { -788, 12, 152, 20 }, + { -772, 12, 163, 20 }, { -756, 12, 175, 20 }, + { -741, 12, 189, 20 }, { -728, 12, 204, 20 }, + { -717, 12, 221, 20 }, { -708, 12, 239, 20 }, + { -702, 12, 258, 20 }, { -698, 12, 277, 20 }, + { -696, 12, 297, 20 }, { -696, 12, 317, 20 }, + { -695, 12, 337, 20 }, { -696, 12, 357, 20 }, + { -696, 12, 377, 20 }, { -696, 12, 397, 20 }, + { -697, 12, 417, 20 }, { -697, 12, 437, 20 }, + { -697, 12, 457, 20 }, { -698, 12, 477, 20 }, + { -698, 12, 497, 20 }, { -698, 12, 517, 20 }, + { -698, 12, 537, 20 }, { -699, 12, 557, 20 }, + { -699, 12, 577, 20 }, { -699, 12, 597, 20 }, + { -699, 12, 617, 21 }, { -700, 12, 637, 21 }, + { -700, 12, 657, 21 }, { -700, 12, 677, 21 }, + { -700, 12, 697, 21 }, { -700, 12, 717, 21 }, + { -700, 12, 737, 21 }, { -700, 12, 757, 21 }, + { -701, 12, 777, 21 }, { -701, 12, 797, 21 }, + { -701, 12, 817, 21 }, { -701, 12, 837, 21 }, + { -701, 12, 857, 21 }, { -701, 12, 877, 21 }, + { -701, 12, 897, 21 }, { -701, 12, 917, 21 }, + { -701, 12, 937, 21 }, { -701, 12, 957, 21 }, + { -701, 12, 977, 21 }, { -701, 12, 997, 21 }, + { -701, 12, 1017, 21 }, { -701, 12, 1037, 21 }, + { -701, 12, 1058, 21 }, { -701, 12, 1078, 21 }, + { -700, 12, 1098, 21 }, { -700, 12, 1118, 21 }, + { -700, 12, 1138, 21 }, { -699, 12, 1158, 21 }, + { -698, 12, 1178, 21 }, { -697, 12, 1197, 21 }, + { -693, 12, 1217, 22 }, { -687, 12, 1236, 22 }, + { -679, 12, 1255, 22 }, { -669, 12, 1272, 22 }, + { -657, 12, 1288, 22 }, { -643, 12, 1302, 22 }, + { -629, 12, 1316, 22 }, { -614, 12, 1329, 22 }, + { -598, 12, 1342, 22 }, { -583, 12, 1355, 22 }, + { -567, 12, 1367, 22 }, { -551, 12, 1380, 22 }, + { -535, 12, 1392, 22 }, { -519, 12, 1403, 22 }, + { -503, 12, 1415, 22 }, { -486, 12, 1426, 22 }, + { -469, 12, 1436, 22 }, { -451, 12, 1446, 22 }, + { -433, 12, 1454, 22 }, { -414, 12, 1459, 22 }, + { -394, 12, 1461, 22 }, { -374, 12, 1462, 22 }, + { -354, 12, 1462, 22 }, { -334, 12, 1462, 22 }, + { -314, 12, 1462, 22 }, { -294, 12, 1462, 22 }, + { -274, 12, 1461, 22 }, { -254, 12, 1461, 22 }, + { -234, 12, 1460, 23 }, { -214, 12, 1459, 23 }, + { -194, 12, 1457, 23 }, { -174, 12, 1455, 23 }, + { -154, 12, 1452, 23 }, { -134, 12, 1448, 23 }, + { -115, 12, 1443, 23 }, { -96, 12, 1436, 23 }, + { -78, 12, 1427, 23 }, { -62, 12, 1415, 23 }, + { -47, 12, 1402, 23 }, { -34, 12, 1387, 23 }, + { -24, 12, 1369, 23 }, { -16, 12, 1351, 23 }, + { -10, 12, 1332, 23 }, { -5, 12, 1313, 23 }, + { -1, 12, 1293, 23 }, { 1, 12, 1273, 23 }, + { 3, 12, 1253, 23 }, { 5, 12, 1234, 23 }, + { 7, 12, 1214, 23 }, { 8, 12, 1194, 23 }, + { 9, 12, 1174, 23 }, { 9, 12, 1154, 23 }, + { 10, 12, 1134, 23 }, { 10, 12, 1114, 23 }, + { 10, 12, 1094, 24 }, { 10, 12, 1074, 24 }, + { 10, 12, 1054, 24 }, { 10, 12, 1034, 24 }, + { 10, 12, 1013, 24 }, { 9, 12, 993, 24 }, + { 9, 12, 974, 24 }, { 8, 12, 954, 24 }, + { 8, 12, 934, 24 }, { 7, 12, 914, 24 }, + { 7, 12, 894, 24 }, { 7, 12, 873, 24 }, + { 7, 12, 853, 24 }, { 6, 12, 833, 24 }, + { 6, 12, 813, 24 }, { 6, 12, 793, 24 }, + { 6, 12, 773, 24 }, { 5, 12, 753, 24 }, + { 5, 12, 733, 24 }, { 5, 12, 713, 24 }, + { 5, 12, 693, 24 }, { 5, 12, 673, 24 }, + { 5, 12, 653, 24 }, { 5, 12, 633, 24 }, + { 5, 12, 613, 24 }, { 5, 12, 593, 24 }, + { 5, 12, 573, 24 }, { 5, 12, 553, 24 }, + { 5, 12, 533, 24 }, { 5, 12, 513, 24 }, + { 5, 12, 493, 25 }, { 5, 12, 473, 25 }, + { 5, 12, 453, 25 }, { 5, 12, 433, 25 }, + { 5, 12, 413, 25 }, { 4, 12, 393, 25 }, + { 5, 12, 373, 25 }, { 5, 12, 353, 25 }, + { 5, 12, 333, 25 }, { 5, 12, 313, 25 }, + { 4, 12, 293, 25 }, { 4, 12, 273, 25 }, + { 5, 12, 253, 25 }, { 5, 12, 233, 25 }, + { 5, 12, 213, 25 }, { 5, 12, 193, 25 }, + { 5, 12, 173, 25 }, { 5, 12, 153, 25 }, + { 5, 12, 133, 25 }, { 5, 12, 113, 25 }, + { 5, 12, 93, 1 }, { 5, 12, 73, 1 }, + { 5, 12, 53, 1 }, { 5, 12, 33, 1 }, + { 5, 12, 13, 1 }, { 5, 12, -6, 1 }, + { 5, 12, -26, 1 }, { 5, 12, -46, 1 }, + { 5, 12, -66, 1 }, { -32768, -32768, -32768, 0 }, diff --git a/courses/banshee_boardwalk/d_course_banshee_boardwalk_unknown_path.inc.c b/courses/banshee_boardwalk/d_course_banshee_boardwalk_unknown_path.inc.c new file mode 100644 index 0000000000..2d056d16f7 --- /dev/null +++ b/courses/banshee_boardwalk/d_course_banshee_boardwalk_unknown_path.inc.c @@ -0,0 +1,20 @@ + { 5, 0, -65, 0 }, { 5, 0, -90, 0 }, { 4, 0, -203, 0 }, { 5, 0, -501, 0 }, + { -13, 0, -575, 0 }, { -54, 0, -598, 0 }, { -244, 0, -605, 0 }, { -634, 0, -602, 0 }, + { -688, 0, -629, 0 }, { -704, 0, -697, 0 }, { -702, 0, -895, 0 }, { -702, 0, -1095, 0 }, + { -673, 0, -1167, 0 }, { -507, 0, -1346, 0 }, { -104, 0, -1739, 0 }, { -9, 0, -1856, 0 }, + { 32, 0, -1975, 0 }, { 6, 0, -2019, 0 }, { -64, 0, -2046, 0 }, { -242, 0, -2050, 0 }, + { -650, 0, -2050, 0 }, { -1249, 0, -2050, 0 }, { -1594, 0, -2045, 0 }, { -1677, 0, -2025, 0 }, + { -1907, 0, -1796, 0 }, { -2202, 0, -1495, 0 }, { -2299, 0, -1376, 0 }, { -2304, 0, -1297, 0 }, + { -2304, 0, -1195, 0 }, { -2496, 0, -997, 0 }, { -2903, 0, -595, 0 }, { -3079, 0, -422, 0 }, + { -3103, 0, -357, 0 }, { -3099, 0, -98, 0 }, { -3060, 0, 2, 0 }, { -2948, 0, 56, 0 }, + { -2749, 0, 58, 0 }, { -2534, 0, 55, 0 }, { -2446, 0, 105, 0 }, { -2330, 0, 172, 0 }, + { -2231, 0, 172, 0 }, { -2007, 0, 140, 0 }, { -1928, 0, 98, 0 }, { -1877, 0, 22, 0 }, + { -1834, 0, -78, 0 }, { -1796, 0, -177, 0 }, { -1744, 0, -198, 0 }, { -1671, 0, -177, 0 }, + { -1622, 0, -98, 0 }, { -1569, 0, 35, 0 }, { -1483, 0, 130, 0 }, { -1398, 0, 155, 0 }, + { -1316, 0, 141, 0 }, { -1272, 0, 132, 0 }, { -1232, 0, 124, 0 }, { -1174, 0, 120, 0 }, + { -1109, 0, 121, 0 }, { -1060, 0, 122, 0 }, { -1000, 0, 125, 0 }, { -923, 0, 128, 0 }, + { -819, 0, 133, 0 }, { -746, 0, 180, 0 }, { -703, 0, 241, 0 }, { -695, 0, 309, 0 }, + { -697, 0, 401, 0 }, { -701, 0, 694, 0 }, { -702, 0, 1117, 0 }, { -696, 0, 1237, 0 }, + { -637, 0, 1316, 0 }, { -456, 0, 1452, 0 }, { -381, 0, 1465, 0 }, { -138, 0, 1458, 0 }, + { -39, 0, 1407, 0 }, { 2, 0, 1307, 0 }, { 13, 0, 1108, 0 }, { 5, 0, 808, 0 }, + { 5, 0, 100, 0 }, { 7, 0, -28, 0 }, { -32768, 0, 0, 0 }, diff --git a/courses/bowsers_castle/course_data.c b/courses/bowsers_castle/course_data.c index 9dbacf544d..bf024e308b 100644 --- a/courses/bowsers_castle/course_data.c +++ b/courses/bowsers_castle/course_data.c @@ -31,7 +31,10 @@ Gfx d_course_bowsers_castle_dl_0[] = { Gfx d_course_bowsers_castle_dl_110[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), gsSPDisplayList(d_course_bowsers_castle_packed_dl_20B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2708), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5448), @@ -56,20 +59,32 @@ Gfx d_course_bowsers_castle_dl_230[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_9328), gsSPDisplayList(d_course_bowsers_castle_packed_dl_93A0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9438), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_94D8), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_6A90), gsSPDisplayList(d_course_bowsers_castle_packed_dl_84A8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_87E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8BE0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_24B0), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_20B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_27E8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2708), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_5448), gsSPDisplayList(d_course_bowsers_castle_packed_dl_53E0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_56F0), @@ -100,9 +115,19 @@ Gfx d_course_bowsers_castle_dl_230[] = { Gfx d_course_bowsers_castle_dl_398[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_93A0), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_94D8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_94D8), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_84A8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8D10), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), gsSPDisplayList(d_course_bowsers_castle_packed_dl_23E0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_23E0), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_5448), gsSPDisplayList(d_course_bowsers_castle_packed_dl_53E0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5560), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7038), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7180), @@ -140,7 +165,10 @@ Gfx d_course_bowsers_castle_dl_428[] = { Gfx d_course_bowsers_castle_dl_4F0[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_93A0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2BB8), + gsSPDisplayList(d_course_bowsers_castle_packed_dl_93A0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2BB8), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_84A8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), gsSPDisplayList(d_course_bowsers_castle_packed_dl_23E0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_24B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), @@ -167,11 +195,22 @@ Gfx d_course_bowsers_castle_dl_640[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_9290), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9328), gsSPDisplayList(d_course_bowsers_castle_packed_dl_93A0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9438), gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_1FA0), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_2BB8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_84A8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2BB8), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_84A8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_23E0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2450), gsSPDisplayList(d_course_bowsers_castle_packed_dl_24B0), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_2310), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_27E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2708), + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2310), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_27E8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2708), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_5448), gsSPDisplayList(d_course_bowsers_castle_packed_dl_53E0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_56F0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5560), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7038), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6FA0), @@ -188,18 +227,27 @@ Gfx d_course_bowsers_castle_dl_640[] = { }; Gfx d_course_bowsers_castle_dl_7A0[] = { - gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9290), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_9290), gsSPDisplayList(d_course_bowsers_castle_packed_dl_93A0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_1FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2BB8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_84A8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8D10), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_8DA8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), + gsSPDisplayList(d_course_bowsers_castle_packed_dl_8DA8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_23E0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_24B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_27E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5448), gsSPDisplayList(d_course_bowsers_castle_packed_dl_53E0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5560), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7038), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7180), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A10), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7AD8), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_8148), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_8148), +#endif + gsSPEndDisplayList(), }; Gfx d_course_bowsers_castle_dl_860[] = { @@ -248,7 +296,9 @@ Gfx d_course_bowsers_castle_dl_9F8[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_93A0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_1FA0), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2BB8), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_84A8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), @@ -257,7 +307,9 @@ Gfx d_course_bowsers_castle_dl_9F8[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_24B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2310), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_27E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5448), gsSPDisplayList(d_course_bowsers_castle_packed_dl_53E0), @@ -275,7 +327,9 @@ Gfx d_course_bowsers_castle_dl_9F8[] = { }; Gfx d_course_bowsers_castle_dl_AE0[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_9290), gsSPDisplayList(d_course_bowsers_castle_packed_dl_93A0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), @@ -284,7 +338,9 @@ Gfx d_course_bowsers_castle_dl_AE0[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_84A8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8D10), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8DA8), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_23E0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_24B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), @@ -294,7 +350,9 @@ Gfx d_course_bowsers_castle_dl_AE0[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_7038), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7AD8), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_8148), +#endif gsSPEndDisplayList(), }; @@ -316,7 +374,9 @@ Gfx d_course_bowsers_castle_dl_C08[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_84A8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_8D10), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), gsSPDisplayList(d_course_bowsers_castle_packed_dl_23E0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2450), @@ -350,12 +410,20 @@ Gfx d_course_bowsers_castle_dl_C08[] = { Gfx d_course_bowsers_castle_dl_D20[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9290), gsSPDisplayList(d_course_bowsers_castle_packed_dl_93A0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_1FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2BB8), + gsSPDisplayList(d_course_bowsers_castle_packed_dl_1FA0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2BB8), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_84A8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), gsSPDisplayList(d_course_bowsers_castle_packed_dl_23E0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2450), gsSPDisplayList(d_course_bowsers_castle_packed_dl_24B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2310), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), gsSPDisplayList(d_course_bowsers_castle_packed_dl_27E8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_27E8), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_5448), gsSPDisplayList(d_course_bowsers_castle_packed_dl_53E0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7038), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7340), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7AD8), @@ -365,7 +433,9 @@ Gfx d_course_bowsers_castle_dl_D20[] = { }; Gfx d_course_bowsers_castle_dl_E00[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_9290), gsSPDisplayList(d_course_bowsers_castle_packed_dl_93A0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), @@ -374,7 +444,9 @@ Gfx d_course_bowsers_castle_dl_E00[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_84A8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8D10), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8DA8), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_23E0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_24B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), @@ -384,7 +456,9 @@ Gfx d_course_bowsers_castle_dl_E00[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_7038), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7AD8), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_8148), +#endif gsSPEndDisplayList(), }; @@ -456,8 +530,12 @@ Gfx d_course_bowsers_castle_dl_1040[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_24B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2310), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_27E8), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_5448), gsSPDisplayList(d_course_bowsers_castle_packed_dl_53E0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7038), @@ -474,7 +552,9 @@ Gfx d_course_bowsers_castle_dl_1040[] = { }; Gfx d_course_bowsers_castle_dl_1138[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_9290), gsSPDisplayList(d_course_bowsers_castle_packed_dl_93A0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), @@ -483,7 +563,9 @@ Gfx d_course_bowsers_castle_dl_1138[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_84A8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8D10), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8DA8), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_23E0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_24B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), @@ -494,7 +576,9 @@ Gfx d_course_bowsers_castle_dl_1138[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_7038), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7AD8), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_8148), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_5A78), gsSPEndDisplayList(), }; @@ -516,7 +600,9 @@ Gfx d_course_bowsers_castle_dl_11F0[] = { Gfx d_course_bowsers_castle_dl_1248[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_1FA0), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2BB8), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_8D10), gsSPDisplayList(d_course_bowsers_castle_packed_dl_3578), gsSPClearGeometryMode(G_CULL_BACK), @@ -792,7 +878,11 @@ Gfx d_course_bowsers_castle_dl_19A8[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_1AA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_19B8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2A48), +#ifdef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_6200), +#else gsSPDisplayList(d_course_bowsers_castle_packed_dl_470), +#endif gsSPClearGeometryMode(G_CULL_BACK), gsSPDisplayList(d_course_bowsers_castle_packed_dl_280), gsSPSetGeometryMode(G_CULL_BACK), @@ -817,7 +907,11 @@ Gfx d_course_bowsers_castle_dl_1A40[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_1C70), gsSPDisplayList(d_course_bowsers_castle_packed_dl_1AA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2A48), +#ifdef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_6200), +#else gsSPDisplayList(d_course_bowsers_castle_packed_dl_470), +#endif gsSPClearGeometryMode(G_CULL_BACK), gsSPDisplayList(d_course_bowsers_castle_packed_dl_280), gsSPSetGeometryMode(G_CULL_BACK), @@ -1008,12 +1102,16 @@ Gfx d_course_bowsers_castle_dl_1FA0[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_6678), gsSPDisplayList(d_course_bowsers_castle_packed_dl_87E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8BE0), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), gsSPDisplayList(d_course_bowsers_castle_packed_dl_20B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2770), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A10), +#endif gsSPEndDisplayList(), }; @@ -1107,15 +1205,24 @@ Gfx d_course_bowsers_castle_dl_21F0[] = { }; Gfx d_course_bowsers_castle_dl_22E8[] = { - gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9328), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_9328), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9438), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6A90), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6678), gsSPDisplayList(d_course_bowsers_castle_packed_dl_87E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8BE0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_20B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), gsSPDisplayList(d_course_bowsers_castle_packed_dl_28B8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_28B8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2920), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2770), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5378), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6F08), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A10), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A78), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A10), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7B50), gsSPDisplayList(d_course_bowsers_castle_packed_dl_82D8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8348), gsSPEndDisplayList(), }; @@ -1305,7 +1412,10 @@ Gfx d_course_bowsers_castle_dl_2A60[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_5270), gsSPDisplayList(d_course_bowsers_castle_packed_dl_51E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6F08), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6E48), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6D78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6CB8), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_70D0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7418), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_70D0), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_7418), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A10), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7B50), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7BB8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7C30), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7730), @@ -1350,7 +1460,10 @@ Gfx d_course_bowsers_castle_dl_2C48[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_5300), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5270), gsSPDisplayList(d_course_bowsers_castle_packed_dl_51E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6F08), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6E48), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6D78), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_6CB8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_70D0), + gsSPDisplayList(d_course_bowsers_castle_packed_dl_6CB8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_70D0), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_7B50), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7BB8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7C30), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7998), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7650), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7DB8), @@ -1456,7 +1569,9 @@ Gfx d_course_bowsers_castle_dl_3050[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_5270), gsSPDisplayList(d_course_bowsers_castle_packed_dl_51E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_54E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_5778), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_6F08), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6E48), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6D78), @@ -1488,12 +1603,16 @@ Gfx d_course_bowsers_castle_dl_3158[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_28B8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2920), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2770), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_5300), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_5270), gsSPDisplayList(d_course_bowsers_castle_packed_dl_51E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_54E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5778), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_6E48), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_6D78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6CB8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_70D0), @@ -1544,7 +1663,9 @@ Gfx d_course_bowsers_castle_dl_3338[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_9438), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6A90), gsSPDisplayList(d_course_bowsers_castle_packed_dl_87E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_8BE0), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_20B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), @@ -1583,7 +1704,9 @@ Gfx d_course_bowsers_castle_dl_3338[] = { Gfx d_course_bowsers_castle_dl_3480[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8FA0), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_6A90), gsSPDisplayList(d_course_bowsers_castle_packed_dl_87E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8BE0), @@ -1603,29 +1726,45 @@ Gfx d_course_bowsers_castle_dl_3480[] = { Gfx d_course_bowsers_castle_dl_3508[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8FA0), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2290), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2920), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2770), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2598), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2698), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_5378), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_5270), gsSPDisplayList(d_course_bowsers_castle_packed_dl_51E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_54E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5778), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_6F08), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_6D78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6CB8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_70D0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7520), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A10), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_7CC0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7998), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7650), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7730), +#endif gsSPEndDisplayList(), }; @@ -1657,7 +1796,10 @@ Gfx d_course_bowsers_castle_dl_3678[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9328), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9438), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6A90), gsSPDisplayList(d_course_bowsers_castle_packed_dl_87E8), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_8BE0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_8BE0), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), gsSPDisplayList(d_course_bowsers_castle_packed_dl_20B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2290), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), @@ -1679,22 +1821,47 @@ Gfx d_course_bowsers_castle_dl_3678[] = { }; Gfx d_course_bowsers_castle_dl_37D8[] = { - gsSPDisplayList(d_course_bowsers_castle_packed_dl_8FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), + gsSPDisplayList(d_course_bowsers_castle_packed_dl_8FA0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_9328), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9438), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6A90), gsSPDisplayList(d_course_bowsers_castle_packed_dl_87E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8BE0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), gsSPDisplayList(d_course_bowsers_castle_packed_dl_23E0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_20B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2290), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2610), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_2708), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5300), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_51E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_54E8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2610), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2708), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_5300), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_51E8), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_54E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5778), gsSPDisplayList(d_course_bowsers_castle_packed_dl_56F0), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_5678), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6E48), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_6CB8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_70D0), + gsSPDisplayList(d_course_bowsers_castle_packed_dl_5678), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_6E48), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_6CB8), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_70D0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7520), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7418), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7340), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A10), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7BB8), + gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A78), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_7BB8), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_76C0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7730), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7E28), gsSPEndDisplayList(), }; @@ -1702,28 +1869,42 @@ Gfx d_course_bowsers_castle_dl_37D8[] = { Gfx d_course_bowsers_castle_dl_38F8[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2290), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2920), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2770), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2598), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2610), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2698), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2708), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_5378), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_51E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_54E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5778), gsSPDisplayList(d_course_bowsers_castle_packed_dl_56F0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5678), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_6F08), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_6CB8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_70D0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7520), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7418), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A10), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7B50), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_7998), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7650), gsSPDisplayList(d_course_bowsers_castle_packed_dl_76C0), @@ -1739,7 +1920,10 @@ Gfx d_course_bowsers_castle_dl_39E0[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2290), gsSPDisplayList(d_course_bowsers_castle_packed_dl_28B8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2920), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2770), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2598), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_2698), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5378), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2698), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_5378), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5300), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5270), gsSPDisplayList(d_course_bowsers_castle_packed_dl_51E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_54E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5778), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6F08), @@ -1799,7 +1983,12 @@ Gfx d_course_bowsers_castle_dl_3C08[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2290), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), gsSPDisplayList(d_course_bowsers_castle_packed_dl_28B8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2920), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2770), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_2610), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2698), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2610), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2698), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_5378), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5300), gsSPDisplayList(d_course_bowsers_castle_packed_dl_56F0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5678), gsSPDisplayList(d_course_bowsers_castle_packed_dl_55E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6F08), @@ -1816,9 +2005,17 @@ Gfx d_course_bowsers_castle_dl_3C08[] = { Gfx d_course_bowsers_castle_dl_3D78[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2290), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2770), + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2770), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2598), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2610), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2698), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2708), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5378), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5300), @@ -1828,12 +2025,18 @@ Gfx d_course_bowsers_castle_dl_3D78[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_6CB8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7520), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7418), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7340), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7288), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7180), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A10), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7B50), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A10), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_7B50), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7BB8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7C30), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7650), gsSPDisplayList(d_course_bowsers_castle_packed_dl_76C0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7730), gsSPDisplayList(d_course_bowsers_castle_packed_dl_77A0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7820), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7DB8), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_7E28), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_7E28), +#endif + gsSPEndDisplayList(), }; Gfx d_course_bowsers_castle_dl_3EA8[] = { @@ -1900,7 +2103,9 @@ Gfx d_course_bowsers_castle_dl_3FF0[] = { }; Gfx d_course_bowsers_castle_dl_40F0[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_8FA0), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9290), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9328), @@ -1921,11 +2126,19 @@ Gfx d_course_bowsers_castle_dl_40F0[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_2128), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2598), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2610), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2698), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2708), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_56F0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5678), gsSPDisplayList(d_course_bowsers_castle_packed_dl_55E8), @@ -1941,8 +2154,12 @@ Gfx d_course_bowsers_castle_dl_40F0[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7AD8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7B50), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7BB8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7C30), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_76C0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7898), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7908), @@ -1953,16 +2170,28 @@ Gfx d_course_bowsers_castle_dl_40F0[] = { Gfx d_course_bowsers_castle_dl_4278[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2128), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2128), + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2598), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2610), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2698), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2708), gsSPDisplayList(d_course_bowsers_castle_packed_dl_56F0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5678), gsSPDisplayList(d_course_bowsers_castle_packed_dl_55E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5560), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7520), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7418), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7340), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7288), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_7180), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A10), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_7B50), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7C30), + gsSPDisplayList(d_course_bowsers_castle_packed_dl_7180), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A10), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_7B50), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_7C30), gsSPDisplayList(d_course_bowsers_castle_packed_dl_76C0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_77A0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7820), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7898), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7908), gsSPEndDisplayList(), @@ -1972,7 +2201,10 @@ Gfx d_course_bowsers_castle_dl_4358[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9328), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9438), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6A90), gsSPDisplayList(d_course_bowsers_castle_packed_dl_87E8), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_8BE0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), + gsSPDisplayList(d_course_bowsers_castle_packed_dl_8BE0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_20B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2128), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2290), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2770), @@ -2015,7 +2247,10 @@ Gfx d_course_bowsers_castle_dl_4488[] = { }; Gfx d_course_bowsers_castle_dl_45D8[] = { - gsSPDisplayList(d_course_bowsers_castle_packed_dl_8FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_8FA0), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9290), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9328), gsSPDisplayList(d_course_bowsers_castle_packed_dl_93A0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9438), gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6A90), @@ -2025,16 +2260,32 @@ Gfx d_course_bowsers_castle_dl_45D8[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8DA8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), gsSPDisplayList(d_course_bowsers_castle_packed_dl_23E0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_20B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2128), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_2598), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2610), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_2698), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2708), + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2598), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2610), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2698), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2708), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_56F0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_55E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5560), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7038), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7418), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7340), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7288), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7180), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A10), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7AD8), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_7BB8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7C30), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_7BB8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_7C30), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_7898), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7908), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7F20), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7F98), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8008), gsSPEndDisplayList(), @@ -2043,10 +2294,16 @@ Gfx d_course_bowsers_castle_dl_45D8[] = { Gfx d_course_bowsers_castle_dl_4748[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2128), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2598), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2610), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2698), @@ -2059,8 +2316,12 @@ Gfx d_course_bowsers_castle_dl_4748[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_7340), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7288), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7180), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A10), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7B50), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_76C0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7820), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7898), @@ -2075,14 +2336,22 @@ Gfx d_course_bowsers_castle_dl_4820[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9328), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9438), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_6A90), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_94D8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_84A8), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_87E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8BE0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_8DA8), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), gsSPDisplayList(d_course_bowsers_castle_packed_dl_20B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2128), @@ -2208,7 +2477,9 @@ Gfx d_course_bowsers_castle_dl_4C00[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_7288), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7180), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A10), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7B50), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_76C0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7820), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7898), @@ -2222,14 +2493,34 @@ Gfx d_course_bowsers_castle_dl_4C00[] = { Gfx d_course_bowsers_castle_dl_4CE8[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9328), gsSPDisplayList(d_course_bowsers_castle_packed_dl_9438), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_6A90), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_94D8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_84A8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_6A90), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_94D8), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_84A8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_87E8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8BE0), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8D10), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_8DA8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_24B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_20B0), + gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_8D10), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_8DA8), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_24B0), +#endif + gsSPDisplayList(d_course_bowsers_castle_packed_dl_20B0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), - gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), gsSPDisplayList(d_course_bowsers_castle_packed_dl_27E8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_bowsers_castle_packed_dl_27E8), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2598), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2610), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2698), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2708), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5448), gsSPDisplayList(d_course_bowsers_castle_packed_dl_53E0), @@ -2255,7 +2546,9 @@ Gfx d_course_bowsers_castle_dl_4EA8[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_9290), gsSPDisplayList(d_course_bowsers_castle_packed_dl_93A0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), +#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_94D8), +#endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_84A8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8D10), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8DA8), @@ -2283,711 +2576,17 @@ Gfx d_course_bowsers_castle_dl_4EA8[] = { }; // 0x4F90 +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_bowsers_castle_unknown_path[] = { - { 2, 0, -172, 0 }, { 2, 0, -197, 0 }, { -2, 0, -691, 0 }, { -1, 0, -1087, 0 }, { 4, 0, -1519, 0 }, - { 88, 0, -1645, 0 }, { 228, 0, -1743, 0 }, { 571, 0, -1749, 0 }, { 999, 0, -1749, 0 }, { 1201, 0, -1747, 0 }, - { 1262, 0, -1759, 0 }, { 1274, 0, -1797, 0 }, { 1277, 0, -2193, 0 }, { 1272, 0, -2487, 0 }, { 1281, 0, -2631, 0 }, - { 1351, 0, -2653, 0 }, { 1752, 0, -2642, 0 }, { 2350, 0, -2640, 0 }, { 2470, 0, -2621, 0 }, { 2490, 0, -2580, 0 }, - { 2491, 0, -2372, 0 }, { 2491, 0, -1970, 0 }, { 2491, 0, -1759, 0 }, { 2471, 0, -1705, 0 }, { 2407, 0, -1681, 0 }, - { 2115, 0, -1680, 0 }, { 1814, 0, -1681, 0 }, { 1752, 0, -1678, 0 }, { 1718, 0, -1661, 0 }, { 1704, 0, -1599, 0 }, - { 1705, 0, -1403, 0 }, { 1704, 0, -1250, 0 }, { 1704, 0, -1099, 0 }, { 1706, 0, -904, 0 }, { 1701, 0, -850, 0 }, - { 1679, 0, -811, 0 }, { 1480, 0, -799, 0 }, { 1133, 0, -802, 0 }, { 945, 0, -752, 0 }, { 907, 0, -637, 0 }, - { 957, 0, -493, 0 }, { 1080, 0, -445, 0 }, { 1481, 0, -445, 0 }, { 1871, 0, -437, 0 }, { 1914, 0, -391, 0 }, - { 1920, 0, -351, 0 }, { 1925, 0, -102, 0 }, { 1919, 0, 203, 0 }, { 1919, 0, 557, 0 }, { 1919, 0, 644, 0 }, - { 1962, 0, 716, 0 }, { 2028, 0, 761, 0 }, { 2112, 0, 757, 0 }, { 2184, 0, 720, 0 }, { 2227, 0, 649, 0 }, - { 2227, 0, 567, 0 }, { 2191, 0, 490, 0 }, { 2117, 0, 449, 0 }, { 2020, 0, 454, 0 }, { 1828, 0, 456, 0 }, - { 1351, 0, 456, 0 }, { 949, 0, 447, 0 }, { 749, 0, 486, 0 }, { 525, 0, 554, 0 }, { 353, 0, 556, 0 }, - { 159, 0, 555, 0 }, { 23, 0, 488, 0 }, { -18, 0, 377, 0 }, { -6, 0, 209, 0 }, { 4, 0, -95, 0 }, - { 3, 0, -144, 0 }, { -32768, 0, 0, 0 }, +#include "courses/bowsers_castle/d_course_bowsers_castle_unknown_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_bowsers_castle_track_path[] = { - { 2, 0, -184, 1 }, - { 1, 0, -204, 2 }, - { 1, 0, -224, 2 }, - { 1, 0, -244, 2 }, - { 1, 0, -264, 2 }, - { 1, 0, -284, 2 }, - { 1, 0, -304, 2 }, - { 0, 0, -324, 2 }, - { 0, 0, -344, 2 }, - { 0, 0, -364, 2 }, - { 0, 0, -384, 2 }, - { 0, 0, -404, 2 }, - { 0, 0, -424, 2 }, - { 0, 0, -444, 2 }, - { 0, 0, -464, 2 }, - { 0, 0, -484, 2 }, - { 0, 0, -504, 2 }, - { 0, 0, -524, 2 }, - { 0, 0, -544, 2 }, - { 0, 0, -564, 2 }, - { 0, 0, -584, 2 }, - { -1, 0, -604, 3 }, - { -1, 0, -624, 3 }, - { -1, 0, -644, 3 }, - { -1, 0, -664, 3 }, - { -1, 0, -684, 3 }, - { -1, 0, -704, 3 }, - { -1, 0, -724, 3 }, - { -1, 0, -744, 3 }, - { -1, 0, -764, 3 }, - { -1, 0, -784, 3 }, - { -1, 0, -804, 4 }, - { -1, 0, -824, 4 }, - { -1, 0, -844, 4 }, - { -1, 0, -864, 4 }, - { -1, 0, -884, 4 }, - { -1, 0, -904, 4 }, - { -1, 0, -924, 4 }, - { -1, 0, -944, 4 }, - { -1, 0, -964, 4 }, - { -1, 0, -985, 4 }, - { -1, 0, -1005, 5 }, - { 0, 0, -1025, 5 }, - { 0, 0, -1045, 5 }, - { 0, 0, -1065, 5 }, - { 0, 0, -1085, 5 }, - { 0, 0, -1105, 5 }, - { 0, 0, -1125, 5 }, - { 0, 0, -1145, 5 }, - { 0, 0, -1165, 5 }, - { 0, 0, -1185, 5 }, - { 0, 0, -1205, 5 }, - { 0, 0, -1225, 5 }, - { 0, 0, -1245, 5 }, - { 1, 0, -1265, 5 }, - { 1, 0, -1285, 5 }, - { 1, 0, -1305, 5 }, - { 1, 0, -1325, 5 }, - { 2, 0, -1345, 5 }, - { 3, 0, -1365, 5 }, - { 4, 0, -1385, 5 }, - { 5, 0, -1405, 5 }, - { 7, 0, -1425, 5 }, - { 9, 0, -1445, 5 }, - { 11, 0, -1464, 5 }, - { 14, 0, -1484, 5 }, - { 18, 0, -1504, 5 }, - { 22, 0, -1523, 5 }, - { 28, 0, -1543, 5 }, - { 35, 0, -1561, 5 }, - { 44, 0, -1579, 5 }, - { 55, 0, -1596, 5 }, - { 68, 0, -1611, 5 }, - { 81, 0, -1626, 5 }, - { 94, 0, -1641, 5 }, - { 109, 0, -1655, 5 }, - { 124, 0, -1668, 5 }, - { 140, 0, -1680, 5 }, - { 156, 0, -1692, 5 }, - { 173, 0, -1703, 5 }, - { 191, 0, -1712, 5 }, - { 209, 0, -1719, 5 }, - { 228, 0, -1725, 5 }, - { 248, 0, -1730, 5 }, - { 267, 0, -1734, 5 }, - { 287, 0, -1737, 5 }, - { 307, 0, -1740, 5 }, - { 327, 0, -1742, 5 }, - { 347, 0, -1743, 5 }, - { 367, 0, -1744, 5 }, - { 387, 0, -1745, 5 }, - { 407, 0, -1746, 5 }, - { 427, 0, -1746, 5 }, - { 447, 0, -1746, 5 }, - { 467, 0, -1747, 5 }, - { 487, 0, -1747, 5 }, - { 507, 0, -1747, 5 }, - { 527, 0, -1747, 5 }, - { 547, 0, -1747, 5 }, - { 567, 0, -1748, 5 }, - { 587, 0, -1748, 5 }, - { 607, 0, -1748, 6 }, - { 627, 0, -1748, 6 }, - { 647, 0, -1748, 6 }, - { 667, 0, -1748, 6 }, - { 687, 0, -1748, 6 }, - { 707, 0, -1748, 6 }, - { 727, 0, -1748, 6 }, - { 747, 0, -1748, 6 }, - { 767, 0, -1748, 6 }, - { 787, 0, -1749, 6 }, - { 807, 0, -1748, 6 }, - { 827, 0, -1748, 6 }, - { 847, 0, -1748, 6 }, - { 867, 0, -1748, 6 }, - { 887, 0, -1748, 6 }, - { 907, 0, -1748, 6 }, - { 927, 0, -1748, 6 }, - { 947, 0, -1748, 6 }, - { 967, 0, -1748, 6 }, - { 987, 0, -1748, 6 }, - { 1007, 0, -1748, 6 }, - { 1027, 0, -1748, 6 }, - { 1047, 0, -1748, 6 }, - { 1067, 0, -1748, 6 }, - { 1087, 0, -1748, 6 }, - { 1107, 0, -1747, 6 }, - { 1127, 0, -1747, 6 }, - { 1147, 0, -1747, 6 }, - { 1167, 0, -1748, 6 }, - { 1187, 0, -1748, 6 }, - { 1207, 0, -1750, 6 }, - { 1227, 0, -1752, 6 }, - { 1246, 0, -1757, 6 }, - { 1263, 0, -1768, 6 }, - { 1269, 0, -1787, 6 }, - { 1271, 0, -1807, 6 }, - { 1272, 0, -1827, 6 }, - { 1273, 0, -1847, 6 }, - { 1273, 0, -1867, 6 }, - { 1274, 0, -1887, 6 }, - { 1274, 0, -1907, 6 }, - { 1274, 0, -1927, 6 }, - { 1275, 0, -1947, 6 }, - { 1275, 0, -1967, 6 }, - { 1275, 0, -1987, 6 }, - { 1275, 0, -2007, 7 }, - { 1275, 0, -2027, 7 }, - { 1275, 0, -2047, 7 }, - { 1275, 0, -2067, 7 }, - { 1275, 0, -2087, 7 }, - { 1276, 0, -2107, 7 }, - { 1276, 0, -2127, 7 }, - { 1276, 0, -2147, 7 }, - { 1276, 0, -2167, 7 }, - { 1275, 0, -2187, 7 }, - { 1275, 0, -2207, 7 }, - { 1275, 0, -2227, 7 }, - { 1275, 0, -2247, 7 }, - { 1275, 0, -2267, 7 }, - { 1275, 0, -2287, 7 }, - { 1274, 0, -2307, 7 }, - { 1274, 0, -2327, 7 }, - { 1274, 0, -2347, 7 }, - { 1274, 0, -2367, 7 }, - { 1273, 0, -2387, 7 }, - { 1273, 0, -2407, 7 }, - { 1273, 0, -2427, 7 }, - { 1273, 0, -2447, 7 }, - { 1273, 0, -2467, 7 }, - { 1273, 0, -2487, 7 }, - { 1274, 0, -2507, 8 }, - { 1275, 0, -2527, 8 }, - { 1275, 0, -2547, 8 }, - { 1277, 0, -2567, 8 }, - { 1279, 0, -2587, 8 }, - { 1285, 0, -2606, 8 }, - { 1293, 0, -2624, 8 }, - { 1308, 0, -2638, 8 }, - { 1327, 0, -2644, 8 }, - { 1347, 0, -2646, 8 }, - { 1366, 0, -2648, 8 }, - { 1386, 0, -2648, 8 }, - { 1406, 0, -2649, 8 }, - { 1427, 0, -2649, 8 }, - { 1447, 0, -2649, 8 }, - { 1467, 0, -2649, 8 }, - { 1487, 0, -2648, 8 }, - { 1507, 0, -2648, 8 }, - { 1527, 0, -2648, 8 }, - { 1547, 0, -2647, 8 }, - { 1567, 0, -2647, 8 }, - { 1587, 0, -2646, 8 }, - { 1607, 0, -2646, 8 }, - { 1627, 0, -2645, 8 }, - { 1647, 0, -2645, 8 }, - { 1667, 0, -2644, 8 }, - { 1687, 0, -2644, 8 }, - { 1707, 0, -2644, 8 }, - { 1727, 0, -2643, 8 }, - { 1747, 0, -2643, 8 }, - { 1767, 0, -2643, 8 }, - { 1787, 0, -2642, 8 }, - { 1807, 0, -2642, 8 }, - { 1827, 0, -2642, 8 }, - { 1847, 0, -2642, 8 }, - { 1867, 0, -2642, 8 }, - { 1887, 0, -2641, 8 }, - { 1907, 0, -2641, 8 }, - { 1927, 0, -2641, 8 }, - { 1947, 0, -2641, 8 }, - { 1967, 0, -2641, 8 }, - { 1987, 0, -2641, 8 }, - { 2007, 0, -2641, 8 }, - { 2027, 0, -2641, 8 }, - { 2047, 0, -2641, 8 }, - { 2067, 0, -2640, 8 }, - { 2087, 0, -2640, 8 }, - { 2107, 0, -2640, 8 }, - { 2127, 0, -2640, 8 }, - { 2147, 0, -2640, 8 }, - { 2167, 0, -2640, 8 }, - { 2187, 0, -2639, 8 }, - { 2207, 0, -2639, 8 }, - { 2227, 0, -2639, 8 }, - { 2247, 0, -2638, 8 }, - { 2267, 0, -2638, 8 }, - { 2287, 0, -2637, 8 }, - { 2307, 0, -2637, 8 }, - { 2327, 0, -2636, 8 }, - { 2347, 0, -2635, 8 }, - { 2367, 0, -2634, 8 }, - { 2387, 0, -2633, 8 }, - { 2407, 0, -2630, 8 }, - { 2426, 0, -2627, 9 }, - { 2446, 0, -2622, 9 }, - { 2464, 0, -2614, 9 }, - { 2479, 0, -2601, 9 }, - { 2484, 0, -2582, 9 }, - { 2487, 0, -2562, 9 }, - { 2488, 1, -2542, 9 }, - { 2489, 3, -2522, 9 }, - { 2490, 4, -2502, 9 }, - { 2490, 6, -2482, 9 }, - { 2490, 8, -2462, 9 }, - { 2490, 10, -2442, 9 }, - { 2490, 12, -2422, 9 }, - { 2490, 13, -2402, 9 }, - { 2490, 15, -2382, 9 }, - { 2490, 16, -2362, 9 }, - { 2490, 18, -2342, 9 }, - { 2490, 20, -2322, 9 }, - { 2490, 22, -2302, 9 }, - { 2490, 24, -2282, 9 }, - { 2490, 25, -2262, 9 }, - { 2490, 27, -2242, 9 }, - { 2490, 29, -2222, 9 }, - { 2490, 31, -2202, 9 }, - { 2490, 33, -2182, 9 }, - { 2490, 34, -2162, 9 }, - { 2491, 36, -2142, 9 }, - { 2491, 38, -2122, 9 }, - { 2491, 39, -2102, 9 }, - { 2491, 42, -2082, 9 }, - { 2491, 44, -2062, 9 }, - { 2490, 45, -2042, 9 }, - { 2490, 47, -2022, 9 }, - { 2491, 48, -2002, 9 }, - { 2490, 50, -1982, 9 }, - { 2491, 52, -1962, 9 }, - { 2491, 54, -1942, 9 }, - { 2491, 56, -1922, 9 }, - { 2491, 57, -1902, 9 }, - { 2491, 59, -1882, 9 }, - { 2490, 61, -1862, 9 }, - { 2490, 62, -1842, 9 }, - { 2490, 64, -1822, 9 }, - { 2489, 66, -1802, 9 }, - { 2488, 68, -1782, 9 }, - { 2486, 70, -1762, 9 }, - { 2483, 70, -1742, 9 }, - { 2477, 70, -1723, 9 }, - { 2464, 70, -1708, 9 }, - { 2448, 70, -1696, 9 }, - { 2429, 70, -1690, 9 }, - { 2409, 70, -1686, 10 }, - { 2389, 70, -1684, 10 }, - { 2369, 70, -1683, 10 }, - { 2349, 70, -1682, 10 }, - { 2329, 70, -1681, 10 }, - { 2309, 70, -1681, 10 }, - { 2289, 70, -1680, 10 }, - { 2269, 70, -1680, 10 }, - { 2249, 70, -1680, 10 }, - { 2229, 70, -1680, 10 }, - { 2209, 70, -1680, 10 }, - { 2189, 70, -1680, 10 }, - { 2169, 70, -1680, 10 }, - { 2149, 70, -1680, 10 }, - { 2129, 70, -1680, 10 }, - { 2109, 70, -1680, 10 }, - { 2089, 70, -1680, 10 }, - { 2069, 70, -1680, 10 }, - { 2049, 70, -1680, 10 }, - { 2029, 70, -1680, 10 }, - { 2009, 70, -1680, 10 }, - { 1989, 70, -1680, 10 }, - { 1969, 70, -1680, 10 }, - { 1949, 70, -1680, 10 }, - { 1929, 70, -1680, 10 }, - { 1909, 70, -1680, 10 }, - { 1889, 70, -1680, 10 }, - { 1869, 70, -1680, 10 }, - { 1849, 70, -1680, 10 }, - { 1829, 70, -1680, 10 }, - { 1809, 70, -1680, 10 }, - { 1789, 70, -1679, 10 }, - { 1769, 70, -1678, 10 }, - { 1749, 70, -1674, 11 }, - { 1731, 70, -1667, 11 }, - { 1718, 70, -1652, 11 }, - { 1711, 70, -1633, 11 }, - { 1708, 70, -1613, 11 }, - { 1706, 70, -1593, 11 }, - { 1705, 70, -1573, 11 }, - { 1704, 70, -1553, 11 }, - { 1704, 70, -1533, 11 }, - { 1704, 70, -1513, 11 }, - { 1704, 70, -1493, 11 }, - { 1704, 70, -1473, 11 }, - { 1704, 70, -1453, 11 }, - { 1704, 70, -1433, 11 }, - { 1704, 70, -1413, 11 }, - { 1704, 68, -1393, 12 }, - { 1704, 66, -1373, 12 }, - { 1704, 64, -1353, 12 }, - { 1704, 62, -1333, 12 }, - { 1704, 61, -1313, 12 }, - { 1704, 61, -1293, 12 }, - { 1704, 60, -1273, 12 }, - { 1704, 60, -1253, 12 }, - { 1704, 60, -1233, 12 }, - { 1704, 61, -1213, 12 }, - { 1704, 61, -1193, 12 }, - { 1704, 62, -1173, 12 }, - { 1704, 63, -1153, 12 }, - { 1704, 65, -1133, 12 }, - { 1704, 68, -1113, 12 }, - { 1704, 70, -1093, 13 }, - { 1704, 70, -1073, 13 }, - { 1704, 70, -1053, 13 }, - { 1704, 70, -1033, 13 }, - { 1704, 70, -1013, 13 }, - { 1705, 70, -993, 13 }, - { 1705, 70, -973, 13 }, - { 1705, 70, -953, 13 }, - { 1705, 70, -933, 13 }, - { 1705, 70, -913, 13 }, - { 1704, 70, -893, 14 }, - { 1703, 70, -873, 14 }, - { 1699, 70, -853, 14 }, - { 1692, 70, -835, 14 }, - { 1678, 70, -821, 14 }, - { 1659, 70, -815, 14 }, - { 1640, 70, -811, 14 }, - { 1620, 60, -808, 14 }, - { 1600, 60, -806, 14 }, - { 1580, 60, -805, 14 }, - { 1560, 50, -803, 14 }, - { 1540, 50, -803, 14 }, - { 1520, 40, -802, 14 }, - { 1500, 40, -801, 14 }, - { 1480, 40, -801, 14 }, - { 1460, 30, -800, 14 }, - { 1440, 30, -800, 14 }, - { 1420, 20, -800, 14 }, - { 1400, 20, -800, 14 }, - { 1380, 20, -800, 14 }, - { 1360, 10, -800, 14 }, - { 1340, 10, -800, 14 }, - { 1320, 0, -800, 14 }, - { 1300, 0, -800, 14 }, - { 1280, 0, -800, 14 }, - { 1260, 0, -800, 14 }, - { 1240, 0, -800, 14 }, - { 1220, 0, -799, 14 }, - { 1200, 0, -798, 14 }, - { 1180, 0, -797, 14 }, - { 1160, 0, -796, 14 }, - { 1140, 0, -794, 14 }, - { 1120, 0, -791, 14 }, - { 1100, 0, -789, 14 }, - { 1080, 0, -786, 14 }, - { 1061, 0, -782, 15 }, - { 1041, 0, -777, 15 }, - { 1022, 0, -772, 15 }, - { 1003, 0, -765, 15 }, - { 985, 0, -757, 15 }, - { 968, 0, -747, 15 }, - { 952, 0, -734, 15 }, - { 939, 0, -719, 15 }, - { 929, 0, -702, 15 }, - { 922, 0, -683, 15 }, - { 919, 0, -663, 15 }, - { 917, 0, -643, 15 }, - { 918, 0, -624, 15 }, - { 921, 0, -604, 15 }, - { 925, 0, -584, 15 }, - { 931, 0, -565, 15 }, - { 939, 0, -546, 15 }, - { 948, 0, -529, 15 }, - { 959, 0, -512, 15 }, - { 973, 0, -497, 15 }, - { 988, 0, -485, 15 }, - { 1005, 0, -474, 15 }, - { 1023, 0, -467, 15 }, - { 1043, 0, -461, 15 }, - { 1062, 0, -457, 15 }, - { 1082, 0, -454, 15 }, - { 1102, 0, -452, 15 }, - { 1122, 0, -450, 15 }, - { 1142, 0, -448, 15 }, - { 1162, 0, -447, 15 }, - { 1182, 0, -446, 15 }, - { 1202, 0, -446, 15 }, - { 1222, 0, -445, 15 }, - { 1242, 0, -445, 15 }, - { 1262, 0, -445, 15 }, - { 1282, 0, -444, 15 }, - { 1302, 0, -444, 15 }, - { 1322, 0, -444, 15 }, - { 1342, 0, -444, 15 }, - { 1362, 0, -444, 15 }, - { 1382, 0, -444, 15 }, - { 1402, 0, -444, 15 }, - { 1422, 0, -444, 15 }, - { 1442, 0, -444, 15 }, - { 1462, 0, -444, 15 }, - { 1482, 0, -443, 15 }, - { 1502, 0, -443, 15 }, - { 1522, 0, -443, 15 }, - { 1542, 0, -443, 15 }, - { 1562, 0, -442, 15 }, - { 1582, 0, -442, 15 }, - { 1602, 0, -442, 15 }, - { 1622, 0, -442, 15 }, - { 1642, 0, -441, 15 }, - { 1662, 0, -441, 15 }, - { 1682, 0, -440, 15 }, - { 1702, 0, -440, 15 }, - { 1722, 0, -439, 15 }, - { 1742, 0, -438, 15 }, - { 1762, 0, -437, 15 }, - { 1782, 0, -436, 15 }, - { 1802, 0, -434, 15 }, - { 1822, 0, -432, 15 }, - { 1842, 0, -430, 15 }, - { 1861, 0, -426, 15 }, - { 1881, 0, -420, 15 }, - { 1896, 0, -409, 15 }, - { 1908, 0, -392, 15 }, - { 1916, 0, -374, 15 }, - { 1918, 0, -354, 15 }, - { 1919, 0, -334, 15 }, - { 1920, 0, -314, 15 }, - { 1920, 0, -294, 15 }, - { 1921, 0, -274, 15 }, - { 1921, 0, -254, 15 }, - { 1922, 0, -234, 15 }, - { 1922, 0, -214, 16 }, - { 1923, 0, -194, 16 }, - { 1923, 0, -174, 16 }, - { 1923, 0, -154, 16 }, - { 1923, 0, -134, 16 }, - { 1923, 0, -114, 16 }, - { 1923, 0, -94, 16 }, - { 1923, 0, -74, 16 }, - { 1923, 0, -54, 17 }, - { 1923, 0, -34, 17 }, - { 1923, 0, -14, 17 }, - { 1922, 0, 5, 17 }, - { 1922, 0, 25, 17 }, - { 1922, 0, 45, 17 }, - { 1921, 0, 65, 17 }, - { 1921, 0, 85, 17 }, - { 1921, 0, 105, 18 }, - { 1920, 0, 125, 18 }, - { 1920, 0, 145, 18 }, - { 1920, 0, 165, 18 }, - { 1919, 0, 185, 18 }, - { 1919, 0, 205, 18 }, - { 1919, 0, 225, 18 }, - { 1919, 0, 245, 18 }, - { 1919, 0, 265, 18 }, - { 1919, 0, 285, 18 }, - { 1919, 0, 305, 18 }, - { 1919, 0, 325, 18 }, - { 1919, 0, 345, 18 }, - { 1919, 0, 365, 18 }, - { 1919, 0, 385, 18 }, - { 1919, 0, 405, 19 }, - { 1918, 1, 425, 19 }, - { 1918, 2, 445, 19 }, - { 1919, 3, 465, 19 }, - { 1919, 4, 485, 19 }, - { 1918, 5, 505, 19 }, - { 1919, 7, 525, 19 }, - { 1919, 8, 545, 19 }, - { 1919, 10, 565, 19 }, - { 1919, 11, 585, 19 }, - { 1919, 13, 605, 19 }, - { 1920, 15, 625, 19 }, - { 1925, 17, 645, 19 }, - { 1932, 20, 664, 19 }, - { 1941, 22, 681, 20 }, - { 1952, 24, 698, 20 }, - { 1965, 26, 713, 20 }, - { 1980, 28, 727, 20 }, - { 1996, 30, 739, 20 }, - { 2013, 32, 748, 20 }, - { 2032, 34, 755, 20 }, - { 2052, 36, 758, 20 }, - { 2072, 37, 758, 20 }, - { 2092, 40, 756, 20 }, - { 2111, 41, 752, 20 }, - { 2130, 44, 746, 20 }, - { 2148, 45, 738, 20 }, - { 2165, 48, 727, 20 }, - { 2181, 49, 714, 21 }, - { 2194, 51, 699, 21 }, - { 2206, 53, 683, 21 }, - { 2215, 55, 665, 21 }, - { 2221, 57, 646, 21 }, - { 2225, 60, 627, 21 }, - { 2226, 61, 607, 21 }, - { 2225, 63, 587, 21 }, - { 2222, 64, 567, 21 }, - { 2217, 67, 548, 21 }, - { 2209, 69, 529, 21 }, - { 2200, 71, 512, 21 }, - { 2187, 72, 496, 21 }, - { 2173, 74, 482, 22 }, - { 2156, 75, 471, 22 }, - { 2138, 78, 462, 22 }, - { 2119, 79, 456, 22 }, - { 2100, 81, 452, 22 }, - { 2080, 82, 451, 22 }, - { 2060, 83, 451, 22 }, - { 2040, 85, 452, 22 }, - { 2020, 86, 453, 22 }, - { 2000, 87, 453, 22 }, - { 1980, 89, 454, 22 }, - { 1960, 90, 454, 23 }, - { 1940, 91, 454, 23 }, - { 1920, 93, 455, 23 }, - { 1900, 93, 455, 23 }, - { 1880, 94, 455, 23 }, - { 1860, 95, 455, 23 }, - { 1840, 96, 455, 23 }, - { 1820, 97, 455, 23 }, - { 1800, 97, 455, 23 }, - { 1780, 98, 455, 23 }, - { 1760, 98, 455, 23 }, - { 1740, 98, 455, 23 }, - { 1720, 98, 455, 23 }, - { 1700, 98, 455, 23 }, - { 1680, 98, 455, 23 }, - { 1660, 98, 455, 23 }, - { 1640, 98, 455, 23 }, - { 1620, 98, 455, 23 }, - { 1600, 98, 455, 23 }, - { 1580, 98, 455, 23 }, - { 1560, 98, 455, 23 }, - { 1540, 88, 455, 24 }, - { 1520, 78, 455, 24 }, - { 1500, 68, 455, 24 }, - { 1479, 58, 455, 24 }, - { 1459, 48, 455, 24 }, - { 1439, 38, 455, 24 }, - { 1419, 33, 455, 24 }, - { 1399, 29, 455, 24 }, - { 1379, 25, 455, 24 }, - { 1359, 21, 454, 24 }, - { 1339, 18, 454, 24 }, - { 1319, 16, 454, 24 }, - { 1299, 14, 454, 24 }, - { 1279, 12, 453, 24 }, - { 1259, 10, 453, 24 }, - { 1239, 9, 453, 24 }, - { 1219, 8, 452, 24 }, - { 1199, 7, 452, 24 }, - { 1179, 6, 452, 24 }, - { 1159, 5, 451, 24 }, - { 1139, 4, 451, 24 }, - { 1119, 3, 450, 24 }, - { 1099, 2, 450, 24 }, - { 1079, 1, 450, 24 }, - { 1059, 0, 450, 24 }, - { 1039, 0, 450, 25 }, - { 1019, 0, 451, 25 }, - { 999, 0, 451, 25 }, - { 979, 0, 452, 25 }, - { 959, 0, 453, 25 }, - { 939, 0, 455, 25 }, - { 919, 1, 456, 25 }, - { 899, 2, 458, 25 }, - { 880, 3, 461, 25 }, - { 860, 4, 464, 25 }, - { 840, 5, 468, 25 }, - { 821, 7, 472, 25 }, - { 801, 9, 476, 25 }, - { 781, 11, 480, 25 }, - { 762, 13, 485, 25 }, - { 743, 15, 490, 25 }, - { 723, 17, 495, 25 }, - { 704, 19, 500, 25 }, - { 685, 21, 505, 25 }, - { 665, 23, 511, 25 }, - { 646, 23, 517, 25 }, - { 627, 23, 522, 25 }, - { 608, 23, 528, 25 }, - { 588, 23, 533, 25 }, - { 569, 13, 538, 26 }, - { 549, 3, 542, 26 }, - { 530, 0, 545, 26 }, - { 510, 0, 549, 26 }, - { 490, 0, 551, 26 }, - { 470, 0, 553, 26 }, - { 450, 0, 554, 26 }, - { 430, 0, 555, 26 }, - { 410, 0, 555, 26 }, - { 390, 0, 555, 26 }, - { 370, 0, 555, 26 }, - { 350, 0, 555, 26 }, - { 330, 0, 555, 26 }, - { 310, 0, 555, 26 }, - { 290, 0, 555, 26 }, - { 270, 0, 555, 26 }, - { 250, 0, 555, 26 }, - { 230, 0, 554, 27 }, - { 210, 0, 553, 27 }, - { 190, 0, 550, 27 }, - { 171, 0, 547, 27 }, - { 151, 0, 543, 27 }, - { 132, 0, 537, 27 }, - { 113, 0, 531, 27 }, - { 94, 0, 523, 27 }, - { 77, 0, 514, 27 }, - { 60, 0, 503, 27 }, - { 44, 0, 491, 27 }, - { 30, 0, 477, 27 }, - { 17, 0, 461, 27 }, - { 7, 0, 444, 27 }, - { 0, 0, 425, 27 }, - { -5, 0, 406, 27 }, - { -9, 0, 387, 27 }, - { -11, 0, 367, 27 }, - { -12, 0, 347, 27 }, - { -13, 0, 327, 27 }, - { -12, 0, 307, 27 }, - { -11, 0, 287, 27 }, - { -10, 0, 267, 27 }, - { -9, 0, 247, 27 }, - { -8, 0, 227, 27 }, - { -6, 0, 207, 27 }, - { -6, 0, 187, 1 }, - { -5, 0, 167, 1 }, - { -4, 0, 147, 1 }, - { -3, 0, 127, 1 }, - { -2, 0, 107, 1 }, - { -2, 0, 87, 1 }, - { -1, 0, 67, 1 }, - { 0, 0, 47, 1 }, - { 0, 0, 27, 1 }, - { 0, 0, 7, 1 }, - { 1, 0, -12, 1 }, - { 1, 0, -32, 1 }, - { 2, 0, -52, 1 }, - { 2, 0, -72, 1 }, - { 2, 0, -92, 1 }, - { 3, 0, -112, 1 }, - { 3, 0, -132, 1 }, - { 2, 0, -152, 1 }, - { 2, 0, -172, 1 }, - { -32768, -32768, -32768, 0 }, +#include "courses/bowsers_castle/d_course_bowsers_castle_track_path.inc.c" }; +#endif // 82DF40_06738 u8 d_course_bowsers_castle_thwomp_side[] = { @@ -3321,3 +2920,12 @@ TrackSections d_course_bowsers_castle_addr[] = { { d_course_bowsers_castle_packed_dl_83B0, RAMP, 255, 0x0000 }, { 0x00000000, 0, 0, 0x0000 }, }; + +#ifdef VERSION_JP /* VERSION_JP path order: JP puts the paths last */ +TrackPathPoint d_course_bowsers_castle_unknown_path[] = { +#include "courses/bowsers_castle/d_course_bowsers_castle_unknown_path.inc.c" +}; +TrackPathPoint d_course_bowsers_castle_track_path[] = { +#include "courses/bowsers_castle/d_course_bowsers_castle_track_path.inc.c" +}; +#endif diff --git a/courses/bowsers_castle/d_course_bowsers_castle_track_path.inc.c b/courses/bowsers_castle/d_course_bowsers_castle_track_path.inc.c new file mode 100644 index 0000000000..fd2fe060be --- /dev/null +++ b/courses/bowsers_castle/d_course_bowsers_castle_track_path.inc.c @@ -0,0 +1,685 @@ + { 2, 0, -184, 1 }, + { 1, 0, -204, 2 }, + { 1, 0, -224, 2 }, + { 1, 0, -244, 2 }, + { 1, 0, -264, 2 }, + { 1, 0, -284, 2 }, + { 1, 0, -304, 2 }, + { 0, 0, -324, 2 }, + { 0, 0, -344, 2 }, + { 0, 0, -364, 2 }, + { 0, 0, -384, 2 }, + { 0, 0, -404, 2 }, + { 0, 0, -424, 2 }, + { 0, 0, -444, 2 }, + { 0, 0, -464, 2 }, + { 0, 0, -484, 2 }, + { 0, 0, -504, 2 }, + { 0, 0, -524, 2 }, + { 0, 0, -544, 2 }, + { 0, 0, -564, 2 }, + { 0, 0, -584, 2 }, + { -1, 0, -604, 3 }, + { -1, 0, -624, 3 }, + { -1, 0, -644, 3 }, + { -1, 0, -664, 3 }, + { -1, 0, -684, 3 }, + { -1, 0, -704, 3 }, + { -1, 0, -724, 3 }, + { -1, 0, -744, 3 }, + { -1, 0, -764, 3 }, + { -1, 0, -784, 3 }, + { -1, 0, -804, 4 }, + { -1, 0, -824, 4 }, + { -1, 0, -844, 4 }, + { -1, 0, -864, 4 }, + { -1, 0, -884, 4 }, + { -1, 0, -904, 4 }, + { -1, 0, -924, 4 }, + { -1, 0, -944, 4 }, + { -1, 0, -964, 4 }, + { -1, 0, -985, 4 }, + { -1, 0, -1005, 5 }, + { 0, 0, -1025, 5 }, + { 0, 0, -1045, 5 }, + { 0, 0, -1065, 5 }, + { 0, 0, -1085, 5 }, + { 0, 0, -1105, 5 }, + { 0, 0, -1125, 5 }, + { 0, 0, -1145, 5 }, + { 0, 0, -1165, 5 }, + { 0, 0, -1185, 5 }, + { 0, 0, -1205, 5 }, + { 0, 0, -1225, 5 }, + { 0, 0, -1245, 5 }, + { 1, 0, -1265, 5 }, + { 1, 0, -1285, 5 }, + { 1, 0, -1305, 5 }, + { 1, 0, -1325, 5 }, + { 2, 0, -1345, 5 }, + { 3, 0, -1365, 5 }, + { 4, 0, -1385, 5 }, + { 5, 0, -1405, 5 }, + { 7, 0, -1425, 5 }, + { 9, 0, -1445, 5 }, + { 11, 0, -1464, 5 }, + { 14, 0, -1484, 5 }, + { 18, 0, -1504, 5 }, + { 22, 0, -1523, 5 }, + { 28, 0, -1543, 5 }, + { 35, 0, -1561, 5 }, + { 44, 0, -1579, 5 }, + { 55, 0, -1596, 5 }, + { 68, 0, -1611, 5 }, + { 81, 0, -1626, 5 }, + { 94, 0, -1641, 5 }, + { 109, 0, -1655, 5 }, + { 124, 0, -1668, 5 }, + { 140, 0, -1680, 5 }, + { 156, 0, -1692, 5 }, + { 173, 0, -1703, 5 }, + { 191, 0, -1712, 5 }, + { 209, 0, -1719, 5 }, + { 228, 0, -1725, 5 }, + { 248, 0, -1730, 5 }, + { 267, 0, -1734, 5 }, + { 287, 0, -1737, 5 }, + { 307, 0, -1740, 5 }, + { 327, 0, -1742, 5 }, + { 347, 0, -1743, 5 }, + { 367, 0, -1744, 5 }, + { 387, 0, -1745, 5 }, + { 407, 0, -1746, 5 }, + { 427, 0, -1746, 5 }, + { 447, 0, -1746, 5 }, + { 467, 0, -1747, 5 }, + { 487, 0, -1747, 5 }, + { 507, 0, -1747, 5 }, + { 527, 0, -1747, 5 }, + { 547, 0, -1747, 5 }, + { 567, 0, -1748, 5 }, + { 587, 0, -1748, 5 }, + { 607, 0, -1748, 6 }, + { 627, 0, -1748, 6 }, + { 647, 0, -1748, 6 }, + { 667, 0, -1748, 6 }, + { 687, 0, -1748, 6 }, + { 707, 0, -1748, 6 }, + { 727, 0, -1748, 6 }, + { 747, 0, -1748, 6 }, + { 767, 0, -1748, 6 }, + { 787, 0, -1749, 6 }, + { 807, 0, -1748, 6 }, + { 827, 0, -1748, 6 }, + { 847, 0, -1748, 6 }, + { 867, 0, -1748, 6 }, + { 887, 0, -1748, 6 }, + { 907, 0, -1748, 6 }, + { 927, 0, -1748, 6 }, + { 947, 0, -1748, 6 }, + { 967, 0, -1748, 6 }, + { 987, 0, -1748, 6 }, + { 1007, 0, -1748, 6 }, + { 1027, 0, -1748, 6 }, + { 1047, 0, -1748, 6 }, + { 1067, 0, -1748, 6 }, + { 1087, 0, -1748, 6 }, + { 1107, 0, -1747, 6 }, + { 1127, 0, -1747, 6 }, + { 1147, 0, -1747, 6 }, + { 1167, 0, -1748, 6 }, + { 1187, 0, -1748, 6 }, + { 1207, 0, -1750, 6 }, + { 1227, 0, -1752, 6 }, + { 1246, 0, -1757, 6 }, + { 1263, 0, -1768, 6 }, + { 1269, 0, -1787, 6 }, + { 1271, 0, -1807, 6 }, + { 1272, 0, -1827, 6 }, + { 1273, 0, -1847, 6 }, + { 1273, 0, -1867, 6 }, + { 1274, 0, -1887, 6 }, + { 1274, 0, -1907, 6 }, + { 1274, 0, -1927, 6 }, + { 1275, 0, -1947, 6 }, + { 1275, 0, -1967, 6 }, + { 1275, 0, -1987, 6 }, + { 1275, 0, -2007, 7 }, + { 1275, 0, -2027, 7 }, + { 1275, 0, -2047, 7 }, + { 1275, 0, -2067, 7 }, + { 1275, 0, -2087, 7 }, + { 1276, 0, -2107, 7 }, + { 1276, 0, -2127, 7 }, + { 1276, 0, -2147, 7 }, + { 1276, 0, -2167, 7 }, + { 1275, 0, -2187, 7 }, + { 1275, 0, -2207, 7 }, + { 1275, 0, -2227, 7 }, + { 1275, 0, -2247, 7 }, + { 1275, 0, -2267, 7 }, + { 1275, 0, -2287, 7 }, + { 1274, 0, -2307, 7 }, + { 1274, 0, -2327, 7 }, + { 1274, 0, -2347, 7 }, + { 1274, 0, -2367, 7 }, + { 1273, 0, -2387, 7 }, + { 1273, 0, -2407, 7 }, + { 1273, 0, -2427, 7 }, + { 1273, 0, -2447, 7 }, + { 1273, 0, -2467, 7 }, + { 1273, 0, -2487, 7 }, + { 1274, 0, -2507, 8 }, + { 1275, 0, -2527, 8 }, + { 1275, 0, -2547, 8 }, + { 1277, 0, -2567, 8 }, + { 1279, 0, -2587, 8 }, + { 1285, 0, -2606, 8 }, + { 1293, 0, -2624, 8 }, + { 1308, 0, -2638, 8 }, + { 1327, 0, -2644, 8 }, + { 1347, 0, -2646, 8 }, + { 1366, 0, -2648, 8 }, + { 1386, 0, -2648, 8 }, + { 1406, 0, -2649, 8 }, + { 1427, 0, -2649, 8 }, + { 1447, 0, -2649, 8 }, + { 1467, 0, -2649, 8 }, + { 1487, 0, -2648, 8 }, + { 1507, 0, -2648, 8 }, + { 1527, 0, -2648, 8 }, + { 1547, 0, -2647, 8 }, + { 1567, 0, -2647, 8 }, + { 1587, 0, -2646, 8 }, + { 1607, 0, -2646, 8 }, + { 1627, 0, -2645, 8 }, + { 1647, 0, -2645, 8 }, + { 1667, 0, -2644, 8 }, + { 1687, 0, -2644, 8 }, + { 1707, 0, -2644, 8 }, + { 1727, 0, -2643, 8 }, + { 1747, 0, -2643, 8 }, + { 1767, 0, -2643, 8 }, + { 1787, 0, -2642, 8 }, + { 1807, 0, -2642, 8 }, + { 1827, 0, -2642, 8 }, + { 1847, 0, -2642, 8 }, + { 1867, 0, -2642, 8 }, + { 1887, 0, -2641, 8 }, + { 1907, 0, -2641, 8 }, + { 1927, 0, -2641, 8 }, + { 1947, 0, -2641, 8 }, + { 1967, 0, -2641, 8 }, + { 1987, 0, -2641, 8 }, + { 2007, 0, -2641, 8 }, + { 2027, 0, -2641, 8 }, + { 2047, 0, -2641, 8 }, + { 2067, 0, -2640, 8 }, + { 2087, 0, -2640, 8 }, + { 2107, 0, -2640, 8 }, + { 2127, 0, -2640, 8 }, + { 2147, 0, -2640, 8 }, + { 2167, 0, -2640, 8 }, + { 2187, 0, -2639, 8 }, + { 2207, 0, -2639, 8 }, + { 2227, 0, -2639, 8 }, + { 2247, 0, -2638, 8 }, + { 2267, 0, -2638, 8 }, + { 2287, 0, -2637, 8 }, + { 2307, 0, -2637, 8 }, + { 2327, 0, -2636, 8 }, + { 2347, 0, -2635, 8 }, + { 2367, 0, -2634, 8 }, + { 2387, 0, -2633, 8 }, + { 2407, 0, -2630, 8 }, + { 2426, 0, -2627, 9 }, + { 2446, 0, -2622, 9 }, + { 2464, 0, -2614, 9 }, + { 2479, 0, -2601, 9 }, + { 2484, 0, -2582, 9 }, + { 2487, 0, -2562, 9 }, + { 2488, 1, -2542, 9 }, + { 2489, 3, -2522, 9 }, + { 2490, 4, -2502, 9 }, + { 2490, 6, -2482, 9 }, + { 2490, 8, -2462, 9 }, + { 2490, 10, -2442, 9 }, + { 2490, 12, -2422, 9 }, + { 2490, 13, -2402, 9 }, + { 2490, 15, -2382, 9 }, + { 2490, 16, -2362, 9 }, + { 2490, 18, -2342, 9 }, + { 2490, 20, -2322, 9 }, + { 2490, 22, -2302, 9 }, + { 2490, 24, -2282, 9 }, + { 2490, 25, -2262, 9 }, + { 2490, 27, -2242, 9 }, + { 2490, 29, -2222, 9 }, + { 2490, 31, -2202, 9 }, + { 2490, 33, -2182, 9 }, + { 2490, 34, -2162, 9 }, + { 2491, 36, -2142, 9 }, + { 2491, 38, -2122, 9 }, + { 2491, 39, -2102, 9 }, + { 2491, 42, -2082, 9 }, + { 2491, 44, -2062, 9 }, + { 2490, 45, -2042, 9 }, + { 2490, 47, -2022, 9 }, + { 2491, 48, -2002, 9 }, + { 2490, 50, -1982, 9 }, + { 2491, 52, -1962, 9 }, + { 2491, 54, -1942, 9 }, + { 2491, 56, -1922, 9 }, + { 2491, 57, -1902, 9 }, + { 2491, 59, -1882, 9 }, + { 2490, 61, -1862, 9 }, + { 2490, 62, -1842, 9 }, + { 2490, 64, -1822, 9 }, + { 2489, 66, -1802, 9 }, + { 2488, 68, -1782, 9 }, + { 2486, 70, -1762, 9 }, + { 2483, 70, -1742, 9 }, + { 2477, 70, -1723, 9 }, + { 2464, 70, -1708, 9 }, + { 2448, 70, -1696, 9 }, + { 2429, 70, -1690, 9 }, + { 2409, 70, -1686, 10 }, + { 2389, 70, -1684, 10 }, + { 2369, 70, -1683, 10 }, + { 2349, 70, -1682, 10 }, + { 2329, 70, -1681, 10 }, + { 2309, 70, -1681, 10 }, + { 2289, 70, -1680, 10 }, + { 2269, 70, -1680, 10 }, + { 2249, 70, -1680, 10 }, + { 2229, 70, -1680, 10 }, + { 2209, 70, -1680, 10 }, + { 2189, 70, -1680, 10 }, + { 2169, 70, -1680, 10 }, + { 2149, 70, -1680, 10 }, + { 2129, 70, -1680, 10 }, + { 2109, 70, -1680, 10 }, + { 2089, 70, -1680, 10 }, + { 2069, 70, -1680, 10 }, + { 2049, 70, -1680, 10 }, + { 2029, 70, -1680, 10 }, + { 2009, 70, -1680, 10 }, + { 1989, 70, -1680, 10 }, + { 1969, 70, -1680, 10 }, + { 1949, 70, -1680, 10 }, + { 1929, 70, -1680, 10 }, + { 1909, 70, -1680, 10 }, + { 1889, 70, -1680, 10 }, + { 1869, 70, -1680, 10 }, + { 1849, 70, -1680, 10 }, + { 1829, 70, -1680, 10 }, + { 1809, 70, -1680, 10 }, + { 1789, 70, -1679, 10 }, + { 1769, 70, -1678, 10 }, + { 1749, 70, -1674, 11 }, + { 1731, 70, -1667, 11 }, + { 1718, 70, -1652, 11 }, + { 1711, 70, -1633, 11 }, + { 1708, 70, -1613, 11 }, + { 1706, 70, -1593, 11 }, + { 1705, 70, -1573, 11 }, + { 1704, 70, -1553, 11 }, + { 1704, 70, -1533, 11 }, + { 1704, 70, -1513, 11 }, + { 1704, 70, -1493, 11 }, + { 1704, 70, -1473, 11 }, + { 1704, 70, -1453, 11 }, + { 1704, 70, -1433, 11 }, + { 1704, 70, -1413, 11 }, + { 1704, 68, -1393, 12 }, + { 1704, 66, -1373, 12 }, + { 1704, 64, -1353, 12 }, + { 1704, 62, -1333, 12 }, + { 1704, 61, -1313, 12 }, + { 1704, 61, -1293, 12 }, + { 1704, 60, -1273, 12 }, + { 1704, 60, -1253, 12 }, + { 1704, 60, -1233, 12 }, + { 1704, 61, -1213, 12 }, + { 1704, 61, -1193, 12 }, + { 1704, 62, -1173, 12 }, + { 1704, 63, -1153, 12 }, + { 1704, 65, -1133, 12 }, + { 1704, 68, -1113, 12 }, + { 1704, 70, -1093, 13 }, + { 1704, 70, -1073, 13 }, + { 1704, 70, -1053, 13 }, + { 1704, 70, -1033, 13 }, + { 1704, 70, -1013, 13 }, + { 1705, 70, -993, 13 }, + { 1705, 70, -973, 13 }, + { 1705, 70, -953, 13 }, + { 1705, 70, -933, 13 }, + { 1705, 70, -913, 13 }, + { 1704, 70, -893, 14 }, + { 1703, 70, -873, 14 }, + { 1699, 70, -853, 14 }, + { 1692, 70, -835, 14 }, + { 1678, 70, -821, 14 }, + { 1659, 70, -815, 14 }, + { 1640, 70, -811, 14 }, + { 1620, 60, -808, 14 }, + { 1600, 60, -806, 14 }, + { 1580, 60, -805, 14 }, + { 1560, 50, -803, 14 }, + { 1540, 50, -803, 14 }, + { 1520, 40, -802, 14 }, + { 1500, 40, -801, 14 }, + { 1480, 40, -801, 14 }, + { 1460, 30, -800, 14 }, + { 1440, 30, -800, 14 }, + { 1420, 20, -800, 14 }, + { 1400, 20, -800, 14 }, + { 1380, 20, -800, 14 }, + { 1360, 10, -800, 14 }, + { 1340, 10, -800, 14 }, + { 1320, 0, -800, 14 }, + { 1300, 0, -800, 14 }, + { 1280, 0, -800, 14 }, + { 1260, 0, -800, 14 }, + { 1240, 0, -800, 14 }, + { 1220, 0, -799, 14 }, + { 1200, 0, -798, 14 }, + { 1180, 0, -797, 14 }, + { 1160, 0, -796, 14 }, + { 1140, 0, -794, 14 }, + { 1120, 0, -791, 14 }, + { 1100, 0, -789, 14 }, + { 1080, 0, -786, 14 }, + { 1061, 0, -782, 15 }, + { 1041, 0, -777, 15 }, + { 1022, 0, -772, 15 }, + { 1003, 0, -765, 15 }, + { 985, 0, -757, 15 }, + { 968, 0, -747, 15 }, + { 952, 0, -734, 15 }, + { 939, 0, -719, 15 }, + { 929, 0, -702, 15 }, + { 922, 0, -683, 15 }, + { 919, 0, -663, 15 }, + { 917, 0, -643, 15 }, + { 918, 0, -624, 15 }, + { 921, 0, -604, 15 }, + { 925, 0, -584, 15 }, + { 931, 0, -565, 15 }, + { 939, 0, -546, 15 }, + { 948, 0, -529, 15 }, + { 959, 0, -512, 15 }, + { 973, 0, -497, 15 }, + { 988, 0, -485, 15 }, + { 1005, 0, -474, 15 }, + { 1023, 0, -467, 15 }, + { 1043, 0, -461, 15 }, + { 1062, 0, -457, 15 }, + { 1082, 0, -454, 15 }, + { 1102, 0, -452, 15 }, + { 1122, 0, -450, 15 }, + { 1142, 0, -448, 15 }, + { 1162, 0, -447, 15 }, + { 1182, 0, -446, 15 }, + { 1202, 0, -446, 15 }, + { 1222, 0, -445, 15 }, + { 1242, 0, -445, 15 }, + { 1262, 0, -445, 15 }, + { 1282, 0, -444, 15 }, + { 1302, 0, -444, 15 }, + { 1322, 0, -444, 15 }, + { 1342, 0, -444, 15 }, + { 1362, 0, -444, 15 }, + { 1382, 0, -444, 15 }, + { 1402, 0, -444, 15 }, + { 1422, 0, -444, 15 }, + { 1442, 0, -444, 15 }, + { 1462, 0, -444, 15 }, + { 1482, 0, -443, 15 }, + { 1502, 0, -443, 15 }, + { 1522, 0, -443, 15 }, + { 1542, 0, -443, 15 }, + { 1562, 0, -442, 15 }, + { 1582, 0, -442, 15 }, + { 1602, 0, -442, 15 }, + { 1622, 0, -442, 15 }, + { 1642, 0, -441, 15 }, + { 1662, 0, -441, 15 }, + { 1682, 0, -440, 15 }, + { 1702, 0, -440, 15 }, + { 1722, 0, -439, 15 }, + { 1742, 0, -438, 15 }, + { 1762, 0, -437, 15 }, + { 1782, 0, -436, 15 }, + { 1802, 0, -434, 15 }, + { 1822, 0, -432, 15 }, + { 1842, 0, -430, 15 }, + { 1861, 0, -426, 15 }, + { 1881, 0, -420, 15 }, + { 1896, 0, -409, 15 }, + { 1908, 0, -392, 15 }, + { 1916, 0, -374, 15 }, + { 1918, 0, -354, 15 }, + { 1919, 0, -334, 15 }, + { 1920, 0, -314, 15 }, + { 1920, 0, -294, 15 }, + { 1921, 0, -274, 15 }, + { 1921, 0, -254, 15 }, + { 1922, 0, -234, 15 }, + { 1922, 0, -214, 16 }, + { 1923, 0, -194, 16 }, + { 1923, 0, -174, 16 }, + { 1923, 0, -154, 16 }, + { 1923, 0, -134, 16 }, + { 1923, 0, -114, 16 }, + { 1923, 0, -94, 16 }, + { 1923, 0, -74, 16 }, + { 1923, 0, -54, 17 }, + { 1923, 0, -34, 17 }, + { 1923, 0, -14, 17 }, + { 1922, 0, 5, 17 }, + { 1922, 0, 25, 17 }, + { 1922, 0, 45, 17 }, + { 1921, 0, 65, 17 }, + { 1921, 0, 85, 17 }, + { 1921, 0, 105, 18 }, + { 1920, 0, 125, 18 }, + { 1920, 0, 145, 18 }, + { 1920, 0, 165, 18 }, + { 1919, 0, 185, 18 }, + { 1919, 0, 205, 18 }, + { 1919, 0, 225, 18 }, + { 1919, 0, 245, 18 }, + { 1919, 0, 265, 18 }, + { 1919, 0, 285, 18 }, + { 1919, 0, 305, 18 }, + { 1919, 0, 325, 18 }, + { 1919, 0, 345, 18 }, + { 1919, 0, 365, 18 }, + { 1919, 0, 385, 18 }, + { 1919, 0, 405, 19 }, + { 1918, 1, 425, 19 }, + { 1918, 2, 445, 19 }, + { 1919, 3, 465, 19 }, + { 1919, 4, 485, 19 }, + { 1918, 5, 505, 19 }, + { 1919, 7, 525, 19 }, + { 1919, 8, 545, 19 }, + { 1919, 10, 565, 19 }, + { 1919, 11, 585, 19 }, + { 1919, 13, 605, 19 }, + { 1920, 15, 625, 19 }, + { 1925, 17, 645, 19 }, + { 1932, 20, 664, 19 }, + { 1941, 22, 681, 20 }, + { 1952, 24, 698, 20 }, + { 1965, 26, 713, 20 }, + { 1980, 28, 727, 20 }, + { 1996, 30, 739, 20 }, + { 2013, 32, 748, 20 }, + { 2032, 34, 755, 20 }, + { 2052, 36, 758, 20 }, + { 2072, 37, 758, 20 }, + { 2092, 40, 756, 20 }, + { 2111, 41, 752, 20 }, + { 2130, 44, 746, 20 }, + { 2148, 45, 738, 20 }, + { 2165, 48, 727, 20 }, + { 2181, 49, 714, 21 }, + { 2194, 51, 699, 21 }, + { 2206, 53, 683, 21 }, + { 2215, 55, 665, 21 }, + { 2221, 57, 646, 21 }, + { 2225, 60, 627, 21 }, + { 2226, 61, 607, 21 }, + { 2225, 63, 587, 21 }, + { 2222, 64, 567, 21 }, + { 2217, 67, 548, 21 }, + { 2209, 69, 529, 21 }, + { 2200, 71, 512, 21 }, + { 2187, 72, 496, 21 }, + { 2173, 74, 482, 22 }, + { 2156, 75, 471, 22 }, + { 2138, 78, 462, 22 }, + { 2119, 79, 456, 22 }, + { 2100, 81, 452, 22 }, + { 2080, 82, 451, 22 }, + { 2060, 83, 451, 22 }, + { 2040, 85, 452, 22 }, + { 2020, 86, 453, 22 }, + { 2000, 87, 453, 22 }, + { 1980, 89, 454, 22 }, + { 1960, 90, 454, 23 }, + { 1940, 91, 454, 23 }, + { 1920, 93, 455, 23 }, + { 1900, 93, 455, 23 }, + { 1880, 94, 455, 23 }, + { 1860, 95, 455, 23 }, + { 1840, 96, 455, 23 }, + { 1820, 97, 455, 23 }, + { 1800, 97, 455, 23 }, + { 1780, 98, 455, 23 }, + { 1760, 98, 455, 23 }, + { 1740, 98, 455, 23 }, + { 1720, 98, 455, 23 }, + { 1700, 98, 455, 23 }, + { 1680, 98, 455, 23 }, + { 1660, 98, 455, 23 }, + { 1640, 98, 455, 23 }, + { 1620, 98, 455, 23 }, + { 1600, 98, 455, 23 }, + { 1580, 98, 455, 23 }, + { 1560, 98, 455, 23 }, + { 1540, 88, 455, 24 }, + { 1520, 78, 455, 24 }, + { 1500, 68, 455, 24 }, + { 1479, 58, 455, 24 }, + { 1459, 48, 455, 24 }, + { 1439, 38, 455, 24 }, + { 1419, 33, 455, 24 }, + { 1399, 29, 455, 24 }, + { 1379, 25, 455, 24 }, + { 1359, 21, 454, 24 }, + { 1339, 18, 454, 24 }, + { 1319, 16, 454, 24 }, + { 1299, 14, 454, 24 }, + { 1279, 12, 453, 24 }, + { 1259, 10, 453, 24 }, + { 1239, 9, 453, 24 }, + { 1219, 8, 452, 24 }, + { 1199, 7, 452, 24 }, + { 1179, 6, 452, 24 }, + { 1159, 5, 451, 24 }, + { 1139, 4, 451, 24 }, + { 1119, 3, 450, 24 }, + { 1099, 2, 450, 24 }, + { 1079, 1, 450, 24 }, + { 1059, 0, 450, 24 }, + { 1039, 0, 450, 25 }, + { 1019, 0, 451, 25 }, + { 999, 0, 451, 25 }, + { 979, 0, 452, 25 }, + { 959, 0, 453, 25 }, + { 939, 0, 455, 25 }, + { 919, 1, 456, 25 }, + { 899, 2, 458, 25 }, + { 880, 3, 461, 25 }, + { 860, 4, 464, 25 }, + { 840, 5, 468, 25 }, + { 821, 7, 472, 25 }, + { 801, 9, 476, 25 }, + { 781, 11, 480, 25 }, + { 762, 13, 485, 25 }, + { 743, 15, 490, 25 }, + { 723, 17, 495, 25 }, + { 704, 19, 500, 25 }, + { 685, 21, 505, 25 }, + { 665, 23, 511, 25 }, + { 646, 23, 517, 25 }, + { 627, 23, 522, 25 }, + { 608, 23, 528, 25 }, + { 588, 23, 533, 25 }, + { 569, 13, 538, 26 }, + { 549, 3, 542, 26 }, + { 530, 0, 545, 26 }, + { 510, 0, 549, 26 }, + { 490, 0, 551, 26 }, + { 470, 0, 553, 26 }, + { 450, 0, 554, 26 }, + { 430, 0, 555, 26 }, + { 410, 0, 555, 26 }, + { 390, 0, 555, 26 }, + { 370, 0, 555, 26 }, + { 350, 0, 555, 26 }, + { 330, 0, 555, 26 }, + { 310, 0, 555, 26 }, + { 290, 0, 555, 26 }, + { 270, 0, 555, 26 }, + { 250, 0, 555, 26 }, + { 230, 0, 554, 27 }, + { 210, 0, 553, 27 }, + { 190, 0, 550, 27 }, + { 171, 0, 547, 27 }, + { 151, 0, 543, 27 }, + { 132, 0, 537, 27 }, + { 113, 0, 531, 27 }, + { 94, 0, 523, 27 }, + { 77, 0, 514, 27 }, + { 60, 0, 503, 27 }, + { 44, 0, 491, 27 }, + { 30, 0, 477, 27 }, + { 17, 0, 461, 27 }, + { 7, 0, 444, 27 }, + { 0, 0, 425, 27 }, + { -5, 0, 406, 27 }, + { -9, 0, 387, 27 }, + { -11, 0, 367, 27 }, + { -12, 0, 347, 27 }, + { -13, 0, 327, 27 }, + { -12, 0, 307, 27 }, + { -11, 0, 287, 27 }, + { -10, 0, 267, 27 }, + { -9, 0, 247, 27 }, + { -8, 0, 227, 27 }, + { -6, 0, 207, 27 }, + { -6, 0, 187, 1 }, + { -5, 0, 167, 1 }, + { -4, 0, 147, 1 }, + { -3, 0, 127, 1 }, + { -2, 0, 107, 1 }, + { -2, 0, 87, 1 }, + { -1, 0, 67, 1 }, + { 0, 0, 47, 1 }, + { 0, 0, 27, 1 }, + { 0, 0, 7, 1 }, + { 1, 0, -12, 1 }, + { 1, 0, -32, 1 }, + { 2, 0, -52, 1 }, + { 2, 0, -72, 1 }, + { 2, 0, -92, 1 }, + { 3, 0, -112, 1 }, + { 3, 0, -132, 1 }, + { 2, 0, -152, 1 }, + { 2, 0, -172, 1 }, + { -32768, -32768, -32768, 0 }, diff --git a/courses/bowsers_castle/d_course_bowsers_castle_unknown_path.inc.c b/courses/bowsers_castle/d_course_bowsers_castle_unknown_path.inc.c new file mode 100644 index 0000000000..4bbb27e727 --- /dev/null +++ b/courses/bowsers_castle/d_course_bowsers_castle_unknown_path.inc.c @@ -0,0 +1,15 @@ + { 2, 0, -172, 0 }, { 2, 0, -197, 0 }, { -2, 0, -691, 0 }, { -1, 0, -1087, 0 }, { 4, 0, -1519, 0 }, + { 88, 0, -1645, 0 }, { 228, 0, -1743, 0 }, { 571, 0, -1749, 0 }, { 999, 0, -1749, 0 }, { 1201, 0, -1747, 0 }, + { 1262, 0, -1759, 0 }, { 1274, 0, -1797, 0 }, { 1277, 0, -2193, 0 }, { 1272, 0, -2487, 0 }, { 1281, 0, -2631, 0 }, + { 1351, 0, -2653, 0 }, { 1752, 0, -2642, 0 }, { 2350, 0, -2640, 0 }, { 2470, 0, -2621, 0 }, { 2490, 0, -2580, 0 }, + { 2491, 0, -2372, 0 }, { 2491, 0, -1970, 0 }, { 2491, 0, -1759, 0 }, { 2471, 0, -1705, 0 }, { 2407, 0, -1681, 0 }, + { 2115, 0, -1680, 0 }, { 1814, 0, -1681, 0 }, { 1752, 0, -1678, 0 }, { 1718, 0, -1661, 0 }, { 1704, 0, -1599, 0 }, + { 1705, 0, -1403, 0 }, { 1704, 0, -1250, 0 }, { 1704, 0, -1099, 0 }, { 1706, 0, -904, 0 }, { 1701, 0, -850, 0 }, + { 1679, 0, -811, 0 }, { 1480, 0, -799, 0 }, { 1133, 0, -802, 0 }, { 945, 0, -752, 0 }, { 907, 0, -637, 0 }, + { 957, 0, -493, 0 }, { 1080, 0, -445, 0 }, { 1481, 0, -445, 0 }, { 1871, 0, -437, 0 }, { 1914, 0, -391, 0 }, + { 1920, 0, -351, 0 }, { 1925, 0, -102, 0 }, { 1919, 0, 203, 0 }, { 1919, 0, 557, 0 }, { 1919, 0, 644, 0 }, + { 1962, 0, 716, 0 }, { 2028, 0, 761, 0 }, { 2112, 0, 757, 0 }, { 2184, 0, 720, 0 }, { 2227, 0, 649, 0 }, + { 2227, 0, 567, 0 }, { 2191, 0, 490, 0 }, { 2117, 0, 449, 0 }, { 2020, 0, 454, 0 }, { 1828, 0, 456, 0 }, + { 1351, 0, 456, 0 }, { 949, 0, 447, 0 }, { 749, 0, 486, 0 }, { 525, 0, 554, 0 }, { 353, 0, 556, 0 }, + { 159, 0, 555, 0 }, { 23, 0, 488, 0 }, { -18, 0, 377, 0 }, { -6, 0, 209, 0 }, { 4, 0, -95, 0 }, + { 3, 0, -144, 0 }, { -32768, 0, 0, 0 }, diff --git a/courses/choco_mountain/course_data.c b/courses/choco_mountain/course_data.c index 143dcc308b..f8c7ef4707 100644 --- a/courses/choco_mountain/course_data.c +++ b/courses/choco_mountain/course_data.c @@ -16,7 +16,9 @@ Gfx d_course_choco_mountain_dl_0[] = { gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), gsSPDisplayList(d_course_choco_mountain_packed_dl_49F0), gsSPDisplayList(d_course_choco_mountain_packed_dl_4AB0), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4B58), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_5070), gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, @@ -25,7 +27,9 @@ Gfx d_course_choco_mountain_dl_0[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_2530), gsSPDisplayList(d_course_choco_mountain_packed_dl_2458), gsSPDisplayList(d_course_choco_mountain_packed_dl_2380), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_2278), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_21D8), gsSPDisplayList(d_course_choco_mountain_packed_dl_18E8), gsSPDisplayList(d_course_choco_mountain_packed_dl_17E0), @@ -77,7 +81,9 @@ Gfx d_course_choco_mountain_dl_150[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_2530), gsSPDisplayList(d_course_choco_mountain_packed_dl_2458), gsSPDisplayList(d_course_choco_mountain_packed_dl_2380), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_2278), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_21D8), gsSPDisplayList(d_course_choco_mountain_packed_dl_1A48), gsSPDisplayList(d_course_choco_mountain_packed_dl_18E8), @@ -194,7 +200,9 @@ Gfx d_course_choco_mountain_dl_410[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_18E8), gsSPDisplayList(d_course_choco_mountain_packed_dl_17E0), gsSPDisplayList(d_course_choco_mountain_packed_dl_30A8), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_3410), +#endif gsSPEndDisplayList(), }; @@ -220,7 +228,9 @@ Gfx d_course_choco_mountain_dl_4D8[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_1740), gsSPDisplayList(d_course_choco_mountain_packed_dl_1670), gsSPDisplayList(d_course_choco_mountain_packed_dl_1AC8), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_30A8), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_3410), gsSPEndDisplayList(), }; @@ -244,7 +254,9 @@ Gfx d_course_choco_mountain_dl_588[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_21D8), gsSPDisplayList(d_course_choco_mountain_packed_dl_2600), gsSPDisplayList(d_course_choco_mountain_packed_dl_29E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_DD0), +#endif gsSPEndDisplayList(), }; @@ -423,9 +435,15 @@ Gfx d_course_choco_mountain_dl_A28[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_4C08), gsSPDisplayList(d_course_choco_mountain_packed_dl_4CC8), gsSPDisplayList(d_course_choco_mountain_packed_dl_4970), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4618), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4690), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_46F0), +#endif gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), @@ -441,9 +459,15 @@ Gfx d_course_choco_mountain_dl_A28[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_26C0), gsSPDisplayList(d_course_choco_mountain_packed_dl_20F8), gsSPDisplayList(d_course_choco_mountain_packed_dl_1A48), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_9B0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_17E0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_AF8), +#endif gsSPEndDisplayList(), }; @@ -541,7 +565,9 @@ Gfx d_course_choco_mountain_dl_D30[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_4970), gsSPDisplayList(d_course_choco_mountain_packed_dl_4618), gsSPDisplayList(d_course_choco_mountain_packed_dl_4690), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_46F0), +#endif gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), @@ -556,7 +582,9 @@ Gfx d_course_choco_mountain_dl_D30[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_1988), gsSPDisplayList(d_course_choco_mountain_packed_dl_18E8), gsSPDisplayList(d_course_choco_mountain_packed_dl_17E0), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_AF8), +#endif gsSPEndDisplayList(), }; @@ -570,7 +598,9 @@ Gfx d_course_choco_mountain_dl_DF8[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_4970), gsSPDisplayList(d_course_choco_mountain_packed_dl_4618), gsSPDisplayList(d_course_choco_mountain_packed_dl_4690), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_46F0), +#endif gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), @@ -581,7 +611,9 @@ Gfx d_course_choco_mountain_dl_DF8[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_1A48), gsSPDisplayList(d_course_choco_mountain_packed_dl_1988), gsSPDisplayList(d_course_choco_mountain_packed_dl_17E0), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_AF8), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_30A8), gsSPEndDisplayList(), }; @@ -756,7 +788,9 @@ Gfx d_course_choco_mountain_dl_1280[] = { gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), gsSPDisplayList(d_course_choco_mountain_packed_dl_DD0), gsSPDisplayList(d_course_choco_mountain_packed_dl_2760), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_20F8), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_1A48), gsSPDisplayList(d_course_choco_mountain_packed_dl_1988), gsSPDisplayList(d_course_choco_mountain_packed_dl_18E8), @@ -781,7 +815,9 @@ Gfx d_course_choco_mountain_dl_1330[] = { gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_DD0), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_20F8), gsSPDisplayList(d_course_choco_mountain_packed_dl_1A48), gsSPDisplayList(d_course_choco_mountain_packed_dl_1988), @@ -851,7 +887,9 @@ Gfx d_course_choco_mountain_dl_1528[] = { gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 6, G_TX_NOLOD), gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4970), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_4618), gsSPDisplayList(d_course_choco_mountain_packed_dl_4690), gsSPDisplayList(d_course_choco_mountain_packed_dl_46F0), @@ -860,9 +898,13 @@ Gfx d_course_choco_mountain_dl_1528[] = { gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_DD0), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_2760), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_8F0), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_1A48), gsSPDisplayList(d_course_choco_mountain_packed_dl_1740), gsSPDisplayList(d_course_choco_mountain_packed_dl_1670), @@ -880,7 +922,9 @@ Gfx d_course_choco_mountain_dl_15E8[] = { gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 6, G_TX_NOLOD), gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4970), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_4618), gsSPDisplayList(d_course_choco_mountain_packed_dl_4690), gsSPDisplayList(d_course_choco_mountain_packed_dl_46F0), @@ -889,9 +933,15 @@ Gfx d_course_choco_mountain_dl_15E8[] = { gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_DD0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_8F0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_1A48), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_9B0), gsSPDisplayList(d_course_choco_mountain_packed_dl_1740), gsSPDisplayList(d_course_choco_mountain_packed_dl_1670), @@ -930,7 +980,9 @@ Gfx d_course_choco_mountain_dl_16B8[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_1AC8), gsSPDisplayList(d_course_choco_mountain_packed_dl_1FE8), gsSPDisplayList(d_course_choco_mountain_packed_dl_1E90), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_1C98), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_3410), gsSPDisplayList(d_course_choco_mountain_packed_dl_3390), gsSPEndDisplayList(), @@ -1291,10 +1343,14 @@ Gfx d_course_choco_mountain_dl_1FE0[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_2AE8), gsSPDisplayList(d_course_choco_mountain_packed_dl_38B8), gsSPDisplayList(d_course_choco_mountain_packed_dl_37B0), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_3708), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_3670), gsSPDisplayList(d_course_choco_mountain_packed_dl_35B0), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_3DD8), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_34E0), gsSPDisplayList(d_course_choco_mountain_packed_dl_2FE8), gsSPDisplayList(d_course_choco_mountain_packed_dl_2EE8), @@ -1311,7 +1367,9 @@ Gfx d_course_choco_mountain_dl_20C8[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_48E8), gsSPDisplayList(d_course_choco_mountain_packed_dl_4D90), gsSPDisplayList(d_course_choco_mountain_packed_dl_51D8), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5258), +#endif gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), @@ -1322,7 +1380,9 @@ Gfx d_course_choco_mountain_dl_20C8[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_37B0), gsSPDisplayList(d_course_choco_mountain_packed_dl_3708), gsSPDisplayList(d_course_choco_mountain_packed_dl_3670), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_35B0), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_2FE8), gsSPEndDisplayList(), }; @@ -1428,7 +1488,9 @@ Gfx d_course_choco_mountain_dl_23C8[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_4D90), gsSPDisplayList(d_course_choco_mountain_packed_dl_51D8), gsSPDisplayList(d_course_choco_mountain_packed_dl_5258), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), +#endif gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), @@ -1438,7 +1500,9 @@ Gfx d_course_choco_mountain_dl_23C8[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_37B0), gsSPDisplayList(d_course_choco_mountain_packed_dl_3708), gsSPDisplayList(d_course_choco_mountain_packed_dl_3670), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_35B0), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_2FE8), gsSPEndDisplayList(), }; @@ -1453,7 +1517,9 @@ Gfx d_course_choco_mountain_dl_2468[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_51D8), gsSPDisplayList(d_course_choco_mountain_packed_dl_5258), gsSPDisplayList(d_course_choco_mountain_packed_dl_52C8), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), gsSPDisplayList(d_course_choco_mountain_packed_dl_4EB0), gsDPTileSync(), @@ -1484,7 +1550,9 @@ Gfx d_course_choco_mountain_dl_2538[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_4D90), gsSPDisplayList(d_course_choco_mountain_packed_dl_51D8), gsSPDisplayList(d_course_choco_mountain_packed_dl_5258), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_4EB0), gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, @@ -1518,9 +1586,13 @@ Gfx d_course_choco_mountain_dl_2600[] = { gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_1538), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_38B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_F68), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_3708), gsSPDisplayList(d_course_choco_mountain_packed_dl_3670), gsSPDisplayList(d_course_choco_mountain_packed_dl_35B0), @@ -1546,19 +1618,27 @@ Gfx d_course_choco_mountain_dl_26D8[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_51D8), gsSPDisplayList(d_course_choco_mountain_packed_dl_5258), gsSPDisplayList(d_course_choco_mountain_packed_dl_52C8), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), +#endif gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_1538), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_F68), gsSPDisplayList(d_course_choco_mountain_packed_dl_3708), gsSPDisplayList(d_course_choco_mountain_packed_dl_3670), gsSPDisplayList(d_course_choco_mountain_packed_dl_35B0), gsSPDisplayList(d_course_choco_mountain_packed_dl_3998), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_34E0), +#endif gsSPEndDisplayList(), }; @@ -1572,8 +1652,12 @@ Gfx d_course_choco_mountain_dl_2780[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_5258), gsSPDisplayList(d_course_choco_mountain_packed_dl_52C8), gsSPDisplayList(d_course_choco_mountain_packed_dl_5338), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), +#endif gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), @@ -1601,8 +1685,12 @@ Gfx d_course_choco_mountain_dl_2840[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_51D8), gsSPDisplayList(d_course_choco_mountain_packed_dl_5258), gsSPDisplayList(d_course_choco_mountain_packed_dl_52C8), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), +#endif gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), @@ -1631,7 +1719,9 @@ Gfx d_course_choco_mountain_dl_2908[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_52C8), gsSPDisplayList(d_course_choco_mountain_packed_dl_5338), gsSPDisplayList(d_course_choco_mountain_packed_dl_53D8), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), +#endif gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), @@ -1658,9 +1748,15 @@ Gfx d_course_choco_mountain_dl_29B8[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_5258), gsSPDisplayList(d_course_choco_mountain_packed_dl_52C8), gsSPDisplayList(d_course_choco_mountain_packed_dl_5338), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_53D8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), +#endif gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), @@ -1672,10 +1768,16 @@ Gfx d_course_choco_mountain_dl_29B8[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_3998), gsSPDisplayList(d_course_choco_mountain_packed_dl_3EE8), gsSPDisplayList(d_course_choco_mountain_packed_dl_3DD8), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_3CF0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_1018), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_3A80), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_34E0), +#endif gsSPEndDisplayList(), }; @@ -1688,9 +1790,15 @@ Gfx d_course_choco_mountain_dl_2A88[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_5258), gsSPDisplayList(d_course_choco_mountain_packed_dl_52C8), gsSPDisplayList(d_course_choco_mountain_packed_dl_5338), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_53D8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), +#endif gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), @@ -1717,7 +1825,9 @@ Gfx d_course_choco_mountain_dl_2B38[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_52C8), gsSPDisplayList(d_course_choco_mountain_packed_dl_5338), gsSPDisplayList(d_course_choco_mountain_packed_dl_53D8), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), +#endif gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), @@ -1797,12 +1907,16 @@ Gfx d_course_choco_mountain_dl_2D50[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_52C8), gsSPDisplayList(d_course_choco_mountain_packed_dl_5338), gsSPDisplayList(d_course_choco_mountain_packed_dl_53D8), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), +#endif gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_3670), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_35B0), gsSPDisplayList(d_course_choco_mountain_packed_dl_3998), gsSPDisplayList(d_course_choco_mountain_packed_dl_3EE8), @@ -1902,7 +2016,9 @@ Gfx d_course_choco_mountain_dl_2FD0[] = { gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_3670), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_35B0), gsSPDisplayList(d_course_choco_mountain_packed_dl_3998), gsSPDisplayList(d_course_choco_mountain_packed_dl_3EE8), @@ -1919,7 +2035,9 @@ Gfx d_course_choco_mountain_dl_3070[] = { gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 6, G_TX_NOLOD), gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5258), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_52C8), gsSPDisplayList(d_course_choco_mountain_packed_dl_5338), gsSPDisplayList(d_course_choco_mountain_packed_dl_53D8), @@ -1928,7 +2046,9 @@ Gfx d_course_choco_mountain_dl_3070[] = { gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_3708), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_3670), gsSPDisplayList(d_course_choco_mountain_packed_dl_35B0), gsSPDisplayList(d_course_choco_mountain_packed_dl_3998), @@ -2040,12 +2160,16 @@ Gfx d_course_choco_mountain_dl_3368[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_53D8), gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4EB0), +#endif gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_1538), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_F68), gsSPDisplayList(d_course_choco_mountain_packed_dl_3708), gsSPDisplayList(d_course_choco_mountain_packed_dl_3670), @@ -2065,23 +2189,37 @@ Gfx d_course_choco_mountain_dl_3438[] = { gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 6, G_TX_NOLOD), gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4D90), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_51D8), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_5258), gsSPDisplayList(d_course_choco_mountain_packed_dl_52C8), gsSPDisplayList(d_course_choco_mountain_packed_dl_5338), gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), gsSPDisplayList(d_course_choco_mountain_packed_dl_4EB0), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4F30), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4FC0), +#endif gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_2AE8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_38B8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_F68), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_3670), gsSPDisplayList(d_course_choco_mountain_packed_dl_35B0), gsSPDisplayList(d_course_choco_mountain_packed_dl_3998), @@ -2092,7 +2230,9 @@ Gfx d_course_choco_mountain_dl_3438[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_34E0), gsSPDisplayList(d_course_choco_mountain_packed_dl_2FE8), gsSPDisplayList(d_course_choco_mountain_packed_dl_2EE8), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_2E38), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_2D68), gsSPDisplayList(d_course_choco_mountain_packed_dl_2BD0), gsSPDisplayList(d_course_choco_mountain_packed_dl_32F0), @@ -2108,7 +2248,9 @@ Gfx d_course_choco_mountain_dl_3550[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_4D90), gsSPDisplayList(d_course_choco_mountain_packed_dl_51D8), gsSPDisplayList(d_course_choco_mountain_packed_dl_5258), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_52C8), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), gsSPDisplayList(d_course_choco_mountain_packed_dl_4EB0), @@ -2173,7 +2315,9 @@ Gfx d_course_choco_mountain_dl_36F0[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), gsSPDisplayList(d_course_choco_mountain_packed_dl_4EB0), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4FC0), +#endif gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), @@ -2200,11 +2344,19 @@ Gfx d_course_choco_mountain_dl_37D0[] = { gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 6, G_TX_NOLOD), gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4D90), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_51D8), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_5258), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_52C8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), gsSPDisplayList(d_course_choco_mountain_packed_dl_4EB0), gsSPDisplayList(d_course_choco_mountain_packed_dl_4F30), @@ -2214,10 +2366,18 @@ Gfx d_course_choco_mountain_dl_37D0[] = { G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), gsSPDisplayList(d_course_choco_mountain_packed_dl_17E0), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_2AE8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_38B8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_F68), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_3670), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_35B0), gsSPDisplayList(d_course_choco_mountain_packed_dl_3DD8), gsSPDisplayList(d_course_choco_mountain_packed_dl_1100), @@ -2254,7 +2414,9 @@ Gfx d_course_choco_mountain_dl_38E8[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_37B0), gsSPDisplayList(d_course_choco_mountain_packed_dl_3708), gsSPDisplayList(d_course_choco_mountain_packed_dl_3670), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_35B0), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_34E0), gsSPDisplayList(d_course_choco_mountain_packed_dl_2FE8), gsSPDisplayList(d_course_choco_mountain_packed_dl_2EE8), @@ -2271,8 +2433,12 @@ Gfx d_course_choco_mountain_dl_39A8[] = { gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), gsSPDisplayList(d_course_choco_mountain_packed_dl_51D8), gsSPDisplayList(d_course_choco_mountain_packed_dl_5258), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_52C8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), gsSPDisplayList(d_course_choco_mountain_packed_dl_4EB0), gsSPDisplayList(d_course_choco_mountain_packed_dl_4F30), @@ -2544,7 +2710,9 @@ Gfx d_course_choco_mountain_dl_4090[] = { gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), gsSPDisplayList(d_course_choco_mountain_packed_dl_2530), gsSPDisplayList(d_course_choco_mountain_packed_dl_2380), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_17E0), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_F68), gsSPDisplayList(d_course_choco_mountain_packed_dl_2E38), gsSPDisplayList(d_course_choco_mountain_packed_dl_2D68), @@ -2622,7 +2790,9 @@ Gfx d_course_choco_mountain_dl_42C8[] = { G_TX_NOMIRROR | G_TX_WRAP, 6, G_TX_NOLOD), gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), gsSPDisplayList(d_course_choco_mountain_packed_dl_49F0), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4AB0), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_4EB0), gsSPDisplayList(d_course_choco_mountain_packed_dl_4F30), gsSPDisplayList(d_course_choco_mountain_packed_dl_4FC0), @@ -2659,7 +2829,9 @@ Gfx d_course_choco_mountain_dl_43C8[] = { G_TX_NOMIRROR | G_TX_WRAP, 6, G_TX_NOLOD), gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), gsSPDisplayList(d_course_choco_mountain_packed_dl_49F0), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4AB0), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_4F30), gsSPDisplayList(d_course_choco_mountain_packed_dl_4FC0), gsSPDisplayList(d_course_choco_mountain_packed_dl_5070), @@ -2669,7 +2841,9 @@ Gfx d_course_choco_mountain_dl_43C8[] = { gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), gsSPDisplayList(d_course_choco_mountain_packed_dl_2530), gsSPDisplayList(d_course_choco_mountain_packed_dl_2380), +#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_17E0), +#endif gsSPDisplayList(d_course_choco_mountain_packed_dl_1740), gsSPDisplayList(d_course_choco_mountain_packed_dl_F68), gsSPDisplayList(d_course_choco_mountain_packed_dl_2D68), @@ -2680,235 +2854,17 @@ Gfx d_course_choco_mountain_dl_43C8[] = { gsSPEndDisplayList(), }; +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_choco_mountain_unknown_path[] = { - { -7, 0, -699, 0 }, { -6, 0, -712, 0 }, { 8, 0, -903, 0 }, { 26, 0, -1074, 0 }, { 46, 0, -1140, 0 }, - { 80, 0, -1185, 0 }, { 134, 0, -1225, 0 }, { 343, 0, -1316, 0 }, { 408, 0, -1334, 0 }, { 462, 0, -1329, 0 }, - { 534, 0, -1295, 0 }, { 566, 0, -1269, 0 }, { 633, 0, -1202, 0 }, { 671, 0, -1170, 0 }, { 726, 0, -1144, 0 }, - { 779, 0, -1141, 0 }, { 875, 0, -1149, 0 }, { 1022, 0, -1166, 0 }, { 1079, 0, -1155, 0 }, { 1146, 0, -1134, 0 }, - { 1188, 0, -1099, 0 }, { 1246, 0, -1032, 0 }, { 1272, 0, -976, 0 }, { 1280, 0, -919, 0 }, { 1275, 0, -815, 0 }, - { 1258, 0, -761, 0 }, { 1221, 0, -702, 0 }, { 1170, 0, -660, 0 }, { 1120, 0, -636, 0 }, { 975, 0, -588, 0 }, - { 891, 0, -570, 0 }, { 674, 0, -536, 0 }, { 407, 0, -529, 0 }, { -208, 0, -533, 0 }, { -252, 0, -532, 0 }, - { -320, 0, -514, 0 }, { -508, 0, -463, 0 }, { -568, 0, -438, 0 }, { -617, 0, -375, 0 }, { -710, 0, -253, 0 }, - { -735, 0, -215, 0 }, { -750, 0, -175, 0 }, { -774, 0, -71, 0 }, { -791, 0, 3, 0 }, { -795, 0, 42, 0 }, - { -790, 0, 80, 0 }, { -775, 0, 117, 0 }, { -750, 0, 152, 0 }, { -722, 0, 182, 0 }, { -688, 0, 211, 0 }, - { -648, 0, 235, 0 }, { -615, 0, 279, 0 }, { -600, 0, 315, 0 }, { -589, 0, 349, 0 }, { -583, 0, 389, 0 }, - { -579, 0, 512, 0 }, { -577, 0, 555, 0 }, { -561, 0, 596, 0 }, { -539, 0, 636, 0 }, { -385, 0, 825, 0 }, - { -257, 0, 980, 0 }, { -226, 0, 1001, 0 }, { -192, 0, 1019, 0 }, { -157, 0, 1027, 0 }, { 10, 0, 1029, 0 }, - { 178, 0, 1027, 0 }, { 251, 0, 1028, 0 }, { 389, 0, 1039, 0 }, { 565, 0, 1042, 0 }, { 774, 0, 1023, 0 }, - { 978, 0, 992, 0 }, { 1159, 0, 942, 0 }, { 1453, 0, 801, 0 }, { 1679, 0, 655, 0 }, { 1821, 0, 487, 0 }, - { 1905, 0, 307, 0 }, { 1917, 0, 230, 0 }, { 1905, 0, 154, 0 }, { 1868, 0, 81, 0 }, { 1785, 0, 11, 0 }, - { 1696, 0, -11, 0 }, { 1593, 0, 1, 0 }, { 1517, 0, 54, 0 }, { 1461, 0, 132, 0 }, { 1444, 0, 211, 0 }, - { 1451, 0, 300, 0 }, { 1467, 0, 388, 0 }, { 1466, 0, 492, 0 }, { 1426, 0, 622, 0 }, { 1359, 0, 712, 0 }, - { 1237, 0, 792, 0 }, { 1042, 0, 880, 0 }, { 882, 0, 908, 0 }, { 695, 0, 922, 0 }, { 571, 0, 893, 0 }, - { 476, 0, 842, 0 }, { 408, 0, 782, 0 }, { 320, 0, 660, 0 }, { 235, 0, 539, 0 }, { 172, 0, 469, 0 }, - { 97, 0, 409, 0 }, { 48, 0, 371, 0 }, { 17, 0, 322, 0 }, { -4, 0, 263, 0 }, { -4, 0, 203, 0 }, - { 0, 0, 63, 0 }, { 6, 0, -132, 0 }, { 5, 0, -378, 0 }, { -5, 0, -630, 0 }, { -32768, 0, 0, 0 }, +#include "courses/choco_mountain/d_course_choco_mountain_unknown_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_choco_mountain_track_path[] = { - { -6, 40, -705, 1 }, { -5, 39, -725, 1 }, { -3, 37, -745, 1 }, - { -2, 34, -765, 1 }, { 0, 32, -785, 1 }, { 0, 30, -805, 1 }, - { 2, 27, -825, 1 }, { 3, 25, -845, 2 }, { 5, 23, -865, 2 }, - { 7, 21, -885, 2 }, { 8, 19, -905, 2 }, { 10, 16, -925, 2 }, - { 12, 14, -944, 2 }, { 14, 12, -964, 2 }, { 16, 10, -984, 2 }, - { 18, 8, -1004, 2 }, { 21, 5, -1024, 2 }, { 23, 3, -1044, 2 }, - { 26, 1, -1064, 2 }, { 30, 0, -1083, 2 }, { 34, 0, -1103, 2 }, - { 41, 0, -1122, 2 }, { 49, 0, -1140, 2 }, { 59, 0, -1157, 2 }, - { 72, 0, -1173, 2 }, { 86, 0, -1187, 2 }, { 101, 0, -1200, 2 }, - { 117, 0, -1212, 2 }, { 135, 0, -1221, 2 }, { 152, 0, -1231, 2 }, - { 170, 0, -1239, 2 }, { 189, 0, -1248, 2 }, { 207, 0, -1256, 2 }, - { 225, 0, -1264, 2 }, { 243, 0, -1272, 3 }, { 262, 0, -1280, 3 }, - { 280, 0, -1288, 3 }, { 299, 0, -1296, 3 }, { 317, 0, -1303, 3 }, - { 336, 0, -1311, 3 }, { 355, 0, -1318, 3 }, { 374, 0, -1324, 3 }, - { 393, 0, -1329, 3 }, { 413, 0, -1331, 3 }, { 433, 0, -1331, 3 }, - { 453, 0, -1328, 3 }, { 472, 0, -1322, 3 }, { 490, 0, -1315, 3 }, - { 508, 0, -1306, 3 }, { 526, 0, -1297, 3 }, { 543, 0, -1286, 3 }, - { 559, 0, -1274, 3 }, { 573, 0, -1260, 3 }, { 588, 0, -1246, 3 }, - { 602, 0, -1232, 3 }, { 616, 0, -1218, 3 }, { 631, 0, -1204, 3 }, - { 645, 0, -1191, 3 }, { 661, 0, -1178, 3 }, { 678, 0, -1167, 3 }, - { 695, 0, -1158, 4 }, { 714, 0, -1150, 4 }, { 733, 0, -1145, 4 }, - { 753, 0, -1142, 4 }, { 773, 0, -1142, 4 }, { 793, 0, -1142, 4 }, - { 813, 0, -1143, 4 }, { 833, 0, -1145, 4 }, { 853, 0, -1147, 4 }, - { 873, 0, -1149, 4 }, { 892, 0, -1151, 4 }, { 912, 0, -1153, 4 }, - { 932, 0, -1155, 4 }, { 952, 0, -1157, 4 }, { 972, 0, -1160, 4 }, - { 992, 0, -1161, 4 }, { 1012, 0, -1162, 4 }, { 1032, 0, -1162, 4 }, - { 1052, 0, -1160, 4 }, { 1071, 0, -1155, 4 }, { 1091, 0, -1150, 4 }, - { 1110, 0, -1145, 4 }, { 1129, 0, -1138, 4 }, { 1147, 0, -1129, 4 }, - { 1164, 0, -1118, 4 }, { 1179, 0, -1105, 4 }, { 1193, 0, -1091, 4 }, - { 1206, 0, -1076, 4 }, { 1220, 0, -1061, 4 }, { 1232, 0, -1046, 4 }, - { 1244, 0, -1029, 5 }, { 1254, 0, -1012, 5 }, { 1263, 0, -994, 5 }, - { 1269, 0, -975, 5 }, { 1274, 0, -956, 5 }, { 1277, 0, -936, 5 }, - { 1278, 0, -916, 5 }, { 1278, 0, -896, 5 }, { 1277, 0, -876, 5 }, - { 1276, 0, -856, 5 }, { 1275, 0, -836, 5 }, { 1272, 0, -816, 5 }, - { 1269, 0, -797, 5 }, { 1263, 0, -778, 5 }, { 1255, 0, -759, 5 }, - { 1245, 0, -741, 5 }, { 1235, 0, -724, 5 }, { 1223, 0, -708, 5 }, - { 1209, 0, -694, 5 }, { 1195, 0, -680, 5 }, { 1179, 0, -668, 5 }, - { 1162, 0, -657, 5 }, { 1144, 0, -647, 5 }, { 1126, 0, -640, 5 }, - { 1107, 0, -632, 6 }, { 1088, 0, -626, 6 }, { 1070, 0, -619, 6 }, - { 1051, 0, -613, 6 }, { 1032, 0, -606, 6 }, { 1012, 0, -600, 6 }, - { 993, 0, -595, 6 }, { 974, 0, -589, 6 }, { 955, 0, -584, 6 }, - { 935, 0, -579, 6 }, { 916, 0, -575, 6 }, { 896, 0, -571, 6 }, - { 876, 0, -568, 6 }, { 857, -2, -565, 6 }, { 837, -3, -561, 6 }, - { 817, -5, -558, 6 }, { 797, -6, -555, 6 }, { 778, -7, -552, 6 }, - { 758, -9, -549, 6 }, { 738, -10, -546, 6 }, { 718, -11, -544, 6 }, - { 698, -13, -542, 6 }, { 678, -14, -540, 6 }, { 658, -16, -538, 6 }, - { 638, -17, -537, 6 }, { 618, -18, -535, 6 }, { 598, -20, -534, 7 }, - { 578, -21, -533, 7 }, { 558, -23, -533, 7 }, { 538, -25, -532, 7 }, - { 518, -26, -531, 7 }, { 498, -28, -531, 7 }, { 478, -29, -531, 7 }, - { 458, -31, -531, 7 }, { 438, -32, -530, 7 }, { 418, -34, -530, 7 }, - { 398, -35, -530, 7 }, { 378, -36, -530, 7 }, { 358, -38, -530, 7 }, - { 338, -39, -530, 7 }, { 318, -41, -530, 7 }, { 298, -42, -530, 7 }, - { 278, -44, -530, 7 }, { 258, -46, -530, 7 }, { 238, -47, -530, 7 }, - { 218, -49, -530, 7 }, { 198, -50, -530, 8 }, { 178, -50, -530, 8 }, - { 158, -50, -530, 8 }, { 138, -50, -530, 8 }, { 118, -50, -530, 8 }, - { 98, -50, -531, 8 }, { 78, -50, -531, 8 }, { 58, -50, -531, 8 }, - { 38, -50, -531, 8 }, { 18, -50, -531, 8 }, { -1, -50, -531, 8 }, - { -21, -50, -531, 8 }, { -41, -50, -531, 8 }, { -61, -50, -531, 8 }, - { -81, -50, -532, 8 }, { -101, -50, -532, 8 }, { -121, -50, -532, 8 }, - { -141, -50, -532, 8 }, { -161, -50, -532, 8 }, { -181, -50, -532, 8 }, - { -201, -50, -532, 8 }, { -221, -50, -532, 9 }, { -241, -50, -531, 9 }, - { -261, -49, -528, 9 }, { -280, -47, -524, 9 }, { -300, -46, -519, 9 }, - { -319, -44, -514, 9 }, { -338, -43, -508, 9 }, { -358, -42, -503, 9 }, - { -377, -40, -498, 9 }, { -396, -39, -493, 9 }, { -416, -37, -487, 9 }, - { -435, -35, -482, 9 }, { -454, -33, -477, 9 }, { -473, -31, -471, 9 }, - { -493, -29, -465, 9 }, { -512, -26, -459, 9 }, { -531, -24, -453, 9 }, - { -549, -21, -445, 9 }, { -565, -19, -433, 9 }, { -580, -17, -420, 9 }, - { -593, -15, -405, 9 }, { -605, -13, -389, 9 }, { -618, -12, -373, 9 }, - { -630, -10, -357, 9 }, { -642, -8, -341, 9 }, { -654, -7, -325, 9 }, - { -666, -5, -309, 9 }, { -678, -4, -293, 9 }, { -690, -2, -277, 9 }, - { -702, 0, -261, 9 }, { -714, 0, -245, 10 }, { -725, 0, -229, 10 }, - { -735, 0, -211, 10 }, { -743, 0, -193, 10 }, { -749, 0, -174, 10 }, - { -754, 0, -154, 10 }, { -759, 0, -135, 10 }, { -763, 0, -115, 10 }, - { -768, 0, -96, 10 }, { -772, 0, -76, 10 }, { -777, 0, -57, 10 }, - { -781, 0, -37, 10 }, { -785, 0, -18, 10 }, { -789, 0, 1, 10 }, - { -792, 0, 21, 10 }, { -793, 0, 41, 10 }, { -792, 0, 60, 10 }, - { -788, 0, 80, 10 }, { -782, 0, 99, 10 }, { -773, 0, 117, 10 }, - { -762, 0, 134, 10 }, { -750, 0, 150, 10 }, { -737, 0, 165, 10 }, - { -723, 0, 179, 10 }, { -708, 0, 193, 10 }, { -693, 0, 205, 11 }, - { -676, 0, 217, 11 }, { -660, 0, 228, 11 }, { -644, 0, 241, 11 }, - { -631, 0, 256, 11 }, { -620, 0, 272, 11 }, { -610, 0, 290, 11 }, - { -602, 0, 308, 11 }, { -595, 0, 327, 11 }, { -590, 0, 346, 11 }, - { -586, 0, 366, 11 }, { -584, 0, 386, 11 }, { -582, 0, 406, 11 }, - { -581, 0, 426, 11 }, { -581, 0, 446, 11 }, { -580, 0, 466, 11 }, - { -579, 0, 486, 11 }, { -579, 0, 506, 11 }, { -578, 0, 526, 11 }, - { -576, 0, 546, 11 }, { -572, 0, 565, 11 }, { -565, 0, 584, 11 }, - { -556, 0, 602, 11 }, { -547, 0, 620, 11 }, { -536, 0, 636, 12 }, - { -524, 0, 652, 12 }, { -511, 0, 668, 12 }, { -499, 0, 684, 12 }, - { -486, 0, 699, 12 }, { -474, 0, 715, 12 }, { -461, 0, 730, 12 }, - { -449, 0, 746, 12 }, { -436, 0, 761, 12 }, { -423, 0, 777, 12 }, - { -411, 0, 792, 12 }, { -398, 0, 808, 12 }, { -385, 0, 823, 12 }, - { -373, 0, 839, 12 }, { -360, 0, 854, 12 }, { -347, 0, 870, 12 }, - { -334, 0, 885, 12 }, { -322, 0, 901, 12 }, { -309, 0, 916, 12 }, - { -296, 0, 931, 12 }, { -283, 0, 947, 12 }, { -270, 0, 962, 12 }, - { -256, 0, 976, 12 }, { -241, 0, 990, 12 }, { -225, 0, 1000, 12 }, - { -207, 0, 1010, 12 }, { -189, 0, 1018, 13 }, { -169, 0, 1023, 13 }, - { -149, 0, 1025, 13 }, { -129, 0, 1026, 13 }, { -109, 0, 1027, 13 }, - { -89, 0, 1027, 13 }, { -69, 0, 1028, 13 }, { -49, 0, 1028, 13 }, - { -29, 0, 1028, 13 }, { -9, 0, 1028, 13 }, { 10, 0, 1028, 13 }, - { 30, 0, 1028, 13 }, { 50, 0, 1028, 13 }, { 70, 0, 1028, 13 }, - { 90, 3, 1028, 13 }, { 110, 5, 1027, 13 }, { 130, 7, 1027, 13 }, - { 150, 9, 1027, 13 }, { 170, 17, 1027, 13 }, { 190, 26, 1027, 13 }, - { 210, 32, 1027, 13 }, { 230, 35, 1027, 13 }, { 250, 37, 1028, 13 }, - { 270, 35, 1029, 13 }, { 290, 33, 1031, 13 }, { 310, 29, 1032, 14 }, - { 330, 22, 1034, 14 }, { 350, 14, 1035, 14 }, { 370, 8, 1036, 14 }, - { 390, 5, 1037, 14 }, { 410, 2, 1038, 14 }, { 430, 0, 1039, 14 }, - { 450, 0, 1039, 14 }, { 470, 0, 1040, 14 }, { 490, 0, 1040, 14 }, - { 510, 0, 1040, 14 }, { 530, 0, 1040, 14 }, { 550, 0, 1039, 14 }, - { 570, 0, 1039, 14 }, { 590, 0, 1038, 14 }, { 610, 0, 1037, 14 }, - { 630, 0, 1035, 14 }, { 649, 0, 1034, 14 }, { 669, 0, 1032, 14 }, - { 689, 0, 1030, 14 }, { 709, 0, 1028, 14 }, { 729, 0, 1026, 14 }, - { 749, 0, 1024, 14 }, { 769, 0, 1021, 14 }, { 789, 0, 1019, 14 }, - { 809, 0, 1016, 14 }, { 828, 0, 1014, 14 }, { 848, 0, 1011, 14 }, - { 868, 0, 1008, 14 }, { 888, 0, 1005, 15 }, { 908, 0, 1002, 15 }, - { 927, 0, 998, 15 }, { 947, 0, 995, 15 }, { 967, 0, 991, 15 }, - { 986, 0, 987, 15 }, { 1006, 0, 982, 15 }, { 1025, 0, 978, 15 }, - { 1045, 0, 973, 15 }, { 1064, 0, 968, 15 }, { 1083, 0, 962, 15 }, - { 1102, 0, 956, 15 }, { 1121, 0, 950, 15 }, { 1140, 0, 943, 15 }, - { 1159, 0, 936, 15 }, { 1177, 0, 928, 15 }, { 1196, 0, 921, 15 }, - { 1214, 0, 913, 15 }, { 1233, 0, 905, 15 }, { 1251, 0, 897, 15 }, - { 1269, 0, 888, 15 }, { 1287, 0, 880, 15 }, { 1305, 0, 871, 15 }, - { 1323, 0, 862, 15 }, { 1341, 0, 854, 15 }, { 1359, 0, 845, 15 }, - { 1377, 0, 836, 15 }, { 1395, 0, 826, 16 }, { 1412, 0, 817, 16 }, - { 1430, 0, 807, 16 }, { 1448, 0, 798, 16 }, { 1465, 0, 788, 16 }, - { 1482, 0, 778, 16 }, { 1500, 0, 768, 16 }, { 1517, 0, 758, 16 }, - { 1534, 0, 747, 16 }, { 1551, 0, 737, 16 }, { 1568, 0, 726, 16 }, - { 1585, 0, 715, 16 }, { 1601, 0, 704, 16 }, { 1617, 0, 692, 16 }, - { 1633, 0, 680, 16 }, { 1649, 0, 668, 16 }, { 1664, 0, 655, 16 }, - { 1680, 0, 642, 16 }, { 1694, 0, 628, 16 }, { 1709, 0, 614, 16 }, - { 1723, 0, 600, 16 }, { 1736, 0, 585, 16 }, { 1750, 0, 570, 16 }, - { 1762, 0, 555, 16 }, { 1775, 0, 539, 16 }, { 1787, 0, 523, 17 }, - { 1798, 0, 507, 17 }, { 1810, 0, 490, 17 }, { 1821, 0, 474, 17 }, - { 1831, 0, 456, 17 }, { 1841, 0, 439, 17 }, { 1850, 0, 421, 17 }, - { 1859, 0, 404, 17 }, { 1868, 0, 385, 17 }, { 1876, 0, 367, 17 }, - { 1884, 0, 349, 17 }, { 1891, 0, 330, 17 }, { 1898, 0, 312, 17 }, - { 1905, 0, 293, 17 }, { 1910, 0, 273, 17 }, { 1912, 0, 253, 17 }, - { 1913, 0, 233, 17 }, { 1913, 0, 213, 17 }, { 1911, 0, 193, 17 }, - { 1907, 0, 174, 17 }, { 1902, 0, 155, 17 }, { 1895, 0, 136, 17 }, - { 1886, 0, 118, 17 }, { 1876, 1, 100, 17 }, { 1864, 1, 84, 17 }, - { 1851, 1, 69, 17 }, { 1837, 1, 55, 17 }, { 1822, 2, 42, 17 }, - { 1806, 2, 30, 17 }, { 1789, 2, 19, 17 }, { 1771, 3, 10, 18 }, - { 1752, 3, 3, 18 }, { 1733, 3, -1, 18 }, { 1713, 4, -4, 18 }, - { 1693, 4, -6, 18 }, { 1673, 4, -7, 18 }, { 1653, 5, -5, 18 }, - { 1634, 5, -3, 18 }, { 1614, 5, 0, 18 }, { 1595, 5, 6, 18 }, - { 1577, 6, 14, 18 }, { 1559, 7, 24, 18 }, { 1543, 7, 36, 18 }, - { 1528, 8, 48, 18 }, { 1513, 9, 62, 18 }, { 1500, 9, 77, 18 }, - { 1488, 10, 93, 18 }, { 1477, 11, 110, 18 }, { 1467, 11, 128, 18 }, - { 1459, 12, 146, 18 }, { 1453, 13, 165, 18 }, { 1449, 13, 185, 18 }, - { 1447, 14, 205, 18 }, { 1446, 15, 224, 18 }, { 1446, 15, 244, 18 }, - { 1448, 16, 264, 18 }, { 1450, 17, 284, 18 }, { 1452, 18, 304, 18 }, - { 1455, 18, 324, 18 }, { 1459, 19, 344, 18 }, { 1462, 20, 364, 19 }, - { 1464, 20, 383, 19 }, { 1465, 21, 403, 19 }, { 1466, 22, 423, 19 }, - { 1466, 22, 443, 19 }, { 1465, 23, 463, 19 }, { 1462, 23, 483, 19 }, - { 1459, 24, 503, 19 }, { 1455, 24, 523, 19 }, { 1450, 25, 542, 19 }, - { 1444, 25, 561, 19 }, { 1438, 26, 580, 19 }, { 1430, 26, 599, 19 }, - { 1422, 26, 617, 19 }, { 1413, 27, 635, 19 }, { 1402, 27, 652, 19 }, - { 1391, 28, 668, 19 }, { 1378, 28, 684, 19 }, { 1364, 28, 698, 19 }, - { 1350, 29, 712, 19 }, { 1335, 29, 725, 19 }, { 1319, 29, 737, 19 }, - { 1302, 29, 748, 19 }, { 1285, 30, 759, 19 }, { 1268, 30, 770, 19 }, - { 1251, 30, 780, 19 }, { 1233, 30, 789, 19 }, { 1216, 30, 799, 19 }, - { 1198, 30, 808, 19 }, { 1180, 30, 816, 20 }, { 1162, 30, 825, 20 }, - { 1144, 30, 833, 20 }, { 1125, 31, 842, 20 }, { 1107, 31, 849, 20 }, - { 1088, 31, 857, 20 }, { 1070, 32, 864, 20 }, { 1051, 32, 870, 20 }, - { 1032, 32, 876, 20 }, { 1012, 32, 882, 20 }, { 993, 33, 887, 20 }, - { 974, 33, 891, 20 }, { 954, 33, 895, 20 }, { 934, 34, 898, 20 }, - { 914, 34, 901, 20 }, { 894, 34, 904, 20 }, { 875, 35, 906, 20 }, - { 855, 35, 908, 20 }, { 835, 36, 910, 20 }, { 815, 36, 912, 20 }, - { 795, 37, 914, 20 }, { 775, 37, 915, 20 }, { 755, 38, 916, 20 }, - { 735, 38, 917, 20 }, { 715, 39, 917, 20 }, { 695, 39, 916, 20 }, - { 675, 40, 914, 21 }, { 655, 40, 911, 21 }, { 636, 40, 908, 21 }, - { 616, 40, 903, 21 }, { 597, 40, 897, 21 }, { 578, 40, 891, 21 }, - { 559, 40, 884, 21 }, { 541, 40, 876, 21 }, { 523, 40, 867, 21 }, - { 506, 40, 857, 21 }, { 488, 40, 847, 21 }, { 472, 39, 836, 21 }, - { 456, 38, 823, 21 }, { 441, 37, 811, 21 }, { 426, 36, 797, 21 }, - { 412, 35, 782, 21 }, { 399, 34, 767, 21 }, { 387, 33, 751, 21 }, - { 375, 32, 736, 21 }, { 363, 31, 719, 21 }, { 351, 30, 703, 21 }, - { 339, 29, 687, 21 }, { 328, 28, 671, 21 }, { 316, 27, 654, 21 }, - { 305, 25, 638, 21 }, { 293, 24, 622, 22 }, { 281, 22, 605, 22 }, - { 270, 21, 589, 22 }, { 258, 20, 573, 22 }, { 246, 18, 557, 22 }, - { 234, 17, 541, 22 }, { 222, 16, 525, 22 }, { 209, 14, 510, 22 }, - { 195, 13, 495, 22 }, { 181, 11, 481, 22 }, { 167, 9, 467, 22 }, - { 152, 8, 454, 22 }, { 137, 6, 441, 22 }, { 121, 5, 428, 22 }, - { 105, 3, 416, 22 }, { 90, 1, 403, 22 }, { 74, 0, 391, 22 }, - { 59, 0, 378, 22 }, { 45, 0, 364, 22 }, { 33, 0, 348, 22 }, - { 23, 0, 330, 23 }, { 14, 0, 312, 23 }, { 7, 2, 294, 23 }, - { 1, 5, 275, 23 }, { -2, 8, 255, 23 }, { -3, 10, 235, 23 }, - { -3, 13, 215, 23 }, { -3, 15, 195, 23 }, { -3, 18, 175, 23 }, - { -2, 20, 155, 23 }, { -2, 23, 135, 23 }, { -1, 27, 115, 23 }, - { 0, 34, 95, 23 }, { 0, 42, 75, 23 }, { 0, 53, 55, 23 }, - { 0, 61, 35, 23 }, { 1, 61, 15, 23 }, { 2, 57, -4, 24 }, - { 2, 54, -24, 24 }, { 3, 50, -44, 24 }, { 3, 47, -64, 24 }, - { 4, 51, -84, 24 }, { 4, 60, -104, 24 }, { 4, 68, -124, 24 }, - { 5, 69, -144, 24 }, { 5, 64, -164, 24 }, { 5, 58, -184, 24 }, - { 5, 53, -204, 24 }, { 5, 52, -224, 24 }, { 5, 56, -244, 24 }, - { 5, 65, -264, 24 }, { 5, 73, -284, 24 }, { 5, 73, -304, 24 }, - { 4, 67, -324, 24 }, { 4, 59, -344, 24 }, { 4, 53, -364, 24 }, - { 3, 49, -384, 1 }, { 3, 49, -404, 1 }, { 2, 48, -424, 1 }, - { 2, 48, -444, 1 }, { 1, 47, -464, 1 }, { 0, 46, -484, 1 }, - { 0, 46, -504, 1 }, { 0, 45, -524, 1 }, { -1, 45, -544, 1 }, - { -1, 44, -564, 1 }, { -2, 44, -584, 1 }, { -3, 43, -604, 1 }, - { -4, 42, -624, 1 }, { -4, 42, -644, 1 }, { -5, 41, -664, 1 }, - { -6, 41, -684, 1 }, { -6, 40, -704, 1 }, { -32768, -32768, -32768, 0 }, +#include "courses/choco_mountain/d_course_choco_mountain_track_path.inc.c" }; +#endif Lights1 d_course_choco_mountain_light = gdSPDefLights1(0x71, 0x71, 0x71, 0x73, 0x73, 0x73, 0x00, 0x81, 0x00); @@ -3224,3 +3180,12 @@ TrackSections d_course_choco_mountain_addr[] = { { d_course_choco_mountain_packed_dl_3410, CLIFF, 24, 0x0000 }, { 0x00000000, 0, 0, 0x0000 }, }; + +#ifdef VERSION_JP /* VERSION_JP path order: JP puts the paths last */ +TrackPathPoint d_course_choco_mountain_unknown_path[] = { +#include "courses/choco_mountain/d_course_choco_mountain_unknown_path.inc.c" +}; +TrackPathPoint d_course_choco_mountain_track_path[] = { +#include "courses/choco_mountain/d_course_choco_mountain_track_path.inc.c" +}; +#endif diff --git a/courses/choco_mountain/course_offsets.c b/courses/choco_mountain/course_offsets.c index 74055cac94..d59d0d4883 100644 --- a/courses/choco_mountain/course_offsets.c +++ b/courses/choco_mountain/course_offsets.c @@ -23,6 +23,31 @@ extern u8 gTexture67DC20[]; extern u8 gTextureSignYoshi[]; extern u8 gTextureCheckerboardBlueGray[]; +#ifdef VERSION_JP /* JP ships different sign textures, so their compressed sizes differ */ +const course_texture choco_mountain_textures[] = { + { gTexture64619C, 0x0124, 0x0800, 0x0 }, + { gTexture64647C, 0x0829, 0x1000, 0x0 }, + { gTexture647F4C, 0x05BC, 0x1000, 0x0 }, + { gTexture64FBF4, 0x0274, 0x0800, 0x0 }, + { gTexture653DB0, 0x06AE, 0x0800, 0x0 }, + { gTexture652B54, 0x0606, 0x0800, 0x0 }, + { gTexture65315C, 0x04A9, 0x0800, 0x0 }, + { gTexture6684F8, 0x010D, 0x0800, 0x0 }, + { gTextureSignLuigis0, 0x026A, 0x1000, 0x0 }, + { gTextureSignLuigis1, 0x02CC, 0x1000, 0x0 }, + { gTextureSignNintendoRed0, 0x02E1, 0x1000, 0x0 }, + { gTextureSignNintendoRed1, 0x034C, 0x1000, 0x0 }, + { gTexture6774D8, 0x0113, 0x0800, 0x0 }, + { gTextureSignFallingRocks, 0x012C, 0x0800, 0x0 }, + { gTextureSignBackside, 0x011E, 0x0800, 0x0 }, + { gTexture679C04, 0x012F, 0x0800, 0x0 }, + { gTexture67B864, 0x014C, 0x0800, 0x0 }, + { gTexture67DC20, 0x03EF, 0x0800, 0x0 }, + { gTextureSignYoshi, 0x0342, 0x1000, 0x0 }, + { gTextureCheckerboardBlueGray, 0x027F, 0x1000, 0x0 }, + { 0x00000000, 0x0000, 0x0000, 0x0 }, +}; +#else const course_texture choco_mountain_textures[] = { { gTexture64619C, 0x0124, 0x0800, 0x0 }, { gTexture64647C, 0x0829, 0x1000, 0x0 }, @@ -46,6 +71,7 @@ const course_texture choco_mountain_textures[] = { { gTextureCheckerboardBlueGray, 0x04A1, 0x1000, 0x0 }, { 0x00000000, 0x0000, 0x0000, 0x0 }, }; +#endif const Gfx* choco_mountain_dls[] = { d_course_choco_mountain_dl_0, d_course_choco_mountain_dl_150, d_course_choco_mountain_dl_B0, diff --git a/courses/choco_mountain/d_course_choco_mountain_track_path.inc.c b/courses/choco_mountain/d_course_choco_mountain_track_path.inc.c new file mode 100644 index 0000000000..1277237f46 --- /dev/null +++ b/courses/choco_mountain/d_course_choco_mountain_track_path.inc.c @@ -0,0 +1,202 @@ + { -6, 40, -705, 1 }, { -5, 39, -725, 1 }, { -3, 37, -745, 1 }, + { -2, 34, -765, 1 }, { 0, 32, -785, 1 }, { 0, 30, -805, 1 }, + { 2, 27, -825, 1 }, { 3, 25, -845, 2 }, { 5, 23, -865, 2 }, + { 7, 21, -885, 2 }, { 8, 19, -905, 2 }, { 10, 16, -925, 2 }, + { 12, 14, -944, 2 }, { 14, 12, -964, 2 }, { 16, 10, -984, 2 }, + { 18, 8, -1004, 2 }, { 21, 5, -1024, 2 }, { 23, 3, -1044, 2 }, + { 26, 1, -1064, 2 }, { 30, 0, -1083, 2 }, { 34, 0, -1103, 2 }, + { 41, 0, -1122, 2 }, { 49, 0, -1140, 2 }, { 59, 0, -1157, 2 }, + { 72, 0, -1173, 2 }, { 86, 0, -1187, 2 }, { 101, 0, -1200, 2 }, + { 117, 0, -1212, 2 }, { 135, 0, -1221, 2 }, { 152, 0, -1231, 2 }, + { 170, 0, -1239, 2 }, { 189, 0, -1248, 2 }, { 207, 0, -1256, 2 }, + { 225, 0, -1264, 2 }, { 243, 0, -1272, 3 }, { 262, 0, -1280, 3 }, + { 280, 0, -1288, 3 }, { 299, 0, -1296, 3 }, { 317, 0, -1303, 3 }, + { 336, 0, -1311, 3 }, { 355, 0, -1318, 3 }, { 374, 0, -1324, 3 }, + { 393, 0, -1329, 3 }, { 413, 0, -1331, 3 }, { 433, 0, -1331, 3 }, + { 453, 0, -1328, 3 }, { 472, 0, -1322, 3 }, { 490, 0, -1315, 3 }, + { 508, 0, -1306, 3 }, { 526, 0, -1297, 3 }, { 543, 0, -1286, 3 }, + { 559, 0, -1274, 3 }, { 573, 0, -1260, 3 }, { 588, 0, -1246, 3 }, + { 602, 0, -1232, 3 }, { 616, 0, -1218, 3 }, { 631, 0, -1204, 3 }, + { 645, 0, -1191, 3 }, { 661, 0, -1178, 3 }, { 678, 0, -1167, 3 }, + { 695, 0, -1158, 4 }, { 714, 0, -1150, 4 }, { 733, 0, -1145, 4 }, + { 753, 0, -1142, 4 }, { 773, 0, -1142, 4 }, { 793, 0, -1142, 4 }, + { 813, 0, -1143, 4 }, { 833, 0, -1145, 4 }, { 853, 0, -1147, 4 }, + { 873, 0, -1149, 4 }, { 892, 0, -1151, 4 }, { 912, 0, -1153, 4 }, + { 932, 0, -1155, 4 }, { 952, 0, -1157, 4 }, { 972, 0, -1160, 4 }, + { 992, 0, -1161, 4 }, { 1012, 0, -1162, 4 }, { 1032, 0, -1162, 4 }, + { 1052, 0, -1160, 4 }, { 1071, 0, -1155, 4 }, { 1091, 0, -1150, 4 }, + { 1110, 0, -1145, 4 }, { 1129, 0, -1138, 4 }, { 1147, 0, -1129, 4 }, + { 1164, 0, -1118, 4 }, { 1179, 0, -1105, 4 }, { 1193, 0, -1091, 4 }, + { 1206, 0, -1076, 4 }, { 1220, 0, -1061, 4 }, { 1232, 0, -1046, 4 }, + { 1244, 0, -1029, 5 }, { 1254, 0, -1012, 5 }, { 1263, 0, -994, 5 }, + { 1269, 0, -975, 5 }, { 1274, 0, -956, 5 }, { 1277, 0, -936, 5 }, + { 1278, 0, -916, 5 }, { 1278, 0, -896, 5 }, { 1277, 0, -876, 5 }, + { 1276, 0, -856, 5 }, { 1275, 0, -836, 5 }, { 1272, 0, -816, 5 }, + { 1269, 0, -797, 5 }, { 1263, 0, -778, 5 }, { 1255, 0, -759, 5 }, + { 1245, 0, -741, 5 }, { 1235, 0, -724, 5 }, { 1223, 0, -708, 5 }, + { 1209, 0, -694, 5 }, { 1195, 0, -680, 5 }, { 1179, 0, -668, 5 }, + { 1162, 0, -657, 5 }, { 1144, 0, -647, 5 }, { 1126, 0, -640, 5 }, + { 1107, 0, -632, 6 }, { 1088, 0, -626, 6 }, { 1070, 0, -619, 6 }, + { 1051, 0, -613, 6 }, { 1032, 0, -606, 6 }, { 1012, 0, -600, 6 }, + { 993, 0, -595, 6 }, { 974, 0, -589, 6 }, { 955, 0, -584, 6 }, + { 935, 0, -579, 6 }, { 916, 0, -575, 6 }, { 896, 0, -571, 6 }, + { 876, 0, -568, 6 }, { 857, -2, -565, 6 }, { 837, -3, -561, 6 }, + { 817, -5, -558, 6 }, { 797, -6, -555, 6 }, { 778, -7, -552, 6 }, + { 758, -9, -549, 6 }, { 738, -10, -546, 6 }, { 718, -11, -544, 6 }, + { 698, -13, -542, 6 }, { 678, -14, -540, 6 }, { 658, -16, -538, 6 }, + { 638, -17, -537, 6 }, { 618, -18, -535, 6 }, { 598, -20, -534, 7 }, + { 578, -21, -533, 7 }, { 558, -23, -533, 7 }, { 538, -25, -532, 7 }, + { 518, -26, -531, 7 }, { 498, -28, -531, 7 }, { 478, -29, -531, 7 }, + { 458, -31, -531, 7 }, { 438, -32, -530, 7 }, { 418, -34, -530, 7 }, + { 398, -35, -530, 7 }, { 378, -36, -530, 7 }, { 358, -38, -530, 7 }, + { 338, -39, -530, 7 }, { 318, -41, -530, 7 }, { 298, -42, -530, 7 }, + { 278, -44, -530, 7 }, { 258, -46, -530, 7 }, { 238, -47, -530, 7 }, + { 218, -49, -530, 7 }, { 198, -50, -530, 8 }, { 178, -50, -530, 8 }, + { 158, -50, -530, 8 }, { 138, -50, -530, 8 }, { 118, -50, -530, 8 }, + { 98, -50, -531, 8 }, { 78, -50, -531, 8 }, { 58, -50, -531, 8 }, + { 38, -50, -531, 8 }, { 18, -50, -531, 8 }, { -1, -50, -531, 8 }, + { -21, -50, -531, 8 }, { -41, -50, -531, 8 }, { -61, -50, -531, 8 }, + { -81, -50, -532, 8 }, { -101, -50, -532, 8 }, { -121, -50, -532, 8 }, + { -141, -50, -532, 8 }, { -161, -50, -532, 8 }, { -181, -50, -532, 8 }, + { -201, -50, -532, 8 }, { -221, -50, -532, 9 }, { -241, -50, -531, 9 }, + { -261, -49, -528, 9 }, { -280, -47, -524, 9 }, { -300, -46, -519, 9 }, + { -319, -44, -514, 9 }, { -338, -43, -508, 9 }, { -358, -42, -503, 9 }, + { -377, -40, -498, 9 }, { -396, -39, -493, 9 }, { -416, -37, -487, 9 }, + { -435, -35, -482, 9 }, { -454, -33, -477, 9 }, { -473, -31, -471, 9 }, + { -493, -29, -465, 9 }, { -512, -26, -459, 9 }, { -531, -24, -453, 9 }, + { -549, -21, -445, 9 }, { -565, -19, -433, 9 }, { -580, -17, -420, 9 }, + { -593, -15, -405, 9 }, { -605, -13, -389, 9 }, { -618, -12, -373, 9 }, + { -630, -10, -357, 9 }, { -642, -8, -341, 9 }, { -654, -7, -325, 9 }, + { -666, -5, -309, 9 }, { -678, -4, -293, 9 }, { -690, -2, -277, 9 }, + { -702, 0, -261, 9 }, { -714, 0, -245, 10 }, { -725, 0, -229, 10 }, + { -735, 0, -211, 10 }, { -743, 0, -193, 10 }, { -749, 0, -174, 10 }, + { -754, 0, -154, 10 }, { -759, 0, -135, 10 }, { -763, 0, -115, 10 }, + { -768, 0, -96, 10 }, { -772, 0, -76, 10 }, { -777, 0, -57, 10 }, + { -781, 0, -37, 10 }, { -785, 0, -18, 10 }, { -789, 0, 1, 10 }, + { -792, 0, 21, 10 }, { -793, 0, 41, 10 }, { -792, 0, 60, 10 }, + { -788, 0, 80, 10 }, { -782, 0, 99, 10 }, { -773, 0, 117, 10 }, + { -762, 0, 134, 10 }, { -750, 0, 150, 10 }, { -737, 0, 165, 10 }, + { -723, 0, 179, 10 }, { -708, 0, 193, 10 }, { -693, 0, 205, 11 }, + { -676, 0, 217, 11 }, { -660, 0, 228, 11 }, { -644, 0, 241, 11 }, + { -631, 0, 256, 11 }, { -620, 0, 272, 11 }, { -610, 0, 290, 11 }, + { -602, 0, 308, 11 }, { -595, 0, 327, 11 }, { -590, 0, 346, 11 }, + { -586, 0, 366, 11 }, { -584, 0, 386, 11 }, { -582, 0, 406, 11 }, + { -581, 0, 426, 11 }, { -581, 0, 446, 11 }, { -580, 0, 466, 11 }, + { -579, 0, 486, 11 }, { -579, 0, 506, 11 }, { -578, 0, 526, 11 }, + { -576, 0, 546, 11 }, { -572, 0, 565, 11 }, { -565, 0, 584, 11 }, + { -556, 0, 602, 11 }, { -547, 0, 620, 11 }, { -536, 0, 636, 12 }, + { -524, 0, 652, 12 }, { -511, 0, 668, 12 }, { -499, 0, 684, 12 }, + { -486, 0, 699, 12 }, { -474, 0, 715, 12 }, { -461, 0, 730, 12 }, + { -449, 0, 746, 12 }, { -436, 0, 761, 12 }, { -423, 0, 777, 12 }, + { -411, 0, 792, 12 }, { -398, 0, 808, 12 }, { -385, 0, 823, 12 }, + { -373, 0, 839, 12 }, { -360, 0, 854, 12 }, { -347, 0, 870, 12 }, + { -334, 0, 885, 12 }, { -322, 0, 901, 12 }, { -309, 0, 916, 12 }, + { -296, 0, 931, 12 }, { -283, 0, 947, 12 }, { -270, 0, 962, 12 }, + { -256, 0, 976, 12 }, { -241, 0, 990, 12 }, { -225, 0, 1000, 12 }, + { -207, 0, 1010, 12 }, { -189, 0, 1018, 13 }, { -169, 0, 1023, 13 }, + { -149, 0, 1025, 13 }, { -129, 0, 1026, 13 }, { -109, 0, 1027, 13 }, + { -89, 0, 1027, 13 }, { -69, 0, 1028, 13 }, { -49, 0, 1028, 13 }, + { -29, 0, 1028, 13 }, { -9, 0, 1028, 13 }, { 10, 0, 1028, 13 }, + { 30, 0, 1028, 13 }, { 50, 0, 1028, 13 }, { 70, 0, 1028, 13 }, + { 90, 3, 1028, 13 }, { 110, 5, 1027, 13 }, { 130, 7, 1027, 13 }, + { 150, 9, 1027, 13 }, { 170, 17, 1027, 13 }, { 190, 26, 1027, 13 }, + { 210, 32, 1027, 13 }, { 230, 35, 1027, 13 }, { 250, 37, 1028, 13 }, + { 270, 35, 1029, 13 }, { 290, 33, 1031, 13 }, { 310, 29, 1032, 14 }, + { 330, 22, 1034, 14 }, { 350, 14, 1035, 14 }, { 370, 8, 1036, 14 }, + { 390, 5, 1037, 14 }, { 410, 2, 1038, 14 }, { 430, 0, 1039, 14 }, + { 450, 0, 1039, 14 }, { 470, 0, 1040, 14 }, { 490, 0, 1040, 14 }, + { 510, 0, 1040, 14 }, { 530, 0, 1040, 14 }, { 550, 0, 1039, 14 }, + { 570, 0, 1039, 14 }, { 590, 0, 1038, 14 }, { 610, 0, 1037, 14 }, + { 630, 0, 1035, 14 }, { 649, 0, 1034, 14 }, { 669, 0, 1032, 14 }, + { 689, 0, 1030, 14 }, { 709, 0, 1028, 14 }, { 729, 0, 1026, 14 }, + { 749, 0, 1024, 14 }, { 769, 0, 1021, 14 }, { 789, 0, 1019, 14 }, + { 809, 0, 1016, 14 }, { 828, 0, 1014, 14 }, { 848, 0, 1011, 14 }, + { 868, 0, 1008, 14 }, { 888, 0, 1005, 15 }, { 908, 0, 1002, 15 }, + { 927, 0, 998, 15 }, { 947, 0, 995, 15 }, { 967, 0, 991, 15 }, + { 986, 0, 987, 15 }, { 1006, 0, 982, 15 }, { 1025, 0, 978, 15 }, + { 1045, 0, 973, 15 }, { 1064, 0, 968, 15 }, { 1083, 0, 962, 15 }, + { 1102, 0, 956, 15 }, { 1121, 0, 950, 15 }, { 1140, 0, 943, 15 }, + { 1159, 0, 936, 15 }, { 1177, 0, 928, 15 }, { 1196, 0, 921, 15 }, + { 1214, 0, 913, 15 }, { 1233, 0, 905, 15 }, { 1251, 0, 897, 15 }, + { 1269, 0, 888, 15 }, { 1287, 0, 880, 15 }, { 1305, 0, 871, 15 }, + { 1323, 0, 862, 15 }, { 1341, 0, 854, 15 }, { 1359, 0, 845, 15 }, + { 1377, 0, 836, 15 }, { 1395, 0, 826, 16 }, { 1412, 0, 817, 16 }, + { 1430, 0, 807, 16 }, { 1448, 0, 798, 16 }, { 1465, 0, 788, 16 }, + { 1482, 0, 778, 16 }, { 1500, 0, 768, 16 }, { 1517, 0, 758, 16 }, + { 1534, 0, 747, 16 }, { 1551, 0, 737, 16 }, { 1568, 0, 726, 16 }, + { 1585, 0, 715, 16 }, { 1601, 0, 704, 16 }, { 1617, 0, 692, 16 }, + { 1633, 0, 680, 16 }, { 1649, 0, 668, 16 }, { 1664, 0, 655, 16 }, + { 1680, 0, 642, 16 }, { 1694, 0, 628, 16 }, { 1709, 0, 614, 16 }, + { 1723, 0, 600, 16 }, { 1736, 0, 585, 16 }, { 1750, 0, 570, 16 }, + { 1762, 0, 555, 16 }, { 1775, 0, 539, 16 }, { 1787, 0, 523, 17 }, + { 1798, 0, 507, 17 }, { 1810, 0, 490, 17 }, { 1821, 0, 474, 17 }, + { 1831, 0, 456, 17 }, { 1841, 0, 439, 17 }, { 1850, 0, 421, 17 }, + { 1859, 0, 404, 17 }, { 1868, 0, 385, 17 }, { 1876, 0, 367, 17 }, + { 1884, 0, 349, 17 }, { 1891, 0, 330, 17 }, { 1898, 0, 312, 17 }, + { 1905, 0, 293, 17 }, { 1910, 0, 273, 17 }, { 1912, 0, 253, 17 }, + { 1913, 0, 233, 17 }, { 1913, 0, 213, 17 }, { 1911, 0, 193, 17 }, + { 1907, 0, 174, 17 }, { 1902, 0, 155, 17 }, { 1895, 0, 136, 17 }, + { 1886, 0, 118, 17 }, { 1876, 1, 100, 17 }, { 1864, 1, 84, 17 }, + { 1851, 1, 69, 17 }, { 1837, 1, 55, 17 }, { 1822, 2, 42, 17 }, + { 1806, 2, 30, 17 }, { 1789, 2, 19, 17 }, { 1771, 3, 10, 18 }, + { 1752, 3, 3, 18 }, { 1733, 3, -1, 18 }, { 1713, 4, -4, 18 }, + { 1693, 4, -6, 18 }, { 1673, 4, -7, 18 }, { 1653, 5, -5, 18 }, + { 1634, 5, -3, 18 }, { 1614, 5, 0, 18 }, { 1595, 5, 6, 18 }, + { 1577, 6, 14, 18 }, { 1559, 7, 24, 18 }, { 1543, 7, 36, 18 }, + { 1528, 8, 48, 18 }, { 1513, 9, 62, 18 }, { 1500, 9, 77, 18 }, + { 1488, 10, 93, 18 }, { 1477, 11, 110, 18 }, { 1467, 11, 128, 18 }, + { 1459, 12, 146, 18 }, { 1453, 13, 165, 18 }, { 1449, 13, 185, 18 }, + { 1447, 14, 205, 18 }, { 1446, 15, 224, 18 }, { 1446, 15, 244, 18 }, + { 1448, 16, 264, 18 }, { 1450, 17, 284, 18 }, { 1452, 18, 304, 18 }, + { 1455, 18, 324, 18 }, { 1459, 19, 344, 18 }, { 1462, 20, 364, 19 }, + { 1464, 20, 383, 19 }, { 1465, 21, 403, 19 }, { 1466, 22, 423, 19 }, + { 1466, 22, 443, 19 }, { 1465, 23, 463, 19 }, { 1462, 23, 483, 19 }, + { 1459, 24, 503, 19 }, { 1455, 24, 523, 19 }, { 1450, 25, 542, 19 }, + { 1444, 25, 561, 19 }, { 1438, 26, 580, 19 }, { 1430, 26, 599, 19 }, + { 1422, 26, 617, 19 }, { 1413, 27, 635, 19 }, { 1402, 27, 652, 19 }, + { 1391, 28, 668, 19 }, { 1378, 28, 684, 19 }, { 1364, 28, 698, 19 }, + { 1350, 29, 712, 19 }, { 1335, 29, 725, 19 }, { 1319, 29, 737, 19 }, + { 1302, 29, 748, 19 }, { 1285, 30, 759, 19 }, { 1268, 30, 770, 19 }, + { 1251, 30, 780, 19 }, { 1233, 30, 789, 19 }, { 1216, 30, 799, 19 }, + { 1198, 30, 808, 19 }, { 1180, 30, 816, 20 }, { 1162, 30, 825, 20 }, + { 1144, 30, 833, 20 }, { 1125, 31, 842, 20 }, { 1107, 31, 849, 20 }, + { 1088, 31, 857, 20 }, { 1070, 32, 864, 20 }, { 1051, 32, 870, 20 }, + { 1032, 32, 876, 20 }, { 1012, 32, 882, 20 }, { 993, 33, 887, 20 }, + { 974, 33, 891, 20 }, { 954, 33, 895, 20 }, { 934, 34, 898, 20 }, + { 914, 34, 901, 20 }, { 894, 34, 904, 20 }, { 875, 35, 906, 20 }, + { 855, 35, 908, 20 }, { 835, 36, 910, 20 }, { 815, 36, 912, 20 }, + { 795, 37, 914, 20 }, { 775, 37, 915, 20 }, { 755, 38, 916, 20 }, + { 735, 38, 917, 20 }, { 715, 39, 917, 20 }, { 695, 39, 916, 20 }, + { 675, 40, 914, 21 }, { 655, 40, 911, 21 }, { 636, 40, 908, 21 }, + { 616, 40, 903, 21 }, { 597, 40, 897, 21 }, { 578, 40, 891, 21 }, + { 559, 40, 884, 21 }, { 541, 40, 876, 21 }, { 523, 40, 867, 21 }, + { 506, 40, 857, 21 }, { 488, 40, 847, 21 }, { 472, 39, 836, 21 }, + { 456, 38, 823, 21 }, { 441, 37, 811, 21 }, { 426, 36, 797, 21 }, + { 412, 35, 782, 21 }, { 399, 34, 767, 21 }, { 387, 33, 751, 21 }, + { 375, 32, 736, 21 }, { 363, 31, 719, 21 }, { 351, 30, 703, 21 }, + { 339, 29, 687, 21 }, { 328, 28, 671, 21 }, { 316, 27, 654, 21 }, + { 305, 25, 638, 21 }, { 293, 24, 622, 22 }, { 281, 22, 605, 22 }, + { 270, 21, 589, 22 }, { 258, 20, 573, 22 }, { 246, 18, 557, 22 }, + { 234, 17, 541, 22 }, { 222, 16, 525, 22 }, { 209, 14, 510, 22 }, + { 195, 13, 495, 22 }, { 181, 11, 481, 22 }, { 167, 9, 467, 22 }, + { 152, 8, 454, 22 }, { 137, 6, 441, 22 }, { 121, 5, 428, 22 }, + { 105, 3, 416, 22 }, { 90, 1, 403, 22 }, { 74, 0, 391, 22 }, + { 59, 0, 378, 22 }, { 45, 0, 364, 22 }, { 33, 0, 348, 22 }, + { 23, 0, 330, 23 }, { 14, 0, 312, 23 }, { 7, 2, 294, 23 }, + { 1, 5, 275, 23 }, { -2, 8, 255, 23 }, { -3, 10, 235, 23 }, + { -3, 13, 215, 23 }, { -3, 15, 195, 23 }, { -3, 18, 175, 23 }, + { -2, 20, 155, 23 }, { -2, 23, 135, 23 }, { -1, 27, 115, 23 }, + { 0, 34, 95, 23 }, { 0, 42, 75, 23 }, { 0, 53, 55, 23 }, + { 0, 61, 35, 23 }, { 1, 61, 15, 23 }, { 2, 57, -4, 24 }, + { 2, 54, -24, 24 }, { 3, 50, -44, 24 }, { 3, 47, -64, 24 }, + { 4, 51, -84, 24 }, { 4, 60, -104, 24 }, { 4, 68, -124, 24 }, + { 5, 69, -144, 24 }, { 5, 64, -164, 24 }, { 5, 58, -184, 24 }, + { 5, 53, -204, 24 }, { 5, 52, -224, 24 }, { 5, 56, -244, 24 }, + { 5, 65, -264, 24 }, { 5, 73, -284, 24 }, { 5, 73, -304, 24 }, + { 4, 67, -324, 24 }, { 4, 59, -344, 24 }, { 4, 53, -364, 24 }, + { 3, 49, -384, 1 }, { 3, 49, -404, 1 }, { 2, 48, -424, 1 }, + { 2, 48, -444, 1 }, { 1, 47, -464, 1 }, { 0, 46, -484, 1 }, + { 0, 46, -504, 1 }, { 0, 45, -524, 1 }, { -1, 45, -544, 1 }, + { -1, 44, -564, 1 }, { -2, 44, -584, 1 }, { -3, 43, -604, 1 }, + { -4, 42, -624, 1 }, { -4, 42, -644, 1 }, { -5, 41, -664, 1 }, + { -6, 41, -684, 1 }, { -6, 40, -704, 1 }, { -32768, -32768, -32768, 0 }, diff --git a/courses/choco_mountain/d_course_choco_mountain_unknown_path.inc.c b/courses/choco_mountain/d_course_choco_mountain_unknown_path.inc.c new file mode 100644 index 0000000000..bb76631de8 --- /dev/null +++ b/courses/choco_mountain/d_course_choco_mountain_unknown_path.inc.c @@ -0,0 +1,22 @@ + { -7, 0, -699, 0 }, { -6, 0, -712, 0 }, { 8, 0, -903, 0 }, { 26, 0, -1074, 0 }, { 46, 0, -1140, 0 }, + { 80, 0, -1185, 0 }, { 134, 0, -1225, 0 }, { 343, 0, -1316, 0 }, { 408, 0, -1334, 0 }, { 462, 0, -1329, 0 }, + { 534, 0, -1295, 0 }, { 566, 0, -1269, 0 }, { 633, 0, -1202, 0 }, { 671, 0, -1170, 0 }, { 726, 0, -1144, 0 }, + { 779, 0, -1141, 0 }, { 875, 0, -1149, 0 }, { 1022, 0, -1166, 0 }, { 1079, 0, -1155, 0 }, { 1146, 0, -1134, 0 }, + { 1188, 0, -1099, 0 }, { 1246, 0, -1032, 0 }, { 1272, 0, -976, 0 }, { 1280, 0, -919, 0 }, { 1275, 0, -815, 0 }, + { 1258, 0, -761, 0 }, { 1221, 0, -702, 0 }, { 1170, 0, -660, 0 }, { 1120, 0, -636, 0 }, { 975, 0, -588, 0 }, + { 891, 0, -570, 0 }, { 674, 0, -536, 0 }, { 407, 0, -529, 0 }, { -208, 0, -533, 0 }, { -252, 0, -532, 0 }, + { -320, 0, -514, 0 }, { -508, 0, -463, 0 }, { -568, 0, -438, 0 }, { -617, 0, -375, 0 }, { -710, 0, -253, 0 }, + { -735, 0, -215, 0 }, { -750, 0, -175, 0 }, { -774, 0, -71, 0 }, { -791, 0, 3, 0 }, { -795, 0, 42, 0 }, + { -790, 0, 80, 0 }, { -775, 0, 117, 0 }, { -750, 0, 152, 0 }, { -722, 0, 182, 0 }, { -688, 0, 211, 0 }, + { -648, 0, 235, 0 }, { -615, 0, 279, 0 }, { -600, 0, 315, 0 }, { -589, 0, 349, 0 }, { -583, 0, 389, 0 }, + { -579, 0, 512, 0 }, { -577, 0, 555, 0 }, { -561, 0, 596, 0 }, { -539, 0, 636, 0 }, { -385, 0, 825, 0 }, + { -257, 0, 980, 0 }, { -226, 0, 1001, 0 }, { -192, 0, 1019, 0 }, { -157, 0, 1027, 0 }, { 10, 0, 1029, 0 }, + { 178, 0, 1027, 0 }, { 251, 0, 1028, 0 }, { 389, 0, 1039, 0 }, { 565, 0, 1042, 0 }, { 774, 0, 1023, 0 }, + { 978, 0, 992, 0 }, { 1159, 0, 942, 0 }, { 1453, 0, 801, 0 }, { 1679, 0, 655, 0 }, { 1821, 0, 487, 0 }, + { 1905, 0, 307, 0 }, { 1917, 0, 230, 0 }, { 1905, 0, 154, 0 }, { 1868, 0, 81, 0 }, { 1785, 0, 11, 0 }, + { 1696, 0, -11, 0 }, { 1593, 0, 1, 0 }, { 1517, 0, 54, 0 }, { 1461, 0, 132, 0 }, { 1444, 0, 211, 0 }, + { 1451, 0, 300, 0 }, { 1467, 0, 388, 0 }, { 1466, 0, 492, 0 }, { 1426, 0, 622, 0 }, { 1359, 0, 712, 0 }, + { 1237, 0, 792, 0 }, { 1042, 0, 880, 0 }, { 882, 0, 908, 0 }, { 695, 0, 922, 0 }, { 571, 0, 893, 0 }, + { 476, 0, 842, 0 }, { 408, 0, 782, 0 }, { 320, 0, 660, 0 }, { 235, 0, 539, 0 }, { 172, 0, 469, 0 }, + { 97, 0, 409, 0 }, { 48, 0, 371, 0 }, { 17, 0, 322, 0 }, { -4, 0, 263, 0 }, { -4, 0, 203, 0 }, + { 0, 0, 63, 0 }, { 6, 0, -132, 0 }, { 5, 0, -378, 0 }, { -5, 0, -630, 0 }, { -32768, 0, 0, 0 }, diff --git a/courses/dks_jungle_parkway/course_data.c b/courses/dks_jungle_parkway/course_data.c index d61314befc..c33119181d 100644 --- a/courses/dks_jungle_parkway/course_data.c +++ b/courses/dks_jungle_parkway/course_data.c @@ -204,7 +204,9 @@ Gfx d_course_dks_jungle_parkway_dl_560[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_12A8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_1118), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_FD0), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_0), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_7E0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2E28), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2DC8), @@ -402,7 +404,9 @@ Gfx d_course_dks_jungle_parkway_dl_B00[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_17D0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_EC8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_6C8), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_520), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_918), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2DC8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2D60), @@ -439,7 +443,9 @@ Gfx d_course_dks_jungle_parkway_dl_C30[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_1430), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_12A8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_FD0), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_EC8), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_6C8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_520), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_398), @@ -537,8 +543,12 @@ Gfx d_course_dks_jungle_parkway_dl_EF0[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_1B38), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_7E0), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_29F0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2788), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2E28), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2DC8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2D60), @@ -579,7 +589,9 @@ Gfx d_course_dks_jungle_parkway_dl_1028[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_1970), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_17D0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_EC8), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_6C8), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2D60), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2D00), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2378), @@ -616,7 +628,9 @@ Gfx d_course_dks_jungle_parkway_dl_1028[] = { Gfx d_course_dks_jungle_parkway_dl_1160[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_12A8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_FD0), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_17D0), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_EC8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_6C8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_520), @@ -726,8 +740,12 @@ Gfx d_course_dks_jungle_parkway_dl_1478[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_1B38), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_7E0), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_29F0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2788), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2E28), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2DC8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2D60), @@ -773,7 +791,9 @@ Gfx d_course_dks_jungle_parkway_dl_15E0[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_1B38), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_1970), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_17D0), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_EC8), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2D60), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2378), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_37C0), @@ -866,7 +886,9 @@ Gfx d_course_dks_jungle_parkway_dl_1890[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_EC8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_520), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_398), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_0), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_B68), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_918), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_29F0), @@ -914,8 +936,12 @@ Gfx d_course_dks_jungle_parkway_dl_1A00[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_1B38), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_7E0), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_29F0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2788), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2D60), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_37C0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_3A48), @@ -1493,8 +1519,12 @@ Gfx d_course_dks_jungle_parkway_dl_2AC0[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_17D0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_520), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_B68), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_918), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_29F0), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2D00), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2100), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_33A8), @@ -1507,7 +1537,9 @@ Gfx d_course_dks_jungle_parkway_dl_2AC0[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_4AB0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_56B8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_5648), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_5558), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_7920), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_7A88), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_7B10), @@ -1527,7 +1559,9 @@ Gfx d_course_dks_jungle_parkway_dl_2B88[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_7E0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_C90), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_B68), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_918), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_29F0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2788), @@ -1678,7 +1712,9 @@ Gfx d_course_dks_jungle_parkway_dl_3010[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_520), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_398), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_B68), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_918), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2D00), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2510), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2100), @@ -2000,7 +2036,9 @@ Gfx d_course_dks_jungle_parkway_dl_3988[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_17D0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_EC8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_6C8), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_520), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_B68), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2D60), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2D00), @@ -2102,13 +2140,17 @@ Gfx d_course_dks_jungle_parkway_dl_3B28[] = { }; Gfx d_course_dks_jungle_parkway_dl_3CC8[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_1970), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_EC8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_6C8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_520), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_398), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_B68), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2D00), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2510), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2100), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_32D8), @@ -2597,7 +2639,9 @@ Gfx d_course_dks_jungle_parkway_dl_4AE8[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_12A8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_1118), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_FD0), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_398), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_7E0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_C90), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_1EB8), @@ -2703,7 +2747,9 @@ Gfx d_course_dks_jungle_parkway_dl_4D10[] = { }; Gfx d_course_dks_jungle_parkway_dl_4E10[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_1B38), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_1970), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_17D0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_6C8), @@ -2764,7 +2810,9 @@ Gfx d_course_dks_jungle_parkway_dl_4FB0[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_FD0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_1C98), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_1B38), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_1970), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_398), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_200), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_0), @@ -3170,7 +3218,9 @@ Gfx d_course_dks_jungle_parkway_dl_5B90[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_FD0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_200), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_0), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_C90), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_29F0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2890), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2570), @@ -3210,7 +3260,9 @@ Gfx d_course_dks_jungle_parkway_dl_5CB0[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_C90), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_29F0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2890), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2B78), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_21C0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2450), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_35F0), @@ -3282,7 +3334,9 @@ Gfx d_course_dks_jungle_parkway_dl_5DF8[] = { Gfx d_course_dks_jungle_parkway_dl_5EC8[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_200), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_0), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_C90), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2890), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2570), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2B78), @@ -3316,11 +3370,15 @@ Gfx d_course_dks_jungle_parkway_dl_5FA8[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_7E0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_C90), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2890), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2B78), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_dl_0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_51C8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_50A8), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_4DB8), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_6798), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_6430), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_6008), @@ -3334,13 +3392,19 @@ Gfx d_course_dks_jungle_parkway_dl_5FA8[] = { }; Gfx d_course_dks_jungle_parkway_dl_6048[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_FD0), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_200), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2890), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2788), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2570), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2E28), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_24B0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2450), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_23F0), @@ -3356,7 +3420,9 @@ Gfx d_course_dks_jungle_parkway_dl_6048[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_3C50), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_3D08), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_4A08), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_4D30), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_5420), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_52C0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_51C8), @@ -3425,7 +3491,9 @@ Gfx d_course_dks_jungle_parkway_dl_62D0[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_FD0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_200), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_0), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_C90), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2890), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2788), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2570), @@ -3453,7 +3521,9 @@ Gfx d_course_dks_jungle_parkway_dl_62D0[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_4D30), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_5420), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_52C0), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_50A8), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_4FE8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_4EB8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_4DB8), @@ -3482,7 +3552,9 @@ Gfx d_course_dks_jungle_parkway_dl_6468[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2890), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2788), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2570), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2B78), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_23F0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_3130), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_30C0), @@ -3500,7 +3572,9 @@ Gfx d_course_dks_jungle_parkway_dl_6468[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_51C8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_50A8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_4EB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_4DB8), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_6098), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_6008), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_5F80), @@ -3515,7 +3589,9 @@ Gfx d_course_dks_jungle_parkway_dl_6468[] = { Gfx d_course_dks_jungle_parkway_dl_6588[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_0), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_7E0), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2890), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2788), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2E28), @@ -3548,7 +3624,9 @@ Gfx d_course_dks_jungle_parkway_dl_6588[] = { }; Gfx d_course_dks_jungle_parkway_dl_6680[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_0), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_7E0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_C90), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2570), @@ -3562,12 +3640,16 @@ Gfx d_course_dks_jungle_parkway_dl_6680[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_4300), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_4548), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_3D08), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_52C0), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_51C8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_50A8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_4FE8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_4EB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_6100), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_85A0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_8648), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_9128), @@ -3632,7 +3714,9 @@ Gfx d_course_dks_jungle_parkway_dl_67C0[] = { Gfx d_course_dks_jungle_parkway_dl_68D0[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_0), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_7E0), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2788), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_24B0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_23F0), @@ -3665,7 +3749,9 @@ Gfx d_course_dks_jungle_parkway_dl_68D0[] = { }; Gfx d_course_dks_jungle_parkway_dl_69C8[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_0), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_7E0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_C90), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_3058), @@ -3680,7 +3766,9 @@ Gfx d_course_dks_jungle_parkway_dl_69C8[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_50A8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_4FE8), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_4EB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_6100), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_85A0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_8648), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_86B0), @@ -3902,7 +3990,9 @@ Gfx d_course_dks_jungle_parkway_dl_6F10[] = { Gfx d_course_dks_jungle_parkway_dl_7008[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_1430), +#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_12A8), +#endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_1118), gsSPDisplayList(d_course_dks_jungle_parkway_dl_0), gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_4230), @@ -3971,834 +4061,23 @@ Gfx d_course_dks_jungle_parkway_dl_7108[] = { }; // 0x71F0 +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_dks_jungle_parkway_unknown_path[] = { - { 2, 0, 12, 0 }, { 5, 0, -5, 0 }, { 0, 0, -211, 0 }, { 0, 0, -455, 0 }, - { 9, 0, -522, 0 }, { 39, 0, -585, 0 }, { 91, 0, -634, 0 }, { 149, 0, -678, 0 }, - { 428, 0, -840, 0 }, { 730, 0, -1014, 0 }, { 884, 0, -1081, 0 }, { 1118, 0, -1142, 0 }, - { 1434, 0, -1186, 0 }, { 1666, 0, -1172, 0 }, { 1819, 0, -1110, 0 }, { 1928, 0, -1045, 0 }, - { 2009, 0, -947, 0 }, { 2053, 0, -831, 0 }, { 2044, 0, -710, 0 }, { 1981, 0, -601, 0 }, - { 1882, 0, -534, 0 }, { 1768, 0, -511, 0 }, { 1668, 0, -529, 0 }, { 1598, 0, -571, 0 }, - { 1568, 0, -622, 0 }, { 1570, 0, -673, 0 }, { 1591, 0, -734, 0 }, { 1654, 0, -852, 0 }, - { 1761, 0, -1054, 0 }, { 1936, 0, -1436, 0 }, { 2105, 0, -1798, 0 }, { 2098, 0, -1827, 0 }, - { 2043, 0, -1860, 0 }, { 1931, 0, -1897, 0 }, { 1776, 0, -1934, 0 }, { 1444, 0, -1983, 0 }, - { 1165, 0, -1960, 0 }, { 842, 0, -1917, 0 }, { 670, 0, -1875, 0 }, { 610, 0, -1875, 0 }, - { 573, 0, -1905, 0 }, { 526, 0, -2033, 0 }, { 505, 0, -2128, 0 }, { 497, 0, -2239, 0 }, - { 490, 0, -2411, 0 }, { 483, 0, -2506, 0 }, { 460, 0, -2581, 0 }, { 381, 0, -2643, 0 }, - { 286, 0, -2657, 0 }, { -72, 0, -2622, 0 }, { -377, 0, -2588, 0 }, { -472, 0, -2558, 0 }, - { -551, 0, -2486, 0 }, { -593, 0, -2368, 0 }, { -591, 0, -2219, 0 }, { -544, 0, -1996, 0 }, - { -465, 0, -1699, 0 }, { -437, 0, -1564, 0 }, { -442, 0, -1462, 0 }, { -498, 0, -1378, 0 }, - { -588, 0, -1334, 0 }, { -667, 0, -1343, 0 }, { -742, 0, -1392, 0 }, { -946, 0, -1617, 0 }, - { -1087, 0, -1789, 0 }, { -1164, 0, -1862, 0 }, { -1269, 0, -1897, 0 }, { -1380, 0, -1895, 0 }, - { -1485, 0, -1837, 0 }, { -1566, 0, -1742, 0 }, { -1629, 0, -1595, 0 }, { -1675, 0, -1296, 0 }, - { -1682, 0, -1051, 0 }, { -1645, 0, -873, 0 }, { -1549, 0, -698, 0 }, { -1378, 0, -580, 0 }, - { -1245, 0, -538, 0 }, { -598, 0, -343, 0 }, { -468, 0, -299, 0 }, { -391, 0, -268, 0 }, - { -332, 0, -212, 0 }, { -307, 0, -133, 0 }, { -321, 0, -38, 0 }, { -384, 0, 71, 0 }, - { -521, 0, 263, 0 }, { -672, 0, 467, 0 }, { -756, 0, 609, 0 }, { -779, 0, 690, 0 }, - { -779, 0, 781, 0 }, { -740, 0, 846, 0 }, { -661, 0, 888, 0 }, { -538, 0, 890, 0 }, - { -438, 0, 860, 0 }, { -350, 0, 818, 0 }, { -278, 0, 767, 0 }, { -210, 0, 702, 0 }, - { -113, 0, 595, 0 }, { -38, 0, 472, 0 }, { 1, 0, 361, 0 }, { 3, 0, 251, 0 }, - { 3, 0, 45, 0 }, { -32768, 0, 0, 0 }, +#include "courses/dks_jungle_parkway/d_course_dks_jungle_parkway_unknown_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_dks_jungle_parkway_ferry_path[] = { - { 1237, 0, -1373, 0 }, { 1206, 0, -1365, 0 }, { 877, 0, -1272, 0 }, { 614, 0, -1152, 0 }, { 254, 0, -959, 0 }, - { -44, 0, -852, 0 }, { -217, 0, -814, 0 }, { -350, 0, -801, 0 }, { -431, 0, -842, 0 }, { -442, 0, -942, 0 }, - { -395, 0, -1039, 0 }, { -314, 0, -1154, 0 }, { -125, 0, -1307, 0 }, { 95, 0, -1466, 0 }, { 316, 0, -1570, 0 }, - { 641, 0, -1690, 0 }, { 970, 0, -1775, 0 }, { 1349, 0, -1818, 0 }, { 1694, 0, -1775, 0 }, { 2050, 0, -1613, 0 }, - { 2288, 0, -1397, 0 }, { 2407, 0, -1226, 0 }, { 2511, 0, -1018, 0 }, { 2505, 0, -933, 0 }, { 2400, 0, -931, 0 }, - { 2285, 0, -993, 0 }, { 2173, 0, -1089, 0 }, { 2005, 0, -1204, 0 }, { 1862, 0, -1286, 0 }, { 1696, 0, -1347, 0 }, - { 1293, 0, -1375, 0 }, { -32768, 0, 0, 0 }, +#include "courses/dks_jungle_parkway/d_course_dks_jungle_parkway_ferry_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_dks_jungle_parkway_track_path[] = { - { 3, 0, 3, 1 }, - { 4, 0, -16, 1 }, - { 3, 0, -36, 1 }, - { 3, 0, -56, 1 }, - { 3, 0, -76, 1 }, - { 2, 0, -96, 1 }, - { 2, 0, -116, 1 }, - { 1, 0, -136, 1 }, - { 1, 0, -156, 1 }, - { 1, 0, -176, 1 }, - { 0, 0, -196, 1 }, - { 0, 0, -216, 1 }, - { 0, 0, -236, 1 }, - { 0, 0, -256, 1 }, - { 0, 0, -276, 1 }, - { 0, 0, -296, 1 }, - { 0, 0, -316, 1 }, - { 0, 0, -336, 1 }, - { 0, 0, -356, 1 }, - { 0, 0, -376, 1 }, - { 0, 0, -396, 1 }, - { 0, 0, -416, 1 }, - { 1, 0, -436, 1 }, - { 2, 0, -456, 1 }, - { 3, 0, -476, 2 }, - { 5, 0, -496, 2 }, - { 10, 0, -516, 2 }, - { 16, 0, -535, 2 }, - { 24, 0, -553, 2 }, - { 33, 0, -571, 2 }, - { 44, 0, -587, 2 }, - { 58, 0, -602, 2 }, - { 72, 0, -616, 2 }, - { 87, 0, -629, 2 }, - { 102, 0, -642, 2 }, - { 118, 0, -654, 2 }, - { 134, 0, -666, 2 }, - { 151, 0, -677, 3 }, - { 168, 0, -687, 3 }, - { 185, 0, -698, 3 }, - { 202, 0, -708, 3 }, - { 220, 0, -718, 3 }, - { 237, 0, -729, 3 }, - { 254, 0, -739, 3 }, - { 271, 0, -749, 3 }, - { 289, 0, -759, 3 }, - { 306, 0, -769, 3 }, - { 323, 0, -779, 3 }, - { 341, 0, -789, 3 }, - { 358, 0, -799, 3 }, - { 375, 0, -809, 3 }, - { 393, 0, -819, 3 }, - { 410, 0, -829, 3 }, - { 427, 0, -839, 3 }, - { 445, 0, -849, 3 }, - { 462, 0, -859, 3 }, - { 479, 0, -869, 3 }, - { 497, 0, -879, 3 }, - { 514, 0, -889, 3 }, - { 531, 0, -899, 3 }, - { 549, 0, -909, 3 }, - { 566, 0, -919, 3 }, - { 583, 0, -929, 3 }, - { 601, 0, -939, 3 }, - { 618, 0, -949, 3 }, - { 635, 0, -959, 3 }, - { 653, 0, -969, 3 }, - { 670, 0, -978, 3 }, - { 688, 0, -988, 3 }, - { 706, 0, -997, 3 }, - { 723, 0, -1007, 3 }, - { 741, 0, -1016, 4 }, - { 759, 0, -1025, 4 }, - { 777, 0, -1034, 4 }, - { 795, 0, -1042, 4 }, - { 814, 0, -1050, 4 }, - { 832, 0, -1058, 4 }, - { 851, 0, -1065, 4 }, - { 870, 0, -1072, 4 }, - { 889, 0, -1078, 4 }, - { 908, 0, -1084, 4 }, - { 927, 0, -1090, 4 }, - { 946, 0, -1096, 4 }, - { 965, 0, -1101, 4 }, - { 984, 0, -1107, 4 }, - { 1004, 0, -1112, 4 }, - { 1023, 0, -1117, 4 }, - { 1043, 0, -1121, 4 }, - { 1062, 0, -1126, 4 }, - { 1082, 0, -1130, 4 }, - { 1101, 0, -1134, 4 }, - { 1121, 0, -1138, 5 }, - { 1141, 0, -1142, 5 }, - { 1160, 0, -1145, 5 }, - { 1180, 0, -1149, 5 }, - { 1200, 0, -1152, 5 }, - { 1219, 0, -1155, 5 }, - { 1239, 0, -1158, 5 }, - { 1259, 0, -1161, 5 }, - { 1279, 0, -1164, 5 }, - { 1299, 0, -1167, 5 }, - { 1319, 0, -1169, 5 }, - { 1338, 0, -1171, 5 }, - { 1358, 0, -1173, 5 }, - { 1378, 0, -1175, 5 }, - { 1398, 0, -1177, 5 }, - { 1418, 0, -1178, 5 }, - { 1438, 0, -1179, 5 }, - { 1458, 0, -1180, 5 }, - { 1478, 0, -1180, 5 }, - { 1498, 0, -1180, 5 }, - { 1518, 0, -1180, 5 }, - { 1538, 0, -1179, 5 }, - { 1558, 0, -1178, 5 }, - { 1578, 0, -1176, 5 }, - { 1598, 0, -1174, 5 }, - { 1618, 0, -1172, 5 }, - { 1638, 0, -1169, 5 }, - { 1657, 0, -1165, 5 }, - { 1677, 0, -1161, 6 }, - { 1696, 0, -1156, 6 }, - { 1715, 0, -1150, 6 }, - { 1734, 0, -1144, 6 }, - { 1753, 0, -1136, 6 }, - { 1771, 0, -1128, 6 }, - { 1790, 0, -1120, 6 }, - { 1808, 0, -1112, 6 }, - { 1826, 0, -1103, 6 }, - { 1843, 0, -1094, 6 }, - { 1861, 0, -1084, 6 }, - { 1878, 0, -1074, 6 }, - { 1895, 0, -1063, 6 }, - { 1911, 0, -1051, 6 }, - { 1926, 0, -1038, 6 }, - { 1941, 0, -1025, 6 }, - { 1955, 0, -1010, 6 }, - { 1968, 0, -995, 6 }, - { 1981, 0, -979, 6 }, - { 1992, 0, -963, 6 }, - { 2003, 0, -946, 6 }, - { 2012, 0, -929, 7 }, - { 2021, 0, -911, 7 }, - { 2029, 0, -892, 7 }, - { 2036, 1, -873, 7 }, - { 2041, 2, -854, 7 }, - { 2045, 3, -835, 7 }, - { 2048, 3, -815, 7 }, - { 2049, 4, -795, 7 }, - { 2048, 4, -775, 7 }, - { 2046, 5, -755, 7 }, - { 2043, 6, -735, 7 }, - { 2038, 7, -716, 7 }, - { 2032, 8, -697, 7 }, - { 2024, 9, -678, 7 }, - { 2015, 9, -660, 7 }, - { 2005, 10, -643, 7 }, - { 1993, 11, -627, 7 }, - { 1981, 12, -611, 7 }, - { 1967, 13, -597, 7 }, - { 1952, 14, -583, 7 }, - { 1937, 14, -571, 7 }, - { 1920, 15, -560, 7 }, - { 1903, 16, -550, 7 }, - { 1885, 17, -541, 7 }, - { 1866, 18, -534, 8 }, - { 1847, 19, -527, 8 }, - { 1828, 19, -523, 8 }, - { 1808, 20, -519, 8 }, - { 1788, 21, -517, 8 }, - { 1768, 22, -516, 8 }, - { 1748, 24, -516, 8 }, - { 1728, 25, -518, 8 }, - { 1708, 27, -521, 8 }, - { 1689, 28, -526, 8 }, - { 1670, 30, -532, 8 }, - { 1651, 32, -540, 8 }, - { 1634, 34, -549, 8 }, - { 1617, 36, -560, 8 }, - { 1601, 38, -573, 8 }, - { 1588, 40, -587, 8 }, - { 1578, 41, -605, 9 }, - { 1571, 42, -623, 9 }, - { 1568, 42, -643, 9 }, - { 1570, 44, -663, 9 }, - { 1574, 45, -683, 9 }, - { 1580, 46, -702, 9 }, - { 1587, 47, -721, 9 }, - { 1595, 48, -739, 9 }, - { 1604, 48, -757, 9 }, - { 1613, 48, -775, 9 }, - { 1622, 48, -792, 9 }, - { 1631, 48, -810, 9 }, - { 1641, 48, -828, 9 }, - { 1650, 48, -845, 9 }, - { 1660, 48, -863, 9 }, - { 1669, 48, -881, 9 }, - { 1678, 48, -898, 9 }, - { 1688, 48, -916, 9 }, - { 1697, 48, -934, 9 }, - { 1706, 48, -952, 9 }, - { 1716, 49, -969, 9 }, - { 1725, 51, -987, 9 }, - { 1734, 53, -1005, 9 }, - { 1743, 54, -1023, 9 }, - { 1752, 56, -1041, 9 }, - { 1761, 56, -1059, 9 }, - { 1769, 56, -1077, 9 }, - { 1778, 56, -1095, 6 }, - { 1787, 56, -1113, 6 }, - { 1795, 56, -1131, 6 }, - { 1804, 56, -1149, 6 }, - { 1812, 56, -1167, 6 }, - { 1821, 56, -1185, 6 }, - { 1829, 56, -1203, 6 }, - { 1837, 56, -1222, 6 }, - { 1846, 56, -1240, 6 }, - { 1854, 56, -1258, 6 }, - { 1863, 56, -1276, 6 }, - { 1871, 56, -1294, 6 }, - { 1879, 56, -1313, 6 }, - { 1888, 56, -1331, 6 }, - { 1896, 56, -1349, 6 }, - { 1904, 56, -1367, 6 }, - { 1913, 52, -1385, 9 }, - { 1921, 48, -1403, 9 }, - { 1929, 44, -1422, 9 }, - { 1938, 40, -1440, 9 }, - { 1946, 36, -1458, 9 }, - { 1955, 32, -1476, 9 }, - { 1963, 28, -1494, 9 }, - { 1972, 24, -1512, 9 }, - { 1980, 20, -1531, 9 }, - { 1988, 16, -1549, 9 }, - { 1997, 12, -1567, 9 }, - { 2005, 12, -1585, 9 }, - { 2014, 12, -1603, 9 }, - { 2022, 12, -1621, 9 }, - { 2031, 12, -1639, 9 }, - { 2039, 12, -1658, 9 }, - { 2047, 12, -1676, 9 }, - { 2056, 12, -1694, 9 }, - { 2064, 12, -1712, 9 }, - { 2072, 12, -1731, 9 }, - { 2080, 12, -1749, 9 }, - { 2087, 12, -1768, 9 }, - { 2094, 8, -1786, 10 }, - { 2100, 4, -1805, 10 }, - { 2095, 0, -1824, 10 }, - { 2080, -3, -1837, 10 }, - { 2063, -7, -1847, 10 }, - { 2045, -17, -1856, 10 }, - { 2026, -17, -1864, 10 }, - { 2007, -17, -1871, 10 }, - { 1988, -17, -1877, 10 }, - { 1969, -17, -1883, 10 }, - { 1950, -17, -1889, 10 }, - { 1931, -17, -1895, 10 }, - { 1912, -17, -1900, 10 }, - { 1892, -17, -1905, 10 }, - { 1873, -17, -1910, 10 }, - { 1854, -17, -1915, 10 }, - { 1834, -17, -1919, 10 }, - { 1814, -17, -1923, 10 }, - { 1795, -17, -1927, 10 }, - { 1775, -17, -1931, 11 }, - { 1755, -17, -1935, 11 }, - { 1736, -17, -1938, 11 }, - { 1716, -17, -1941, 11 }, - { 1696, -17, -1945, 11 }, - { 1677, -17, -1948, 11 }, - { 1657, -17, -1951, 11 }, - { 1637, -17, -1954, 11 }, - { 1617, -17, -1957, 11 }, - { 1597, -17, -1960, 11 }, - { 1577, -17, -1962, 11 }, - { 1558, -17, -1965, 11 }, - { 1538, -17, -1967, 11 }, - { 1518, -17, -1969, 11 }, - { 1498, -17, -1971, 11 }, - { 1478, -17, -1972, 11 }, - { 1458, -17, -1973, 11 }, - { 1438, -17, -1974, 11 }, - { 1418, -17, -1974, 11 }, - { 1398, -17, -1975, 11 }, - { 1378, -17, -1975, 11 }, - { 1358, -17, -1974, 11 }, - { 1338, -17, -1973, 11 }, - { 1318, -17, -1972, 11 }, - { 1298, -17, -1971, 11 }, - { 1278, -17, -1969, 11 }, - { 1258, -17, -1967, 11 }, - { 1238, -17, -1965, 11 }, - { 1218, -17, -1963, 11 }, - { 1198, -17, -1961, 11 }, - { 1178, -17, -1959, 11 }, - { 1159, -17, -1957, 11 }, - { 1139, -17, -1955, 11 }, - { 1119, -17, -1952, 11 }, - { 1099, -17, -1950, 11 }, - { 1079, -17, -1948, 11 }, - { 1059, -17, -1945, 11 }, - { 1039, -17, -1943, 11 }, - { 1019, -17, -1940, 11 }, - { 1000, -17, -1938, 11 }, - { 980, -17, -1935, 11 }, - { 960, -17, -1932, 11 }, - { 940, -17, -1929, 11 }, - { 920, -17, -1926, 11 }, - { 901, -17, -1923, 11 }, - { 881, -17, -1920, 11 }, - { 861, -17, -1917, 12 }, - { 841, -17, -1913, 12 }, - { 822, -17, -1910, 12 }, - { 802, -17, -1906, 12 }, - { 783, -17, -1902, 12 }, - { 763, -17, -1897, 12 }, - { 744, -17, -1893, 12 }, - { 724, -17, -1888, 12 }, - { 704, -17, -1884, 12 }, - { 685, -17, -1880, 12 }, - { 665, -17, -1877, 12 }, - { 645, -17, -1875, 12 }, - { 625, -17, -1875, 12 }, - { 606, -17, -1881, 12 }, - { 589, -16, -1891, 12 }, - { 577, -15, -1907, 12 }, - { 567, -14, -1925, 12 }, - { 559, -13, -1943, 12 }, - { 552, -12, -1961, 12 }, - { 545, -11, -1980, 12 }, - { 538, -9, -1999, 12 }, - { 532, -8, -2018, 12 }, - { 526, -7, -2037, 12 }, - { 521, -5, -2057, 12 }, - { 516, -3, -2076, 12 }, - { 512, -1, -2096, 12 }, - { 508, 0, -2115, 12 }, - { 505, 0, -2135, 12 }, - { 503, 0, -2155, 12 }, - { 501, 1, -2175, 12 }, - { 500, 0, -2195, 13 }, - { 498, 0, -2215, 13 }, - { 497, -1, -2235, 13 }, - { 496, -1, -2255, 13 }, - { 495, -1, -2275, 13 }, - { 494, 0, -2295, 13 }, - { 493, 0, -2315, 13 }, - { 493, 0, -2335, 13 }, - { 492, 0, -2355, 13 }, - { 491, 1, -2375, 13 }, - { 490, 1, -2395, 13 }, - { 489, 1, -2415, 13 }, - { 488, 1, -2435, 13 }, - { 486, 0, -2455, 13 }, - { 485, 0, -2474, 13 }, - { 482, 1, -2494, 13 }, - { 478, 1, -2514, 13 }, - { 474, 1, -2533, 13 }, - { 468, 1, -2553, 13 }, - { 458, 0, -2570, 13 }, - { 447, 0, -2586, 13 }, - { 433, 0, -2601, 13 }, - { 417, 1, -2614, 13 }, - { 401, 1, -2625, 13 }, - { 383, 0, -2634, 13 }, - { 365, 0, -2642, 13 }, - { 345, 0, -2647, 13 }, - { 326, 0, -2650, 13 }, - { 306, 0, -2651, 13 }, - { 286, 0, -2651, 13 }, - { 266, -1, -2651, 13 }, - { 246, -1, -2650, 13 }, - { 226, -1, -2649, 14 }, - { 206, -1, -2648, 14 }, - { 186, -1, -2646, 14 }, - { 166, -1, -2644, 14 }, - { 146, -1, -2643, 14 }, - { 126, -1, -2641, 14 }, - { 106, -1, -2639, 14 }, - { 86, -1, -2637, 14 }, - { 66, -1, -2635, 14 }, - { 46, -1, -2633, 14 }, - { 26, -1, -2631, 14 }, - { 6, -1, -2629, 14 }, - { -13, -1, -2627, 14 }, - { -32, -1, -2625, 14 }, - { -52, -1, -2623, 14 }, - { -72, 0, -2621, 14 }, - { -92, 0, -2619, 14 }, - { -112, 0, -2617, 14 }, - { -132, 0, -2615, 14 }, - { -152, 0, -2612, 14 }, - { -172, 0, -2610, 14 }, - { -192, 0, -2608, 14 }, - { -212, 0, -2606, 14 }, - { -232, 0, -2604, 14 }, - { -251, 0, -2601, 14 }, - { -271, 0, -2599, 14 }, - { -291, 0, -2596, 14 }, - { -311, 0, -2594, 14 }, - { -331, 0, -2591, 14 }, - { -351, 0, -2588, 14 }, - { -370, 0, -2585, 14 }, - { -390, 0, -2581, 15 }, - { -409, 1, -2577, 15 }, - { -429, 1, -2571, 15 }, - { -447, 1, -2564, 15 }, - { -465, 1, -2555, 15 }, - { -482, 0, -2544, 15 }, - { -498, 0, -2532, 15 }, - { -513, 0, -2519, 15 }, - { -527, -1, -2505, 15 }, - { -540, -1, -2489, 15 }, - { -550, -2, -2472, 15 }, - { -560, -3, -2455, 15 }, - { -568, -3, -2436, 15 }, - { -575, -3, -2417, 15 }, - { -580, -2, -2398, 15 }, - { -584, -2, -2379, 15 }, - { -588, -1, -2359, 15 }, - { -590, 0, -2339, 15 }, - { -591, 0, -2319, 15 }, - { -592, 0, -2299, 15 }, - { -591, 0, -2279, 15 }, - { -590, 0, -2259, 15 }, - { -588, 0, -2239, 15 }, - { -586, 0, -2219, 16 }, - { -584, 0, -2199, 16 }, - { -581, 1, -2180, 16 }, - { -577, 1, -2160, 16 }, - { -574, 2, -2140, 16 }, - { -570, 1, -2120, 16 }, - { -566, 1, -2101, 16 }, - { -561, 1, -2081, 16 }, - { -557, 1, -2062, 16 }, - { -553, 1, -2042, 16 }, - { -548, 1, -2023, 16 }, - { -544, 1, -2003, 16 }, - { -539, 0, -1984, 16 }, - { -534, 0, -1964, 16 }, - { -529, 0, -1945, 16 }, - { -524, 0, -1926, 16 }, - { -519, 0, -1906, 16 }, - { -514, 0, -1887, 16 }, - { -509, 0, -1867, 16 }, - { -504, 0, -1848, 16 }, - { -499, 0, -1829, 16 }, - { -494, 0, -1809, 16 }, - { -489, 0, -1790, 16 }, - { -484, 1, -1771, 16 }, - { -479, 1, -1751, 16 }, - { -474, 1, -1732, 16 }, - { -469, 1, -1712, 16 }, - { -465, 2, -1693, 17 }, - { -460, 2, -1674, 17 }, - { -455, 3, -1654, 17 }, - { -451, 3, -1634, 17 }, - { -447, 3, -1615, 17 }, - { -444, 2, -1595, 17 }, - { -441, 2, -1575, 17 }, - { -440, 1, -1555, 17 }, - { -439, 0, -1535, 17 }, - { -439, 0, -1515, 17 }, - { -441, 0, -1495, 17 }, - { -444, 1, -1476, 17 }, - { -450, 2, -1457, 17 }, - { -458, 2, -1438, 17 }, - { -468, 2, -1421, 17 }, - { -480, 2, -1405, 17 }, - { -494, 2, -1390, 17 }, - { -509, 1, -1377, 17 }, - { -525, 0, -1365, 17 }, - { -542, 0, -1356, 17 }, - { -561, 0, -1348, 17 }, - { -580, 0, -1342, 17 }, - { -600, 0, -1338, 17 }, - { -620, 0, -1337, 17 }, - { -639, 0, -1340, 17 }, - { -659, 0, -1345, 17 }, - { -677, 0, -1352, 17 }, - { -695, 0, -1362, 17 }, - { -712, 0, -1373, 17 }, - { -727, 0, -1385, 17 }, - { -742, 0, -1399, 17 }, - { -757, 0, -1412, 17 }, - { -771, 0, -1427, 17 }, - { -785, 0, -1441, 17 }, - { -799, 0, -1455, 18 }, - { -812, 0, -1470, 18 }, - { -826, 0, -1485, 18 }, - { -839, 0, -1499, 18 }, - { -853, 0, -1514, 18 }, - { -866, 0, -1529, 18 }, - { -880, 0, -1544, 18 }, - { -893, 0, -1559, 18 }, - { -906, 0, -1574, 18 }, - { -919, 0, -1589, 18 }, - { -933, 0, -1604, 18 }, - { -946, 0, -1619, 18 }, - { -959, 0, -1634, 18 }, - { -972, 0, -1650, 18 }, - { -985, 0, -1665, 18 }, - { -998, 0, -1680, 18 }, - { -1010, 0, -1696, 18 }, - { -1023, 0, -1711, 18 }, - { -1036, 0, -1726, 18 }, - { -1049, 0, -1742, 18 }, - { -1062, 0, -1757, 18 }, - { -1075, 0, -1772, 18 }, - { -1088, 0, -1787, 18 }, - { -1102, 0, -1802, 18 }, - { -1116, 0, -1816, 18 }, - { -1130, 0, -1830, 18 }, - { -1146, 0, -1843, 18 }, - { -1162, 0, -1854, 18 }, - { -1180, 0, -1864, 19 }, - { -1198, 0, -1872, 19 }, - { -1216, 0, -1879, 19 }, - { -1236, 1, -1885, 19 }, - { -1255, 1, -1889, 19 }, - { -1275, 2, -1893, 19 }, - { -1295, 2, -1895, 19 }, - { -1315, 1, -1896, 19 }, - { -1335, 1, -1895, 19 }, - { -1355, 1, -1893, 19 }, - { -1374, 1, -1889, 19 }, - { -1393, 1, -1883, 19 }, - { -1412, 1, -1876, 19 }, - { -1430, 2, -1867, 19 }, - { -1447, 1, -1857, 19 }, - { -1464, 0, -1845, 19 }, - { -1480, 0, -1833, 19 }, - { -1495, 0, -1820, 19 }, - { -1509, 0, -1806, 19 }, - { -1523, 0, -1792, 19 }, - { -1535, 0, -1776, 19 }, - { -1547, 0, -1760, 19 }, - { -1558, 0, -1743, 19 }, - { -1568, 0, -1726, 19 }, - { -1578, -1, -1708, 19 }, - { -1587, -1, -1690, 19 }, - { -1595, -1, -1672, 19 }, - { -1603, -1, -1654, 19 }, - { -1609, 0, -1635, 19 }, - { -1616, 0, -1616, 19 }, - { -1621, 0, -1597, 20 }, - { -1626, -2, -1577, 20 }, - { -1631, -4, -1558, 20 }, - { -1635, -7, -1538, 20 }, - { -1639, -9, -1519, 20 }, - { -1642, -11, -1499, 20 }, - { -1646, -13, -1479, 20 }, - { -1649, -16, -1459, 20 }, - { -1652, -18, -1440, 20 }, - { -1655, -21, -1420, 20 }, - { -1658, -23, -1400, 20 }, - { -1661, -26, -1380, 20 }, - { -1663, -28, -1360, 20 }, - { -1666, -31, -1340, 20 }, - { -1668, -33, -1321, 20 }, - { -1670, -35, -1301, 20 }, - { -1672, -39, -1281, 20 }, - { -1673, -42, -1261, 20 }, - { -1675, -45, -1241, 20 }, - { -1676, -48, -1221, 20 }, - { -1677, -53, -1201, 20 }, - { -1678, -57, -1181, 20 }, - { -1678, -61, -1161, 20 }, - { -1679, -65, -1141, 20 }, - { -1678, -68, -1121, 20 }, - { -1678, -72, -1101, 20 }, - { -1677, -76, -1081, 20 }, - { -1676, -80, -1061, 21 }, - { -1675, -83, -1041, 21 }, - { -1672, -86, -1021, 21 }, - { -1670, -90, -1001, 21 }, - { -1667, -93, -981, 21 }, - { -1663, -97, -962, 21 }, - { -1659, -101, -942, 21 }, - { -1654, -104, -923, 21 }, - { -1648, -108, -904, 21 }, - { -1641, -112, -885, 21 }, - { -1634, -115, -866, 21 }, - { -1627, -118, -847, 21 }, - { -1619, -122, -829, 21 }, - { -1610, -125, -811, 21 }, - { -1601, -128, -793, 21 }, - { -1591, -131, -776, 21 }, - { -1581, -134, -759, 21 }, - { -1570, -137, -742, 21 }, - { -1557, -140, -726, 21 }, - { -1545, -144, -711, 21 }, - { -1531, -147, -696, 21 }, - { -1517, -149, -682, 21 }, - { -1502, -152, -669, 21 }, - { -1487, -155, -656, 21 }, - { -1471, -158, -644, 21 }, - { -1454, -159, -632, 21 }, - { -1437, -159, -621, 21 }, - { -1421, -159, -611, 21 }, - { -1403, -159, -601, 21 }, - { -1386, -159, -591, 21 }, - { -1368, -160, -582, 21 }, - { -1350, -160, -573, 21 }, - { -1331, -162, -566, 21 }, - { -1313, -163, -559, 21 }, - { -1293, -165, -553, 21 }, - { -1274, -167, -547, 21 }, - { -1255, -169, -541, 21 }, - { -1236, -170, -535, 21 }, - { -1217, -171, -530, 21 }, - { -1198, -172, -524, 21 }, - { -1179, -173, -518, 21 }, - { -1160, -174, -512, 21 }, - { -1140, -174, -506, 21 }, - { -1121, -175, -500, 21 }, - { -1102, -175, -495, 21 }, - { -1083, -176, -489, 21 }, - { -1064, -176, -483, 21 }, - { -1045, -176, -477, 21 }, - { -1025, -177, -471, 21 }, - { -1006, -177, -466, 21 }, - { -987, -177, -460, 21 }, - { -968, -177, -454, 21 }, - { -949, -177, -448, 21 }, - { -930, -177, -443, 21 }, - { -910, -177, -437, 21 }, - { -891, -177, -431, 21 }, - { -872, -177, -425, 21 }, - { -853, -177, -419, 21 }, - { -834, -177, -414, 21 }, - { -815, -176, -408, 21 }, - { -795, -176, -402, 21 }, - { -776, -176, -396, 21 }, - { -757, -175, -390, 21 }, - { -738, -175, -385, 21 }, - { -719, -175, -379, 21 }, - { -700, -174, -373, 22 }, - { -681, -173, -367, 22 }, - { -661, -172, -361, 22 }, - { -642, -171, -355, 22 }, - { -623, -171, -349, 22 }, - { -604, -170, -343, 22 }, - { -585, -168, -337, 22 }, - { -566, -166, -331, 22 }, - { -547, -164, -325, 22 }, - { -528, -163, -319, 22 }, - { -509, -161, -312, 22 }, - { -490, -160, -306, 23 }, - { -471, -160, -299, 23 }, - { -452, -160, -292, 23 }, - { -434, -160, -285, 23 }, - { -415, -160, -277, 23 }, - { -398, -160, -267, 23 }, - { -381, -160, -256, 23 }, - { -366, -160, -244, 23 }, - { -351, -160, -230, 23 }, - { -339, -160, -214, 23 }, - { -329, -160, -197, 23 }, - { -321, -160, -178, 23 }, - { -315, -160, -159, 23 }, - { -312, -160, -139, 23 }, - { -311, -160, -119, 23 }, - { -312, -160, -99, 23 }, - { -314, -160, -80, 23 }, - { -319, -160, -60, 23 }, - { -325, -160, -41, 23 }, - { -332, -160, -22, 23 }, - { -341, -160, -4, 23 }, - { -350, -160, 12, 23 }, - { -360, -160, 30, 23 }, - { -371, -160, 47, 23 }, - { -381, -160, 64, 23 }, - { -392, -160, 80, 24 }, - { -404, -160, 97, 24 }, - { -415, -160, 113, 24 }, - { -426, -160, 130, 24 }, - { -438, -160, 146, 24 }, - { -449, -160, 163, 24 }, - { -461, -160, 179, 24 }, - { -473, -160, 195, 24 }, - { -484, -160, 211, 24 }, - { -496, -160, 228, 24 }, - { -508, -160, 244, 24 }, - { -519, -160, 260, 24 }, - { -531, -160, 276, 24 }, - { -543, -160, 292, 24 }, - { -555, -160, 309, 24 }, - { -567, -160, 325, 24 }, - { -578, -160, 341, 24 }, - { -590, -160, 357, 24 }, - { -602, -160, 373, 24 }, - { -614, -160, 389, 24 }, - { -626, -160, 405, 24 }, - { -637, -160, 422, 24 }, - { -649, -160, 438, 24 }, - { -660, -160, 455, 24 }, - { -671, -160, 471, 24 }, - { -682, -160, 488, 24 }, - { -693, -160, 505, 24 }, - { -704, -160, 522, 24 }, - { -714, -160, 539, 24 }, - { -724, -160, 556, 24 }, - { -734, -160, 574, 25 }, - { -743, -160, 591, 25 }, - { -752, -160, 609, 25 }, - { -760, -160, 628, 25 }, - { -766, -159, 647, 25 }, - { -771, -157, 666, 25 }, - { -775, -154, 686, 25 }, - { -777, -151, 706, 25 }, - { -778, -149, 726, 25 }, - { -778, -146, 746, 25 }, - { -776, -143, 765, 25 }, - { -771, -141, 785, 25 }, - { -764, -137, 804, 25 }, - { -754, -134, 821, 25 }, - { -741, -130, 836, 25 }, - { -726, -126, 850, 25 }, - { -710, -124, 861, 25 }, - { -692, -119, 870, 25 }, - { -674, -118, 878, 25 }, - { -654, -116, 883, 25 }, - { -635, -113, 886, 25 }, - { -615, -111, 888, 25 }, - { -595, -108, 889, 25 }, - { -575, -106, 888, 25 }, - { -555, -104, 887, 25 }, - { -535, -101, 885, 25 }, - { -515, -98, 881, 25 }, - { -496, -95, 877, 25 }, - { -476, -93, 871, 25 }, - { -457, -91, 865, 25 }, - { -439, -89, 858, 25 }, - { -420, -86, 850, 25 }, - { -402, -84, 842, 25 }, - { -384, -82, 834, 25 }, - { -366, -79, 824, 25 }, - { -348, -77, 815, 25 }, - { -331, -75, 804, 25 }, - { -315, -73, 793, 25 }, - { -299, -71, 781, 26 }, - { -283, -69, 769, 26 }, - { -268, -67, 756, 26 }, - { -253, -65, 743, 26 }, - { -238, -63, 729, 26 }, - { -224, -61, 715, 26 }, - { -210, -59, 700, 26 }, - { -196, -56, 686, 26 }, - { -182, -54, 671, 26 }, - { -169, -53, 657, 26 }, - { -155, -51, 642, 26 }, - { -142, -49, 627, 26 }, - { -130, -47, 611, 26 }, - { -117, -45, 595, 26 }, - { -106, -42, 579, 26 }, - { -94, -40, 563, 26 }, - { -83, -38, 546, 26 }, - { -73, -36, 529, 26 }, - { -63, -34, 512, 26 }, - { -53, -31, 494, 26 }, - { -44, -29, 476, 26 }, - { -35, -27, 458, 26 }, - { -27, -24, 440, 26 }, - { -20, -21, 421, 26 }, - { -14, -19, 402, 26 }, - { -8, -16, 383, 26 }, - { -4, -14, 364, 26 }, - { 0, -12, 344, 26 }, - { 1, -9, 324, 26 }, - { 2, -6, 304, 26 }, - { 2, -4, 284, 26 }, - { 2, -1, 264, 26 }, - { 2, 0, 244, 1 }, - { 2, 0, 224, 1 }, - { 2, 0, 204, 1 }, - { 2, 0, 184, 1 }, - { 2, 0, 164, 1 }, - { 2, 0, 144, 1 }, - { 2, 0, 124, 1 }, - { 2, 0, 104, 1 }, - { 2, 0, 84, 1 }, - { 2, 0, 64, 1 }, - { 2, 0, 44, 1 }, - { 2, 0, 24, 1 }, - { 3, 0, 4, 1 }, - { -32768, -32768, -32768, 0 }, +#include "courses/dks_jungle_parkway/d_course_dks_jungle_parkway_track_path.inc.c" }; +#endif // 0x8EB8 Vtx d_course_dks_jungle_parkway_paddle_boat_model1[] = { @@ -6075,3 +5354,15 @@ TrackSections d_course_dks_jungle_parkway_addr[] = { { d_course_dks_jungle_parkway_packed_dl_3758, RAMP, 255, 0x0000 }, { 0x00000000, 0, 0, 0x0000 }, }; + +#ifdef VERSION_JP /* VERSION_JP path order: JP puts the paths last */ +TrackPathPoint d_course_dks_jungle_parkway_unknown_path[] = { +#include "courses/dks_jungle_parkway/d_course_dks_jungle_parkway_unknown_path.inc.c" +}; +TrackPathPoint d_course_dks_jungle_parkway_ferry_path[] = { +#include "courses/dks_jungle_parkway/d_course_dks_jungle_parkway_ferry_path.inc.c" +}; +TrackPathPoint d_course_dks_jungle_parkway_track_path[] = { +#include "courses/dks_jungle_parkway/d_course_dks_jungle_parkway_track_path.inc.c" +}; +#endif diff --git a/courses/dks_jungle_parkway/d_course_dks_jungle_parkway_ferry_path.inc.c b/courses/dks_jungle_parkway/d_course_dks_jungle_parkway_ferry_path.inc.c new file mode 100644 index 0000000000..c016f01e2c --- /dev/null +++ b/courses/dks_jungle_parkway/d_course_dks_jungle_parkway_ferry_path.inc.c @@ -0,0 +1,7 @@ + { 1237, 0, -1373, 0 }, { 1206, 0, -1365, 0 }, { 877, 0, -1272, 0 }, { 614, 0, -1152, 0 }, { 254, 0, -959, 0 }, + { -44, 0, -852, 0 }, { -217, 0, -814, 0 }, { -350, 0, -801, 0 }, { -431, 0, -842, 0 }, { -442, 0, -942, 0 }, + { -395, 0, -1039, 0 }, { -314, 0, -1154, 0 }, { -125, 0, -1307, 0 }, { 95, 0, -1466, 0 }, { 316, 0, -1570, 0 }, + { 641, 0, -1690, 0 }, { 970, 0, -1775, 0 }, { 1349, 0, -1818, 0 }, { 1694, 0, -1775, 0 }, { 2050, 0, -1613, 0 }, + { 2288, 0, -1397, 0 }, { 2407, 0, -1226, 0 }, { 2511, 0, -1018, 0 }, { 2505, 0, -933, 0 }, { 2400, 0, -931, 0 }, + { 2285, 0, -993, 0 }, { 2173, 0, -1089, 0 }, { 2005, 0, -1204, 0 }, { 1862, 0, -1286, 0 }, { 1696, 0, -1347, 0 }, + { 1293, 0, -1375, 0 }, { -32768, 0, 0, 0 }, diff --git a/courses/dks_jungle_parkway/d_course_dks_jungle_parkway_track_path.inc.c b/courses/dks_jungle_parkway/d_course_dks_jungle_parkway_track_path.inc.c new file mode 100644 index 0000000000..9fef400cbe --- /dev/null +++ b/courses/dks_jungle_parkway/d_course_dks_jungle_parkway_track_path.inc.c @@ -0,0 +1,787 @@ + { 3, 0, 3, 1 }, + { 4, 0, -16, 1 }, + { 3, 0, -36, 1 }, + { 3, 0, -56, 1 }, + { 3, 0, -76, 1 }, + { 2, 0, -96, 1 }, + { 2, 0, -116, 1 }, + { 1, 0, -136, 1 }, + { 1, 0, -156, 1 }, + { 1, 0, -176, 1 }, + { 0, 0, -196, 1 }, + { 0, 0, -216, 1 }, + { 0, 0, -236, 1 }, + { 0, 0, -256, 1 }, + { 0, 0, -276, 1 }, + { 0, 0, -296, 1 }, + { 0, 0, -316, 1 }, + { 0, 0, -336, 1 }, + { 0, 0, -356, 1 }, + { 0, 0, -376, 1 }, + { 0, 0, -396, 1 }, + { 0, 0, -416, 1 }, + { 1, 0, -436, 1 }, + { 2, 0, -456, 1 }, + { 3, 0, -476, 2 }, + { 5, 0, -496, 2 }, + { 10, 0, -516, 2 }, + { 16, 0, -535, 2 }, + { 24, 0, -553, 2 }, + { 33, 0, -571, 2 }, + { 44, 0, -587, 2 }, + { 58, 0, -602, 2 }, + { 72, 0, -616, 2 }, + { 87, 0, -629, 2 }, + { 102, 0, -642, 2 }, + { 118, 0, -654, 2 }, + { 134, 0, -666, 2 }, + { 151, 0, -677, 3 }, + { 168, 0, -687, 3 }, + { 185, 0, -698, 3 }, + { 202, 0, -708, 3 }, + { 220, 0, -718, 3 }, + { 237, 0, -729, 3 }, + { 254, 0, -739, 3 }, + { 271, 0, -749, 3 }, + { 289, 0, -759, 3 }, + { 306, 0, -769, 3 }, + { 323, 0, -779, 3 }, + { 341, 0, -789, 3 }, + { 358, 0, -799, 3 }, + { 375, 0, -809, 3 }, + { 393, 0, -819, 3 }, + { 410, 0, -829, 3 }, + { 427, 0, -839, 3 }, + { 445, 0, -849, 3 }, + { 462, 0, -859, 3 }, + { 479, 0, -869, 3 }, + { 497, 0, -879, 3 }, + { 514, 0, -889, 3 }, + { 531, 0, -899, 3 }, + { 549, 0, -909, 3 }, + { 566, 0, -919, 3 }, + { 583, 0, -929, 3 }, + { 601, 0, -939, 3 }, + { 618, 0, -949, 3 }, + { 635, 0, -959, 3 }, + { 653, 0, -969, 3 }, + { 670, 0, -978, 3 }, + { 688, 0, -988, 3 }, + { 706, 0, -997, 3 }, + { 723, 0, -1007, 3 }, + { 741, 0, -1016, 4 }, + { 759, 0, -1025, 4 }, + { 777, 0, -1034, 4 }, + { 795, 0, -1042, 4 }, + { 814, 0, -1050, 4 }, + { 832, 0, -1058, 4 }, + { 851, 0, -1065, 4 }, + { 870, 0, -1072, 4 }, + { 889, 0, -1078, 4 }, + { 908, 0, -1084, 4 }, + { 927, 0, -1090, 4 }, + { 946, 0, -1096, 4 }, + { 965, 0, -1101, 4 }, + { 984, 0, -1107, 4 }, + { 1004, 0, -1112, 4 }, + { 1023, 0, -1117, 4 }, + { 1043, 0, -1121, 4 }, + { 1062, 0, -1126, 4 }, + { 1082, 0, -1130, 4 }, + { 1101, 0, -1134, 4 }, + { 1121, 0, -1138, 5 }, + { 1141, 0, -1142, 5 }, + { 1160, 0, -1145, 5 }, + { 1180, 0, -1149, 5 }, + { 1200, 0, -1152, 5 }, + { 1219, 0, -1155, 5 }, + { 1239, 0, -1158, 5 }, + { 1259, 0, -1161, 5 }, + { 1279, 0, -1164, 5 }, + { 1299, 0, -1167, 5 }, + { 1319, 0, -1169, 5 }, + { 1338, 0, -1171, 5 }, + { 1358, 0, -1173, 5 }, + { 1378, 0, -1175, 5 }, + { 1398, 0, -1177, 5 }, + { 1418, 0, -1178, 5 }, + { 1438, 0, -1179, 5 }, + { 1458, 0, -1180, 5 }, + { 1478, 0, -1180, 5 }, + { 1498, 0, -1180, 5 }, + { 1518, 0, -1180, 5 }, + { 1538, 0, -1179, 5 }, + { 1558, 0, -1178, 5 }, + { 1578, 0, -1176, 5 }, + { 1598, 0, -1174, 5 }, + { 1618, 0, -1172, 5 }, + { 1638, 0, -1169, 5 }, + { 1657, 0, -1165, 5 }, + { 1677, 0, -1161, 6 }, + { 1696, 0, -1156, 6 }, + { 1715, 0, -1150, 6 }, + { 1734, 0, -1144, 6 }, + { 1753, 0, -1136, 6 }, + { 1771, 0, -1128, 6 }, + { 1790, 0, -1120, 6 }, + { 1808, 0, -1112, 6 }, + { 1826, 0, -1103, 6 }, + { 1843, 0, -1094, 6 }, + { 1861, 0, -1084, 6 }, + { 1878, 0, -1074, 6 }, + { 1895, 0, -1063, 6 }, + { 1911, 0, -1051, 6 }, + { 1926, 0, -1038, 6 }, + { 1941, 0, -1025, 6 }, + { 1955, 0, -1010, 6 }, + { 1968, 0, -995, 6 }, + { 1981, 0, -979, 6 }, + { 1992, 0, -963, 6 }, + { 2003, 0, -946, 6 }, + { 2012, 0, -929, 7 }, + { 2021, 0, -911, 7 }, + { 2029, 0, -892, 7 }, + { 2036, 1, -873, 7 }, + { 2041, 2, -854, 7 }, + { 2045, 3, -835, 7 }, + { 2048, 3, -815, 7 }, + { 2049, 4, -795, 7 }, + { 2048, 4, -775, 7 }, + { 2046, 5, -755, 7 }, + { 2043, 6, -735, 7 }, + { 2038, 7, -716, 7 }, + { 2032, 8, -697, 7 }, + { 2024, 9, -678, 7 }, + { 2015, 9, -660, 7 }, + { 2005, 10, -643, 7 }, + { 1993, 11, -627, 7 }, + { 1981, 12, -611, 7 }, + { 1967, 13, -597, 7 }, + { 1952, 14, -583, 7 }, + { 1937, 14, -571, 7 }, + { 1920, 15, -560, 7 }, + { 1903, 16, -550, 7 }, + { 1885, 17, -541, 7 }, + { 1866, 18, -534, 8 }, + { 1847, 19, -527, 8 }, + { 1828, 19, -523, 8 }, + { 1808, 20, -519, 8 }, + { 1788, 21, -517, 8 }, + { 1768, 22, -516, 8 }, + { 1748, 24, -516, 8 }, + { 1728, 25, -518, 8 }, + { 1708, 27, -521, 8 }, + { 1689, 28, -526, 8 }, + { 1670, 30, -532, 8 }, + { 1651, 32, -540, 8 }, + { 1634, 34, -549, 8 }, + { 1617, 36, -560, 8 }, + { 1601, 38, -573, 8 }, + { 1588, 40, -587, 8 }, + { 1578, 41, -605, 9 }, + { 1571, 42, -623, 9 }, + { 1568, 42, -643, 9 }, + { 1570, 44, -663, 9 }, + { 1574, 45, -683, 9 }, + { 1580, 46, -702, 9 }, + { 1587, 47, -721, 9 }, + { 1595, 48, -739, 9 }, + { 1604, 48, -757, 9 }, + { 1613, 48, -775, 9 }, + { 1622, 48, -792, 9 }, + { 1631, 48, -810, 9 }, + { 1641, 48, -828, 9 }, + { 1650, 48, -845, 9 }, + { 1660, 48, -863, 9 }, + { 1669, 48, -881, 9 }, + { 1678, 48, -898, 9 }, + { 1688, 48, -916, 9 }, + { 1697, 48, -934, 9 }, + { 1706, 48, -952, 9 }, + { 1716, 49, -969, 9 }, + { 1725, 51, -987, 9 }, + { 1734, 53, -1005, 9 }, + { 1743, 54, -1023, 9 }, + { 1752, 56, -1041, 9 }, + { 1761, 56, -1059, 9 }, + { 1769, 56, -1077, 9 }, + { 1778, 56, -1095, 6 }, + { 1787, 56, -1113, 6 }, + { 1795, 56, -1131, 6 }, + { 1804, 56, -1149, 6 }, + { 1812, 56, -1167, 6 }, + { 1821, 56, -1185, 6 }, + { 1829, 56, -1203, 6 }, + { 1837, 56, -1222, 6 }, + { 1846, 56, -1240, 6 }, + { 1854, 56, -1258, 6 }, + { 1863, 56, -1276, 6 }, + { 1871, 56, -1294, 6 }, + { 1879, 56, -1313, 6 }, + { 1888, 56, -1331, 6 }, + { 1896, 56, -1349, 6 }, + { 1904, 56, -1367, 6 }, + { 1913, 52, -1385, 9 }, + { 1921, 48, -1403, 9 }, + { 1929, 44, -1422, 9 }, + { 1938, 40, -1440, 9 }, + { 1946, 36, -1458, 9 }, + { 1955, 32, -1476, 9 }, + { 1963, 28, -1494, 9 }, + { 1972, 24, -1512, 9 }, + { 1980, 20, -1531, 9 }, + { 1988, 16, -1549, 9 }, + { 1997, 12, -1567, 9 }, + { 2005, 12, -1585, 9 }, + { 2014, 12, -1603, 9 }, + { 2022, 12, -1621, 9 }, + { 2031, 12, -1639, 9 }, + { 2039, 12, -1658, 9 }, + { 2047, 12, -1676, 9 }, + { 2056, 12, -1694, 9 }, + { 2064, 12, -1712, 9 }, + { 2072, 12, -1731, 9 }, + { 2080, 12, -1749, 9 }, + { 2087, 12, -1768, 9 }, + { 2094, 8, -1786, 10 }, + { 2100, 4, -1805, 10 }, + { 2095, 0, -1824, 10 }, + { 2080, -3, -1837, 10 }, + { 2063, -7, -1847, 10 }, + { 2045, -17, -1856, 10 }, + { 2026, -17, -1864, 10 }, + { 2007, -17, -1871, 10 }, + { 1988, -17, -1877, 10 }, + { 1969, -17, -1883, 10 }, + { 1950, -17, -1889, 10 }, + { 1931, -17, -1895, 10 }, + { 1912, -17, -1900, 10 }, + { 1892, -17, -1905, 10 }, + { 1873, -17, -1910, 10 }, + { 1854, -17, -1915, 10 }, + { 1834, -17, -1919, 10 }, + { 1814, -17, -1923, 10 }, + { 1795, -17, -1927, 10 }, + { 1775, -17, -1931, 11 }, + { 1755, -17, -1935, 11 }, + { 1736, -17, -1938, 11 }, + { 1716, -17, -1941, 11 }, + { 1696, -17, -1945, 11 }, + { 1677, -17, -1948, 11 }, + { 1657, -17, -1951, 11 }, + { 1637, -17, -1954, 11 }, + { 1617, -17, -1957, 11 }, + { 1597, -17, -1960, 11 }, + { 1577, -17, -1962, 11 }, + { 1558, -17, -1965, 11 }, + { 1538, -17, -1967, 11 }, + { 1518, -17, -1969, 11 }, + { 1498, -17, -1971, 11 }, + { 1478, -17, -1972, 11 }, + { 1458, -17, -1973, 11 }, + { 1438, -17, -1974, 11 }, + { 1418, -17, -1974, 11 }, + { 1398, -17, -1975, 11 }, + { 1378, -17, -1975, 11 }, + { 1358, -17, -1974, 11 }, + { 1338, -17, -1973, 11 }, + { 1318, -17, -1972, 11 }, + { 1298, -17, -1971, 11 }, + { 1278, -17, -1969, 11 }, + { 1258, -17, -1967, 11 }, + { 1238, -17, -1965, 11 }, + { 1218, -17, -1963, 11 }, + { 1198, -17, -1961, 11 }, + { 1178, -17, -1959, 11 }, + { 1159, -17, -1957, 11 }, + { 1139, -17, -1955, 11 }, + { 1119, -17, -1952, 11 }, + { 1099, -17, -1950, 11 }, + { 1079, -17, -1948, 11 }, + { 1059, -17, -1945, 11 }, + { 1039, -17, -1943, 11 }, + { 1019, -17, -1940, 11 }, + { 1000, -17, -1938, 11 }, + { 980, -17, -1935, 11 }, + { 960, -17, -1932, 11 }, + { 940, -17, -1929, 11 }, + { 920, -17, -1926, 11 }, + { 901, -17, -1923, 11 }, + { 881, -17, -1920, 11 }, + { 861, -17, -1917, 12 }, + { 841, -17, -1913, 12 }, + { 822, -17, -1910, 12 }, + { 802, -17, -1906, 12 }, + { 783, -17, -1902, 12 }, + { 763, -17, -1897, 12 }, + { 744, -17, -1893, 12 }, + { 724, -17, -1888, 12 }, + { 704, -17, -1884, 12 }, + { 685, -17, -1880, 12 }, + { 665, -17, -1877, 12 }, + { 645, -17, -1875, 12 }, + { 625, -17, -1875, 12 }, + { 606, -17, -1881, 12 }, + { 589, -16, -1891, 12 }, + { 577, -15, -1907, 12 }, + { 567, -14, -1925, 12 }, + { 559, -13, -1943, 12 }, + { 552, -12, -1961, 12 }, + { 545, -11, -1980, 12 }, + { 538, -9, -1999, 12 }, + { 532, -8, -2018, 12 }, + { 526, -7, -2037, 12 }, + { 521, -5, -2057, 12 }, + { 516, -3, -2076, 12 }, + { 512, -1, -2096, 12 }, + { 508, 0, -2115, 12 }, + { 505, 0, -2135, 12 }, + { 503, 0, -2155, 12 }, + { 501, 1, -2175, 12 }, + { 500, 0, -2195, 13 }, + { 498, 0, -2215, 13 }, + { 497, -1, -2235, 13 }, + { 496, -1, -2255, 13 }, + { 495, -1, -2275, 13 }, + { 494, 0, -2295, 13 }, + { 493, 0, -2315, 13 }, + { 493, 0, -2335, 13 }, + { 492, 0, -2355, 13 }, + { 491, 1, -2375, 13 }, + { 490, 1, -2395, 13 }, + { 489, 1, -2415, 13 }, + { 488, 1, -2435, 13 }, + { 486, 0, -2455, 13 }, + { 485, 0, -2474, 13 }, + { 482, 1, -2494, 13 }, + { 478, 1, -2514, 13 }, + { 474, 1, -2533, 13 }, + { 468, 1, -2553, 13 }, + { 458, 0, -2570, 13 }, + { 447, 0, -2586, 13 }, + { 433, 0, -2601, 13 }, + { 417, 1, -2614, 13 }, + { 401, 1, -2625, 13 }, + { 383, 0, -2634, 13 }, + { 365, 0, -2642, 13 }, + { 345, 0, -2647, 13 }, + { 326, 0, -2650, 13 }, + { 306, 0, -2651, 13 }, + { 286, 0, -2651, 13 }, + { 266, -1, -2651, 13 }, + { 246, -1, -2650, 13 }, + { 226, -1, -2649, 14 }, + { 206, -1, -2648, 14 }, + { 186, -1, -2646, 14 }, + { 166, -1, -2644, 14 }, + { 146, -1, -2643, 14 }, + { 126, -1, -2641, 14 }, + { 106, -1, -2639, 14 }, + { 86, -1, -2637, 14 }, + { 66, -1, -2635, 14 }, + { 46, -1, -2633, 14 }, + { 26, -1, -2631, 14 }, + { 6, -1, -2629, 14 }, + { -13, -1, -2627, 14 }, + { -32, -1, -2625, 14 }, + { -52, -1, -2623, 14 }, + { -72, 0, -2621, 14 }, + { -92, 0, -2619, 14 }, + { -112, 0, -2617, 14 }, + { -132, 0, -2615, 14 }, + { -152, 0, -2612, 14 }, + { -172, 0, -2610, 14 }, + { -192, 0, -2608, 14 }, + { -212, 0, -2606, 14 }, + { -232, 0, -2604, 14 }, + { -251, 0, -2601, 14 }, + { -271, 0, -2599, 14 }, + { -291, 0, -2596, 14 }, + { -311, 0, -2594, 14 }, + { -331, 0, -2591, 14 }, + { -351, 0, -2588, 14 }, + { -370, 0, -2585, 14 }, + { -390, 0, -2581, 15 }, + { -409, 1, -2577, 15 }, + { -429, 1, -2571, 15 }, + { -447, 1, -2564, 15 }, + { -465, 1, -2555, 15 }, + { -482, 0, -2544, 15 }, + { -498, 0, -2532, 15 }, + { -513, 0, -2519, 15 }, + { -527, -1, -2505, 15 }, + { -540, -1, -2489, 15 }, + { -550, -2, -2472, 15 }, + { -560, -3, -2455, 15 }, + { -568, -3, -2436, 15 }, + { -575, -3, -2417, 15 }, + { -580, -2, -2398, 15 }, + { -584, -2, -2379, 15 }, + { -588, -1, -2359, 15 }, + { -590, 0, -2339, 15 }, + { -591, 0, -2319, 15 }, + { -592, 0, -2299, 15 }, + { -591, 0, -2279, 15 }, + { -590, 0, -2259, 15 }, + { -588, 0, -2239, 15 }, + { -586, 0, -2219, 16 }, + { -584, 0, -2199, 16 }, + { -581, 1, -2180, 16 }, + { -577, 1, -2160, 16 }, + { -574, 2, -2140, 16 }, + { -570, 1, -2120, 16 }, + { -566, 1, -2101, 16 }, + { -561, 1, -2081, 16 }, + { -557, 1, -2062, 16 }, + { -553, 1, -2042, 16 }, + { -548, 1, -2023, 16 }, + { -544, 1, -2003, 16 }, + { -539, 0, -1984, 16 }, + { -534, 0, -1964, 16 }, + { -529, 0, -1945, 16 }, + { -524, 0, -1926, 16 }, + { -519, 0, -1906, 16 }, + { -514, 0, -1887, 16 }, + { -509, 0, -1867, 16 }, + { -504, 0, -1848, 16 }, + { -499, 0, -1829, 16 }, + { -494, 0, -1809, 16 }, + { -489, 0, -1790, 16 }, + { -484, 1, -1771, 16 }, + { -479, 1, -1751, 16 }, + { -474, 1, -1732, 16 }, + { -469, 1, -1712, 16 }, + { -465, 2, -1693, 17 }, + { -460, 2, -1674, 17 }, + { -455, 3, -1654, 17 }, + { -451, 3, -1634, 17 }, + { -447, 3, -1615, 17 }, + { -444, 2, -1595, 17 }, + { -441, 2, -1575, 17 }, + { -440, 1, -1555, 17 }, + { -439, 0, -1535, 17 }, + { -439, 0, -1515, 17 }, + { -441, 0, -1495, 17 }, + { -444, 1, -1476, 17 }, + { -450, 2, -1457, 17 }, + { -458, 2, -1438, 17 }, + { -468, 2, -1421, 17 }, + { -480, 2, -1405, 17 }, + { -494, 2, -1390, 17 }, + { -509, 1, -1377, 17 }, + { -525, 0, -1365, 17 }, + { -542, 0, -1356, 17 }, + { -561, 0, -1348, 17 }, + { -580, 0, -1342, 17 }, + { -600, 0, -1338, 17 }, + { -620, 0, -1337, 17 }, + { -639, 0, -1340, 17 }, + { -659, 0, -1345, 17 }, + { -677, 0, -1352, 17 }, + { -695, 0, -1362, 17 }, + { -712, 0, -1373, 17 }, + { -727, 0, -1385, 17 }, + { -742, 0, -1399, 17 }, + { -757, 0, -1412, 17 }, + { -771, 0, -1427, 17 }, + { -785, 0, -1441, 17 }, + { -799, 0, -1455, 18 }, + { -812, 0, -1470, 18 }, + { -826, 0, -1485, 18 }, + { -839, 0, -1499, 18 }, + { -853, 0, -1514, 18 }, + { -866, 0, -1529, 18 }, + { -880, 0, -1544, 18 }, + { -893, 0, -1559, 18 }, + { -906, 0, -1574, 18 }, + { -919, 0, -1589, 18 }, + { -933, 0, -1604, 18 }, + { -946, 0, -1619, 18 }, + { -959, 0, -1634, 18 }, + { -972, 0, -1650, 18 }, + { -985, 0, -1665, 18 }, + { -998, 0, -1680, 18 }, + { -1010, 0, -1696, 18 }, + { -1023, 0, -1711, 18 }, + { -1036, 0, -1726, 18 }, + { -1049, 0, -1742, 18 }, + { -1062, 0, -1757, 18 }, + { -1075, 0, -1772, 18 }, + { -1088, 0, -1787, 18 }, + { -1102, 0, -1802, 18 }, + { -1116, 0, -1816, 18 }, + { -1130, 0, -1830, 18 }, + { -1146, 0, -1843, 18 }, + { -1162, 0, -1854, 18 }, + { -1180, 0, -1864, 19 }, + { -1198, 0, -1872, 19 }, + { -1216, 0, -1879, 19 }, + { -1236, 1, -1885, 19 }, + { -1255, 1, -1889, 19 }, + { -1275, 2, -1893, 19 }, + { -1295, 2, -1895, 19 }, + { -1315, 1, -1896, 19 }, + { -1335, 1, -1895, 19 }, + { -1355, 1, -1893, 19 }, + { -1374, 1, -1889, 19 }, + { -1393, 1, -1883, 19 }, + { -1412, 1, -1876, 19 }, + { -1430, 2, -1867, 19 }, + { -1447, 1, -1857, 19 }, + { -1464, 0, -1845, 19 }, + { -1480, 0, -1833, 19 }, + { -1495, 0, -1820, 19 }, + { -1509, 0, -1806, 19 }, + { -1523, 0, -1792, 19 }, + { -1535, 0, -1776, 19 }, + { -1547, 0, -1760, 19 }, + { -1558, 0, -1743, 19 }, + { -1568, 0, -1726, 19 }, + { -1578, -1, -1708, 19 }, + { -1587, -1, -1690, 19 }, + { -1595, -1, -1672, 19 }, + { -1603, -1, -1654, 19 }, + { -1609, 0, -1635, 19 }, + { -1616, 0, -1616, 19 }, + { -1621, 0, -1597, 20 }, + { -1626, -2, -1577, 20 }, + { -1631, -4, -1558, 20 }, + { -1635, -7, -1538, 20 }, + { -1639, -9, -1519, 20 }, + { -1642, -11, -1499, 20 }, + { -1646, -13, -1479, 20 }, + { -1649, -16, -1459, 20 }, + { -1652, -18, -1440, 20 }, + { -1655, -21, -1420, 20 }, + { -1658, -23, -1400, 20 }, + { -1661, -26, -1380, 20 }, + { -1663, -28, -1360, 20 }, + { -1666, -31, -1340, 20 }, + { -1668, -33, -1321, 20 }, + { -1670, -35, -1301, 20 }, + { -1672, -39, -1281, 20 }, + { -1673, -42, -1261, 20 }, + { -1675, -45, -1241, 20 }, + { -1676, -48, -1221, 20 }, + { -1677, -53, -1201, 20 }, + { -1678, -57, -1181, 20 }, + { -1678, -61, -1161, 20 }, + { -1679, -65, -1141, 20 }, + { -1678, -68, -1121, 20 }, + { -1678, -72, -1101, 20 }, + { -1677, -76, -1081, 20 }, + { -1676, -80, -1061, 21 }, + { -1675, -83, -1041, 21 }, + { -1672, -86, -1021, 21 }, + { -1670, -90, -1001, 21 }, + { -1667, -93, -981, 21 }, + { -1663, -97, -962, 21 }, + { -1659, -101, -942, 21 }, + { -1654, -104, -923, 21 }, + { -1648, -108, -904, 21 }, + { -1641, -112, -885, 21 }, + { -1634, -115, -866, 21 }, + { -1627, -118, -847, 21 }, + { -1619, -122, -829, 21 }, + { -1610, -125, -811, 21 }, + { -1601, -128, -793, 21 }, + { -1591, -131, -776, 21 }, + { -1581, -134, -759, 21 }, + { -1570, -137, -742, 21 }, + { -1557, -140, -726, 21 }, + { -1545, -144, -711, 21 }, + { -1531, -147, -696, 21 }, + { -1517, -149, -682, 21 }, + { -1502, -152, -669, 21 }, + { -1487, -155, -656, 21 }, + { -1471, -158, -644, 21 }, + { -1454, -159, -632, 21 }, + { -1437, -159, -621, 21 }, + { -1421, -159, -611, 21 }, + { -1403, -159, -601, 21 }, + { -1386, -159, -591, 21 }, + { -1368, -160, -582, 21 }, + { -1350, -160, -573, 21 }, + { -1331, -162, -566, 21 }, + { -1313, -163, -559, 21 }, + { -1293, -165, -553, 21 }, + { -1274, -167, -547, 21 }, + { -1255, -169, -541, 21 }, + { -1236, -170, -535, 21 }, + { -1217, -171, -530, 21 }, + { -1198, -172, -524, 21 }, + { -1179, -173, -518, 21 }, + { -1160, -174, -512, 21 }, + { -1140, -174, -506, 21 }, + { -1121, -175, -500, 21 }, + { -1102, -175, -495, 21 }, + { -1083, -176, -489, 21 }, + { -1064, -176, -483, 21 }, + { -1045, -176, -477, 21 }, + { -1025, -177, -471, 21 }, + { -1006, -177, -466, 21 }, + { -987, -177, -460, 21 }, + { -968, -177, -454, 21 }, + { -949, -177, -448, 21 }, + { -930, -177, -443, 21 }, + { -910, -177, -437, 21 }, + { -891, -177, -431, 21 }, + { -872, -177, -425, 21 }, + { -853, -177, -419, 21 }, + { -834, -177, -414, 21 }, + { -815, -176, -408, 21 }, + { -795, -176, -402, 21 }, + { -776, -176, -396, 21 }, + { -757, -175, -390, 21 }, + { -738, -175, -385, 21 }, + { -719, -175, -379, 21 }, + { -700, -174, -373, 22 }, + { -681, -173, -367, 22 }, + { -661, -172, -361, 22 }, + { -642, -171, -355, 22 }, + { -623, -171, -349, 22 }, + { -604, -170, -343, 22 }, + { -585, -168, -337, 22 }, + { -566, -166, -331, 22 }, + { -547, -164, -325, 22 }, + { -528, -163, -319, 22 }, + { -509, -161, -312, 22 }, + { -490, -160, -306, 23 }, + { -471, -160, -299, 23 }, + { -452, -160, -292, 23 }, + { -434, -160, -285, 23 }, + { -415, -160, -277, 23 }, + { -398, -160, -267, 23 }, + { -381, -160, -256, 23 }, + { -366, -160, -244, 23 }, + { -351, -160, -230, 23 }, + { -339, -160, -214, 23 }, + { -329, -160, -197, 23 }, + { -321, -160, -178, 23 }, + { -315, -160, -159, 23 }, + { -312, -160, -139, 23 }, + { -311, -160, -119, 23 }, + { -312, -160, -99, 23 }, + { -314, -160, -80, 23 }, + { -319, -160, -60, 23 }, + { -325, -160, -41, 23 }, + { -332, -160, -22, 23 }, + { -341, -160, -4, 23 }, + { -350, -160, 12, 23 }, + { -360, -160, 30, 23 }, + { -371, -160, 47, 23 }, + { -381, -160, 64, 23 }, + { -392, -160, 80, 24 }, + { -404, -160, 97, 24 }, + { -415, -160, 113, 24 }, + { -426, -160, 130, 24 }, + { -438, -160, 146, 24 }, + { -449, -160, 163, 24 }, + { -461, -160, 179, 24 }, + { -473, -160, 195, 24 }, + { -484, -160, 211, 24 }, + { -496, -160, 228, 24 }, + { -508, -160, 244, 24 }, + { -519, -160, 260, 24 }, + { -531, -160, 276, 24 }, + { -543, -160, 292, 24 }, + { -555, -160, 309, 24 }, + { -567, -160, 325, 24 }, + { -578, -160, 341, 24 }, + { -590, -160, 357, 24 }, + { -602, -160, 373, 24 }, + { -614, -160, 389, 24 }, + { -626, -160, 405, 24 }, + { -637, -160, 422, 24 }, + { -649, -160, 438, 24 }, + { -660, -160, 455, 24 }, + { -671, -160, 471, 24 }, + { -682, -160, 488, 24 }, + { -693, -160, 505, 24 }, + { -704, -160, 522, 24 }, + { -714, -160, 539, 24 }, + { -724, -160, 556, 24 }, + { -734, -160, 574, 25 }, + { -743, -160, 591, 25 }, + { -752, -160, 609, 25 }, + { -760, -160, 628, 25 }, + { -766, -159, 647, 25 }, + { -771, -157, 666, 25 }, + { -775, -154, 686, 25 }, + { -777, -151, 706, 25 }, + { -778, -149, 726, 25 }, + { -778, -146, 746, 25 }, + { -776, -143, 765, 25 }, + { -771, -141, 785, 25 }, + { -764, -137, 804, 25 }, + { -754, -134, 821, 25 }, + { -741, -130, 836, 25 }, + { -726, -126, 850, 25 }, + { -710, -124, 861, 25 }, + { -692, -119, 870, 25 }, + { -674, -118, 878, 25 }, + { -654, -116, 883, 25 }, + { -635, -113, 886, 25 }, + { -615, -111, 888, 25 }, + { -595, -108, 889, 25 }, + { -575, -106, 888, 25 }, + { -555, -104, 887, 25 }, + { -535, -101, 885, 25 }, + { -515, -98, 881, 25 }, + { -496, -95, 877, 25 }, + { -476, -93, 871, 25 }, + { -457, -91, 865, 25 }, + { -439, -89, 858, 25 }, + { -420, -86, 850, 25 }, + { -402, -84, 842, 25 }, + { -384, -82, 834, 25 }, + { -366, -79, 824, 25 }, + { -348, -77, 815, 25 }, + { -331, -75, 804, 25 }, + { -315, -73, 793, 25 }, + { -299, -71, 781, 26 }, + { -283, -69, 769, 26 }, + { -268, -67, 756, 26 }, + { -253, -65, 743, 26 }, + { -238, -63, 729, 26 }, + { -224, -61, 715, 26 }, + { -210, -59, 700, 26 }, + { -196, -56, 686, 26 }, + { -182, -54, 671, 26 }, + { -169, -53, 657, 26 }, + { -155, -51, 642, 26 }, + { -142, -49, 627, 26 }, + { -130, -47, 611, 26 }, + { -117, -45, 595, 26 }, + { -106, -42, 579, 26 }, + { -94, -40, 563, 26 }, + { -83, -38, 546, 26 }, + { -73, -36, 529, 26 }, + { -63, -34, 512, 26 }, + { -53, -31, 494, 26 }, + { -44, -29, 476, 26 }, + { -35, -27, 458, 26 }, + { -27, -24, 440, 26 }, + { -20, -21, 421, 26 }, + { -14, -19, 402, 26 }, + { -8, -16, 383, 26 }, + { -4, -14, 364, 26 }, + { 0, -12, 344, 26 }, + { 1, -9, 324, 26 }, + { 2, -6, 304, 26 }, + { 2, -4, 284, 26 }, + { 2, -1, 264, 26 }, + { 2, 0, 244, 1 }, + { 2, 0, 224, 1 }, + { 2, 0, 204, 1 }, + { 2, 0, 184, 1 }, + { 2, 0, 164, 1 }, + { 2, 0, 144, 1 }, + { 2, 0, 124, 1 }, + { 2, 0, 104, 1 }, + { 2, 0, 84, 1 }, + { 2, 0, 64, 1 }, + { 2, 0, 44, 1 }, + { 2, 0, 24, 1 }, + { 3, 0, 4, 1 }, + { -32768, -32768, -32768, 0 }, diff --git a/courses/dks_jungle_parkway/d_course_dks_jungle_parkway_unknown_path.inc.c b/courses/dks_jungle_parkway/d_course_dks_jungle_parkway_unknown_path.inc.c new file mode 100644 index 0000000000..cb2ee23f1b --- /dev/null +++ b/courses/dks_jungle_parkway/d_course_dks_jungle_parkway_unknown_path.inc.c @@ -0,0 +1,26 @@ + { 2, 0, 12, 0 }, { 5, 0, -5, 0 }, { 0, 0, -211, 0 }, { 0, 0, -455, 0 }, + { 9, 0, -522, 0 }, { 39, 0, -585, 0 }, { 91, 0, -634, 0 }, { 149, 0, -678, 0 }, + { 428, 0, -840, 0 }, { 730, 0, -1014, 0 }, { 884, 0, -1081, 0 }, { 1118, 0, -1142, 0 }, + { 1434, 0, -1186, 0 }, { 1666, 0, -1172, 0 }, { 1819, 0, -1110, 0 }, { 1928, 0, -1045, 0 }, + { 2009, 0, -947, 0 }, { 2053, 0, -831, 0 }, { 2044, 0, -710, 0 }, { 1981, 0, -601, 0 }, + { 1882, 0, -534, 0 }, { 1768, 0, -511, 0 }, { 1668, 0, -529, 0 }, { 1598, 0, -571, 0 }, + { 1568, 0, -622, 0 }, { 1570, 0, -673, 0 }, { 1591, 0, -734, 0 }, { 1654, 0, -852, 0 }, + { 1761, 0, -1054, 0 }, { 1936, 0, -1436, 0 }, { 2105, 0, -1798, 0 }, { 2098, 0, -1827, 0 }, + { 2043, 0, -1860, 0 }, { 1931, 0, -1897, 0 }, { 1776, 0, -1934, 0 }, { 1444, 0, -1983, 0 }, + { 1165, 0, -1960, 0 }, { 842, 0, -1917, 0 }, { 670, 0, -1875, 0 }, { 610, 0, -1875, 0 }, + { 573, 0, -1905, 0 }, { 526, 0, -2033, 0 }, { 505, 0, -2128, 0 }, { 497, 0, -2239, 0 }, + { 490, 0, -2411, 0 }, { 483, 0, -2506, 0 }, { 460, 0, -2581, 0 }, { 381, 0, -2643, 0 }, + { 286, 0, -2657, 0 }, { -72, 0, -2622, 0 }, { -377, 0, -2588, 0 }, { -472, 0, -2558, 0 }, + { -551, 0, -2486, 0 }, { -593, 0, -2368, 0 }, { -591, 0, -2219, 0 }, { -544, 0, -1996, 0 }, + { -465, 0, -1699, 0 }, { -437, 0, -1564, 0 }, { -442, 0, -1462, 0 }, { -498, 0, -1378, 0 }, + { -588, 0, -1334, 0 }, { -667, 0, -1343, 0 }, { -742, 0, -1392, 0 }, { -946, 0, -1617, 0 }, + { -1087, 0, -1789, 0 }, { -1164, 0, -1862, 0 }, { -1269, 0, -1897, 0 }, { -1380, 0, -1895, 0 }, + { -1485, 0, -1837, 0 }, { -1566, 0, -1742, 0 }, { -1629, 0, -1595, 0 }, { -1675, 0, -1296, 0 }, + { -1682, 0, -1051, 0 }, { -1645, 0, -873, 0 }, { -1549, 0, -698, 0 }, { -1378, 0, -580, 0 }, + { -1245, 0, -538, 0 }, { -598, 0, -343, 0 }, { -468, 0, -299, 0 }, { -391, 0, -268, 0 }, + { -332, 0, -212, 0 }, { -307, 0, -133, 0 }, { -321, 0, -38, 0 }, { -384, 0, 71, 0 }, + { -521, 0, 263, 0 }, { -672, 0, 467, 0 }, { -756, 0, 609, 0 }, { -779, 0, 690, 0 }, + { -779, 0, 781, 0 }, { -740, 0, 846, 0 }, { -661, 0, 888, 0 }, { -538, 0, 890, 0 }, + { -438, 0, 860, 0 }, { -350, 0, 818, 0 }, { -278, 0, 767, 0 }, { -210, 0, 702, 0 }, + { -113, 0, 595, 0 }, { -38, 0, 472, 0 }, { 1, 0, 361, 0 }, { 3, 0, 251, 0 }, + { 3, 0, 45, 0 }, { -32768, 0, 0, 0 }, diff --git a/courses/frappe_snowland/course_data.c b/courses/frappe_snowland/course_data.c index 56777b2bb0..008f2316b6 100644 --- a/courses/frappe_snowland/course_data.c +++ b/courses/frappe_snowland/course_data.c @@ -1428,673 +1428,17 @@ Gfx d_course_frappe_snowland_dl_33E0[] = { gsSPDisplayList(d_course_frappe_snowland_packed_dl_5B58), gsSPEndDisplayList(), }; +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_frappe_snowland_unknown_path[] = { - { -4, 0, -259, 0 }, { -4, 0, -282, 0 }, { -10, 0, -526, 0 }, { 41, 0, -658, 0 }, { 150, 0, -769, 0 }, - { 358, 0, -831, 0 }, { 572, 0, -881, 0 }, { 719, 0, -982, 0 }, { 801, 0, -1109, 0 }, { 838, 0, -1262, 0 }, - { 820, 0, -1435, 0 }, { 749, 0, -1568, 0 }, { 674, 0, -1676, 0 }, { 621, 0, -1863, 0 }, { 603, 0, -2054, 0 }, - { 593, 0, -2230, 0 }, { 491, 0, -2339, 0 }, { 358, 0, -2371, 0 }, { 227, 0, -2336, 0 }, { 114, 0, -2194, 0 }, - { 92, 0, -2017, 0 }, { 50, 0, -1935, 0 }, { -17, 0, -1881, 0 }, { -321, 0, -1740, 0 }, { -452, 0, -1729, 0 }, - { -733, 0, -1794, 0 }, { -843, 0, -1766, 0 }, { -940, 0, -1669, 0 }, { -1055, 0, -1489, 0 }, { -1205, 0, -1277, 0 }, - { -1469, 0, -956, 0 }, { -1639, 0, -729, 0 }, { -1661, 0, -626, 0 }, { -1585, 0, -464, 0 }, { -1542, 0, -342, 0 }, - { -1564, 0, -116, 0 }, { -1464, 0, 135, 0 }, { -1444, 0, 332, 0 }, { -1445, 0, 452, 0 }, { -1483, 0, 619, 0 }, - { -1463, 0, 838, 0 }, { -1314, 0, 950, 0 }, { -1139, 0, 977, 0 }, { -1032, 0, 938, 0 }, { -926, 0, 842, 0 }, - { -804, 0, 756, 0 }, { -660, 0, 772, 0 }, { -583, 0, 834, 0 }, { -517, 0, 938, 0 }, { -435, 0, 1056, 0 }, - { -293, 0, 1113, 0 }, { -18, 0, 1088, 0 }, { 202, 0, 1091, 0 }, { 1040, 0, 1224, 0 }, { 1162, 0, 1252, 0 }, - { 1314, 0, 1203, 0 }, { 1386, 0, 1128, 0 }, { 1416, 0, 1020, 0 }, { 1388, 0, 900, 0 }, { 1319, 0, 811, 0 }, - { 1119, 0, 690, 0 }, { 1029, 0, 651, 0 }, { 944, 0, 646, 0 }, { 634, 0, 697, 0 }, { 339, 0, 758, 0 }, - { 186, 0, 751, 0 }, { 86, 0, 712, 0 }, { 34, 0, 638, 0 }, { 11, 0, 556, 0 }, { 0, 0, 410, 0 }, - { 0, 0, 155, 0 }, { -3, 0, -133, 0 }, { -32768, 0, 0, 0 }, +#include "courses/frappe_snowland/d_course_frappe_snowland_unknown_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_frappe_snowland_track_path[] = { - { -4, 0, -270, 1 }, - { -4, 0, -290, 1 }, - { -4, 0, -310, 2 }, - { -5, 0, -330, 2 }, - { -5, 0, -350, 2 }, - { -6, 0, -370, 2 }, - { -6, 0, -390, 2 }, - { -7, 0, -410, 2 }, - { -7, 0, -430, 2 }, - { -7, 0, -450, 2 }, - { -6, 0, -470, 2 }, - { -5, 0, -490, 2 }, - { -3, 0, -510, 2 }, - { 0, 0, -530, 2 }, - { 3, 0, -549, 2 }, - { 8, 0, -569, 2 }, - { 14, 0, -588, 2 }, - { 21, 0, -606, 2 }, - { 30, 0, -625, 2 }, - { 40, 0, -642, 2 }, - { 50, 0, -659, 2 }, - { 62, 0, -675, 2 }, - { 75, 0, -691, 2 }, - { 88, 0, -706, 2 }, - { 102, 0, -720, 2 }, - { 117, 0, -733, 2 }, - { 133, 0, -745, 2 }, - { 150, 0, -756, 2 }, - { 168, 0, -765, 2 }, - { 185, 0, -774, 2 }, - { 204, 0, -782, 2 }, - { 223, 0, -789, 2 }, - { 241, 0, -796, 2 }, - { 261, 0, -802, 2 }, - { 280, 0, -807, 2 }, - { 299, 0, -813, 2 }, - { 318, 0, -818, 2 }, - { 338, 0, -823, 2 }, - { 357, 0, -829, 2 }, - { 376, 0, -834, 2 }, - { 396, 0, -839, 2 }, - { 415, 0, -844, 2 }, - { 435, 0, -848, 2 }, - { 454, 0, -853, 2 }, - { 473, 0, -858, 2 }, - { 493, 0, -863, 2 }, - { 512, 0, -868, 2 }, - { 531, 0, -875, 2 }, - { 550, 0, -882, 2 }, - { 568, 0, -889, 2 }, - { 587, 0, -897, 2 }, - { 604, 0, -906, 2 }, - { 622, 0, -916, 2 }, - { 639, 0, -927, 2 }, - { 655, 0, -938, 2 }, - { 671, 0, -950, 3 }, - { 687, 0, -963, 3 }, - { 702, 0, -976, 3 }, - { 716, 0, -990, 3 }, - { 729, 0, -1005, 3 }, - { 742, 0, -1021, 3 }, - { 754, 0, -1037, 3 }, - { 765, 0, -1053, 3 }, - { 775, 0, -1071, 3 }, - { 784, 0, -1088, 3 }, - { 793, 0, -1107, 3 }, - { 800, 0, -1125, 3 }, - { 807, 0, -1144, 3 }, - { 813, 0, -1163, 3 }, - { 818, 0, -1182, 3 }, - { 823, 0, -1202, 3 }, - { 826, 0, -1222, 3 }, - { 829, 0, -1241, 3 }, - { 830, 0, -1261, 3 }, - { 831, 0, -1281, 3 }, - { 831, 0, -1301, 3 }, - { 831, 0, -1321, 3 }, - { 829, 0, -1341, 3 }, - { 827, 0, -1361, 3 }, - { 824, 0, -1381, 3 }, - { 820, 0, -1401, 3 }, - { 816, 0, -1420, 3 }, - { 810, 0, -1439, 3 }, - { 803, 0, -1458, 3 }, - { 796, 0, -1477, 3 }, - { 787, 0, -1495, 3 }, - { 778, 0, -1512, 3 }, - { 768, 0, -1530, 3 }, - { 758, 0, -1547, 3 }, - { 748, 0, -1564, 3 }, - { 737, 0, -1582, 3 }, - { 727, 0, -1598, 3 }, - { 715, 0, -1615, 3 }, - { 704, 0, -1632, 3 }, - { 694, 0, -1649, 3 }, - { 685, 0, -1667, 3 }, - { 677, 0, -1685, 3 }, - { 669, 0, -1703, 3 }, - { 662, 0, -1722, 3 }, - { 655, 0, -1741, 3 }, - { 650, 0, -1760, 3 }, - { 644, 0, -1779, 3 }, - { 639, 0, -1799, 3 }, - { 634, 0, -1818, 3 }, - { 630, 0, -1838, 3 }, - { 626, 0, -1857, 3 }, - { 622, 0, -1877, 3 }, - { 619, 0, -1897, 3 }, - { 616, 0, -1916, 3 }, - { 614, 0, -1936, 3 }, - { 612, 0, -1956, 3 }, - { 610, 0, -1976, 3 }, - { 608, 0, -1996, 3 }, - { 606, 0, -2016, 4 }, - { 605, 0, -2036, 4 }, - { 603, 0, -2056, 4 }, - { 602, 0, -2076, 4 }, - { 600, 0, -2096, 4 }, - { 599, 0, -2116, 4 }, - { 598, 0, -2136, 4 }, - { 596, 0, -2156, 4 }, - { 594, 0, -2176, 4 }, - { 589, 0, -2195, 4 }, - { 584, 0, -2214, 4 }, - { 576, 0, -2233, 4 }, - { 567, 0, -2250, 4 }, - { 556, 0, -2267, 4 }, - { 543, 0, -2283, 4 }, - { 529, 0, -2297, 4 }, - { 514, 0, -2310, 4 }, - { 498, 0, -2322, 4 }, - { 481, 0, -2332, 4 }, - { 463, 0, -2341, 4 }, - { 444, 0, -2349, 4 }, - { 425, 0, -2354, 4 }, - { 405, 0, -2358, 4 }, - { 386, 0, -2361, 4 }, - { 366, 0, -2362, 4 }, - { 346, 0, -2362, 4 }, - { 326, 0, -2360, 4 }, - { 306, 0, -2356, 4 }, - { 287, 0, -2351, 4 }, - { 268, 0, -2345, 4 }, - { 250, 0, -2336, 4 }, - { 233, 0, -2325, 4 }, - { 217, 0, -2313, 4 }, - { 202, 0, -2300, 4 }, - { 188, 0, -2285, 4 }, - { 175, 0, -2270, 5 }, - { 162, 0, -2255, 5 }, - { 151, 0, -2238, 5 }, - { 141, 0, -2221, 5 }, - { 131, 0, -2203, 5 }, - { 123, 0, -2185, 5 }, - { 116, 0, -2166, 5 }, - { 111, 0, -2147, 5 }, - { 106, 0, -2128, 5 }, - { 103, 0, -2108, 5 }, - { 100, 0, -2088, 5 }, - { 97, 0, -2068, 5 }, - { 94, 0, -2049, 5 }, - { 89, 0, -2029, 5 }, - { 84, 0, -2010, 5 }, - { 77, 0, -1991, 5 }, - { 69, 0, -1973, 5 }, - { 59, 0, -1955, 5 }, - { 47, 0, -1939, 5 }, - { 34, 0, -1924, 5 }, - { 19, 0, -1910, 5 }, - { 3, 0, -1898, 5 }, - { -13, 0, -1888, 5 }, - { -30, 0, -1878, 5 }, - { -48, 0, -1869, 5 }, - { -66, 0, -1860, 5 }, - { -83, 0, -1851, 5 }, - { -101, 0, -1842, 5 }, - { -119, 0, -1833, 5 }, - { -137, 0, -1825, 5 }, - { -156, 0, -1816, 5 }, - { -174, 0, -1808, 5 }, - { -192, 0, -1799, 5 }, - { -210, 0, -1791, 5 }, - { -229, 0, -1783, 5 }, - { -247, 0, -1776, 5 }, - { -266, 0, -1768, 5 }, - { -284, 0, -1761, 5 }, - { -303, 0, -1754, 5 }, - { -322, 0, -1748, 5 }, - { -341, 0, -1742, 5 }, - { -361, 0, -1738, 5 }, - { -381, 0, -1735, 5 }, - { -401, 0, -1733, 5 }, - { -421, 0, -1734, 5 }, - { -441, 0, -1735, 5 }, - { -460, 0, -1737, 5 }, - { -480, 0, -1739, 5 }, - { -500, 0, -1742, 5 }, - { -520, 0, -1746, 5 }, - { -539, 0, -1750, 5 }, - { -559, 0, -1754, 5 }, - { -579, 0, -1758, 5 }, - { -598, 0, -1762, 5 }, - { -618, 0, -1767, 5 }, - { -637, 0, -1771, 5 }, - { -657, 0, -1774, 5 }, - { -677, 0, -1778, 5 }, - { -697, 0, -1780, 6 }, - { -717, 0, -1782, 6 }, - { -737, 0, -1784, 6 }, - { -757, 0, -1784, 6 }, - { -776, 0, -1782, 6 }, - { -796, 0, -1777, 6 }, - { -815, 0, -1770, 6 }, - { -833, 0, -1762, 6 }, - { -850, 0, -1751, 6 }, - { -866, 0, -1739, 6 }, - { -881, 0, -1726, 6 }, - { -895, 0, -1712, 6 }, - { -909, 0, -1698, 6 }, - { -922, -1, -1683, 6 }, - { -935, -2, -1667, 6 }, - { -947, -3, -1651, 6 }, - { -959, -3, -1635, 6 }, - { -970, -4, -1619, 6 }, - { -982, -5, -1602, 6 }, - { -993, -6, -1585, 6 }, - { -1003, -6, -1569, 6 }, - { -1014, -7, -1552, 6 }, - { -1025, -8, -1535, 6 }, - { -1036, -9, -1518, 6 }, - { -1047, -12, -1502, 6 }, - { -1058, -14, -1485, 6 }, - { -1070, -17, -1469, 6 }, - { -1081, -19, -1452, 6 }, - { -1092, -23, -1436, 6 }, - { -1104, -26, -1419, 6 }, - { -1115, -30, -1403, 6 }, - { -1127, -35, -1386, 6 }, - { -1138, -38, -1370, 6 }, - { -1150, -38, -1354, 6 }, - { -1162, -38, -1338, 6 }, - { -1174, -34, -1322, 6 }, - { -1186, -30, -1306, 6 }, - { -1198, -24, -1290, 6 }, - { -1210, -18, -1274, 6 }, - { -1223, -12, -1258, 6 }, - { -1235, -12, -1242, 6 }, - { -1247, -12, -1227, 6 }, - { -1260, -12, -1211, 6 }, - { -1272, -12, -1195, 6 }, - { -1285, -12, -1180, 6 }, - { -1297, -22, -1164, 7 }, - { -1310, -32, -1148, 7 }, - { -1323, -42, -1133, 7 }, - { -1335, -39, -1117, 7 }, - { -1348, -36, -1102, 7 }, - { -1361, -33, -1087, 7 }, - { -1373, -31, -1071, 7 }, - { -1386, -29, -1055, 7 }, - { -1399, -27, -1040, 7 }, - { -1411, -26, -1024, 7 }, - { -1424, -24, -1009, 7 }, - { -1436, -23, -993, 7 }, - { -1449, -22, -977, 7 }, - { -1461, -20, -962, 7 }, - { -1473, -19, -946, 7 }, - { -1486, -17, -930, 7 }, - { -1498, -16, -915, 7 }, - { -1510, -14, -899, 7 }, - { -1523, -13, -883, 7 }, - { -1535, -11, -867, 7 }, - { -1547, -10, -851, 7 }, - { -1559, -9, -835, 7 }, - { -1571, -7, -819, 7 }, - { -1582, -6, -802, 7 }, - { -1593, -5, -786, 7 }, - { -1604, -3, -769, 7 }, - { -1615, -2, -752, 7 }, - { -1625, 0, -735, 7 }, - { -1634, 0, -717, 7 }, - { -1643, 0, -699, 7 }, - { -1649, 0, -680, 7 }, - { -1652, 0, -660, 7 }, - { -1651, 0, -640, 7 }, - { -1649, 0, -620, 7 }, - { -1644, 0, -601, 7 }, - { -1638, 0, -582, 7 }, - { -1631, 0, -563, 7 }, - { -1623, 0, -545, 7 }, - { -1614, 0, -527, 8 }, - { -1606, 0, -509, 8 }, - { -1598, 0, -490, 8 }, - { -1590, 0, -472, 8 }, - { -1582, 0, -453, 8 }, - { -1575, 0, -435, 8 }, - { -1568, 0, -416, 8 }, - { -1561, 0, -397, 8 }, - { -1556, 0, -378, 8 }, - { -1553, 0, -358, 8 }, - { -1550, 0, -338, 8 }, - { -1549, 0, -318, 8 }, - { -1549, 0, -298, 8 }, - { -1549, 0, -278, 8 }, - { -1550, 0, -258, 8 }, - { -1552, 0, -238, 8 }, - { -1553, 0, -218, 8 }, - { -1554, 0, -198, 8 }, - { -1554, 0, -178, 8 }, - { -1554, 0, -158, 8 }, - { -1552, 0, -138, 8 }, - { -1549, 0, -119, 8 }, - { -1546, 0, -99, 8 }, - { -1542, 0, -79, 8 }, - { -1537, 0, -60, 8 }, - { -1531, 0, -41, 8 }, - { -1525, 0, -22, 8 }, - { -1518, 0, -3, 8 }, - { -1511, 0, 15, 8 }, - { -1504, 0, 34, 8 }, - { -1497, 0, 52, 8 }, - { -1491, 0, 71, 8 }, - { -1484, 0, 90, 8 }, - { -1479, 0, 109, 8 }, - { -1473, 0, 129, 8 }, - { -1468, 0, 148, 8 }, - { -1464, 0, 168, 8 }, - { -1460, 0, 187, 8 }, - { -1457, 0, 207, 8 }, - { -1454, 0, 227, 8 }, - { -1452, 0, 247, 8 }, - { -1450, 0, 267, 8 }, - { -1449, 0, 287, 8 }, - { -1447, 0, 307, 8 }, - { -1446, 0, 327, 8 }, - { -1445, 0, 347, 8 }, - { -1444, 0, 367, 8 }, - { -1444, 0, 387, 8 }, - { -1444, 0, 407, 8 }, - { -1446, 0, 427, 8 }, - { -1448, 0, 446, 8 }, - { -1450, 0, 466, 8 }, - { -1454, 0, 486, 8 }, - { -1457, 0, 506, 8 }, - { -1461, 0, 525, 9 }, - { -1466, 0, 545, 9 }, - { -1469, 0, 565, 9 }, - { -1472, 0, 584, 9 }, - { -1474, 0, 604, 9 }, - { -1475, 0, 624, 9 }, - { -1476, 0, 644, 9 }, - { -1476, 0, 664, 9 }, - { -1475, 0, 684, 9 }, - { -1474, 0, 704, 9 }, - { -1473, 0, 724, 9 }, - { -1471, 0, 744, 9 }, - { -1467, 0, 764, 9 }, - { -1462, 0, 783, 9 }, - { -1456, 0, 802, 9 }, - { -1448, 0, 821, 9 }, - { -1439, 0, 838, 9 }, - { -1427, 0, 855, 9 }, - { -1414, 0, 870, 9 }, - { -1400, 0, 884, 9 }, - { -1384, 0, 896, 9 }, - { -1368, 0, 908, 9 }, - { -1351, 0, 918, 9 }, - { -1333, 0, 928, 9 }, - { -1315, 0, 937, 9 }, - { -1297, 0, 944, 9 }, - { -1278, 0, 951, 9 }, - { -1259, 0, 956, 9 }, - { -1239, 0, 961, 9 }, - { -1219, 0, 964, 9 }, - { -1200, 0, 966, 9 }, - { -1180, 0, 968, 9 }, - { -1160, 0, 969, 9 }, - { -1140, 0, 968, 9 }, - { -1120, 0, 966, 9 }, - { -1100, 0, 962, 9 }, - { -1081, 0, 956, 9 }, - { -1063, 0, 948, 9 }, - { -1045, 0, 938, 9 }, - { -1028, 0, 928, 9 }, - { -1011, 0, 917, 9 }, - { -996, 0, 904, 9 }, - { -980, 0, 891, 9 }, - { -966, 0, 878, 9 }, - { -950, 0, 865, 9 }, - { -935, 0, 852, 9 }, - { -919, 0, 840, 10 }, - { -904, 0, 827, 10 }, - { -888, 0, 815, 10 }, - { -871, 0, 803, 10 }, - { -855, 0, 792, 10 }, - { -838, 0, 782, 10 }, - { -819, 0, 774, 10 }, - { -800, 0, 768, 10 }, - { -781, 0, 764, 10 }, - { -761, 0, 762, 10 }, - { -741, 0, 763, 10 }, - { -721, 0, 765, 10 }, - { -701, 0, 768, 10 }, - { -682, 0, 773, 10 }, - { -663, 0, 779, 10 }, - { -644, 0, 787, 10 }, - { -627, 0, 798, 10 }, - { -612, 0, 810, 10 }, - { -597, 0, 824, 10 }, - { -584, 0, 839, 10 }, - { -571, 0, 854, 10 }, - { -559, 0, 871, 10 }, - { -548, 0, 887, 10 }, - { -538, 0, 904, 10 }, - { -527, 0, 921, 10 }, - { -516, 0, 938, 10 }, - { -504, 0, 954, 10 }, - { -493, 0, 971, 10 }, - { -482, 0, 987, 10 }, - { -470, 0, 1004, 10 }, - { -458, 0, 1019, 10 }, - { -444, 0, 1034, 10 }, - { -429, 0, 1047, 10 }, - { -412, 0, 1058, 10 }, - { -395, 0, 1069, 10 }, - { -378, 0, 1078, 10 }, - { -359, 0, 1086, 10 }, - { -340, 0, 1092, 10 }, - { -321, 0, 1096, 10 }, - { -301, 0, 1100, 10 }, - { -281, 0, 1102, 10 }, - { -261, 0, 1103, 10 }, - { -241, 0, 1104, 10 }, - { -221, 0, 1104, 10 }, - { -201, 0, 1103, 10 }, - { -181, 0, 1102, 10 }, - { -161, 0, 1101, 10 }, - { -141, 0, 1099, 10 }, - { -121, 0, 1097, 10 }, - { -101, 0, 1096, 10 }, - { -81, 0, 1094, 10 }, - { -61, 0, 1093, 10 }, - { -41, 0, 1092, 10 }, - { -21, 0, 1091, 10 }, - { -1, 0, 1090, 10 }, - { 18, 0, 1089, 10 }, - { 38, 0, 1089, 10 }, - { 58, 0, 1089, 10 }, - { 78, 0, 1089, 11 }, - { 98, 0, 1089, 11 }, - { 118, 0, 1090, 11 }, - { 138, 0, 1091, 11 }, - { 158, 0, 1093, 11 }, - { 178, 0, 1095, 11 }, - { 197, 0, 1097, 11 }, - { 217, 0, 1099, 11 }, - { 237, 0, 1102, 11 }, - { 257, 0, 1104, 11 }, - { 277, 0, 1107, 11 }, - { 297, 0, 1109, 11 }, - { 317, 0, 1112, 11 }, - { 336, 0, 1114, 11 }, - { 356, 0, 1117, 11 }, - { 376, 0, 1120, 11 }, - { 396, 0, 1123, 11 }, - { 416, 0, 1126, 11 }, - { 436, 0, 1129, 11 }, - { 455, 0, 1132, 11 }, - { 475, 0, 1134, 11 }, - { 495, 0, 1137, 11 }, - { 515, 0, 1140, 11 }, - { 534, 0, 1144, 11 }, - { 554, 0, 1147, 11 }, - { 574, 0, 1150, 11 }, - { 594, 0, 1153, 11 }, - { 614, 0, 1156, 11 }, - { 633, 0, 1159, 11 }, - { 653, 0, 1162, 11 }, - { 673, 0, 1165, 11 }, - { 693, 0, 1168, 11 }, - { 713, 0, 1172, 11 }, - { 732, 0, 1175, 11 }, - { 752, 0, 1178, 12 }, - { 772, 0, 1181, 12 }, - { 792, 0, 1184, 12 }, - { 811, 0, 1188, 12 }, - { 831, 0, 1191, 12 }, - { 851, 0, 1194, 12 }, - { 871, 0, 1197, 12 }, - { 890, 0, 1200, 12 }, - { 910, 0, 1204, 12 }, - { 930, 0, 1207, 12 }, - { 950, 0, 1210, 12 }, - { 969, 0, 1214, 12 }, - { 989, 0, 1217, 12 }, - { 1009, 0, 1220, 12 }, - { 1029, 0, 1224, 12 }, - { 1048, 0, 1227, 12 }, - { 1068, 0, 1231, 12 }, - { 1088, 0, 1235, 12 }, - { 1107, 0, 1239, 12 }, - { 1127, 0, 1242, 12 }, - { 1147, 0, 1243, 12 }, - { 1167, 0, 1242, 12 }, - { 1187, 0, 1239, 12 }, - { 1206, 0, 1236, 12 }, - { 1226, 0, 1231, 12 }, - { 1245, 0, 1225, 12 }, - { 1264, 0, 1218, 12 }, - { 1282, 0, 1210, 12 }, - { 1300, 0, 1201, 12 }, - { 1317, 0, 1191, 12 }, - { 1334, 0, 1179, 12 }, - { 1348, 0, 1166, 12 }, - { 1362, 0, 1151, 13 }, - { 1373, 0, 1135, 13 }, - { 1383, 0, 1117, 13 }, - { 1392, 0, 1099, 13 }, - { 1398, 0, 1080, 13 }, - { 1404, 0, 1061, 13 }, - { 1407, 0, 1041, 13 }, - { 1408, 0, 1021, 13 }, - { 1408, 0, 1001, 13 }, - { 1406, 0, 982, 13 }, - { 1402, 0, 962, 13 }, - { 1397, 0, 942, 13 }, - { 1391, 0, 923, 13 }, - { 1383, 0, 905, 13 }, - { 1374, 0, 887, 13 }, - { 1364, 0, 870, 13 }, - { 1352, 0, 854, 13 }, - { 1339, 0, 839, 13 }, - { 1324, 0, 825, 13 }, - { 1309, 0, 812, 14 }, - { 1293, 0, 800, 14 }, - { 1277, 0, 788, 14 }, - { 1261, 0, 777, 14 }, - { 1244, 0, 766, 14 }, - { 1227, 0, 755, 14 }, - { 1210, 0, 745, 14 }, - { 1193, 0, 734, 14 }, - { 1175, 0, 724, 14 }, - { 1158, 0, 714, 14 }, - { 1141, 0, 704, 14 }, - { 1123, 0, 695, 14 }, - { 1105, 0, 685, 14 }, - { 1087, 0, 676, 14 }, - { 1069, 0, 668, 14 }, - { 1051, 0, 661, 14 }, - { 1031, 0, 655, 14 }, - { 1012, 0, 651, 14 }, - { 992, 0, 648, 14 }, - { 972, 0, 648, 14 }, - { 952, 0, 649, 14 }, - { 932, 0, 651, 15 }, - { 912, 0, 653, 15 }, - { 892, 0, 655, 15 }, - { 873, 0, 658, 15 }, - { 853, 0, 661, 15 }, - { 833, 0, 664, 15 }, - { 813, 0, 667, 15 }, - { 793, 0, 670, 15 }, - { 774, 0, 673, 15 }, - { 754, 0, 677, 15 }, - { 734, 0, 680, 15 }, - { 714, 0, 684, 15 }, - { 695, 0, 687, 15 }, - { 675, 0, 691, 15 }, - { 655, 0, 694, 15 }, - { 636, 0, 698, 15 }, - { 616, 0, 701, 15 }, - { 596, 0, 705, 15 }, - { 577, 0, 709, 15 }, - { 557, 0, 713, 15 }, - { 537, 0, 717, 15 }, - { 518, 0, 721, 15 }, - { 498, 0, 725, 15 }, - { 479, 0, 729, 15 }, - { 459, 0, 732, 15 }, - { 439, 0, 736, 15 }, - { 419, 0, 740, 15 }, - { 400, 0, 743, 15 }, - { 380, 0, 746, 15 }, - { 360, 0, 749, 15 }, - { 340, 0, 751, 15 }, - { 320, 0, 753, 16 }, - { 300, 0, 754, 16 }, - { 280, 0, 754, 16 }, - { 260, 0, 754, 16 }, - { 240, 0, 753, 16 }, - { 220, 0, 751, 16 }, - { 201, 0, 748, 16 }, - { 181, 0, 744, 16 }, - { 162, 0, 740, 16 }, - { 142, 0, 734, 16 }, - { 124, 0, 726, 16 }, - { 106, 0, 717, 16 }, - { 90, 0, 706, 16 }, - { 75, 0, 692, 16 }, - { 62, 0, 677, 16 }, - { 50, 0, 661, 16 }, - { 41, 0, 643, 16 }, - { 32, 0, 625, 16 }, - { 25, 0, 606, 16 }, - { 20, 0, 587, 16 }, - { 15, 0, 568, 16 }, - { 12, 0, 548, 16 }, - { 9, 0, 528, 16 }, - { 7, 0, 508, 16 }, - { 5, 0, 488, 16 }, - { 4, 0, 468, 16 }, - { 3, 0, 448, 17 }, - { 2, 0, 428, 17 }, - { 1, 0, 408, 17 }, - { 1, 0, 388, 17 }, - { 0, 0, 368, 17 }, - { 0, 0, 348, 17 }, - { 0, 0, 328, 17 }, - { 0, 0, 308, 17 }, - { 0, 0, 288, 17 }, - { 0, 0, 268, 17 }, - { 0, 0, 248, 17 }, - { 0, 0, 228, 17 }, - { 0, 0, 208, 17 }, - { 0, 0, 188, 17 }, - { 0, 0, 168, 17 }, - { 0, 0, 148, 1 }, - { 0, 0, 128, 1 }, - { 0, 0, 108, 1 }, - { 0, 0, 88, 1 }, - { 0, 0, 68, 1 }, - { -1, 0, 48, 1 }, - { -1, 0, 28, 1 }, - { -1, 0, 8, 1 }, - { -1, 0, -11, 1 }, - { -1, 0, -31, 1 }, - { -1, 0, -51, 1 }, - { -2, 0, -71, 1 }, - { -2, 0, -91, 1 }, - { -2, 0, -111, 1 }, - { -2, 0, -131, 1 }, - { -2, 0, -151, 1 }, - { -3, 0, -171, 1 }, - { -3, 0, -191, 1 }, - { -3, 0, -211, 1 }, - { -3, 0, -231, 1 }, - { -3, 0, -251, 1 }, - { -32768, -32768, -32768, 0 }, +#include "courses/frappe_snowland/d_course_frappe_snowland_track_path.inc.c" }; +#endif u8 d_course_frappe_snowland_snowman_tlut[] = { #include "assets/courses/frappe_snowland/gTLUTSnowman.inc.c" @@ -2275,3 +1619,12 @@ TrackSections d_course_frappe_snowland_addr[] = { { d_course_frappe_snowland_packed_dl_5C70, SNOW_OFFROAD, 13, 0x0000 }, { 0x00000000, 0, 0, 0x0000 }, }; + +#ifdef VERSION_JP /* VERSION_JP path order: JP puts the paths last */ +TrackPathPoint d_course_frappe_snowland_unknown_path[] = { +#include "courses/frappe_snowland/d_course_frappe_snowland_unknown_path.inc.c" +}; +TrackPathPoint d_course_frappe_snowland_track_path[] = { +#include "courses/frappe_snowland/d_course_frappe_snowland_track_path.inc.c" +}; +#endif diff --git a/courses/frappe_snowland/d_course_frappe_snowland_track_path.inc.c b/courses/frappe_snowland/d_course_frappe_snowland_track_path.inc.c new file mode 100644 index 0000000000..52fd972646 --- /dev/null +++ b/courses/frappe_snowland/d_course_frappe_snowland_track_path.inc.c @@ -0,0 +1,647 @@ + { -4, 0, -270, 1 }, + { -4, 0, -290, 1 }, + { -4, 0, -310, 2 }, + { -5, 0, -330, 2 }, + { -5, 0, -350, 2 }, + { -6, 0, -370, 2 }, + { -6, 0, -390, 2 }, + { -7, 0, -410, 2 }, + { -7, 0, -430, 2 }, + { -7, 0, -450, 2 }, + { -6, 0, -470, 2 }, + { -5, 0, -490, 2 }, + { -3, 0, -510, 2 }, + { 0, 0, -530, 2 }, + { 3, 0, -549, 2 }, + { 8, 0, -569, 2 }, + { 14, 0, -588, 2 }, + { 21, 0, -606, 2 }, + { 30, 0, -625, 2 }, + { 40, 0, -642, 2 }, + { 50, 0, -659, 2 }, + { 62, 0, -675, 2 }, + { 75, 0, -691, 2 }, + { 88, 0, -706, 2 }, + { 102, 0, -720, 2 }, + { 117, 0, -733, 2 }, + { 133, 0, -745, 2 }, + { 150, 0, -756, 2 }, + { 168, 0, -765, 2 }, + { 185, 0, -774, 2 }, + { 204, 0, -782, 2 }, + { 223, 0, -789, 2 }, + { 241, 0, -796, 2 }, + { 261, 0, -802, 2 }, + { 280, 0, -807, 2 }, + { 299, 0, -813, 2 }, + { 318, 0, -818, 2 }, + { 338, 0, -823, 2 }, + { 357, 0, -829, 2 }, + { 376, 0, -834, 2 }, + { 396, 0, -839, 2 }, + { 415, 0, -844, 2 }, + { 435, 0, -848, 2 }, + { 454, 0, -853, 2 }, + { 473, 0, -858, 2 }, + { 493, 0, -863, 2 }, + { 512, 0, -868, 2 }, + { 531, 0, -875, 2 }, + { 550, 0, -882, 2 }, + { 568, 0, -889, 2 }, + { 587, 0, -897, 2 }, + { 604, 0, -906, 2 }, + { 622, 0, -916, 2 }, + { 639, 0, -927, 2 }, + { 655, 0, -938, 2 }, + { 671, 0, -950, 3 }, + { 687, 0, -963, 3 }, + { 702, 0, -976, 3 }, + { 716, 0, -990, 3 }, + { 729, 0, -1005, 3 }, + { 742, 0, -1021, 3 }, + { 754, 0, -1037, 3 }, + { 765, 0, -1053, 3 }, + { 775, 0, -1071, 3 }, + { 784, 0, -1088, 3 }, + { 793, 0, -1107, 3 }, + { 800, 0, -1125, 3 }, + { 807, 0, -1144, 3 }, + { 813, 0, -1163, 3 }, + { 818, 0, -1182, 3 }, + { 823, 0, -1202, 3 }, + { 826, 0, -1222, 3 }, + { 829, 0, -1241, 3 }, + { 830, 0, -1261, 3 }, + { 831, 0, -1281, 3 }, + { 831, 0, -1301, 3 }, + { 831, 0, -1321, 3 }, + { 829, 0, -1341, 3 }, + { 827, 0, -1361, 3 }, + { 824, 0, -1381, 3 }, + { 820, 0, -1401, 3 }, + { 816, 0, -1420, 3 }, + { 810, 0, -1439, 3 }, + { 803, 0, -1458, 3 }, + { 796, 0, -1477, 3 }, + { 787, 0, -1495, 3 }, + { 778, 0, -1512, 3 }, + { 768, 0, -1530, 3 }, + { 758, 0, -1547, 3 }, + { 748, 0, -1564, 3 }, + { 737, 0, -1582, 3 }, + { 727, 0, -1598, 3 }, + { 715, 0, -1615, 3 }, + { 704, 0, -1632, 3 }, + { 694, 0, -1649, 3 }, + { 685, 0, -1667, 3 }, + { 677, 0, -1685, 3 }, + { 669, 0, -1703, 3 }, + { 662, 0, -1722, 3 }, + { 655, 0, -1741, 3 }, + { 650, 0, -1760, 3 }, + { 644, 0, -1779, 3 }, + { 639, 0, -1799, 3 }, + { 634, 0, -1818, 3 }, + { 630, 0, -1838, 3 }, + { 626, 0, -1857, 3 }, + { 622, 0, -1877, 3 }, + { 619, 0, -1897, 3 }, + { 616, 0, -1916, 3 }, + { 614, 0, -1936, 3 }, + { 612, 0, -1956, 3 }, + { 610, 0, -1976, 3 }, + { 608, 0, -1996, 3 }, + { 606, 0, -2016, 4 }, + { 605, 0, -2036, 4 }, + { 603, 0, -2056, 4 }, + { 602, 0, -2076, 4 }, + { 600, 0, -2096, 4 }, + { 599, 0, -2116, 4 }, + { 598, 0, -2136, 4 }, + { 596, 0, -2156, 4 }, + { 594, 0, -2176, 4 }, + { 589, 0, -2195, 4 }, + { 584, 0, -2214, 4 }, + { 576, 0, -2233, 4 }, + { 567, 0, -2250, 4 }, + { 556, 0, -2267, 4 }, + { 543, 0, -2283, 4 }, + { 529, 0, -2297, 4 }, + { 514, 0, -2310, 4 }, + { 498, 0, -2322, 4 }, + { 481, 0, -2332, 4 }, + { 463, 0, -2341, 4 }, + { 444, 0, -2349, 4 }, + { 425, 0, -2354, 4 }, + { 405, 0, -2358, 4 }, + { 386, 0, -2361, 4 }, + { 366, 0, -2362, 4 }, + { 346, 0, -2362, 4 }, + { 326, 0, -2360, 4 }, + { 306, 0, -2356, 4 }, + { 287, 0, -2351, 4 }, + { 268, 0, -2345, 4 }, + { 250, 0, -2336, 4 }, + { 233, 0, -2325, 4 }, + { 217, 0, -2313, 4 }, + { 202, 0, -2300, 4 }, + { 188, 0, -2285, 4 }, + { 175, 0, -2270, 5 }, + { 162, 0, -2255, 5 }, + { 151, 0, -2238, 5 }, + { 141, 0, -2221, 5 }, + { 131, 0, -2203, 5 }, + { 123, 0, -2185, 5 }, + { 116, 0, -2166, 5 }, + { 111, 0, -2147, 5 }, + { 106, 0, -2128, 5 }, + { 103, 0, -2108, 5 }, + { 100, 0, -2088, 5 }, + { 97, 0, -2068, 5 }, + { 94, 0, -2049, 5 }, + { 89, 0, -2029, 5 }, + { 84, 0, -2010, 5 }, + { 77, 0, -1991, 5 }, + { 69, 0, -1973, 5 }, + { 59, 0, -1955, 5 }, + { 47, 0, -1939, 5 }, + { 34, 0, -1924, 5 }, + { 19, 0, -1910, 5 }, + { 3, 0, -1898, 5 }, + { -13, 0, -1888, 5 }, + { -30, 0, -1878, 5 }, + { -48, 0, -1869, 5 }, + { -66, 0, -1860, 5 }, + { -83, 0, -1851, 5 }, + { -101, 0, -1842, 5 }, + { -119, 0, -1833, 5 }, + { -137, 0, -1825, 5 }, + { -156, 0, -1816, 5 }, + { -174, 0, -1808, 5 }, + { -192, 0, -1799, 5 }, + { -210, 0, -1791, 5 }, + { -229, 0, -1783, 5 }, + { -247, 0, -1776, 5 }, + { -266, 0, -1768, 5 }, + { -284, 0, -1761, 5 }, + { -303, 0, -1754, 5 }, + { -322, 0, -1748, 5 }, + { -341, 0, -1742, 5 }, + { -361, 0, -1738, 5 }, + { -381, 0, -1735, 5 }, + { -401, 0, -1733, 5 }, + { -421, 0, -1734, 5 }, + { -441, 0, -1735, 5 }, + { -460, 0, -1737, 5 }, + { -480, 0, -1739, 5 }, + { -500, 0, -1742, 5 }, + { -520, 0, -1746, 5 }, + { -539, 0, -1750, 5 }, + { -559, 0, -1754, 5 }, + { -579, 0, -1758, 5 }, + { -598, 0, -1762, 5 }, + { -618, 0, -1767, 5 }, + { -637, 0, -1771, 5 }, + { -657, 0, -1774, 5 }, + { -677, 0, -1778, 5 }, + { -697, 0, -1780, 6 }, + { -717, 0, -1782, 6 }, + { -737, 0, -1784, 6 }, + { -757, 0, -1784, 6 }, + { -776, 0, -1782, 6 }, + { -796, 0, -1777, 6 }, + { -815, 0, -1770, 6 }, + { -833, 0, -1762, 6 }, + { -850, 0, -1751, 6 }, + { -866, 0, -1739, 6 }, + { -881, 0, -1726, 6 }, + { -895, 0, -1712, 6 }, + { -909, 0, -1698, 6 }, + { -922, -1, -1683, 6 }, + { -935, -2, -1667, 6 }, + { -947, -3, -1651, 6 }, + { -959, -3, -1635, 6 }, + { -970, -4, -1619, 6 }, + { -982, -5, -1602, 6 }, + { -993, -6, -1585, 6 }, + { -1003, -6, -1569, 6 }, + { -1014, -7, -1552, 6 }, + { -1025, -8, -1535, 6 }, + { -1036, -9, -1518, 6 }, + { -1047, -12, -1502, 6 }, + { -1058, -14, -1485, 6 }, + { -1070, -17, -1469, 6 }, + { -1081, -19, -1452, 6 }, + { -1092, -23, -1436, 6 }, + { -1104, -26, -1419, 6 }, + { -1115, -30, -1403, 6 }, + { -1127, -35, -1386, 6 }, + { -1138, -38, -1370, 6 }, + { -1150, -38, -1354, 6 }, + { -1162, -38, -1338, 6 }, + { -1174, -34, -1322, 6 }, + { -1186, -30, -1306, 6 }, + { -1198, -24, -1290, 6 }, + { -1210, -18, -1274, 6 }, + { -1223, -12, -1258, 6 }, + { -1235, -12, -1242, 6 }, + { -1247, -12, -1227, 6 }, + { -1260, -12, -1211, 6 }, + { -1272, -12, -1195, 6 }, + { -1285, -12, -1180, 6 }, + { -1297, -22, -1164, 7 }, + { -1310, -32, -1148, 7 }, + { -1323, -42, -1133, 7 }, + { -1335, -39, -1117, 7 }, + { -1348, -36, -1102, 7 }, + { -1361, -33, -1087, 7 }, + { -1373, -31, -1071, 7 }, + { -1386, -29, -1055, 7 }, + { -1399, -27, -1040, 7 }, + { -1411, -26, -1024, 7 }, + { -1424, -24, -1009, 7 }, + { -1436, -23, -993, 7 }, + { -1449, -22, -977, 7 }, + { -1461, -20, -962, 7 }, + { -1473, -19, -946, 7 }, + { -1486, -17, -930, 7 }, + { -1498, -16, -915, 7 }, + { -1510, -14, -899, 7 }, + { -1523, -13, -883, 7 }, + { -1535, -11, -867, 7 }, + { -1547, -10, -851, 7 }, + { -1559, -9, -835, 7 }, + { -1571, -7, -819, 7 }, + { -1582, -6, -802, 7 }, + { -1593, -5, -786, 7 }, + { -1604, -3, -769, 7 }, + { -1615, -2, -752, 7 }, + { -1625, 0, -735, 7 }, + { -1634, 0, -717, 7 }, + { -1643, 0, -699, 7 }, + { -1649, 0, -680, 7 }, + { -1652, 0, -660, 7 }, + { -1651, 0, -640, 7 }, + { -1649, 0, -620, 7 }, + { -1644, 0, -601, 7 }, + { -1638, 0, -582, 7 }, + { -1631, 0, -563, 7 }, + { -1623, 0, -545, 7 }, + { -1614, 0, -527, 8 }, + { -1606, 0, -509, 8 }, + { -1598, 0, -490, 8 }, + { -1590, 0, -472, 8 }, + { -1582, 0, -453, 8 }, + { -1575, 0, -435, 8 }, + { -1568, 0, -416, 8 }, + { -1561, 0, -397, 8 }, + { -1556, 0, -378, 8 }, + { -1553, 0, -358, 8 }, + { -1550, 0, -338, 8 }, + { -1549, 0, -318, 8 }, + { -1549, 0, -298, 8 }, + { -1549, 0, -278, 8 }, + { -1550, 0, -258, 8 }, + { -1552, 0, -238, 8 }, + { -1553, 0, -218, 8 }, + { -1554, 0, -198, 8 }, + { -1554, 0, -178, 8 }, + { -1554, 0, -158, 8 }, + { -1552, 0, -138, 8 }, + { -1549, 0, -119, 8 }, + { -1546, 0, -99, 8 }, + { -1542, 0, -79, 8 }, + { -1537, 0, -60, 8 }, + { -1531, 0, -41, 8 }, + { -1525, 0, -22, 8 }, + { -1518, 0, -3, 8 }, + { -1511, 0, 15, 8 }, + { -1504, 0, 34, 8 }, + { -1497, 0, 52, 8 }, + { -1491, 0, 71, 8 }, + { -1484, 0, 90, 8 }, + { -1479, 0, 109, 8 }, + { -1473, 0, 129, 8 }, + { -1468, 0, 148, 8 }, + { -1464, 0, 168, 8 }, + { -1460, 0, 187, 8 }, + { -1457, 0, 207, 8 }, + { -1454, 0, 227, 8 }, + { -1452, 0, 247, 8 }, + { -1450, 0, 267, 8 }, + { -1449, 0, 287, 8 }, + { -1447, 0, 307, 8 }, + { -1446, 0, 327, 8 }, + { -1445, 0, 347, 8 }, + { -1444, 0, 367, 8 }, + { -1444, 0, 387, 8 }, + { -1444, 0, 407, 8 }, + { -1446, 0, 427, 8 }, + { -1448, 0, 446, 8 }, + { -1450, 0, 466, 8 }, + { -1454, 0, 486, 8 }, + { -1457, 0, 506, 8 }, + { -1461, 0, 525, 9 }, + { -1466, 0, 545, 9 }, + { -1469, 0, 565, 9 }, + { -1472, 0, 584, 9 }, + { -1474, 0, 604, 9 }, + { -1475, 0, 624, 9 }, + { -1476, 0, 644, 9 }, + { -1476, 0, 664, 9 }, + { -1475, 0, 684, 9 }, + { -1474, 0, 704, 9 }, + { -1473, 0, 724, 9 }, + { -1471, 0, 744, 9 }, + { -1467, 0, 764, 9 }, + { -1462, 0, 783, 9 }, + { -1456, 0, 802, 9 }, + { -1448, 0, 821, 9 }, + { -1439, 0, 838, 9 }, + { -1427, 0, 855, 9 }, + { -1414, 0, 870, 9 }, + { -1400, 0, 884, 9 }, + { -1384, 0, 896, 9 }, + { -1368, 0, 908, 9 }, + { -1351, 0, 918, 9 }, + { -1333, 0, 928, 9 }, + { -1315, 0, 937, 9 }, + { -1297, 0, 944, 9 }, + { -1278, 0, 951, 9 }, + { -1259, 0, 956, 9 }, + { -1239, 0, 961, 9 }, + { -1219, 0, 964, 9 }, + { -1200, 0, 966, 9 }, + { -1180, 0, 968, 9 }, + { -1160, 0, 969, 9 }, + { -1140, 0, 968, 9 }, + { -1120, 0, 966, 9 }, + { -1100, 0, 962, 9 }, + { -1081, 0, 956, 9 }, + { -1063, 0, 948, 9 }, + { -1045, 0, 938, 9 }, + { -1028, 0, 928, 9 }, + { -1011, 0, 917, 9 }, + { -996, 0, 904, 9 }, + { -980, 0, 891, 9 }, + { -966, 0, 878, 9 }, + { -950, 0, 865, 9 }, + { -935, 0, 852, 9 }, + { -919, 0, 840, 10 }, + { -904, 0, 827, 10 }, + { -888, 0, 815, 10 }, + { -871, 0, 803, 10 }, + { -855, 0, 792, 10 }, + { -838, 0, 782, 10 }, + { -819, 0, 774, 10 }, + { -800, 0, 768, 10 }, + { -781, 0, 764, 10 }, + { -761, 0, 762, 10 }, + { -741, 0, 763, 10 }, + { -721, 0, 765, 10 }, + { -701, 0, 768, 10 }, + { -682, 0, 773, 10 }, + { -663, 0, 779, 10 }, + { -644, 0, 787, 10 }, + { -627, 0, 798, 10 }, + { -612, 0, 810, 10 }, + { -597, 0, 824, 10 }, + { -584, 0, 839, 10 }, + { -571, 0, 854, 10 }, + { -559, 0, 871, 10 }, + { -548, 0, 887, 10 }, + { -538, 0, 904, 10 }, + { -527, 0, 921, 10 }, + { -516, 0, 938, 10 }, + { -504, 0, 954, 10 }, + { -493, 0, 971, 10 }, + { -482, 0, 987, 10 }, + { -470, 0, 1004, 10 }, + { -458, 0, 1019, 10 }, + { -444, 0, 1034, 10 }, + { -429, 0, 1047, 10 }, + { -412, 0, 1058, 10 }, + { -395, 0, 1069, 10 }, + { -378, 0, 1078, 10 }, + { -359, 0, 1086, 10 }, + { -340, 0, 1092, 10 }, + { -321, 0, 1096, 10 }, + { -301, 0, 1100, 10 }, + { -281, 0, 1102, 10 }, + { -261, 0, 1103, 10 }, + { -241, 0, 1104, 10 }, + { -221, 0, 1104, 10 }, + { -201, 0, 1103, 10 }, + { -181, 0, 1102, 10 }, + { -161, 0, 1101, 10 }, + { -141, 0, 1099, 10 }, + { -121, 0, 1097, 10 }, + { -101, 0, 1096, 10 }, + { -81, 0, 1094, 10 }, + { -61, 0, 1093, 10 }, + { -41, 0, 1092, 10 }, + { -21, 0, 1091, 10 }, + { -1, 0, 1090, 10 }, + { 18, 0, 1089, 10 }, + { 38, 0, 1089, 10 }, + { 58, 0, 1089, 10 }, + { 78, 0, 1089, 11 }, + { 98, 0, 1089, 11 }, + { 118, 0, 1090, 11 }, + { 138, 0, 1091, 11 }, + { 158, 0, 1093, 11 }, + { 178, 0, 1095, 11 }, + { 197, 0, 1097, 11 }, + { 217, 0, 1099, 11 }, + { 237, 0, 1102, 11 }, + { 257, 0, 1104, 11 }, + { 277, 0, 1107, 11 }, + { 297, 0, 1109, 11 }, + { 317, 0, 1112, 11 }, + { 336, 0, 1114, 11 }, + { 356, 0, 1117, 11 }, + { 376, 0, 1120, 11 }, + { 396, 0, 1123, 11 }, + { 416, 0, 1126, 11 }, + { 436, 0, 1129, 11 }, + { 455, 0, 1132, 11 }, + { 475, 0, 1134, 11 }, + { 495, 0, 1137, 11 }, + { 515, 0, 1140, 11 }, + { 534, 0, 1144, 11 }, + { 554, 0, 1147, 11 }, + { 574, 0, 1150, 11 }, + { 594, 0, 1153, 11 }, + { 614, 0, 1156, 11 }, + { 633, 0, 1159, 11 }, + { 653, 0, 1162, 11 }, + { 673, 0, 1165, 11 }, + { 693, 0, 1168, 11 }, + { 713, 0, 1172, 11 }, + { 732, 0, 1175, 11 }, + { 752, 0, 1178, 12 }, + { 772, 0, 1181, 12 }, + { 792, 0, 1184, 12 }, + { 811, 0, 1188, 12 }, + { 831, 0, 1191, 12 }, + { 851, 0, 1194, 12 }, + { 871, 0, 1197, 12 }, + { 890, 0, 1200, 12 }, + { 910, 0, 1204, 12 }, + { 930, 0, 1207, 12 }, + { 950, 0, 1210, 12 }, + { 969, 0, 1214, 12 }, + { 989, 0, 1217, 12 }, + { 1009, 0, 1220, 12 }, + { 1029, 0, 1224, 12 }, + { 1048, 0, 1227, 12 }, + { 1068, 0, 1231, 12 }, + { 1088, 0, 1235, 12 }, + { 1107, 0, 1239, 12 }, + { 1127, 0, 1242, 12 }, + { 1147, 0, 1243, 12 }, + { 1167, 0, 1242, 12 }, + { 1187, 0, 1239, 12 }, + { 1206, 0, 1236, 12 }, + { 1226, 0, 1231, 12 }, + { 1245, 0, 1225, 12 }, + { 1264, 0, 1218, 12 }, + { 1282, 0, 1210, 12 }, + { 1300, 0, 1201, 12 }, + { 1317, 0, 1191, 12 }, + { 1334, 0, 1179, 12 }, + { 1348, 0, 1166, 12 }, + { 1362, 0, 1151, 13 }, + { 1373, 0, 1135, 13 }, + { 1383, 0, 1117, 13 }, + { 1392, 0, 1099, 13 }, + { 1398, 0, 1080, 13 }, + { 1404, 0, 1061, 13 }, + { 1407, 0, 1041, 13 }, + { 1408, 0, 1021, 13 }, + { 1408, 0, 1001, 13 }, + { 1406, 0, 982, 13 }, + { 1402, 0, 962, 13 }, + { 1397, 0, 942, 13 }, + { 1391, 0, 923, 13 }, + { 1383, 0, 905, 13 }, + { 1374, 0, 887, 13 }, + { 1364, 0, 870, 13 }, + { 1352, 0, 854, 13 }, + { 1339, 0, 839, 13 }, + { 1324, 0, 825, 13 }, + { 1309, 0, 812, 14 }, + { 1293, 0, 800, 14 }, + { 1277, 0, 788, 14 }, + { 1261, 0, 777, 14 }, + { 1244, 0, 766, 14 }, + { 1227, 0, 755, 14 }, + { 1210, 0, 745, 14 }, + { 1193, 0, 734, 14 }, + { 1175, 0, 724, 14 }, + { 1158, 0, 714, 14 }, + { 1141, 0, 704, 14 }, + { 1123, 0, 695, 14 }, + { 1105, 0, 685, 14 }, + { 1087, 0, 676, 14 }, + { 1069, 0, 668, 14 }, + { 1051, 0, 661, 14 }, + { 1031, 0, 655, 14 }, + { 1012, 0, 651, 14 }, + { 992, 0, 648, 14 }, + { 972, 0, 648, 14 }, + { 952, 0, 649, 14 }, + { 932, 0, 651, 15 }, + { 912, 0, 653, 15 }, + { 892, 0, 655, 15 }, + { 873, 0, 658, 15 }, + { 853, 0, 661, 15 }, + { 833, 0, 664, 15 }, + { 813, 0, 667, 15 }, + { 793, 0, 670, 15 }, + { 774, 0, 673, 15 }, + { 754, 0, 677, 15 }, + { 734, 0, 680, 15 }, + { 714, 0, 684, 15 }, + { 695, 0, 687, 15 }, + { 675, 0, 691, 15 }, + { 655, 0, 694, 15 }, + { 636, 0, 698, 15 }, + { 616, 0, 701, 15 }, + { 596, 0, 705, 15 }, + { 577, 0, 709, 15 }, + { 557, 0, 713, 15 }, + { 537, 0, 717, 15 }, + { 518, 0, 721, 15 }, + { 498, 0, 725, 15 }, + { 479, 0, 729, 15 }, + { 459, 0, 732, 15 }, + { 439, 0, 736, 15 }, + { 419, 0, 740, 15 }, + { 400, 0, 743, 15 }, + { 380, 0, 746, 15 }, + { 360, 0, 749, 15 }, + { 340, 0, 751, 15 }, + { 320, 0, 753, 16 }, + { 300, 0, 754, 16 }, + { 280, 0, 754, 16 }, + { 260, 0, 754, 16 }, + { 240, 0, 753, 16 }, + { 220, 0, 751, 16 }, + { 201, 0, 748, 16 }, + { 181, 0, 744, 16 }, + { 162, 0, 740, 16 }, + { 142, 0, 734, 16 }, + { 124, 0, 726, 16 }, + { 106, 0, 717, 16 }, + { 90, 0, 706, 16 }, + { 75, 0, 692, 16 }, + { 62, 0, 677, 16 }, + { 50, 0, 661, 16 }, + { 41, 0, 643, 16 }, + { 32, 0, 625, 16 }, + { 25, 0, 606, 16 }, + { 20, 0, 587, 16 }, + { 15, 0, 568, 16 }, + { 12, 0, 548, 16 }, + { 9, 0, 528, 16 }, + { 7, 0, 508, 16 }, + { 5, 0, 488, 16 }, + { 4, 0, 468, 16 }, + { 3, 0, 448, 17 }, + { 2, 0, 428, 17 }, + { 1, 0, 408, 17 }, + { 1, 0, 388, 17 }, + { 0, 0, 368, 17 }, + { 0, 0, 348, 17 }, + { 0, 0, 328, 17 }, + { 0, 0, 308, 17 }, + { 0, 0, 288, 17 }, + { 0, 0, 268, 17 }, + { 0, 0, 248, 17 }, + { 0, 0, 228, 17 }, + { 0, 0, 208, 17 }, + { 0, 0, 188, 17 }, + { 0, 0, 168, 17 }, + { 0, 0, 148, 1 }, + { 0, 0, 128, 1 }, + { 0, 0, 108, 1 }, + { 0, 0, 88, 1 }, + { 0, 0, 68, 1 }, + { -1, 0, 48, 1 }, + { -1, 0, 28, 1 }, + { -1, 0, 8, 1 }, + { -1, 0, -11, 1 }, + { -1, 0, -31, 1 }, + { -1, 0, -51, 1 }, + { -2, 0, -71, 1 }, + { -2, 0, -91, 1 }, + { -2, 0, -111, 1 }, + { -2, 0, -131, 1 }, + { -2, 0, -151, 1 }, + { -3, 0, -171, 1 }, + { -3, 0, -191, 1 }, + { -3, 0, -211, 1 }, + { -3, 0, -231, 1 }, + { -3, 0, -251, 1 }, + { -32768, -32768, -32768, 0 }, diff --git a/courses/frappe_snowland/d_course_frappe_snowland_unknown_path.inc.c b/courses/frappe_snowland/d_course_frappe_snowland_unknown_path.inc.c new file mode 100644 index 0000000000..01c780b6dc --- /dev/null +++ b/courses/frappe_snowland/d_course_frappe_snowland_unknown_path.inc.c @@ -0,0 +1,15 @@ + { -4, 0, -259, 0 }, { -4, 0, -282, 0 }, { -10, 0, -526, 0 }, { 41, 0, -658, 0 }, { 150, 0, -769, 0 }, + { 358, 0, -831, 0 }, { 572, 0, -881, 0 }, { 719, 0, -982, 0 }, { 801, 0, -1109, 0 }, { 838, 0, -1262, 0 }, + { 820, 0, -1435, 0 }, { 749, 0, -1568, 0 }, { 674, 0, -1676, 0 }, { 621, 0, -1863, 0 }, { 603, 0, -2054, 0 }, + { 593, 0, -2230, 0 }, { 491, 0, -2339, 0 }, { 358, 0, -2371, 0 }, { 227, 0, -2336, 0 }, { 114, 0, -2194, 0 }, + { 92, 0, -2017, 0 }, { 50, 0, -1935, 0 }, { -17, 0, -1881, 0 }, { -321, 0, -1740, 0 }, { -452, 0, -1729, 0 }, + { -733, 0, -1794, 0 }, { -843, 0, -1766, 0 }, { -940, 0, -1669, 0 }, { -1055, 0, -1489, 0 }, { -1205, 0, -1277, 0 }, + { -1469, 0, -956, 0 }, { -1639, 0, -729, 0 }, { -1661, 0, -626, 0 }, { -1585, 0, -464, 0 }, { -1542, 0, -342, 0 }, + { -1564, 0, -116, 0 }, { -1464, 0, 135, 0 }, { -1444, 0, 332, 0 }, { -1445, 0, 452, 0 }, { -1483, 0, 619, 0 }, + { -1463, 0, 838, 0 }, { -1314, 0, 950, 0 }, { -1139, 0, 977, 0 }, { -1032, 0, 938, 0 }, { -926, 0, 842, 0 }, + { -804, 0, 756, 0 }, { -660, 0, 772, 0 }, { -583, 0, 834, 0 }, { -517, 0, 938, 0 }, { -435, 0, 1056, 0 }, + { -293, 0, 1113, 0 }, { -18, 0, 1088, 0 }, { 202, 0, 1091, 0 }, { 1040, 0, 1224, 0 }, { 1162, 0, 1252, 0 }, + { 1314, 0, 1203, 0 }, { 1386, 0, 1128, 0 }, { 1416, 0, 1020, 0 }, { 1388, 0, 900, 0 }, { 1319, 0, 811, 0 }, + { 1119, 0, 690, 0 }, { 1029, 0, 651, 0 }, { 944, 0, 646, 0 }, { 634, 0, 697, 0 }, { 339, 0, 758, 0 }, + { 186, 0, 751, 0 }, { 86, 0, 712, 0 }, { 34, 0, 638, 0 }, { 11, 0, 556, 0 }, { 0, 0, 410, 0 }, + { 0, 0, 155, 0 }, { -3, 0, -133, 0 }, { -32768, 0, 0, 0 }, diff --git a/courses/kalimari_desert/course_data.c b/courses/kalimari_desert/course_data.c index d44e49b5cb..20b5810347 100644 --- a/courses/kalimari_desert/course_data.c +++ b/courses/kalimari_desert/course_data.c @@ -340,7 +340,10 @@ Gfx d_course_kalimari_desert_dl_CD0[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_5360), gsSPDisplayList(d_course_kalimari_desert_packed_dl_53D0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5DB0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5A60), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5580), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5E38), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_3C30), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5728), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_3C30), +#endif + gsSPDisplayList(d_course_kalimari_desert_packed_dl_5728), gsSPDisplayList(d_course_kalimari_desert_packed_dl_56A0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5FB0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5C90), gsSPDisplayList(d_course_kalimari_desert_packed_dl_3A10), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5948), gsSPDisplayList(d_course_kalimari_desert_packed_dl_3158), @@ -426,7 +429,9 @@ Gfx d_course_kalimari_desert_dl_F68[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_5D30), gsSPDisplayList(d_course_kalimari_desert_packed_dl_71D8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_14A0), +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_92F8), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_9210), gsSPEndDisplayList(), }; @@ -479,7 +484,9 @@ Gfx d_course_kalimari_desert_dl_1030[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_2F30), gsSPDisplayList(d_course_kalimari_desert_packed_dl_3158), gsSPDisplayList(d_course_kalimari_desert_packed_dl_4350), +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_71D8), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_72B8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_14A0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_1580), @@ -618,7 +625,10 @@ Gfx d_course_kalimari_desert_dl_1588[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_3A10), gsSPDisplayList(d_course_kalimari_desert_packed_dl_2F30), gsSPDisplayList(d_course_kalimari_desert_packed_dl_3158), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5D30), gsSPDisplayList(d_course_kalimari_desert_packed_dl_79F8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_4260), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_4130), gsSPDisplayList(d_course_kalimari_desert_packed_dl_71D8), + gsSPDisplayList(d_course_kalimari_desert_packed_dl_4130), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_71D8), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_72B8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_73A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_1580), gsSPDisplayList(d_course_kalimari_desert_packed_dl_1F78), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9368), gsSPDisplayList(d_course_kalimari_desert_packed_dl_92F8), @@ -635,7 +645,10 @@ Gfx d_course_kalimari_desert_dl_17C8[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_8610), gsSPDisplayList(d_course_kalimari_desert_packed_dl_8398), gsSPDisplayList(d_course_kalimari_desert_packed_dl_A18), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9FE8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9EB0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9F20), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_9F88), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9E38), + gsSPDisplayList(d_course_kalimari_desert_packed_dl_9F88), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_9E38), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_53D0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5DB0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5A60), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5B00), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5F28), gsSPDisplayList(d_course_kalimari_desert_packed_dl_2CB8), @@ -672,9 +685,17 @@ Gfx d_course_kalimari_desert_dl_18C8[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_73A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_1580), gsSPDisplayList(d_course_kalimari_desert_packed_dl_92F8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_91A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9210), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9280), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_93F0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_8EC8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_93F0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_8EC8), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_9958), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9A68), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_2710), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_2710), +#endif + gsSPEndDisplayList(), }; Gfx d_course_kalimari_desert_dl_1A58[] = { @@ -690,7 +711,12 @@ Gfx d_course_kalimari_desert_dl_1A58[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_3228), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5C90), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5B88), gsSPDisplayList(d_course_kalimari_desert_packed_dl_3158), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5D30), gsSPDisplayList(d_course_kalimari_desert_packed_dl_71D8), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_72B8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9210), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_72B8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_9210), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_9280), gsSPEndDisplayList(), }; @@ -719,7 +745,10 @@ Gfx d_course_kalimari_desert_dl_1B38[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_3B48), gsSPDisplayList(d_course_kalimari_desert_packed_dl_3158), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5D30), gsSPDisplayList(d_course_kalimari_desert_packed_dl_79F8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_7890), gsSPDisplayList(d_course_kalimari_desert_packed_dl_4130), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_4018), gsSPDisplayList(d_course_kalimari_desert_packed_dl_71D8), + gsSPDisplayList(d_course_kalimari_desert_packed_dl_4018), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_71D8), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_72B8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_73A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_74A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_2338), gsSPDisplayList(d_course_kalimari_desert_packed_dl_91A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9210), @@ -735,7 +764,9 @@ Gfx d_course_kalimari_desert_dl_1D48[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_8610), gsSPDisplayList(d_course_kalimari_desert_packed_dl_8398), gsSPDisplayList(d_course_kalimari_desert_packed_dl_8418), +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_8490), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_9EB0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9F20), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9F88), @@ -751,7 +782,9 @@ Gfx d_course_kalimari_desert_dl_1D48[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_59F0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5450), gsSPDisplayList(d_course_kalimari_desert_packed_dl_54C8), +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_5878), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_3228), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5C90), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5B88), @@ -765,10 +798,18 @@ Gfx d_course_kalimari_desert_dl_1D48[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_9280), gsSPDisplayList(d_course_kalimari_desert_packed_dl_93F0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_8EC8), +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2430), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_9958), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_9A68), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2710), +#endif gsSPEndDisplayList(), }; @@ -794,9 +835,17 @@ Gfx d_course_kalimari_desert_dl_1E80[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_74A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_91A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9210), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9280), gsSPDisplayList(d_course_kalimari_desert_packed_dl_93F0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_8EC8), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_2068), gsSPDisplayList(d_course_kalimari_desert_packed_dl_2430), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_2068), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_2430), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_9958), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9A68), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_2710), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_2710), +#endif + gsSPEndDisplayList(), }; Gfx d_course_kalimari_desert_dl_2000[] = { @@ -889,7 +938,10 @@ Gfx d_course_kalimari_desert_dl_22D8[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_CF8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9F88), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9E38), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9CC0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_A050), gsSPDisplayList(d_course_kalimari_desert_packed_dl_A350), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_1178), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5A60), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_1178), +#endif + gsSPDisplayList(d_course_kalimari_desert_packed_dl_5A60), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5B00), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5F28), gsSPDisplayList(d_course_kalimari_desert_packed_dl_3300), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5EB0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_59F0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5450), @@ -905,8 +957,14 @@ Gfx d_course_kalimari_desert_dl_22D8[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_93F0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_8EC8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9138), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9068), gsSPDisplayList(d_course_kalimari_desert_packed_dl_2430), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9958), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_9A68), gsSPDisplayList(d_course_kalimari_desert_packed_dl_2808), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_2710), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_9A68), +#endif + gsSPDisplayList(d_course_kalimari_desert_packed_dl_2808), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_2710), +#endif + gsSPEndDisplayList(), }; Gfx d_course_kalimari_desert_dl_2458[] = { @@ -949,13 +1007,23 @@ Gfx d_course_kalimari_desert_dl_2458[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_74A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9280), gsSPDisplayList(d_course_kalimari_desert_packed_dl_93F0), +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_8EC8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_9068), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2430), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_9958), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9A68), +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2598), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2710), +#endif gsSPEndDisplayList(), }; @@ -1092,7 +1160,10 @@ Gfx d_course_kalimari_desert_dl_29C0[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_4018), gsSPDisplayList(d_course_kalimari_desert_packed_dl_4878), gsSPDisplayList(d_course_kalimari_desert_packed_dl_73A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_74A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_8EC8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9068), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_9480), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9958), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_9480), +#endif + gsSPDisplayList(d_course_kalimari_desert_packed_dl_9958), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9A68), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9510), gsSPDisplayList(d_course_kalimari_desert_packed_dl_97B8), gsSPEndDisplayList(), }; @@ -1248,7 +1319,9 @@ Gfx d_course_kalimari_desert_dl_2F30[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_74A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9958), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9A68), +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_97B8), +#endif gsSPEndDisplayList(), }; @@ -1407,7 +1480,10 @@ Gfx d_course_kalimari_desert_dl_3460[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_4878), gsSPDisplayList(d_course_kalimari_desert_packed_dl_73A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_74A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9958), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9A68), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9510), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_97B8), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_97B8), +#endif + gsSPEndDisplayList(), }; Gfx d_course_kalimari_desert_dl_3590[] = { @@ -2044,8 +2120,14 @@ Gfx d_course_kalimari_desert_dl_4BA0[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_6130), gsSPDisplayList(d_course_kalimari_desert_packed_dl_6310), gsSPDisplayList(d_course_kalimari_desert_packed_dl_65F0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_63C0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_6490), gsSPDisplayList(d_course_kalimari_desert_packed_dl_6530), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_2D20), gsSPDisplayList(d_course_kalimari_desert_packed_dl_66C8), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_30E8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_2AB8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_2D20), +#endif + gsSPDisplayList(d_course_kalimari_desert_packed_dl_66C8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_30E8), +#endif + gsSPDisplayList(d_course_kalimari_desert_packed_dl_2AB8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_6A78), gsSPDisplayList(d_course_kalimari_desert_packed_dl_6780), gsSPDisplayList(d_course_kalimari_desert_packed_dl_68E0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_3440), gsSPDisplayList(d_course_kalimari_desert_packed_dl_81A0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_7E18), @@ -2168,10 +2250,19 @@ Gfx d_course_kalimari_desert_dl_4FB0[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_7E18), gsSPDisplayList(d_course_kalimari_desert_packed_dl_7CC8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_7F80), gsSPDisplayList(d_course_kalimari_desert_packed_dl_47A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_71D8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_72B8), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_1F78), gsSPDisplayList(d_course_kalimari_desert_packed_dl_2130), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_2808), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9630), + gsSPDisplayList(d_course_kalimari_desert_packed_dl_1F78), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_2130), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_2808), +#endif + gsSPDisplayList(d_course_kalimari_desert_packed_dl_9630), gsSPDisplayList(d_course_kalimari_desert_packed_dl_96A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9740), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_9598), gsSPDisplayList(d_course_kalimari_desert_packed_dl_99D8), + gsSPDisplayList(d_course_kalimari_desert_packed_dl_9598), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_99D8), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_9820), gsSPEndDisplayList(), }; @@ -2291,7 +2382,9 @@ Gfx d_course_kalimari_desert_dl_5470[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_A228), gsSPDisplayList(d_course_kalimari_desert_packed_dl_A1A0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_A2D0), +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_A3D8), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_9DC0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9D48), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5360), @@ -2299,7 +2392,9 @@ Gfx d_course_kalimari_desert_dl_5470[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_6530), gsSPDisplayList(d_course_kalimari_desert_packed_dl_66C8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_6290), +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_3C98), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_6DA0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_6BC0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_3A80), @@ -2316,12 +2411,18 @@ Gfx d_course_kalimari_desert_dl_5470[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_71D8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_72B8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_1F78), +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2130), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2808), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_96A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9740), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9598), +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_99D8), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_9820), gsSPDisplayList(d_course_kalimari_desert_packed_dl_2000), gsSPEndDisplayList(), @@ -2338,8 +2439,12 @@ Gfx d_course_kalimari_desert_dl_55C8[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_A1A0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_A2D0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_A3D8), +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_9DC0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_9D48), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_3568), gsSPDisplayList(d_course_kalimari_desert_packed_dl_36A0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_3858), @@ -2362,8 +2467,12 @@ Gfx d_course_kalimari_desert_dl_55C8[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_4438), gsSPDisplayList(d_course_kalimari_desert_packed_dl_73A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_74A8), +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_1F78), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2130), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_2808), gsSPDisplayList(d_course_kalimari_desert_packed_dl_96A8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9740), @@ -2371,7 +2480,9 @@ Gfx d_course_kalimari_desert_dl_55C8[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_2710), gsSPDisplayList(d_course_kalimari_desert_packed_dl_99D8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9820), +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2000), +#endif gsSPEndDisplayList(), }; @@ -2837,12 +2948,18 @@ Gfx d_course_kalimari_desert_dl_65B0[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_8798), gsSPDisplayList(d_course_kalimari_desert_packed_dl_4CB0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_8888), gsSPDisplayList(d_course_kalimari_desert_packed_dl_8508), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9C50), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9BD8), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_9FE8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_A3D8), + gsSPDisplayList(d_course_kalimari_desert_packed_dl_9FE8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_A3D8), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_9DC0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9D48), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5360), gsSPDisplayList(d_course_kalimari_desert_packed_dl_53D0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5DB0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5A60), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5580), gsSPDisplayList(d_course_kalimari_desert_packed_dl_3300), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_6C70), gsSPDisplayList(d_course_kalimari_desert_packed_dl_6BC0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_6C70), +#endif + gsSPDisplayList(d_course_kalimari_desert_packed_dl_6BC0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_6958), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5728), gsSPDisplayList(d_course_kalimari_desert_packed_dl_56A0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5FB0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_31C0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_5948), @@ -2850,7 +2967,10 @@ Gfx d_course_kalimari_desert_dl_65B0[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_77F8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_71D8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_72B8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_8F50), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9368), gsSPDisplayList(d_course_kalimari_desert_packed_dl_92F8), - gsSPDisplayList(d_course_kalimari_desert_packed_dl_9138), gsSPDisplayList(d_course_kalimari_desert_packed_dl_99D8), + gsSPDisplayList(d_course_kalimari_desert_packed_dl_9138), +#ifndef VERSION_JP + gsSPDisplayList(d_course_kalimari_desert_packed_dl_99D8), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_9820), gsSPDisplayList(d_course_kalimari_desert_packed_dl_90D8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_8FF8), gsSPEndDisplayList(), }; @@ -2930,7 +3050,9 @@ Gfx d_course_kalimari_desert_dl_6838[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_71D8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_72B8), gsSPDisplayList(d_course_kalimari_desert_packed_dl_8F50), +#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_9368), +#endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_8FF8), gsSPEndDisplayList(), }; @@ -2988,207 +3110,23 @@ Gfx d_course_kalimari_desert_dl_6940[] = { }; // 0x6AC8 +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_kalimari_desert_unknown_path[] = { - { 1, 0, 503, 0 }, { 1, 0, 485, 0 }, { 1, 0, 325, 0 }, { 3, 0, -247, 0 }, { -47, 0, -559, 0 }, - { -176, 0, -821, 0 }, { -379, 0, -996, 0 }, { -620, 0, -1082, 0 }, { -878, 0, -1095, 0 }, { -1133, 0, -1037, 0 }, - { -1342, 0, -907, 0 }, { -1513, 0, -691, 0 }, { -1610, 0, -448, 0 }, { -1642, 0, -133, 0 }, { -1642, 0, 18, 0 }, - { -1642, 0, 140, 0 }, { -1639, 0, 692, 0 }, { -1638, 0, 1162, 0 }, { -1651, 0, 1326, 0 }, { -1698, 0, 1486, 0 }, - { -1831, 0, 1686, 0 }, { -2252, 0, 2112, 0 }, { -2734, 0, 2598, 0 }, { -2931, 0, 2876, 0 }, { -2985, 0, 3022, 0 }, - { -3016, 0, 3184, 0 }, { -3016, 0, 3337, 0 }, { -2974, 0, 3490, 0 }, { -2896, 0, 3626, 0 }, { -2792, 0, 3745, 0 }, - { -2664, 0, 3842, 0 }, { -2498, 0, 3907, 0 }, { -2322, 0, 3934, 0 }, { -2009, 0, 3934, 0 }, { -1498, 0, 3849, 0 }, - { -1230, 0, 3773, 0 }, { -1081, 0, 3687, 0 }, { -895, 0, 3525, 0 }, { -765, 0, 3339, 0 }, { -639, 0, 2986, 0 }, - { -623, 0, 2601, 0 }, { -628, 0, 1893, 0 }, { -607, 0, 1734, 0 }, { -524, 0, 1551, 0 }, { -437, 0, 1454, 0 }, - { -311, 0, 1382, 0 }, { -158, 0, 1274, 0 }, { -57, 0, 1074, 0 }, { -17, 0, 873, 0 }, { 5, 0, 533, 0 }, - { -32768, 0, 0, 0 }, +#include "courses/kalimari_desert/d_course_kalimari_desert_unknown_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_kalimari_desert_train_path[] = { - { -741, 0, 2114, 0 }, { -741, 0, 2130, 0 }, { -741, 0, 2364, 0 }, { -744, 0, 2840, 0 }, { -749, 0, 2906, 0 }, - { -758, 0, 2962, 0 }, { -769, 0, 3017, 0 }, { -784, 0, 3085, 0 }, { -801, 0, 3138, 0 }, { -818, 0, 3184, 0 }, - { -838, 0, 3229, 0 }, { -864, 0, 3281, 0 }, { -891, 0, 3325, 0 }, { -917, 0, 3364, 0 }, { -951, 0, 3404, 0 }, - { -984, 0, 3441, 0 }, { -1023, 0, 3473, 0 }, { -1058, 0, 3505, 0 }, { -1099, 0, 3540, 0 }, { -1141, 0, 3563, 0 }, - { -1186, 0, 3586, 0 }, { -1239, 0, 3613, 0 }, { -1296, 0, 3629, 0 }, { -1343, 0, 3645, 0 }, { -1446, 0, 3666, 0 }, - { -1543, 0, 3685, 0 }, { -1645, 0, 3689, 0 }, { -1746, 0, 3689, 0 }, { -1848, 0, 3669, 0 }, { -1943, 0, 3645, 0 }, - { -2033, 0, 3607, 0 }, { -2104, 0, 3565, 0 }, { -2188, 0, 3510, 0 }, { -2263, 0, 3443, 0 }, { -2330, 0, 3367, 0 }, - { -2385, 0, 3283, 0 }, { -2429, 0, 3186, 0 }, { -2464, 0, 3083, 0 }, { -2493, 0, 2967, 0 }, { -2503, 0, 2843, 0 }, - { -2509, 0, 2716, 0 }, { -2505, 0, 2605, 0 }, { -2507, 0, 1161, 0 }, { -2509, 0, 1052, 0 }, { -2509, 0, 921, 0 }, - { -2495, 0, 800, 0 }, { -2465, 0, 680, 0 }, { -2436, 0, 578, 0 }, { -2385, 0, 481, 0 }, { -2330, 0, 407, 0 }, - { -2263, 0, 318, 0 }, { -2187, 0, 258, 0 }, { -2104, 0, 202, 0 }, { -2033, 0, 163, 0 }, { -1944, 0, 121, 0 }, - { -1839, 0, 98, 0 }, { -1745, 0, 81, 0 }, { -1640, 0, 79, 0 }, { -1544, 0, 83, 0 }, { -1440, 0, 99, 0 }, - { -1343, 0, 120, 0 }, { -1244, 0, 159, 0 }, { -1142, 0, 201, 0 }, { -1063, 0, 254, 0 }, { -980, 0, 321, 0 }, - { -918, 0, 400, 0 }, { -860, 0, 481, 0 }, { -819, 0, 575, 0 }, { -780, 0, 682, 0 }, { -754, 0, 797, 0 }, - { -744, 0, 921, 0 }, { -742, 0, 1044, 0 }, { -740, 0, 1162, 0 }, { -743, 0, 1883, 0 }, { -739, 0, 2086, 0 }, - { -32768, 0, 0, 0 }, +#include "courses/kalimari_desert/d_course_kalimari_desert_train_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_kalimari_desert_track_path[] = { - { 1, 0, 494, 1 }, { 1, 0, 473, 2 }, { 1, 0, 453, 2 }, { 1, 1, 433, 2 }, - { 1, 1, 413, 2 }, { 1, 1, 393, 2 }, { 1, 1, 373, 2 }, { 1, 1, 353, 2 }, - { 1, 1, 333, 2 }, { 1, 2, 313, 2 }, { 1, 3, 293, 2 }, { 1, 3, 273, 2 }, - { 1, 4, 253, 2 }, { 1, 5, 233, 2 }, { 1, 6, 213, 2 }, { 1, 6, 193, 2 }, - { 1, 6, 173, 2 }, { 1, 7, 153, 2 }, { 1, 7, 133, 2 }, { 1, 8, 113, 2 }, - { 1, 8, 93, 2 }, { 1, 8, 73, 2 }, { 1, 8, 53, 2 }, { 2, 8, 33, 2 }, - { 2, 8, 13, 2 }, { 1, 8, -6, 2 }, { 1, 8, -26, 2 }, { 1, 8, -46, 2 }, - { 1, 8, -66, 2 }, { 1, 8, -86, 3 }, { 0, 8, -106, 3 }, { 0, 9, -126, 3 }, - { 0, 9, -146, 3 }, { -1, 10, -166, 3 }, { -2, 10, -186, 3 }, { -3, 11, -206, 3 }, - { -4, 12, -226, 3 }, { -5, 12, -246, 3 }, { -6, 13, -266, 3 }, { -8, 14, -286, 3 }, - { -10, 14, -306, 3 }, { -12, 15, -326, 3 }, { -14, 16, -346, 3 }, { -16, 17, -365, 3 }, - { -19, 18, -385, 3 }, { -22, 19, -405, 3 }, { -25, 20, -425, 3 }, { -29, 20, -444, 3 }, - { -33, 20, -464, 3 }, { -38, 21, -484, 3 }, { -42, 21, -503, 3 }, { -48, 22, -522, 3 }, - { -53, 22, -542, 3 }, { -59, 22, -561, 3 }, { -65, 23, -580, 4 }, { -72, 23, -599, 4 }, - { -79, 23, -617, 4 }, { -87, 23, -636, 4 }, { -95, 23, -654, 4 }, { -103, 23, -672, 4 }, - { -111, 23, -690, 4 }, { -121, 23, -708, 4 }, { -130, 23, -726, 4 }, { -140, 24, -743, 4 }, - { -151, 24, -760, 4 }, { -161, 23, -777, 4 }, { -173, 23, -793, 4 }, { -185, 22, -810, 4 }, - { -197, 21, -825, 4 }, { -210, 20, -841, 4 }, { -223, 20, -856, 4 }, { -237, 19, -870, 4 }, - { -251, 16, -884, 4 }, { -266, 14, -898, 4 }, { -281, 12, -911, 4 }, { -296, 11, -924, 4 }, - { -312, 10, -936, 4 }, { -328, 8, -948, 4 }, { -344, 7, -960, 4 }, { -361, 6, -971, 4 }, - { -378, 5, -981, 4 }, { -395, 5, -991, 4 }, { -413, 5, -1001, 4 }, { -431, 6, -1010, 4 }, - { -449, 6, -1018, 4 }, { -467, 7, -1026, 4 }, { -486, 7, -1034, 4 }, { -505, 8, -1041, 5 }, - { -524, 9, -1047, 5 }, { -543, 10, -1053, 5 }, { -562, 11, -1058, 5 }, { -581, 12, -1063, 5 }, - { -601, 13, -1068, 5 }, { -620, 14, -1072, 5 }, { -640, 15, -1076, 5 }, { -660, 16, -1079, 5 }, - { -680, 17, -1082, 5 }, { -700, 17, -1084, 5 }, { -719, 18, -1086, 5 }, { -739, 19, -1087, 5 }, - { -759, 20, -1088, 5 }, { -779, 21, -1089, 5 }, { -799, 22, -1089, 5 }, { -819, 24, -1089, 5 }, - { -839, 25, -1088, 5 }, { -859, 26, -1087, 5 }, { -879, 27, -1085, 5 }, { -899, 29, -1083, 5 }, - { -919, 30, -1081, 5 }, { -939, 32, -1078, 5 }, { -959, 34, -1075, 5 }, { -978, 35, -1071, 5 }, - { -998, 37, -1067, 5 }, { -1017, 37, -1063, 5 }, { -1037, 36, -1058, 5 }, { -1056, 35, -1052, 5 }, - { -1075, 35, -1046, 5 }, { -1094, 34, -1040, 5 }, { -1113, 33, -1033, 5 }, { -1132, 32, -1026, 6 }, - { -1150, 32, -1018, 6 }, { -1168, 31, -1009, 6 }, { -1186, 30, -1000, 6 }, { -1204, 29, -991, 6 }, - { -1221, 28, -981, 6 }, { -1238, 28, -971, 6 }, { -1255, 27, -960, 6 }, { -1272, 26, -948, 6 }, - { -1288, 25, -937, 6 }, { -1303, 24, -924, 6 }, { -1319, 23, -912, 6 }, { -1334, 23, -898, 6 }, - { -1349, 22, -885, 6 }, { -1363, 21, -871, 6 }, { -1377, 21, -856, 6 }, { -1390, 20, -842, 6 }, - { -1404, 19, -827, 6 }, { -1417, 18, -811, 6 }, { -1429, 18, -796, 6 }, { -1441, 18, -780, 6 }, - { -1453, 18, -764, 6 }, { -1465, 18, -748, 6 }, { -1476, 18, -731, 6 }, { -1487, 18, -714, 6 }, - { -1497, 18, -697, 6 }, { -1507, 17, -680, 6 }, { -1517, 17, -662, 6 }, { -1527, 17, -645, 6 }, - { -1535, 17, -627, 6 }, { -1544, 17, -609, 6 }, { -1552, 17, -590, 6 }, { -1560, 16, -572, 7 }, - { -1567, 16, -553, 7 }, { -1574, 16, -534, 7 }, { -1580, 15, -515, 7 }, { -1586, 15, -496, 7 }, - { -1592, 14, -477, 7 }, { -1597, 14, -458, 7 }, { -1601, 13, -438, 7 }, { -1606, 13, -419, 7 }, - { -1610, 12, -399, 7 }, { -1613, 11, -379, 7 }, { -1617, 11, -360, 7 }, { -1619, 10, -340, 7 }, - { -1622, 9, -320, 7 }, { -1624, 9, -300, 7 }, { -1626, 9, -280, 7 }, { -1628, 9, -260, 7 }, - { -1630, 9, -240, 7 }, { -1632, 8, -220, 7 }, { -1634, 8, -200, 7 }, { -1635, 8, -181, 7 }, - { -1637, 8, -161, 7 }, { -1638, 8, -141, 7 }, { -1640, 7, -121, 7 }, { -1640, 6, -101, 7 }, - { -1641, 6, -81, 7 }, { -1641, 5, -61, 7 }, { -1641, 4, -41, 7 }, { -1642, 3, -21, 7 }, - { -1642, 3, -1, 7 }, { -1641, 2, 18, 7 }, { -1641, 2, 38, 7 }, { -1642, 2, 58, 7 }, - { -1642, 2, 78, 7 }, { -1641, 2, 98, 7 }, { -1641, 2, 118, 8 }, { -1641, 2, 138, 8 }, - { -1641, 3, 158, 8 }, { -1641, 4, 179, 8 }, { -1641, 5, 199, 8 }, { -1641, 6, 219, 8 }, - { -1641, 7, 239, 8 }, { -1641, 8, 259, 8 }, { -1641, 9, 279, 8 }, { -1641, 10, 299, 8 }, - { -1641, 10, 319, 8 }, { -1640, 11, 339, 8 }, { -1640, 11, 359, 8 }, { -1640, 12, 379, 8 }, - { -1640, 12, 399, 8 }, { -1640, 12, 419, 8 }, { -1640, 12, 439, 8 }, { -1640, 13, 459, 8 }, - { -1640, 13, 479, 8 }, { -1640, 13, 499, 8 }, { -1639, 13, 519, 8 }, { -1639, 14, 539, 8 }, - { -1639, 14, 559, 8 }, { -1639, 14, 579, 8 }, { -1639, 15, 599, 8 }, { -1639, 15, 619, 8 }, - { -1639, 15, 639, 8 }, { -1639, 16, 659, 8 }, { -1639, 16, 679, 8 }, { -1639, 16, 699, 8 }, - { -1639, 17, 719, 8 }, { -1639, 17, 739, 8 }, { -1638, 17, 759, 8 }, { -1638, 18, 779, 8 }, - { -1638, 18, 799, 8 }, { -1638, 18, 819, 8 }, { -1638, 18, 839, 8 }, { -1638, 19, 859, 8 }, - { -1638, 19, 879, 8 }, { -1638, 19, 899, 8 }, { -1638, 19, 919, 8 }, { -1638, 20, 939, 9 }, - { -1638, 20, 959, 9 }, { -1638, 20, 979, 9 }, { -1638, 21, 999, 9 }, { -1638, 21, 1019, 9 }, - { -1638, 21, 1039, 9 }, { -1638, 22, 1059, 9 }, { -1639, 22, 1079, 9 }, { -1639, 23, 1099, 9 }, - { -1639, 23, 1119, 9 }, { -1640, 23, 1139, 9 }, { -1640, 24, 1159, 9 }, { -1641, 24, 1179, 9 }, - { -1641, 24, 1199, 9 }, { -1642, 24, 1219, 9 }, { -1644, 24, 1239, 9 }, { -1645, 24, 1259, 9 }, - { -1648, 24, 1279, 9 }, { -1650, 24, 1299, 9 }, { -1654, 23, 1318, 10 }, { -1657, 23, 1338, 10 }, - { -1662, 22, 1358, 10 }, { -1666, 22, 1377, 10 }, { -1671, 22, 1396, 10 }, { -1677, 21, 1416, 10 }, - { -1684, 21, 1435, 10 }, { -1691, 20, 1453, 10 }, { -1699, 20, 1471, 10 }, { -1708, 19, 1490, 10 }, - { -1717, 19, 1507, 10 }, { -1727, 18, 1525, 10 }, { -1737, 18, 1542, 10 }, { -1747, 17, 1559, 10 }, - { -1758, 17, 1576, 10 }, { -1769, 16, 1593, 10 }, { -1780, 16, 1609, 10 }, { -1793, 15, 1625, 10 }, - { -1805, 15, 1641, 10 }, { -1817, 14, 1656, 10 }, { -1830, 14, 1672, 10 }, { -1843, 13, 1687, 10 }, - { -1856, 13, 1702, 10 }, { -1870, 12, 1717, 10 }, { -1883, 12, 1732, 10 }, { -1896, 11, 1747, 10 }, - { -1910, 11, 1762, 10 }, { -1923, 11, 1776, 10 }, { -1937, 10, 1791, 10 }, { -1951, 10, 1805, 10 }, - { -1965, 9, 1820, 10 }, { -1978, 9, 1834, 10 }, { -1992, 8, 1849, 10 }, { -2006, 8, 1863, 10 }, - { -2020, 7, 1877, 11 }, { -2034, 7, 1892, 11 }, { -2048, 6, 1906, 11 }, { -2062, 6, 1920, 11 }, - { -2077, 5, 1934, 11 }, { -2091, 5, 1949, 11 }, { -2105, 4, 1963, 11 }, { -2119, 4, 1977, 11 }, - { -2133, 4, 1991, 11 }, { -2147, 3, 2006, 11 }, { -2161, 3, 2020, 11 }, { -2175, 2, 2034, 11 }, - { -2189, 2, 2048, 11 }, { -2203, 1, 2062, 11 }, { -2217, 1, 2077, 11 }, { -2231, 0, 2091, 11 }, - { -2245, 0, 2105, 11 }, { -2259, 0, 2119, 11 }, { -2274, 0, 2134, 11 }, { -2288, 0, 2148, 11 }, - { -2302, 0, 2162, 11 }, { -2316, 1, 2176, 11 }, { -2330, 1, 2190, 11 }, { -2344, 1, 2205, 11 }, - { -2358, 1, 2219, 11 }, { -2372, 2, 2233, 11 }, { -2386, 2, 2247, 11 }, { -2400, 2, 2262, 11 }, - { -2414, 2, 2276, 11 }, { -2428, 2, 2290, 11 }, { -2443, 2, 2304, 11 }, { -2457, 2, 2318, 11 }, - { -2471, 2, 2333, 12 }, { -2485, 2, 2347, 12 }, { -2499, 2, 2361, 12 }, { -2513, 2, 2375, 12 }, - { -2527, 2, 2390, 12 }, { -2541, 2, 2404, 12 }, { -2555, 2, 2418, 12 }, { -2569, 2, 2433, 12 }, - { -2583, 3, 2447, 12 }, { -2597, 3, 2462, 12 }, { -2610, 4, 2476, 12 }, { -2624, 4, 2491, 12 }, - { -2638, 4, 2505, 12 }, { -2651, 5, 2520, 12 }, { -2665, 5, 2535, 12 }, { -2678, 5, 2550, 12 }, - { -2692, 6, 2564, 12 }, { -2705, 6, 2579, 12 }, { -2718, 7, 2594, 12 }, { -2731, 7, 2610, 12 }, - { -2744, 8, 2625, 12 }, { -2757, 8, 2640, 12 }, { -2770, 8, 2656, 12 }, { -2782, 9, 2671, 12 }, - { -2795, 9, 2687, 12 }, { -2807, 9, 2703, 12 }, { -2819, 9, 2719, 12 }, { -2831, 9, 2735, 12 }, - { -2842, 10, 2751, 12 }, { -2854, 11, 2768, 12 }, { -2865, 11, 2784, 12 }, { -2876, 12, 2801, 12 }, - { -2887, 12, 2818, 12 }, { -2898, 13, 2834, 12 }, { -2908, 14, 2852, 12 }, { -2918, 14, 2869, 12 }, - { -2928, 15, 2886, 12 }, { -2938, 16, 2904, 12 }, { -2946, 16, 2922, 12 }, { -2954, 17, 2940, 12 }, - { -2961, 18, 2959, 12 }, { -2968, 19, 2978, 12 }, { -2974, 20, 2997, 12 }, { -2980, 21, 3016, 12 }, - { -2985, 22, 3035, 13 }, { -2990, 22, 3055, 13 }, { -2994, 23, 3074, 13 }, { -2998, 23, 3094, 13 }, - { -3002, 23, 3114, 13 }, { -3005, 22, 3133, 13 }, { -3008, 22, 3153, 13 }, { -3011, 21, 3173, 13 }, - { -3013, 20, 3193, 13 }, { -3014, 19, 3213, 13 }, { -3015, 19, 3233, 13 }, { -3015, 18, 3253, 13 }, - { -3015, 17, 3273, 13 }, { -3015, 16, 3293, 13 }, { -3013, 15, 3313, 13 }, { -3011, 14, 3333, 13 }, - { -3008, 14, 3352, 13 }, { -3004, 13, 3372, 13 }, { -3000, 12, 3392, 13 }, { -2995, 11, 3411, 13 }, - { -2989, 11, 3430, 13 }, { -2983, 10, 3449, 13 }, { -2977, 9, 3468, 13 }, { -2969, 8, 3487, 13 }, - { -2961, 8, 3505, 13 }, { -2953, 7, 3523, 13 }, { -2944, 6, 3541, 13 }, { -2934, 5, 3559, 13 }, - { -2924, 4, 3576, 13 }, { -2913, 4, 3593, 13 }, { -2902, 3, 3609, 13 }, { -2891, 2, 3626, 13 }, - { -2879, 2, 3642, 13 }, { -2866, 1, 3658, 13 }, { -2854, 0, 3673, 13 }, { -2841, 0, 3688, 14 }, - { -2827, 2, 3703, 14 }, { -2813, 3, 3718, 14 }, { -2799, 5, 3732, 14 }, { -2785, 6, 3745, 14 }, - { -2770, 7, 3759, 14 }, { -2754, 7, 3772, 14 }, { -2739, 8, 3784, 14 }, { -2723, 9, 3796, 14 }, - { -2707, 10, 3808, 14 }, { -2690, 10, 3819, 14 }, { -2673, 11, 3830, 14 }, { -2655, 12, 3839, 14 }, - { -2638, 12, 3849, 14 }, { -2620, 12, 3857, 14 }, { -2601, 12, 3865, 14 }, { -2583, 11, 3873, 14 }, - { -2564, 11, 3880, 14 }, { -2545, 10, 3887, 14 }, { -2526, 9, 3893, 14 }, { -2507, 9, 3899, 14 }, - { -2488, 8, 3904, 14 }, { -2468, 7, 3909, 14 }, { -2449, 7, 3913, 14 }, { -2429, 6, 3917, 14 }, - { -2409, 5, 3920, 14 }, { -2390, 4, 3923, 14 }, { -2370, 4, 3925, 14 }, { -2350, 3, 3927, 14 }, - { -2330, 3, 3929, 14 }, { -2310, 2, 3930, 14 }, { -2290, 2, 3931, 14 }, { -2270, 1, 3932, 14 }, - { -2250, 1, 3932, 14 }, { -2230, 1, 3933, 14 }, { -2210, 0, 3933, 14 }, { -2190, 0, 3933, 14 }, - { -2170, 0, 3933, 14 }, { -2150, 0, 3933, 14 }, { -2130, 0, 3933, 14 }, { -2110, 1, 3932, 14 }, - { -2090, 1, 3931, 14 }, { -2070, 1, 3930, 14 }, { -2050, 2, 3929, 14 }, { -2030, 2, 3927, 14 }, - { -2010, 3, 3925, 14 }, { -1990, 3, 3924, 14 }, { -1970, 3, 3921, 14 }, { -1950, 4, 3919, 14 }, - { -1930, 4, 3917, 14 }, { -1911, 4, 3914, 14 }, { -1891, 5, 3912, 14 }, { -1871, 5, 3909, 14 }, - { -1851, 6, 3906, 15 }, { -1831, 6, 3903, 15 }, { -1811, 6, 3900, 15 }, { -1792, 7, 3897, 15 }, - { -1772, 7, 3894, 15 }, { -1752, 7, 3891, 15 }, { -1732, 8, 3888, 15 }, { -1713, 8, 3884, 15 }, - { -1693, 8, 3881, 15 }, { -1673, 9, 3877, 15 }, { -1654, 9, 3874, 15 }, { -1634, 9, 3870, 15 }, - { -1614, 10, 3867, 15 }, { -1595, 10, 3863, 15 }, { -1575, 10, 3859, 15 }, { -1555, 11, 3855, 15 }, - { -1536, 11, 3851, 15 }, { -1516, 11, 3847, 15 }, { -1496, 11, 3843, 15 }, { -1477, 11, 3839, 15 }, - { -1457, 11, 3834, 15 }, { -1438, 11, 3830, 15 }, { -1418, 10, 3825, 15 }, { -1399, 10, 3820, 15 }, - { -1380, 10, 3815, 15 }, { -1360, 9, 3810, 15 }, { -1341, 9, 3804, 15 }, { -1322, 9, 3798, 15 }, - { -1303, 8, 3792, 15 }, { -1284, 7, 3786, 15 }, { -1265, 7, 3779, 15 }, { -1246, 6, 3772, 15 }, - { -1228, 5, 3765, 15 }, { -1209, 5, 3757, 15 }, { -1191, 4, 3748, 15 }, { -1173, 3, 3740, 15 }, - { -1156, 3, 3730, 15 }, { -1139, 2, 3720, 15 }, { -1122, 1, 3709, 15 }, { -1105, 1, 3698, 15 }, - { -1089, 0, 3686, 15 }, { -1073, 0, 3675, 15 }, { -1057, 0, 3662, 15 }, { -1041, 0, 3650, 15 }, - { -1025, 0, 3638, 15 }, { -1010, 0, 3625, 15 }, { -995, 0, 3612, 15 }, { -980, 0, 3599, 15 }, - { -965, 0, 3585, 15 }, { -950, 0, 3571, 16 }, { -936, 0, 3557, 16 }, { -922, 0, 3543, 16 }, - { -908, 0, 3529, 16 }, { -895, 0, 3514, 16 }, { -882, 0, 3499, 16 }, { -869, 0, 3483, 16 }, - { -856, 0, 3468, 16 }, { -844, 0, 3452, 16 }, { -832, 0, 3436, 16 }, { -821, 0, 3419, 16 }, - { -810, 0, 3402, 16 }, { -800, 0, 3385, 16 }, { -790, 0, 3368, 16 }, { -781, 0, 3350, 16 }, - { -772, 0, 3332, 16 }, { -763, 0, 3314, 16 }, { -755, 0, 3296, 16 }, { -747, 0, 3277, 16 }, - { -739, 0, 3259, 16 }, { -731, 0, 3241, 16 }, { -724, 0, 3222, 16 }, { -717, 0, 3203, 16 }, - { -710, 0, 3185, 16 }, { -703, 0, 3166, 16 }, { -696, 0, 3147, 16 }, { -690, 0, 3128, 16 }, - { -684, 0, 3109, 16 }, { -678, 0, 3090, 16 }, { -673, 0, 3070, 16 }, { -668, 0, 3051, 16 }, - { -663, 0, 3032, 16 }, { -659, 0, 3012, 16 }, { -654, 0, 2992, 16 }, { -651, 0, 2973, 17 }, - { -647, 0, 2953, 17 }, { -644, 0, 2933, 17 }, { -641, 0, 2913, 17 }, { -639, 0, 2894, 17 }, - { -636, 0, 2874, 17 }, { -634, 0, 2854, 17 }, { -633, 0, 2834, 17 }, { -632, 0, 2814, 17 }, - { -631, 0, 2794, 17 }, { -630, 0, 2774, 17 }, { -629, 0, 2754, 17 }, { -628, 0, 2734, 17 }, - { -628, 0, 2714, 17 }, { -627, 0, 2694, 17 }, { -627, 0, 2674, 17 }, { -626, 0, 2654, 17 }, - { -626, 0, 2634, 17 }, { -626, 0, 2614, 17 }, { -626, 0, 2594, 17 }, { -625, 0, 2574, 17 }, - { -625, 0, 2554, 17 }, { -625, 0, 2534, 17 }, { -625, 0, 2514, 17 }, { -625, 0, 2494, 17 }, - { -625, 0, 2474, 17 }, { -624, 0, 2454, 17 }, { -624, 0, 2434, 17 }, { -624, 0, 2414, 17 }, - { -624, 0, 2394, 17 }, { -624, 0, 2374, 17 }, { -624, 0, 2354, 18 }, { -625, 0, 2334, 18 }, - { -625, 0, 2314, 18 }, { -625, 0, 2294, 18 }, { -625, 0, 2274, 18 }, { -625, 0, 2254, 18 }, - { -625, 0, 2234, 18 }, { -625, 0, 2214, 18 }, { -625, 0, 2194, 18 }, { -625, 0, 2173, 18 }, - { -625, 0, 2153, 18 }, { -625, 0, 2133, 18 }, { -625, 0, 2113, 18 }, { -625, 0, 2093, 18 }, - { -625, 0, 2073, 18 }, { -625, 0, 2053, 18 }, { -625, 0, 2033, 18 }, { -625, 0, 2013, 18 }, - { -625, 0, 1993, 18 }, { -624, 0, 1973, 18 }, { -624, 0, 1953, 18 }, { -624, 0, 1933, 18 }, - { -623, 0, 1913, 18 }, { -622, 0, 1893, 18 }, { -622, 0, 1873, 18 }, { -621, 0, 1853, 18 }, - { -619, -1, 1833, 18 }, { -617, -1, 1813, 18 }, { -614, -2, 1794, 18 }, { -610, -2, 1774, 18 }, - { -606, -3, 1755, 18 }, { -600, -3, 1735, 18 }, { -594, -4, 1716, 18 }, { -588, -5, 1697, 18 }, - { -581, -5, 1679, 18 }, { -573, -6, 1660, 18 }, { -565, -6, 1642, 18 }, { -556, -7, 1624, 18 }, - { -548, -8, 1606, 19 }, { -538, -8, 1588, 19 }, { -528, -9, 1570, 19 }, { -518, -9, 1553, 19 }, - { -507, -10, 1537, 19 }, { -495, -11, 1520, 19 }, { -483, -11, 1505, 19 }, { -469, -12, 1490, 19 }, - { -455, -13, 1476, 19 }, { -440, -13, 1463, 19 }, { -424, -14, 1451, 19 }, { -408, -14, 1439, 19 }, - { -391, -15, 1428, 19 }, { -374, -16, 1418, 19 }, { -357, -16, 1408, 19 }, { -339, -17, 1397, 19 }, - { -322, -17, 1387, 19 }, { -306, -18, 1376, 19 }, { -289, -18, 1365, 19 }, { -272, -18, 1354, 19 }, - { -256, -17, 1343, 19 }, { -239, -16, 1331, 19 }, { -223, -15, 1319, 19 }, { -208, -14, 1307, 19 }, - { -193, -12, 1293, 19 }, { -179, -11, 1279, 19 }, { -166, -10, 1264, 19 }, { -153, -8, 1248, 20 }, - { -141, -6, 1232, 20 }, { -130, -5, 1215, 20 }, { -120, -3, 1198, 20 }, { -111, -1, 1181, 20 }, - { -102, 0, 1163, 20 }, { -93, 1, 1145, 20 }, { -85, 1, 1126, 20 }, { -77, 1, 1108, 20 }, - { -70, 0, 1089, 20 }, { -63, 0, 1070, 20 }, { -57, 0, 1051, 20 }, { -51, 0, 1032, 20 }, - { -46, 0, 1013, 20 }, { -41, 0, 994, 20 }, { -37, 0, 974, 20 }, { -33, 0, 954, 20 }, - { -30, 0, 935, 20 }, { -27, 0, 915, 20 }, { -24, 0, 895, 20 }, { -22, 0, 875, 20 }, - { -20, 0, 855, 20 }, { -18, 0, 835, 20 }, { -16, 0, 815, 20 }, { -14, 0, 795, 20 }, - { -13, 0, 775, 20 }, { -11, 0, 755, 20 }, { -10, 0, 735, 20 }, { -9, 0, 715, 20 }, - { -8, 0, 695, 20 }, { -7, 0, 675, 20 }, { -6, 0, 655, 20 }, { -5, 0, 635, 20 }, - { -4, 0, 615, 20 }, { -3, 0, 595, 20 }, { -2, 0, 575, 20 }, { -1, 0, 555, 20 }, - { 0, 0, 535, 20 }, { 0, 0, 515, 20 }, { 0, 0, 495, 1 }, { -32768, -32768, -32768, 0 }, +#include "courses/kalimari_desert/d_course_kalimari_desert_track_path.inc.c" }; +#endif /** The Cactus palette is really really strange. There's only 4x29 (116) entires as opposed to the usual 16x16 (256) that @@ -7089,3 +7027,15 @@ TrackSections d_course_kalimari_desert_addr[] = { { d_course_kalimari_desert_packed_dl_998, RAMP, 255, 0x4000 }, { 0x00000000, 0, 0, 0x0000 }, }; + +#ifdef VERSION_JP /* VERSION_JP path order: JP puts the paths last */ +TrackPathPoint d_course_kalimari_desert_unknown_path[] = { +#include "courses/kalimari_desert/d_course_kalimari_desert_unknown_path.inc.c" +}; +TrackPathPoint d_course_kalimari_desert_train_path[] = { +#include "courses/kalimari_desert/d_course_kalimari_desert_train_path.inc.c" +}; +TrackPathPoint d_course_kalimari_desert_track_path[] = { +#include "courses/kalimari_desert/d_course_kalimari_desert_track_path.inc.c" +}; +#endif diff --git a/courses/kalimari_desert/course_offsets.c b/courses/kalimari_desert/course_offsets.c index adba118191..265105e238 100644 --- a/courses/kalimari_desert/course_offsets.c +++ b/courses/kalimari_desert/course_offsets.c @@ -28,6 +28,36 @@ extern u8 gTextureSignShellShot1[]; extern u8 gTextureSignKoopaAir0[]; extern u8 gTextureSignKoopaAir1[]; +#ifdef VERSION_JP /* JP ships different sign textures, so their compressed sizes differ */ +const course_texture kalimari_desert_textures[] = { + { gTexture6684F8, 0x010D, 0x0800, 0x0 }, + { gTextureSignLuigis0, 0x026A, 0x1000, 0x0 }, + { gTextureSignLuigis1, 0x02CC, 0x1000, 0x0 }, + { gTextureSignMarioStar0, 0x0349, 0x1000, 0x0 }, + { gTextureSignMarioStar1, 0x02D7, 0x1000, 0x0 }, + { gTextureSignNintendoRed0, 0x02E1, 0x1000, 0x0 }, + { gTextureSignNintendoRed1, 0x034C, 0x1000, 0x0 }, + { gTexture67490C, 0x021C, 0x0800, 0x0 }, + { gTextureSignYoshi, 0x0342, 0x1000, 0x0 }, + { gTextureCheckerboardBlueGray, 0x027F, 0x1000, 0x0 }, + { gTexture646CA8, 0x073A, 0x1000, 0x0 }, + { gTexture6473E4, 0x05AD, 0x1000, 0x0 }, + { gTexture647994, 0x05B5, 0x1000, 0x0 }, + { gTexture668920, 0x03D9, 0x0800, 0x0 }, + { gTextureRailroadTrack, 0x0B5B, 0x1000, 0x0 }, + { gTextureRailroadCrossingTrack, 0x0208, 0x1000, 0x0 }, + { gTexture67291C, 0x059C, 0x0800, 0x0 }, + { gTextureFenceBarbedWire, 0x021E, 0x1000, 0x0 }, + { gTexture67D304, 0x091C, 0x1000, 0x0 }, + { gTexture67E010, 0x0415, 0x0800, 0x0 }, + { gTexture67EEAC, 0x0140, 0x0800, 0x0 }, + { gTextureSignShellShot0, 0x038C, 0x1000, 0x0 }, + { gTextureSignShellShot1, 0x0247, 0x1000, 0x0 }, + { gTextureSignKoopaAir0, 0x03C2, 0x1000, 0x0 }, + { gTextureSignKoopaAir1, 0x0319, 0x1000, 0x0 }, + { 0x00000000, 0x0000, 0x0000, 0x0 }, +}; +#else const course_texture kalimari_desert_textures[] = { { gTexture6684F8, 0x010D, 0x0800, 0x0 }, { gTextureSignLuigis0, 0x0287, 0x1000, 0x0 }, { gTextureSignLuigis1, 0x02AF, 0x1000, 0x0 }, { gTextureSignMarioStar0, 0x02D2, 0x1000, 0x0 }, @@ -43,6 +73,7 @@ const course_texture kalimari_desert_textures[] = { { gTextureSignShellShot1, 0x0247, 0x1000, 0x0 }, { gTextureSignKoopaAir0, 0x0360, 0x1000, 0x0 }, { gTextureSignKoopaAir1, 0x0304, 0x1000, 0x0 }, { 0x00000000, 0x0000, 0x0000, 0x0 }, }; +#endif const Gfx* kalimari_desert_dls[] = { d_course_kalimari_desert_dl_0, d_course_kalimari_desert_dl_258, d_course_kalimari_desert_dl_100, diff --git a/courses/kalimari_desert/d_course_kalimari_desert_track_path.inc.c b/courses/kalimari_desert/d_course_kalimari_desert_track_path.inc.c new file mode 100644 index 0000000000..39ee23e2c8 --- /dev/null +++ b/courses/kalimari_desert/d_course_kalimari_desert_track_path.inc.c @@ -0,0 +1,166 @@ + { 1, 0, 494, 1 }, { 1, 0, 473, 2 }, { 1, 0, 453, 2 }, { 1, 1, 433, 2 }, + { 1, 1, 413, 2 }, { 1, 1, 393, 2 }, { 1, 1, 373, 2 }, { 1, 1, 353, 2 }, + { 1, 1, 333, 2 }, { 1, 2, 313, 2 }, { 1, 3, 293, 2 }, { 1, 3, 273, 2 }, + { 1, 4, 253, 2 }, { 1, 5, 233, 2 }, { 1, 6, 213, 2 }, { 1, 6, 193, 2 }, + { 1, 6, 173, 2 }, { 1, 7, 153, 2 }, { 1, 7, 133, 2 }, { 1, 8, 113, 2 }, + { 1, 8, 93, 2 }, { 1, 8, 73, 2 }, { 1, 8, 53, 2 }, { 2, 8, 33, 2 }, + { 2, 8, 13, 2 }, { 1, 8, -6, 2 }, { 1, 8, -26, 2 }, { 1, 8, -46, 2 }, + { 1, 8, -66, 2 }, { 1, 8, -86, 3 }, { 0, 8, -106, 3 }, { 0, 9, -126, 3 }, + { 0, 9, -146, 3 }, { -1, 10, -166, 3 }, { -2, 10, -186, 3 }, { -3, 11, -206, 3 }, + { -4, 12, -226, 3 }, { -5, 12, -246, 3 }, { -6, 13, -266, 3 }, { -8, 14, -286, 3 }, + { -10, 14, -306, 3 }, { -12, 15, -326, 3 }, { -14, 16, -346, 3 }, { -16, 17, -365, 3 }, + { -19, 18, -385, 3 }, { -22, 19, -405, 3 }, { -25, 20, -425, 3 }, { -29, 20, -444, 3 }, + { -33, 20, -464, 3 }, { -38, 21, -484, 3 }, { -42, 21, -503, 3 }, { -48, 22, -522, 3 }, + { -53, 22, -542, 3 }, { -59, 22, -561, 3 }, { -65, 23, -580, 4 }, { -72, 23, -599, 4 }, + { -79, 23, -617, 4 }, { -87, 23, -636, 4 }, { -95, 23, -654, 4 }, { -103, 23, -672, 4 }, + { -111, 23, -690, 4 }, { -121, 23, -708, 4 }, { -130, 23, -726, 4 }, { -140, 24, -743, 4 }, + { -151, 24, -760, 4 }, { -161, 23, -777, 4 }, { -173, 23, -793, 4 }, { -185, 22, -810, 4 }, + { -197, 21, -825, 4 }, { -210, 20, -841, 4 }, { -223, 20, -856, 4 }, { -237, 19, -870, 4 }, + { -251, 16, -884, 4 }, { -266, 14, -898, 4 }, { -281, 12, -911, 4 }, { -296, 11, -924, 4 }, + { -312, 10, -936, 4 }, { -328, 8, -948, 4 }, { -344, 7, -960, 4 }, { -361, 6, -971, 4 }, + { -378, 5, -981, 4 }, { -395, 5, -991, 4 }, { -413, 5, -1001, 4 }, { -431, 6, -1010, 4 }, + { -449, 6, -1018, 4 }, { -467, 7, -1026, 4 }, { -486, 7, -1034, 4 }, { -505, 8, -1041, 5 }, + { -524, 9, -1047, 5 }, { -543, 10, -1053, 5 }, { -562, 11, -1058, 5 }, { -581, 12, -1063, 5 }, + { -601, 13, -1068, 5 }, { -620, 14, -1072, 5 }, { -640, 15, -1076, 5 }, { -660, 16, -1079, 5 }, + { -680, 17, -1082, 5 }, { -700, 17, -1084, 5 }, { -719, 18, -1086, 5 }, { -739, 19, -1087, 5 }, + { -759, 20, -1088, 5 }, { -779, 21, -1089, 5 }, { -799, 22, -1089, 5 }, { -819, 24, -1089, 5 }, + { -839, 25, -1088, 5 }, { -859, 26, -1087, 5 }, { -879, 27, -1085, 5 }, { -899, 29, -1083, 5 }, + { -919, 30, -1081, 5 }, { -939, 32, -1078, 5 }, { -959, 34, -1075, 5 }, { -978, 35, -1071, 5 }, + { -998, 37, -1067, 5 }, { -1017, 37, -1063, 5 }, { -1037, 36, -1058, 5 }, { -1056, 35, -1052, 5 }, + { -1075, 35, -1046, 5 }, { -1094, 34, -1040, 5 }, { -1113, 33, -1033, 5 }, { -1132, 32, -1026, 6 }, + { -1150, 32, -1018, 6 }, { -1168, 31, -1009, 6 }, { -1186, 30, -1000, 6 }, { -1204, 29, -991, 6 }, + { -1221, 28, -981, 6 }, { -1238, 28, -971, 6 }, { -1255, 27, -960, 6 }, { -1272, 26, -948, 6 }, + { -1288, 25, -937, 6 }, { -1303, 24, -924, 6 }, { -1319, 23, -912, 6 }, { -1334, 23, -898, 6 }, + { -1349, 22, -885, 6 }, { -1363, 21, -871, 6 }, { -1377, 21, -856, 6 }, { -1390, 20, -842, 6 }, + { -1404, 19, -827, 6 }, { -1417, 18, -811, 6 }, { -1429, 18, -796, 6 }, { -1441, 18, -780, 6 }, + { -1453, 18, -764, 6 }, { -1465, 18, -748, 6 }, { -1476, 18, -731, 6 }, { -1487, 18, -714, 6 }, + { -1497, 18, -697, 6 }, { -1507, 17, -680, 6 }, { -1517, 17, -662, 6 }, { -1527, 17, -645, 6 }, + { -1535, 17, -627, 6 }, { -1544, 17, -609, 6 }, { -1552, 17, -590, 6 }, { -1560, 16, -572, 7 }, + { -1567, 16, -553, 7 }, { -1574, 16, -534, 7 }, { -1580, 15, -515, 7 }, { -1586, 15, -496, 7 }, + { -1592, 14, -477, 7 }, { -1597, 14, -458, 7 }, { -1601, 13, -438, 7 }, { -1606, 13, -419, 7 }, + { -1610, 12, -399, 7 }, { -1613, 11, -379, 7 }, { -1617, 11, -360, 7 }, { -1619, 10, -340, 7 }, + { -1622, 9, -320, 7 }, { -1624, 9, -300, 7 }, { -1626, 9, -280, 7 }, { -1628, 9, -260, 7 }, + { -1630, 9, -240, 7 }, { -1632, 8, -220, 7 }, { -1634, 8, -200, 7 }, { -1635, 8, -181, 7 }, + { -1637, 8, -161, 7 }, { -1638, 8, -141, 7 }, { -1640, 7, -121, 7 }, { -1640, 6, -101, 7 }, + { -1641, 6, -81, 7 }, { -1641, 5, -61, 7 }, { -1641, 4, -41, 7 }, { -1642, 3, -21, 7 }, + { -1642, 3, -1, 7 }, { -1641, 2, 18, 7 }, { -1641, 2, 38, 7 }, { -1642, 2, 58, 7 }, + { -1642, 2, 78, 7 }, { -1641, 2, 98, 7 }, { -1641, 2, 118, 8 }, { -1641, 2, 138, 8 }, + { -1641, 3, 158, 8 }, { -1641, 4, 179, 8 }, { -1641, 5, 199, 8 }, { -1641, 6, 219, 8 }, + { -1641, 7, 239, 8 }, { -1641, 8, 259, 8 }, { -1641, 9, 279, 8 }, { -1641, 10, 299, 8 }, + { -1641, 10, 319, 8 }, { -1640, 11, 339, 8 }, { -1640, 11, 359, 8 }, { -1640, 12, 379, 8 }, + { -1640, 12, 399, 8 }, { -1640, 12, 419, 8 }, { -1640, 12, 439, 8 }, { -1640, 13, 459, 8 }, + { -1640, 13, 479, 8 }, { -1640, 13, 499, 8 }, { -1639, 13, 519, 8 }, { -1639, 14, 539, 8 }, + { -1639, 14, 559, 8 }, { -1639, 14, 579, 8 }, { -1639, 15, 599, 8 }, { -1639, 15, 619, 8 }, + { -1639, 15, 639, 8 }, { -1639, 16, 659, 8 }, { -1639, 16, 679, 8 }, { -1639, 16, 699, 8 }, + { -1639, 17, 719, 8 }, { -1639, 17, 739, 8 }, { -1638, 17, 759, 8 }, { -1638, 18, 779, 8 }, + { -1638, 18, 799, 8 }, { -1638, 18, 819, 8 }, { -1638, 18, 839, 8 }, { -1638, 19, 859, 8 }, + { -1638, 19, 879, 8 }, { -1638, 19, 899, 8 }, { -1638, 19, 919, 8 }, { -1638, 20, 939, 9 }, + { -1638, 20, 959, 9 }, { -1638, 20, 979, 9 }, { -1638, 21, 999, 9 }, { -1638, 21, 1019, 9 }, + { -1638, 21, 1039, 9 }, { -1638, 22, 1059, 9 }, { -1639, 22, 1079, 9 }, { -1639, 23, 1099, 9 }, + { -1639, 23, 1119, 9 }, { -1640, 23, 1139, 9 }, { -1640, 24, 1159, 9 }, { -1641, 24, 1179, 9 }, + { -1641, 24, 1199, 9 }, { -1642, 24, 1219, 9 }, { -1644, 24, 1239, 9 }, { -1645, 24, 1259, 9 }, + { -1648, 24, 1279, 9 }, { -1650, 24, 1299, 9 }, { -1654, 23, 1318, 10 }, { -1657, 23, 1338, 10 }, + { -1662, 22, 1358, 10 }, { -1666, 22, 1377, 10 }, { -1671, 22, 1396, 10 }, { -1677, 21, 1416, 10 }, + { -1684, 21, 1435, 10 }, { -1691, 20, 1453, 10 }, { -1699, 20, 1471, 10 }, { -1708, 19, 1490, 10 }, + { -1717, 19, 1507, 10 }, { -1727, 18, 1525, 10 }, { -1737, 18, 1542, 10 }, { -1747, 17, 1559, 10 }, + { -1758, 17, 1576, 10 }, { -1769, 16, 1593, 10 }, { -1780, 16, 1609, 10 }, { -1793, 15, 1625, 10 }, + { -1805, 15, 1641, 10 }, { -1817, 14, 1656, 10 }, { -1830, 14, 1672, 10 }, { -1843, 13, 1687, 10 }, + { -1856, 13, 1702, 10 }, { -1870, 12, 1717, 10 }, { -1883, 12, 1732, 10 }, { -1896, 11, 1747, 10 }, + { -1910, 11, 1762, 10 }, { -1923, 11, 1776, 10 }, { -1937, 10, 1791, 10 }, { -1951, 10, 1805, 10 }, + { -1965, 9, 1820, 10 }, { -1978, 9, 1834, 10 }, { -1992, 8, 1849, 10 }, { -2006, 8, 1863, 10 }, + { -2020, 7, 1877, 11 }, { -2034, 7, 1892, 11 }, { -2048, 6, 1906, 11 }, { -2062, 6, 1920, 11 }, + { -2077, 5, 1934, 11 }, { -2091, 5, 1949, 11 }, { -2105, 4, 1963, 11 }, { -2119, 4, 1977, 11 }, + { -2133, 4, 1991, 11 }, { -2147, 3, 2006, 11 }, { -2161, 3, 2020, 11 }, { -2175, 2, 2034, 11 }, + { -2189, 2, 2048, 11 }, { -2203, 1, 2062, 11 }, { -2217, 1, 2077, 11 }, { -2231, 0, 2091, 11 }, + { -2245, 0, 2105, 11 }, { -2259, 0, 2119, 11 }, { -2274, 0, 2134, 11 }, { -2288, 0, 2148, 11 }, + { -2302, 0, 2162, 11 }, { -2316, 1, 2176, 11 }, { -2330, 1, 2190, 11 }, { -2344, 1, 2205, 11 }, + { -2358, 1, 2219, 11 }, { -2372, 2, 2233, 11 }, { -2386, 2, 2247, 11 }, { -2400, 2, 2262, 11 }, + { -2414, 2, 2276, 11 }, { -2428, 2, 2290, 11 }, { -2443, 2, 2304, 11 }, { -2457, 2, 2318, 11 }, + { -2471, 2, 2333, 12 }, { -2485, 2, 2347, 12 }, { -2499, 2, 2361, 12 }, { -2513, 2, 2375, 12 }, + { -2527, 2, 2390, 12 }, { -2541, 2, 2404, 12 }, { -2555, 2, 2418, 12 }, { -2569, 2, 2433, 12 }, + { -2583, 3, 2447, 12 }, { -2597, 3, 2462, 12 }, { -2610, 4, 2476, 12 }, { -2624, 4, 2491, 12 }, + { -2638, 4, 2505, 12 }, { -2651, 5, 2520, 12 }, { -2665, 5, 2535, 12 }, { -2678, 5, 2550, 12 }, + { -2692, 6, 2564, 12 }, { -2705, 6, 2579, 12 }, { -2718, 7, 2594, 12 }, { -2731, 7, 2610, 12 }, + { -2744, 8, 2625, 12 }, { -2757, 8, 2640, 12 }, { -2770, 8, 2656, 12 }, { -2782, 9, 2671, 12 }, + { -2795, 9, 2687, 12 }, { -2807, 9, 2703, 12 }, { -2819, 9, 2719, 12 }, { -2831, 9, 2735, 12 }, + { -2842, 10, 2751, 12 }, { -2854, 11, 2768, 12 }, { -2865, 11, 2784, 12 }, { -2876, 12, 2801, 12 }, + { -2887, 12, 2818, 12 }, { -2898, 13, 2834, 12 }, { -2908, 14, 2852, 12 }, { -2918, 14, 2869, 12 }, + { -2928, 15, 2886, 12 }, { -2938, 16, 2904, 12 }, { -2946, 16, 2922, 12 }, { -2954, 17, 2940, 12 }, + { -2961, 18, 2959, 12 }, { -2968, 19, 2978, 12 }, { -2974, 20, 2997, 12 }, { -2980, 21, 3016, 12 }, + { -2985, 22, 3035, 13 }, { -2990, 22, 3055, 13 }, { -2994, 23, 3074, 13 }, { -2998, 23, 3094, 13 }, + { -3002, 23, 3114, 13 }, { -3005, 22, 3133, 13 }, { -3008, 22, 3153, 13 }, { -3011, 21, 3173, 13 }, + { -3013, 20, 3193, 13 }, { -3014, 19, 3213, 13 }, { -3015, 19, 3233, 13 }, { -3015, 18, 3253, 13 }, + { -3015, 17, 3273, 13 }, { -3015, 16, 3293, 13 }, { -3013, 15, 3313, 13 }, { -3011, 14, 3333, 13 }, + { -3008, 14, 3352, 13 }, { -3004, 13, 3372, 13 }, { -3000, 12, 3392, 13 }, { -2995, 11, 3411, 13 }, + { -2989, 11, 3430, 13 }, { -2983, 10, 3449, 13 }, { -2977, 9, 3468, 13 }, { -2969, 8, 3487, 13 }, + { -2961, 8, 3505, 13 }, { -2953, 7, 3523, 13 }, { -2944, 6, 3541, 13 }, { -2934, 5, 3559, 13 }, + { -2924, 4, 3576, 13 }, { -2913, 4, 3593, 13 }, { -2902, 3, 3609, 13 }, { -2891, 2, 3626, 13 }, + { -2879, 2, 3642, 13 }, { -2866, 1, 3658, 13 }, { -2854, 0, 3673, 13 }, { -2841, 0, 3688, 14 }, + { -2827, 2, 3703, 14 }, { -2813, 3, 3718, 14 }, { -2799, 5, 3732, 14 }, { -2785, 6, 3745, 14 }, + { -2770, 7, 3759, 14 }, { -2754, 7, 3772, 14 }, { -2739, 8, 3784, 14 }, { -2723, 9, 3796, 14 }, + { -2707, 10, 3808, 14 }, { -2690, 10, 3819, 14 }, { -2673, 11, 3830, 14 }, { -2655, 12, 3839, 14 }, + { -2638, 12, 3849, 14 }, { -2620, 12, 3857, 14 }, { -2601, 12, 3865, 14 }, { -2583, 11, 3873, 14 }, + { -2564, 11, 3880, 14 }, { -2545, 10, 3887, 14 }, { -2526, 9, 3893, 14 }, { -2507, 9, 3899, 14 }, + { -2488, 8, 3904, 14 }, { -2468, 7, 3909, 14 }, { -2449, 7, 3913, 14 }, { -2429, 6, 3917, 14 }, + { -2409, 5, 3920, 14 }, { -2390, 4, 3923, 14 }, { -2370, 4, 3925, 14 }, { -2350, 3, 3927, 14 }, + { -2330, 3, 3929, 14 }, { -2310, 2, 3930, 14 }, { -2290, 2, 3931, 14 }, { -2270, 1, 3932, 14 }, + { -2250, 1, 3932, 14 }, { -2230, 1, 3933, 14 }, { -2210, 0, 3933, 14 }, { -2190, 0, 3933, 14 }, + { -2170, 0, 3933, 14 }, { -2150, 0, 3933, 14 }, { -2130, 0, 3933, 14 }, { -2110, 1, 3932, 14 }, + { -2090, 1, 3931, 14 }, { -2070, 1, 3930, 14 }, { -2050, 2, 3929, 14 }, { -2030, 2, 3927, 14 }, + { -2010, 3, 3925, 14 }, { -1990, 3, 3924, 14 }, { -1970, 3, 3921, 14 }, { -1950, 4, 3919, 14 }, + { -1930, 4, 3917, 14 }, { -1911, 4, 3914, 14 }, { -1891, 5, 3912, 14 }, { -1871, 5, 3909, 14 }, + { -1851, 6, 3906, 15 }, { -1831, 6, 3903, 15 }, { -1811, 6, 3900, 15 }, { -1792, 7, 3897, 15 }, + { -1772, 7, 3894, 15 }, { -1752, 7, 3891, 15 }, { -1732, 8, 3888, 15 }, { -1713, 8, 3884, 15 }, + { -1693, 8, 3881, 15 }, { -1673, 9, 3877, 15 }, { -1654, 9, 3874, 15 }, { -1634, 9, 3870, 15 }, + { -1614, 10, 3867, 15 }, { -1595, 10, 3863, 15 }, { -1575, 10, 3859, 15 }, { -1555, 11, 3855, 15 }, + { -1536, 11, 3851, 15 }, { -1516, 11, 3847, 15 }, { -1496, 11, 3843, 15 }, { -1477, 11, 3839, 15 }, + { -1457, 11, 3834, 15 }, { -1438, 11, 3830, 15 }, { -1418, 10, 3825, 15 }, { -1399, 10, 3820, 15 }, + { -1380, 10, 3815, 15 }, { -1360, 9, 3810, 15 }, { -1341, 9, 3804, 15 }, { -1322, 9, 3798, 15 }, + { -1303, 8, 3792, 15 }, { -1284, 7, 3786, 15 }, { -1265, 7, 3779, 15 }, { -1246, 6, 3772, 15 }, + { -1228, 5, 3765, 15 }, { -1209, 5, 3757, 15 }, { -1191, 4, 3748, 15 }, { -1173, 3, 3740, 15 }, + { -1156, 3, 3730, 15 }, { -1139, 2, 3720, 15 }, { -1122, 1, 3709, 15 }, { -1105, 1, 3698, 15 }, + { -1089, 0, 3686, 15 }, { -1073, 0, 3675, 15 }, { -1057, 0, 3662, 15 }, { -1041, 0, 3650, 15 }, + { -1025, 0, 3638, 15 }, { -1010, 0, 3625, 15 }, { -995, 0, 3612, 15 }, { -980, 0, 3599, 15 }, + { -965, 0, 3585, 15 }, { -950, 0, 3571, 16 }, { -936, 0, 3557, 16 }, { -922, 0, 3543, 16 }, + { -908, 0, 3529, 16 }, { -895, 0, 3514, 16 }, { -882, 0, 3499, 16 }, { -869, 0, 3483, 16 }, + { -856, 0, 3468, 16 }, { -844, 0, 3452, 16 }, { -832, 0, 3436, 16 }, { -821, 0, 3419, 16 }, + { -810, 0, 3402, 16 }, { -800, 0, 3385, 16 }, { -790, 0, 3368, 16 }, { -781, 0, 3350, 16 }, + { -772, 0, 3332, 16 }, { -763, 0, 3314, 16 }, { -755, 0, 3296, 16 }, { -747, 0, 3277, 16 }, + { -739, 0, 3259, 16 }, { -731, 0, 3241, 16 }, { -724, 0, 3222, 16 }, { -717, 0, 3203, 16 }, + { -710, 0, 3185, 16 }, { -703, 0, 3166, 16 }, { -696, 0, 3147, 16 }, { -690, 0, 3128, 16 }, + { -684, 0, 3109, 16 }, { -678, 0, 3090, 16 }, { -673, 0, 3070, 16 }, { -668, 0, 3051, 16 }, + { -663, 0, 3032, 16 }, { -659, 0, 3012, 16 }, { -654, 0, 2992, 16 }, { -651, 0, 2973, 17 }, + { -647, 0, 2953, 17 }, { -644, 0, 2933, 17 }, { -641, 0, 2913, 17 }, { -639, 0, 2894, 17 }, + { -636, 0, 2874, 17 }, { -634, 0, 2854, 17 }, { -633, 0, 2834, 17 }, { -632, 0, 2814, 17 }, + { -631, 0, 2794, 17 }, { -630, 0, 2774, 17 }, { -629, 0, 2754, 17 }, { -628, 0, 2734, 17 }, + { -628, 0, 2714, 17 }, { -627, 0, 2694, 17 }, { -627, 0, 2674, 17 }, { -626, 0, 2654, 17 }, + { -626, 0, 2634, 17 }, { -626, 0, 2614, 17 }, { -626, 0, 2594, 17 }, { -625, 0, 2574, 17 }, + { -625, 0, 2554, 17 }, { -625, 0, 2534, 17 }, { -625, 0, 2514, 17 }, { -625, 0, 2494, 17 }, + { -625, 0, 2474, 17 }, { -624, 0, 2454, 17 }, { -624, 0, 2434, 17 }, { -624, 0, 2414, 17 }, + { -624, 0, 2394, 17 }, { -624, 0, 2374, 17 }, { -624, 0, 2354, 18 }, { -625, 0, 2334, 18 }, + { -625, 0, 2314, 18 }, { -625, 0, 2294, 18 }, { -625, 0, 2274, 18 }, { -625, 0, 2254, 18 }, + { -625, 0, 2234, 18 }, { -625, 0, 2214, 18 }, { -625, 0, 2194, 18 }, { -625, 0, 2173, 18 }, + { -625, 0, 2153, 18 }, { -625, 0, 2133, 18 }, { -625, 0, 2113, 18 }, { -625, 0, 2093, 18 }, + { -625, 0, 2073, 18 }, { -625, 0, 2053, 18 }, { -625, 0, 2033, 18 }, { -625, 0, 2013, 18 }, + { -625, 0, 1993, 18 }, { -624, 0, 1973, 18 }, { -624, 0, 1953, 18 }, { -624, 0, 1933, 18 }, + { -623, 0, 1913, 18 }, { -622, 0, 1893, 18 }, { -622, 0, 1873, 18 }, { -621, 0, 1853, 18 }, + { -619, -1, 1833, 18 }, { -617, -1, 1813, 18 }, { -614, -2, 1794, 18 }, { -610, -2, 1774, 18 }, + { -606, -3, 1755, 18 }, { -600, -3, 1735, 18 }, { -594, -4, 1716, 18 }, { -588, -5, 1697, 18 }, + { -581, -5, 1679, 18 }, { -573, -6, 1660, 18 }, { -565, -6, 1642, 18 }, { -556, -7, 1624, 18 }, + { -548, -8, 1606, 19 }, { -538, -8, 1588, 19 }, { -528, -9, 1570, 19 }, { -518, -9, 1553, 19 }, + { -507, -10, 1537, 19 }, { -495, -11, 1520, 19 }, { -483, -11, 1505, 19 }, { -469, -12, 1490, 19 }, + { -455, -13, 1476, 19 }, { -440, -13, 1463, 19 }, { -424, -14, 1451, 19 }, { -408, -14, 1439, 19 }, + { -391, -15, 1428, 19 }, { -374, -16, 1418, 19 }, { -357, -16, 1408, 19 }, { -339, -17, 1397, 19 }, + { -322, -17, 1387, 19 }, { -306, -18, 1376, 19 }, { -289, -18, 1365, 19 }, { -272, -18, 1354, 19 }, + { -256, -17, 1343, 19 }, { -239, -16, 1331, 19 }, { -223, -15, 1319, 19 }, { -208, -14, 1307, 19 }, + { -193, -12, 1293, 19 }, { -179, -11, 1279, 19 }, { -166, -10, 1264, 19 }, { -153, -8, 1248, 20 }, + { -141, -6, 1232, 20 }, { -130, -5, 1215, 20 }, { -120, -3, 1198, 20 }, { -111, -1, 1181, 20 }, + { -102, 0, 1163, 20 }, { -93, 1, 1145, 20 }, { -85, 1, 1126, 20 }, { -77, 1, 1108, 20 }, + { -70, 0, 1089, 20 }, { -63, 0, 1070, 20 }, { -57, 0, 1051, 20 }, { -51, 0, 1032, 20 }, + { -46, 0, 1013, 20 }, { -41, 0, 994, 20 }, { -37, 0, 974, 20 }, { -33, 0, 954, 20 }, + { -30, 0, 935, 20 }, { -27, 0, 915, 20 }, { -24, 0, 895, 20 }, { -22, 0, 875, 20 }, + { -20, 0, 855, 20 }, { -18, 0, 835, 20 }, { -16, 0, 815, 20 }, { -14, 0, 795, 20 }, + { -13, 0, 775, 20 }, { -11, 0, 755, 20 }, { -10, 0, 735, 20 }, { -9, 0, 715, 20 }, + { -8, 0, 695, 20 }, { -7, 0, 675, 20 }, { -6, 0, 655, 20 }, { -5, 0, 635, 20 }, + { -4, 0, 615, 20 }, { -3, 0, 595, 20 }, { -2, 0, 575, 20 }, { -1, 0, 555, 20 }, + { 0, 0, 535, 20 }, { 0, 0, 515, 20 }, { 0, 0, 495, 1 }, { -32768, -32768, -32768, 0 }, diff --git a/courses/kalimari_desert/d_course_kalimari_desert_train_path.inc.c b/courses/kalimari_desert/d_course_kalimari_desert_train_path.inc.c new file mode 100644 index 0000000000..307979b435 --- /dev/null +++ b/courses/kalimari_desert/d_course_kalimari_desert_train_path.inc.c @@ -0,0 +1,16 @@ + { -741, 0, 2114, 0 }, { -741, 0, 2130, 0 }, { -741, 0, 2364, 0 }, { -744, 0, 2840, 0 }, { -749, 0, 2906, 0 }, + { -758, 0, 2962, 0 }, { -769, 0, 3017, 0 }, { -784, 0, 3085, 0 }, { -801, 0, 3138, 0 }, { -818, 0, 3184, 0 }, + { -838, 0, 3229, 0 }, { -864, 0, 3281, 0 }, { -891, 0, 3325, 0 }, { -917, 0, 3364, 0 }, { -951, 0, 3404, 0 }, + { -984, 0, 3441, 0 }, { -1023, 0, 3473, 0 }, { -1058, 0, 3505, 0 }, { -1099, 0, 3540, 0 }, { -1141, 0, 3563, 0 }, + { -1186, 0, 3586, 0 }, { -1239, 0, 3613, 0 }, { -1296, 0, 3629, 0 }, { -1343, 0, 3645, 0 }, { -1446, 0, 3666, 0 }, + { -1543, 0, 3685, 0 }, { -1645, 0, 3689, 0 }, { -1746, 0, 3689, 0 }, { -1848, 0, 3669, 0 }, { -1943, 0, 3645, 0 }, + { -2033, 0, 3607, 0 }, { -2104, 0, 3565, 0 }, { -2188, 0, 3510, 0 }, { -2263, 0, 3443, 0 }, { -2330, 0, 3367, 0 }, + { -2385, 0, 3283, 0 }, { -2429, 0, 3186, 0 }, { -2464, 0, 3083, 0 }, { -2493, 0, 2967, 0 }, { -2503, 0, 2843, 0 }, + { -2509, 0, 2716, 0 }, { -2505, 0, 2605, 0 }, { -2507, 0, 1161, 0 }, { -2509, 0, 1052, 0 }, { -2509, 0, 921, 0 }, + { -2495, 0, 800, 0 }, { -2465, 0, 680, 0 }, { -2436, 0, 578, 0 }, { -2385, 0, 481, 0 }, { -2330, 0, 407, 0 }, + { -2263, 0, 318, 0 }, { -2187, 0, 258, 0 }, { -2104, 0, 202, 0 }, { -2033, 0, 163, 0 }, { -1944, 0, 121, 0 }, + { -1839, 0, 98, 0 }, { -1745, 0, 81, 0 }, { -1640, 0, 79, 0 }, { -1544, 0, 83, 0 }, { -1440, 0, 99, 0 }, + { -1343, 0, 120, 0 }, { -1244, 0, 159, 0 }, { -1142, 0, 201, 0 }, { -1063, 0, 254, 0 }, { -980, 0, 321, 0 }, + { -918, 0, 400, 0 }, { -860, 0, 481, 0 }, { -819, 0, 575, 0 }, { -780, 0, 682, 0 }, { -754, 0, 797, 0 }, + { -744, 0, 921, 0 }, { -742, 0, 1044, 0 }, { -740, 0, 1162, 0 }, { -743, 0, 1883, 0 }, { -739, 0, 2086, 0 }, + { -32768, 0, 0, 0 }, diff --git a/courses/kalimari_desert/d_course_kalimari_desert_unknown_path.inc.c b/courses/kalimari_desert/d_course_kalimari_desert_unknown_path.inc.c new file mode 100644 index 0000000000..41c5a757da --- /dev/null +++ b/courses/kalimari_desert/d_course_kalimari_desert_unknown_path.inc.c @@ -0,0 +1,11 @@ + { 1, 0, 503, 0 }, { 1, 0, 485, 0 }, { 1, 0, 325, 0 }, { 3, 0, -247, 0 }, { -47, 0, -559, 0 }, + { -176, 0, -821, 0 }, { -379, 0, -996, 0 }, { -620, 0, -1082, 0 }, { -878, 0, -1095, 0 }, { -1133, 0, -1037, 0 }, + { -1342, 0, -907, 0 }, { -1513, 0, -691, 0 }, { -1610, 0, -448, 0 }, { -1642, 0, -133, 0 }, { -1642, 0, 18, 0 }, + { -1642, 0, 140, 0 }, { -1639, 0, 692, 0 }, { -1638, 0, 1162, 0 }, { -1651, 0, 1326, 0 }, { -1698, 0, 1486, 0 }, + { -1831, 0, 1686, 0 }, { -2252, 0, 2112, 0 }, { -2734, 0, 2598, 0 }, { -2931, 0, 2876, 0 }, { -2985, 0, 3022, 0 }, + { -3016, 0, 3184, 0 }, { -3016, 0, 3337, 0 }, { -2974, 0, 3490, 0 }, { -2896, 0, 3626, 0 }, { -2792, 0, 3745, 0 }, + { -2664, 0, 3842, 0 }, { -2498, 0, 3907, 0 }, { -2322, 0, 3934, 0 }, { -2009, 0, 3934, 0 }, { -1498, 0, 3849, 0 }, + { -1230, 0, 3773, 0 }, { -1081, 0, 3687, 0 }, { -895, 0, 3525, 0 }, { -765, 0, 3339, 0 }, { -639, 0, 2986, 0 }, + { -623, 0, 2601, 0 }, { -628, 0, 1893, 0 }, { -607, 0, 1734, 0 }, { -524, 0, 1551, 0 }, { -437, 0, 1454, 0 }, + { -311, 0, 1382, 0 }, { -158, 0, 1274, 0 }, { -57, 0, 1074, 0 }, { -17, 0, 873, 0 }, { 5, 0, 533, 0 }, + { -32768, 0, 0, 0 }, diff --git a/courses/koopa_troopa_beach/course_data.c b/courses/koopa_troopa_beach/course_data.c index c89581af93..b24b7e8e23 100644 --- a/courses/koopa_troopa_beach/course_data.c +++ b/courses/koopa_troopa_beach/course_data.c @@ -174,7 +174,9 @@ Gfx d_course_koopa_troopa_beach_dl_3C0[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8028), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_80F8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8200), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6EB8), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_87E0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8870), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_B208), @@ -283,7 +285,9 @@ Gfx d_course_koopa_troopa_beach_dl_6E0[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_BD8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_AE0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_2BA8), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_1778), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3978), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_39E8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3AC8), @@ -298,7 +302,9 @@ Gfx d_course_koopa_troopa_beach_dl_6E0[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_86B0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6EB8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6F30), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8870), +#endif gsSPEndDisplayList(), }; @@ -458,7 +464,9 @@ Gfx d_course_koopa_troopa_beach_dl_B98[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_BD8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_AE0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_2BA8), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_1778), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3978), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_39E8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3AC8), @@ -467,14 +475,18 @@ Gfx d_course_koopa_troopa_beach_dl_B98[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5C88), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5D50), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5EB0), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6938), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8028), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_80F8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8200), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_86B0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6EB8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6F30), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8870), +#endif gsSPEndDisplayList(), }; @@ -522,7 +534,9 @@ Gfx d_course_koopa_troopa_beach_dl_CF0[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8028), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_80F8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8200), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6EB8), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6F30), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8870), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_9B20), @@ -566,7 +580,9 @@ Gfx d_course_koopa_troopa_beach_dl_E48[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_80F8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8200), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_82D8), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8360), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8468), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_9B20), gsSPEndDisplayList(), @@ -613,12 +629,16 @@ Gfx d_course_koopa_troopa_beach_dl_F60[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8200), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_82D8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8360), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_68C0), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_86B0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6EB8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6F30), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8870), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_9B20), +#endif gsSPEndDisplayList(), }; @@ -644,8 +664,12 @@ Gfx d_course_koopa_troopa_beach_dl_1040[] = { }; Gfx d_course_koopa_troopa_beach_dl_10D0[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_2698), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_CC0), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_BD8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_AE0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_E60), @@ -653,7 +677,9 @@ Gfx d_course_koopa_troopa_beach_dl_10D0[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3AC8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3B40), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3C38), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3D00), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5C88), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5D50), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5EB0), @@ -662,8 +688,12 @@ Gfx d_course_koopa_troopa_beach_dl_10D0[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_82D8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_86B0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6EB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6F30), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8870), +#endif gsSPEndDisplayList(), }; @@ -698,7 +728,9 @@ Gfx d_course_koopa_troopa_beach_dl_1218[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_E60), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_F38), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_10B0), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_2C68), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5488), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_39E8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3AC8), @@ -706,8 +738,12 @@ Gfx d_course_koopa_troopa_beach_dl_1218[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3C38), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3D00), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3DE0), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5C88), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5D50), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5EB0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7F70), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8028), @@ -716,8 +752,12 @@ Gfx d_course_koopa_troopa_beach_dl_1218[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_82D8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8360), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8468), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_86B0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6EB8), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6F30), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8870), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_9B20), @@ -786,7 +826,9 @@ Gfx d_course_koopa_troopa_beach_dl_1498[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_AE0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_E60), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_F38), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_1000), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_10B0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5488), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_54E8), @@ -800,7 +842,9 @@ Gfx d_course_koopa_troopa_beach_dl_1498[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8200), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_82D8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8360), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8468), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_86B0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6EB8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6F30), @@ -838,7 +882,9 @@ Gfx d_course_koopa_troopa_beach_dl_15E0[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3B40), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3C38), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3D00), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3DE0), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5C88), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5D50), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5EB0), @@ -847,7 +893,9 @@ Gfx d_course_koopa_troopa_beach_dl_15E0[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8360), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_86B0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6EB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6F30), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_9B20), gsSPEndDisplayList(), }; @@ -858,7 +906,9 @@ Gfx d_course_koopa_troopa_beach_dl_1680[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A0E8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A128), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A158), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A190), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A350), gsSPDisplayList(d_course_koopa_troopa_beach_dl_0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A838), @@ -888,8 +938,12 @@ Gfx d_course_koopa_troopa_beach_dl_1708[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_82D8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8360), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8468), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_86B0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6EB8), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6F30), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6FA0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_9B20), @@ -1189,7 +1243,9 @@ Gfx d_course_koopa_troopa_beach_dl_1EB0[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3C38), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3D00), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3DE0), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_38B0), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5C88), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8200), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_82D8), @@ -1209,7 +1265,9 @@ Gfx d_course_koopa_troopa_beach_dl_1F68[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A128), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A158), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A190), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_9FF0), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_dl_0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A810), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A7E0), @@ -2700,7 +2758,9 @@ Gfx d_course_koopa_troopa_beach_dl_4700[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7970), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7A98), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7DB0), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7E48), +#endif gsSPEndDisplayList(), }; @@ -2949,7 +3009,9 @@ Gfx d_course_koopa_troopa_beach_dl_4E70[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_928), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_1190), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_1B58), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_1A40), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_2D40), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_2F00), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_2F60), @@ -2965,8 +3027,12 @@ Gfx d_course_koopa_troopa_beach_dl_4E70[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6330), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4490), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7A98), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7DB0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7E48), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8510), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8C18), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8D08), @@ -3065,8 +3131,12 @@ Gfx d_course_koopa_troopa_beach_dl_5120[] = { }; Gfx d_course_koopa_troopa_beach_dl_51C8[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_2398), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_858), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_928), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_1190), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_1B58), @@ -3077,8 +3147,12 @@ Gfx d_course_koopa_troopa_beach_dl_51C8[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_37B0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3ED8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4490), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6718), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_76C0), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7A98), gsSPEndDisplayList(), }; @@ -3200,7 +3274,9 @@ Gfx d_course_koopa_troopa_beach_dl_5500[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6140), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4920), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6268), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4490), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7970), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7A98), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7DB0), @@ -3347,7 +3423,9 @@ Gfx d_course_koopa_troopa_beach_dl_58E0[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4AF0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4490), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7A98), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7DB0), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7E48), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8510), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8C18), @@ -3398,7 +3476,9 @@ Gfx d_course_koopa_troopa_beach_dl_5A50[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4920), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4A08), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4490), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_67A0), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7970), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7A98), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7DB0), @@ -3576,13 +3656,17 @@ Gfx d_course_koopa_troopa_beach_dl_5F58[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_47E0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_48B0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4920), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4A08), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7DB0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7E48), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8510), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8C18), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8D08), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_70A0), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7608), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7538), gsSPEndDisplayList(), @@ -4268,8 +4352,12 @@ Gfx d_course_koopa_troopa_beach_dl_71C8[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4AF0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4BD0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4490), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_67A0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6810), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7A98), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7DB0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7E48), @@ -4311,8 +4399,12 @@ Gfx d_course_koopa_troopa_beach_dl_7338[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_36F0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_37B0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3ED8), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4770), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_47E0), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4920), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4A08), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4AF0), @@ -4321,8 +4413,12 @@ Gfx d_course_koopa_troopa_beach_dl_7338[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_67A0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6810), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7A98), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7DB0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7E48), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8D08), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8DB0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8E50), @@ -4455,7 +4551,9 @@ Gfx d_course_koopa_troopa_beach_dl_7718[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_1F78), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_1850), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_14D0), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5300), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_58F8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6010), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_47E0), @@ -4467,7 +4565,9 @@ Gfx d_course_koopa_troopa_beach_dl_7718[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_46A8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4200), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4490), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6810), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7A98), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7DB0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7E48), @@ -4521,9 +4621,13 @@ Gfx d_course_koopa_troopa_beach_dl_78E8[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4AF0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4BD0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4490), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6810), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7A98), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7DB0), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8DB0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8E50), gsSPEndDisplayList(), @@ -5663,8 +5767,12 @@ Gfx d_course_koopa_troopa_beach_dl_9798[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_42E0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_43C0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_45C8), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_80F8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8200), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_86B0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8740), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_87E0), @@ -5826,8 +5934,12 @@ Gfx d_course_koopa_troopa_beach_dl_9BC8[] = { Gfx d_course_koopa_troopa_beach_dl_9C38[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_D70), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_2638), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_25C8), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_1590), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_1668), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_16F0), @@ -5840,15 +5952,25 @@ Gfx d_course_koopa_troopa_beach_dl_9C38[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_42E0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_43C0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_45C8), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7F70), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8028), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_80F8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8200), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_86B0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8740), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_87E0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8870), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_B208), +#endif gsSPEndDisplayList(), }; @@ -5856,7 +5978,9 @@ Gfx d_course_koopa_troopa_beach_dl_9D00[] = { gsSPDisplayList(d_course_koopa_troopa_beach_dl_48), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A020), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A080), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A0B0), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A0E8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A2E8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A320), @@ -5998,7 +6122,9 @@ Gfx d_course_koopa_troopa_beach_dl_A070[] = { Gfx d_course_koopa_troopa_beach_dl_A0D0[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_D70), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_CC0), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_25C8), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_2B30), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_1668), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_16F0), @@ -6012,9 +6138,15 @@ Gfx d_course_koopa_troopa_beach_dl_A0D0[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_43C0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_45C8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7F70), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8028), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_80F8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8200), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_86B0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8740), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_87E0), @@ -6026,7 +6158,9 @@ Gfx d_course_koopa_troopa_beach_dl_A190[] = { gsSPDisplayList(d_course_koopa_troopa_beach_dl_48), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A020), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A080), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A0B0), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A0E8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A2E8), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_A320), @@ -6112,7 +6246,9 @@ Gfx d_course_koopa_troopa_beach_dl_A340[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7E48), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8510), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8C18), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8D08), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7608), gsSPEndDisplayList(), }; @@ -6205,7 +6341,9 @@ Gfx d_course_koopa_troopa_beach_dl_A608[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4A08), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4AF0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4490), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6810), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7A98), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7DB0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7E48), @@ -6255,9 +6393,13 @@ Gfx d_course_koopa_troopa_beach_dl_A780[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4AF0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4490), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_67A0), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6810), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7A98), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7DB0), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8DB0), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8E50), gsSPEndDisplayList(), @@ -6394,7 +6536,9 @@ Gfx d_course_koopa_troopa_beach_dl_AB88[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_1210), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4120), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4040), +#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7E48), +#endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8510), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8C18), gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8A90), @@ -6474,807 +6618,29 @@ Gfx d_course_koopa_troopa_beach_dl_AD40[] = { }; // 0xADE0 path +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_koopa_troopa_beach_unknown_path[] = { - { -34, 0, 103, 0 }, { -34, 0, 60, 0 }, { -38, 0, -184, 0 }, { -30, 0, -304, 0 }, { 36, 0, -422, 0 }, - { 137, 0, -566, 0 }, { 147, 0, -645, 0 }, { 103, 0, -761, 0 }, { -12, 0, -837, 0 }, { -139, 0, -1031, 0 }, - { -230, 0, -1258, 0 }, { -343, 0, -1414, 0 }, { -465, 0, -1429, 0 }, { -629, 0, -1397, 0 }, { -853, 0, -1326, 0 }, - { -1222, 0, -1231, 0 }, { -1424, 0, -1118, 0 }, { -1576, 0, -838, 0 }, { -1641, 0, -702, 0 }, { -1744, 0, -587, 0 }, - { -1793, 0, -450, 0 }, { -1823, 0, -218, 0 }, { -1825, 0, 11, 0 }, { -1734, 0, 267, 0 }, { -1607, 0, 526, 0 }, - { -1468, 0, 767, 0 }, { -1290, 0, 1036, 0 }, { -1093, 0, 1165, 0 }, { -929, 0, 1259, 0 }, { -748, 0, 1338, 0 }, - { -651, 0, 1527, 0 }, { -586, 0, 1723, 0 }, { -597, 0, 1900, 0 }, { -683, 0, 2071, 0 }, { -847, 0, 2195, 0 }, - { -1098, 0, 2307, 0 }, { -1251, 0, 2381, 0 }, { -1314, 0, 2479, 0 }, { -1323, 0, 2652, 0 }, { -1269, 0, 2781, 0 }, - { -1057, 0, 2920, 0 }, { -684, 0, 2985, 0 }, { -318, 0, 2956, 0 }, { 3, 0, 2811, 0 }, { 148, 0, 2623, 0 }, - { 190, 0, 2438, 0 }, { 249, 0, 2362, 0 }, { 367, 0, 2293, 0 }, { 529, 0, 2155, 0 }, { 593, 0, 1936, 0 }, - { 649, 0, 1712, 0 }, { 626, 0, 1611, 0 }, { 565, 0, 1487, 0 }, { 409, 0, 1359, 0 }, { 265, 0, 1146, 0 }, - { 88, 0, 923, 0 }, { -21, 0, 802, 0 }, { -57, 0, 628, 0 }, { -36, 0, 454, 0 }, { -30, 0, 237, 0 }, - { -32, 0, 136, 0 }, { -32768, 0, 0, 0 }, +#include "courses/koopa_troopa_beach/d_course_koopa_troopa_beach_unknown_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_koopa_troopa_beach_unknown_path1[] = { - { -27, 0, 101, 7 }, { -31, 0, 76, 7 }, { -27, 0, -187, 7 }, { -24, 0, -305, 7 }, - { 26, 0, -415, 7 }, { 119, 0, -564, 7 }, { 133, 0, -646, 7 }, { 94, 0, -742, 7 }, - { 8, 0, -853, 7 }, { -150, 0, -934, 7 }, { -310, 0, -919, 7 }, { -471, 0, -887, 7 }, - { -574, 0, -877, 7 }, { -652, 0, -898, 7 }, { -723, 0, -973, 7 }, { -759, 0, -1062, 7 }, - { -855, 0, -1193, 7 }, { -937, 0, -1229, 7 }, { -1036, 0, -1225, 7 }, { -1207, 0, -1197, 7 }, - { -1417, 0, -1101, 7 }, { -1591, 0, -847, 7 }, { -1719, 0, -616, 7 }, { -1787, 0, -523, 7 }, - { -1812, 0, -278, 7 }, { -1838, 0, -6, 7 }, { -1760, 0, 264, 7 }, { -1668, 0, 545, 7 }, - { -1651, 0, 794, 7 }, { -1700, 0, 1150, 7 }, { -1715, 0, 1239, 7 }, { -1690, 0, 1303, 7 }, - { -1634, 0, 1431, 7 }, { -1566, 0, 1542, 7 }, { -1509, 0, 1623, 7 }, { -1481, 0, 1748, 7 }, - { -1442, 0, 1947, 7 }, { -1360, 0, 2182, 7 }, { -1324, 0, 2342, 7 }, { -1322, 0, 2598, 7 }, - { -1279, 0, 2790, 7 }, { -1126, 0, 2897, 7 }, { -827, 0, 2975, 7 }, { -389, 0, 2933, 7 }, - { -51, 0, 2822, 7 }, { 66, 0, 2701, 7 }, { 155, 0, 2506, 7 }, { 312, 0, 2349, 7 }, - { 426, 0, 2217, 7 }, { 568, 0, 2000, 7 }, { 636, 0, 1730, 7 }, { 624, 0, 1589, 7 }, - { 560, 0, 1476, 7 }, { 296, 0, 1266, 7 }, { 154, 0, 1059, 7 }, { 8, 0, 753, 7 }, - { -24, 0, 409, 7 }, { -28, 0, 128, 7 }, { -32768, 0, 0, 0 }, +#include "courses/koopa_troopa_beach/d_course_koopa_troopa_beach_unknown_path1.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_koopa_troopa_beach_track_path[] = { - { -34, 1, 81, 1 }, { -34, 1, 61, 1 }, { -34, 1, 41, 1 }, - { -34, 1, 21, 2 }, { -34, 1, 1, 2 }, { -35, 1, -18, 2 }, - { -35, 1, -38, 2 }, { -35, 1, -58, 2 }, { -36, 1, -78, 2 }, - { -36, 1, -98, 2 }, { -36, 1, -118, 2 }, { -36, 1, -138, 2 }, - { -36, 1, -158, 2 }, { -36, 1, -178, 2 }, { -35, 1, -198, 2 }, - { -35, 1, -218, 2 }, { -34, 1, -238, 2 }, { -32, 1, -258, 3 }, - { -29, 1, -278, 3 }, { -24, 0, -297, 3 }, { -18, 0, -316, 3 }, - { -10, 0, -335, 3 }, { -2, -1, -353, 3 }, { 7, -1, -370, 3 }, - { 17, 0, -388, 3 }, { 27, 0, -405, 3 }, { 38, 0, -422, 3 }, - { 49, 1, -439, 3 }, { 60, 1, -455, 3 }, { 71, 1, -472, 3 }, - { 82, 1, -488, 3 }, { 94, 1, -505, 3 }, { 105, 1, -522, 4 }, - { 115, 1, -539, 4 }, { 125, 1, -556, 4 }, { 133, 1, -575, 4 }, - { 139, 1, -593, 4 }, { 142, 1, -613, 4 }, { 142, 1, -633, 4 }, - { 139, 1, -653, 4 }, { 134, 1, -672, 4 }, { 128, 1, -692, 4 }, - { 121, 1, -710, 4 }, { 112, 1, -728, 4 }, { 102, 1, -745, 4 }, - { 89, 1, -761, 4 }, { 75, 1, -775, 4 }, { 60, 1, -788, 4 }, - { 44, 1, -799, 4 }, { 27, 1, -811, 5 }, { 12, 1, -824, 5 }, - { -1, 1, -838, 5 }, { -15, 1, -853, 5 }, { -28, 1, -868, 5 }, - { -40, 1, -884, 5 }, { -52, 1, -900, 5 }, { -63, 1, -916, 5 }, - { -75, 1, -933, 5 }, { -85, 1, -950, 5 }, { -96, 1, -967, 5 }, - { -106, 1, -984, 5 }, { -116, 1, -1001, 5 }, { -126, 1, -1019, 5 }, - { -135, 1, -1037, 5 }, { -144, 1, -1055, 5 }, { -153, 1, -1073, 5 }, - { -161, 1, -1091, 8 }, { -169, 1, -1109, 8 }, { -177, 1, -1127, 8 }, - { -185, 1, -1146, 8 }, { -192, 1, -1164, 8 }, { -200, 1, -1183, 8 }, - { -209, 1, -1201, 8 }, { -217, 1, -1219, 8 }, { -226, 1, -1237, 8 }, - { -236, 1, -1255, 8 }, { -245, 1, -1272, 8 }, { -255, 1, -1289, 8 }, - { -266, 1, -1306, 8 }, { -277, 1, -1323, 8 }, { -289, 1, -1339, 8 }, - { -301, 1, -1355, 8 }, { -314, 1, -1370, 8 }, { -329, 1, -1384, 8 }, - { -344, 1, -1396, 9 }, { -361, 1, -1407, 9 }, { -380, 1, -1415, 9 }, - { -399, 1, -1420, 9 }, { -419, 1, -1422, 9 }, { -439, 1, -1423, 9 }, - { -459, 1, -1423, 9 }, { -479, 1, -1422, 9 }, { -499, 1, -1420, 9 }, - { -518, 1, -1417, 9 }, { -538, 1, -1414, 9 }, { -558, 1, -1410, 9 }, - { -577, 1, -1406, 9 }, { -597, 1, -1401, 9 }, { -616, 1, -1397, 9 }, - { -636, 1, -1392, 9 }, { -655, 1, -1386, 9 }, { -674, 1, -1381, 10 }, - { -693, 1, -1375, 10 }, { -713, 1, -1370, 10 }, { -732, 2, -1364, 10 }, - { -751, 3, -1358, 10 }, { -770, 3, -1352, 10 }, { -789, 4, -1346, 10 }, - { -808, 4, -1340, 10 }, { -828, 4, -1335, 10 }, { -847, 3, -1329, 10 }, - { -866, 2, -1324, 10 }, { -885, 1, -1318, 10 }, { -905, 1, -1313, 10 }, - { -924, 1, -1308, 10 }, { -943, 1, -1303, 10 }, { -963, 1, -1297, 10 }, - { -982, 1, -1292, 10 }, { -1001, 1, -1287, 10 }, { -1021, 1, -1282, 10 }, - { -1040, 1, -1277, 11 }, { -1059, 1, -1272, 11 }, { -1079, 1, -1267, 11 }, - { -1098, 1, -1261, 11 }, { -1117, 1, -1256, 11 }, { -1136, 1, -1250, 11 }, - { -1155, 1, -1244, 11 }, { -1174, 1, -1238, 11 }, { -1193, 2, -1231, 11 }, - { -1212, 3, -1224, 11 }, { -1231, 3, -1217, 11 }, { -1249, 3, -1209, 11 }, - { -1268, 2, -1201, 11 }, { -1286, 1, -1193, 11 }, { -1304, 1, -1184, 11 }, - { -1321, 1, -1175, 11 }, { -1339, 1, -1164, 11 }, { -1355, 2, -1153, 11 }, - { -1371, 2, -1141, 11 }, { -1386, 3, -1128, 11 }, { -1401, 3, -1114, 11 }, - { -1414, 3, -1100, 12 }, { -1428, 3, -1085, 12 }, { -1440, 2, -1069, 12 }, - { -1452, 1, -1053, 12 }, { -1464, 1, -1037, 12 }, { -1475, 1, -1020, 12 }, - { -1485, 1, -1003, 12 }, { -1495, 1, -986, 12 }, { -1505, 1, -968, 12 }, - { -1514, 1, -950, 12 }, { -1524, 1, -933, 12 }, { -1533, 1, -915, 12 }, - { -1543, 1, -897, 12 }, { -1552, 1, -880, 12 }, { -1561, 1, -862, 12 }, - { -1570, 1, -844, 12 }, { -1580, 1, -826, 13 }, { -1589, 2, -809, 13 }, - { -1598, 2, -791, 13 }, { -1606, 1, -773, 13 }, { -1615, 1, -755, 13 }, - { -1625, 1, -737, 13 }, { -1635, 1, -720, 13 }, { -1646, 1, -703, 13 }, - { -1657, 0, -687, 13 }, { -1669, 0, -671, 13 }, { -1682, 0, -655, 13 }, - { -1695, -1, -640, 13 }, { -1708, -1, -625, 13 }, { -1720, -2, -609, 13 }, - { -1731, -3, -592, 13 }, { -1742, -3, -575, 13 }, { -1751, -4, -558, 13 }, - { -1760, -4, -539, 13 }, { -1767, -5, -521, 13 }, { -1773, -5, -502, 13 }, - { -1779, -5, -483, 13 }, { -1784, -5, -463, 13 }, { -1789, -5, -444, 13 }, - { -1793, -5, -424, 13 }, { -1797, -5, -405, 13 }, { -1800, -5, -385, 13 }, - { -1803, -5, -365, 13 }, { -1806, -5, -345, 14 }, { -1809, -4, -325, 14 }, - { -1811, -4, -306, 14 }, { -1813, -4, -286, 14 }, { -1815, -3, -266, 14 }, - { -1817, -3, -246, 14 }, { -1818, -3, -226, 14 }, { -1820, -2, -206, 14 }, - { -1821, -2, -186, 14 }, { -1822, -2, -166, 14 }, { -1823, -2, -146, 14 }, - { -1823, -2, -126, 14 }, { -1823, -2, -106, 14 }, { -1823, -2, -86, 14 }, - { -1823, -1, -66, 14 }, { -1821, 0, -46, 14 }, { -1819, 0, -26, 14 }, - { -1816, 0, -6, 14 }, { -1813, 0, 12, 14 }, { -1809, 0, 32, 14 }, - { -1805, 0, 52, 14 }, { -1800, 0, 71, 14 }, { -1795, 1, 90, 15 }, - { -1789, 1, 109, 15 }, { -1782, 1, 128, 15 }, { -1776, 3, 147, 255 }, - { -1769, 9, 166, 255 }, { -1762, 16, 185, 255 }, { -1755, 6, 204, 15 }, - { -1747, 1, 222, 15 }, { -1740, 1, 241, 15 }, { -1732, 1, 259, 15 }, - { -1724, 1, 278, 15 }, { -1716, 1, 296, 15 }, { -1708, 1, 314, 15 }, - { -1700, 1, 333, 15 }, { -1692, 1, 351, 15 }, { -1683, 1, 369, 15 }, - { -1674, 1, 387, 15 }, { -1666, 1, 405, 15 }, { -1657, 1, 423, 16 }, - { -1648, 1, 441, 16 }, { -1639, 1, 458, 16 }, { -1630, 1, 476, 16 }, - { -1620, 1, 494, 16 }, { -1611, 1, 512, 16 }, { -1602, 1, 529, 16 }, - { -1592, 1, 547, 16 }, { -1583, 1, 565, 16 }, { -1573, 1, 582, 16 }, - { -1563, 1, 600, 16 }, { -1554, 1, 617, 16 }, { -1544, 1, 634, 16 }, - { -1534, 1, 652, 16 }, { -1524, 1, 669, 16 }, { -1513, 2, 686, 16 }, - { -1503, 2, 704, 17 }, { -1493, 2, 721, 17 }, { -1482, 2, 738, 17 }, - { -1472, 2, 755, 17 }, { -1461, 2, 772, 17 }, { -1451, 2, 789, 17 }, - { -1440, 1, 806, 17 }, { -1429, 1, 823, 17 }, { -1419, 1, 839, 17 }, - { -1408, 1, 856, 17 }, { -1397, 1, 873, 17 }, { -1386, 1, 890, 17 }, - { -1375, 1, 906, 17 }, { -1364, 1, 923, 17 }, { -1352, 1, 939, 17 }, - { -1340, 1, 955, 17 }, { -1328, 1, 971, 19 }, { -1315, 1, 987, 19 }, - { -1302, 1, 1002, 19 }, { -1288, 1, 1017, 19 }, { -1275, 1, 1031, 19 }, - { -1260, 1, 1045, 19 }, { -1245, 1, 1058, 19 }, { -1230, 1, 1071, 19 }, - { -1214, 1, 1084, 19 }, { -1198, 1, 1095, 19 }, { -1181, 1, 1106, 19 }, - { -1165, 1, 1117, 19 }, { -1148, 1, 1128, 19 }, { -1131, 6, 1139, 255 }, - { -1114, 13, 1149, 255 }, { -1097, 20, 1160, 255 }, { -1080, 10, 1170, 21 }, - { -1063, 1, 1181, 21 }, { -1046, 1, 1191, 21 }, { -1028, 1, 1201, 21 }, - { -1011, 1, 1211, 21 }, { -994, 1, 1221, 21 }, { -976, 1, 1231, 21 }, - { -958, 1, 1240, 21 }, { -941, 1, 1249, 21 }, { -923, 1, 1258, 21 }, - { -905, 1, 1267, 21 }, { -887, 6, 1276, 255 }, { -869, 12, 1284, 255 }, - { -850, 19, 1293, 255 }, { -832, 9, 1301, 21 }, { -814, 1, 1310, 21 }, - { -797, 0, 1320, 21 }, { -781, 0, 1332, 21 }, { -765, 0, 1344, 21 }, - { -751, 0, 1358, 21 }, { -738, 0, 1373, 21 }, { -725, 0, 1389, 21 }, - { -714, 0, 1405, 22 }, { -704, 0, 1423, 22 }, { -695, 0, 1440, 22 }, - { -686, 0, 1458, 22 }, { -677, 0, 1476, 22 }, { -669, 1, 1495, 22 }, - { -661, 1, 1513, 22 }, { -653, 1, 1531, 22 }, { -645, 1, 1550, 22 }, - { -638, 1, 1568, 22 }, { -631, 1, 1587, 22 }, { -624, 1, 1606, 22 }, - { -618, 1, 1625, 22 }, { -612, 1, 1644, 22 }, { -607, 1, 1663, 22 }, - { -602, 0, 1683, 22 }, { -598, 0, 1702, 22 }, { -595, 0, 1722, 22 }, - { -592, 0, 1742, 22 }, { -591, 0, 1762, 22 }, { -590, 0, 1782, 23 }, - { -591, 0, 1802, 23 }, { -592, 0, 1822, 23 }, { -594, 0, 1842, 23 }, - { -597, 1, 1862, 23 }, { -601, 1, 1881, 23 }, { -606, 1, 1901, 23 }, - { -612, 1, 1920, 23 }, { -619, 1, 1939, 23 }, { -627, 1, 1957, 23 }, - { -635, 1, 1975, 23 }, { -644, 1, 1993, 23 }, { -654, 1, 2011, 23 }, - { -664, 1, 2028, 23 }, { -676, 1, 2044, 23 }, { -688, 1, 2060, 23 }, - { -701, 1, 2075, 23 }, { -715, 1, 2089, 24 }, { -729, 1, 2103, 24 }, - { -744, 1, 2116, 24 }, { -760, 1, 2129, 24 }, { -776, 1, 2141, 24 }, - { -792, 1, 2153, 24 }, { -809, 1, 2164, 24 }, { -826, 0, 2174, 24 }, - { -843, 0, 2185, 24 }, { -860, 0, 2195, 24 }, { -878, 0, 2204, 24 }, - { -896, 0, 2214, 24 }, { -913, 0, 2223, 24 }, { -931, 0, 2232, 24 }, - { -949, 0, 2240, 24 }, { -968, 0, 2249, 24 }, { -986, 0, 2257, 24 }, - { -1004, 0, 2265, 24 }, { -1022, 0, 2273, 25 }, { -1041, 0, 2281, 25 }, - { -1059, 0, 2290, 25 }, { -1077, 1, 2298, 25 }, { -1095, 1, 2306, 25 }, - { -1113, 1, 2315, 25 }, { -1131, 1, 2323, 25 }, { -1150, 1, 2332, 25 }, - { -1168, 1, 2340, 25 }, { -1186, 1, 2349, 25 }, { -1203, 1, 2359, 25 }, - { -1220, 1, 2370, 25 }, { -1236, 1, 2381, 25 }, { -1252, 1, 2394, 25 }, - { -1266, 1, 2408, 25 }, { -1278, 1, 2424, 25 }, { -1289, 1, 2441, 25 }, - { -1297, 1, 2459, 25 }, { -1304, 1, 2478, 25 }, { -1309, 1, 2497, 25 }, - { -1313, 1, 2517, 26 }, { -1316, 1, 2537, 26 }, { -1317, 2, 2557, 26 }, - { -1318, 2, 2577, 26 }, { -1319, 2, 2597, 26 }, { -1318, 2, 2617, 26 }, - { -1316, 2, 2636, 26 }, { -1313, 1, 2656, 26 }, { -1309, 1, 2676, 26 }, - { -1303, 1, 2695, 26 }, { -1296, 1, 2714, 26 }, { -1288, 1, 2732, 26 }, - { -1277, 1, 2749, 26 }, { -1265, 1, 2765, 26 }, { -1251, 1, 2779, 26 }, - { -1237, 1, 2793, 26 }, { -1222, 1, 2806, 26 }, { -1206, 1, 2819, 26 }, - { -1190, 1, 2831, 26 }, { -1174, 1, 2842, 26 }, { -1157, 1, 2853, 26 }, - { -1140, 1, 2864, 26 }, { -1122, 1, 2873, 26 }, { -1105, 1, 2882, 27 }, - { -1086, 1, 2891, 27 }, { -1068, 1, 2898, 27 }, { -1049, 1, 2906, 27 }, - { -1030, 1, 2912, 27 }, { -1011, 1, 2919, 27 }, { -992, 1, 2924, 27 }, - { -973, 1, 2930, 27 }, { -954, 1, 2935, 27 }, { -934, 1, 2939, 27 }, - { -914, 1, 2943, 27 }, { -895, 1, 2947, 27 }, { -875, 1, 2951, 27 }, - { -855, 1, 2954, 27 }, { -836, 1, 2958, 27 }, { -816, 1, 2960, 27 }, - { -796, 1, 2963, 27 }, { -776, 1, 2965, 27 }, { -756, 1, 2967, 27 }, - { -736, 1, 2969, 27 }, { -716, 1, 2971, 27 }, { -696, 1, 2972, 27 }, - { -676, 1, 2973, 27 }, { -656, 1, 2974, 28 }, { -636, 1, 2974, 28 }, - { -616, 1, 2974, 28 }, { -596, 1, 2974, 28 }, { -576, 2, 2974, 28 }, - { -556, 2, 2973, 28 }, { -536, 3, 2972, 28 }, { -516, 4, 2971, 28 }, - { -496, 4, 2970, 28 }, { -477, 5, 2968, 28 }, { -457, 6, 2966, 28 }, - { -437, 6, 2963, 28 }, { -417, 7, 2960, 28 }, { -397, 7, 2957, 28 }, - { -378, 7, 2953, 28 }, { -358, 8, 2949, 28 }, { -338, 9, 2945, 28 }, - { -319, 9, 2940, 28 }, { -300, 10, 2935, 28 }, { -280, 11, 2929, 28 }, - { -261, 11, 2923, 28 }, { -242, 11, 2917, 29 }, { -224, 11, 2910, 29 }, - { -205, 10, 2903, 29 }, { -186, 10, 2896, 29 }, { -168, 9, 2888, 29 }, - { -150, 8, 2880, 29 }, { -132, 7, 2871, 29 }, { -114, 6, 2862, 29 }, - { -96, 6, 2853, 29 }, { -78, 5, 2843, 29 }, { -61, 4, 2833, 29 }, - { -44, 3, 2822, 29 }, { -27, 2, 2811, 29 }, { -11, 1, 2800, 29 }, - { 4, 1, 2788, 29 }, { 19, 1, 2775, 29 }, { 34, 1, 2761, 29 }, - { 48, 1, 2747, 29 }, { 62, 1, 2733, 29 }, { 74, 1, 2717, 29 }, - { 86, 1, 2701, 29 }, { 98, 1, 2685, 29 }, { 109, 1, 2668, 29 }, - { 119, 1, 2651, 30 }, { 129, 1, 2634, 30 }, { 138, 1, 2616, 30 }, - { 146, 1, 2597, 30 }, { 154, 1, 2579, 30 }, { 160, 1, 2560, 30 }, - { 166, 1, 2541, 30 }, { 171, 1, 2521, 30 }, { 175, 1, 2502, 30 }, - { 181, 1, 2483, 30 }, { 187, 1, 2464, 30 }, { 194, 1, 2445, 30 }, - { 202, 1, 2427, 30 }, { 212, 1, 2409, 30 }, { 224, 1, 2393, 30 }, - { 238, 1, 2379, 30 }, { 253, 1, 2365, 30 }, { 268, 1, 2353, 30 }, - { 285, 1, 2341, 30 }, { 302, 1, 2330, 30 }, { 319, 1, 2320, 30 }, - { 336, 1, 2309, 30 }, { 352, 1, 2298, 30 }, { 368, 1, 2286, 31 }, - { 384, 1, 2275, 31 }, { 400, 1, 2262, 31 }, { 416, 1, 2250, 31 }, - { 431, 1, 2237, 31 }, { 447, 1, 2224, 31 }, { 462, 1, 2211, 31 }, - { 476, 1, 2197, 31 }, { 489, 1, 2182, 31 }, { 501, 1, 2166, 31 }, - { 513, 1, 2150, 31 }, { 523, 1, 2133, 31 }, { 533, 1, 2115, 31 }, - { 542, 1, 2097, 31 }, { 549, 1, 2078, 31 }, { 556, 1, 2060, 31 }, - { 562, 1, 2040, 31 }, { 567, 1, 2021, 31 }, { 573, 1, 2002, 31 }, - { 578, 1, 1983, 31 }, { 584, 1, 1963, 31 }, { 589, 1, 1944, 31 }, - { 594, 1, 1925, 32 }, { 599, 1, 1906, 32 }, { 604, 1, 1886, 32 }, - { 609, 1, 1867, 32 }, { 614, 1, 1847, 32 }, { 619, 1, 1828, 32 }, - { 624, 1, 1809, 32 }, { 628, 1, 1789, 32 }, { 632, 1, 1769, 32 }, - { 636, 1, 1750, 32 }, { 638, 1, 1730, 32 }, { 640, 1, 1710, 32 }, - { 640, 1, 1690, 32 }, { 639, 1, 1670, 32 }, { 634, 1, 1650, 32 }, - { 629, 1, 1631, 32 }, { 622, 1, 1612, 32 }, { 615, 1, 1594, 32 }, - { 607, 1, 1575, 32 }, { 599, 1, 1557, 32 }, { 590, 1, 1539, 32 }, - { 580, 1, 1522, 32 }, { 568, 1, 1506, 33 }, { 556, 1, 1490, 33 }, - { 543, 1, 1475, 33 }, { 529, 1, 1461, 33 }, { 514, 1, 1447, 33 }, - { 499, 1, 1433, 33 }, { 484, 1, 1420, 33 }, { 469, 0, 1407, 33 }, - { 454, 0, 1394, 33 }, { 440, 0, 1380, 33 }, { 426, -1, 1366, 33 }, - { 413, -2, 1351, 33 }, { 399, -3, 1336, 33 }, { 387, -3, 1320, 33 }, - { 374, -4, 1304, 33 }, { 362, -4, 1288, 33 }, { 351, -5, 1272, 33 }, - { 339, -5, 1256, 33 }, { 328, -5, 1239, 33 }, { 317, -4, 1223, 33 }, - { 305, -4, 1206, 33 }, { 294, -4, 1190, 33 }, { 282, -4, 1174, 33 }, - { 270, -3, 1158, 33 }, { 258, -3, 1141, 33 }, { 246, -3, 1125, 34 }, - { 234, -3, 1109, 34 }, { 222, -3, 1093, 34 }, { 210, -3, 1078, 34 }, - { 198, -3, 1062, 34 }, { 185, -2, 1046, 34 }, { 173, -2, 1030, 34 }, - { 161, -2, 1015, 34 }, { 148, -2, 999, 34 }, { 135, -1, 983, 34 }, - { 123, -1, 968, 34 }, { 110, -1, 952, 34 }, { 97, -1, 937, 34 }, - { 85, -2, 922, 34 }, { 72, -2, 906, 34 }, { 59, -2, 891, 34 }, - { 46, -2, 876, 34 }, { 32, -1, 861, 34 }, { 19, 0, 846, 34 }, - { 8, 0, 830, 34 }, { -2, 1, 813, 34 }, { -11, 1, 795, 34 }, - { -20, 1, 777, 34 }, { -27, 1, 758, 34 }, { -33, 1, 739, 34 }, - { -37, 6, 719, 255 }, { -41, 12, 700, 255 }, { -45, 19, 680, 255 }, - { -47, 9, 660, 35 }, { -49, 1, 640, 35 }, { -50, 1, 620, 35 }, - { -50, 1, 600, 35 }, { -49, 1, 580, 35 }, { -48, 1, 560, 35 }, - { -46, 1, 540, 35 }, { -44, 6, 520, 255 }, { -42, 12, 501, 255 }, - { -40, 19, 481, 255 }, { -38, 9, 461, 35 }, { -37, 1, 441, 35 }, - { -36, 1, 421, 35 }, { -35, 1, 401, 35 }, { -34, 1, 381, 35 }, - { -33, 1, 361, 35 }, { -32, 1, 341, 35 }, { -32, 1, 321, 35 }, - { -31, 1, 301, 1 }, { -31, 1, 281, 1 }, { -31, 1, 261, 1 }, - { -31, 1, 241, 1 }, { -31, 1, 221, 1 }, { -31, 1, 201, 1 }, - { -31, 1, 181, 1 }, { -32, 1, 161, 1 }, { -32, 1, 141, 1 }, - { -33, 1, 121, 1 }, { -33, 1, 101, 1 }, { -32768, -32768, -32768, 0 }, +#include "courses/koopa_troopa_beach/d_course_koopa_troopa_beach_track_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_koopa_troopa_beach_track_path_2[] = { - { -29, 1, 88, 1 }, - { -29, 1, 68, 1 }, - { -29, 1, 48, 1 }, - { -29, 1, 28, 2 }, - { -29, 1, 8, 2 }, - { -29, 1, -11, 2 }, - { -29, 1, -31, 2 }, - { -29, 1, -51, 2 }, - { -28, 1, -71, 2 }, - { -28, 1, -91, 2 }, - { -28, 1, -111, 2 }, - { -27, 1, -131, 2 }, - { -27, 1, -151, 2 }, - { -27, 1, -171, 2 }, - { -26, 1, -191, 2 }, - { -26, 1, -211, 2 }, - { -25, 1, -231, 2 }, - { -25, 1, -251, 2 }, - { -23, 1, -271, 3 }, - { -20, 0, -291, 3 }, - { -16, 0, -310, 3 }, - { -10, 0, -330, 3 }, - { -3, -1, -348, 3 }, - { 4, -1, -367, 3 }, - { 13, 0, -385, 3 }, - { 22, 0, -402, 3 }, - { 31, 0, -420, 3 }, - { 41, 1, -438, 3 }, - { 51, 1, -455, 3 }, - { 61, 1, -472, 3 }, - { 72, 1, -489, 3 }, - { 82, 1, -506, 3 }, - { 92, 1, -523, 3 }, - { 102, 1, -541, 4 }, - { 110, 1, -559, 4 }, - { 118, 1, -578, 4 }, - { 124, 1, -597, 4 }, - { 127, 1, -617, 4 }, - { 127, 1, -637, 4 }, - { 124, 1, -656, 4 }, - { 119, 1, -676, 4 }, - { 113, 1, -695, 4 }, - { 104, 1, -713, 4 }, - { 95, 1, -731, 4 }, - { 85, 1, -748, 4 }, - { 74, 1, -765, 4 }, - { 63, 1, -781, 4 }, - { 51, 1, -797, 4 }, - { 38, 1, -812, 4 }, - { 24, 1, -827, 5 }, - { 9, 1, -840, 5 }, - { -6, 1, -853, 5 }, - { -22, 1, -864, 5 }, - { -39, 1, -875, 5 }, - { -56, 1, -885, 5 }, - { -74, 1, -895, 5 }, - { -92, 1, -903, 5 }, - { -110, 1, -910, 5 }, - { -129, 1, -916, 5 }, - { -149, 1, -921, 5 }, - { -169, 1, -925, 5 }, - { -188, 2, -927, 5 }, - { -208, 2, -927, 5 }, - { -228, 2, -926, 5 }, - { -248, 2, -924, 5 }, - { -268, 1, -922, 5 }, - { -288, 1, -919, 5 }, - { -308, 1, -917, 5 }, - { -328, 1, -914, 6 }, - { -348, 1, -910, 6 }, - { -367, 1, -907, 6 }, - { -387, 1, -903, 6 }, - { -407, 1, -899, 6 }, - { -426, 1, -896, 6 }, - { -446, 1, -892, 6 }, - { -466, 1, -889, 6 }, - { -485, 1, -886, 6 }, - { -505, 1, -883, 6 }, - { -525, 1, -881, 6 }, - { -545, 1, -880, 6 }, - { -565, 1, -880, 6 }, - { -585, 1, -882, 6 }, - { -605, 1, -885, 6 }, - { -624, 1, -891, 6 }, - { -642, 1, -899, 6 }, - { -659, 1, -910, 6 }, - { -674, 1, -923, 7 }, - { -689, 1, -937, 7 }, - { -702, 1, -952, 7 }, - { -714, 1, -968, 7 }, - { -725, 1, -985, 7 }, - { -734, 1, -1002, 7 }, - { -742, 1, -1021, 7 }, - { -750, 1, -1039, 7 }, - { -760, 1, -1056, 7 }, - { -770, 1, -1074, 7 }, - { -781, 1, -1090, 7 }, - { -792, 1, -1107, 7 }, - { -804, 1, -1123, 7 }, - { -816, 1, -1139, 7 }, - { -828, 1, -1155, 7 }, - { -842, 1, -1170, 7 }, - { -856, 1, -1184, 7 }, - { -872, 1, -1196, 7 }, - { -889, 1, -1207, 10 }, - { -907, 1, -1215, 10 }, - { -926, 1, -1221, 10 }, - { -946, 1, -1225, 10 }, - { -966, 1, -1226, 10 }, - { -986, 1, -1227, 10 }, - { -1006, 1, -1225, 10 }, - { -1026, 1, -1224, 11 }, - { -1045, 1, -1221, 11 }, - { -1065, 1, -1219, 11 }, - { -1085, 1, -1216, 11 }, - { -1105, 1, -1213, 11 }, - { -1125, 1, -1210, 11 }, - { -1144, 1, -1206, 11 }, - { -1164, 1, -1202, 11 }, - { -1183, 2, -1197, 11 }, - { -1202, 2, -1191, 11 }, - { -1221, 3, -1185, 11 }, - { -1240, 3, -1178, 11 }, - { -1259, 2, -1171, 11 }, - { -1277, 1, -1163, 11 }, - { -1296, 1, -1155, 11 }, - { -1314, 1, -1147, 11 }, - { -1332, 1, -1138, 11 }, - { -1349, 2, -1128, 11 }, - { -1366, 2, -1117, 11 }, - { -1382, 3, -1106, 11 }, - { -1398, 3, -1093, 11 }, - { -1413, 3, -1080, 12 }, - { -1427, 2, -1066, 12 }, - { -1441, 2, -1052, 12 }, - { -1455, 1, -1037, 12 }, - { -1468, 1, -1022, 12 }, - { -1480, 1, -1006, 12 }, - { -1492, 1, -990, 12 }, - { -1504, 1, -973, 12 }, - { -1515, 1, -957, 12 }, - { -1526, 1, -940, 12 }, - { -1537, 1, -924, 12 }, - { -1548, 1, -907, 12 }, - { -1559, 1, -890, 12 }, - { -1570, 1, -873, 12 }, - { -1580, 1, -856, 12 }, - { -1591, 1, -839, 13 }, - { -1601, 1, -822, 13 }, - { -1612, 1, -805, 13 }, - { -1622, 1, -788, 13 }, - { -1632, 0, -771, 13 }, - { -1642, 0, -753, 13 }, - { -1652, 0, -736, 13 }, - { -1662, 0, -718, 13 }, - { -1671, 0, -701, 13 }, - { -1681, 0, -684, 13 }, - { -1691, 0, -666, 13 }, - { -1701, -1, -649, 13 }, - { -1712, -1, -632, 13 }, - { -1722, -2, -615, 13 }, - { -1733, -3, -598, 13 }, - { -1744, -3, -581, 13 }, - { -1755, -4, -565, 13 }, - { -1765, -5, -547, 13 }, - { -1773, -5, -529, 13 }, - { -1779, -5, -510, 13 }, - { -1784, -5, -491, 13 }, - { -1789, -5, -471, 13 }, - { -1792, -5, -451, 13 }, - { -1795, -5, -432, 13 }, - { -1798, -5, -412, 13 }, - { -1800, -5, -392, 13 }, - { -1802, -5, -372, 13 }, - { -1804, -5, -352, 14 }, - { -1806, -4, -332, 14 }, - { -1808, -4, -312, 14 }, - { -1810, -4, -292, 14 }, - { -1812, -3, -272, 14 }, - { -1814, -3, -252, 14 }, - { -1816, -3, -233, 14 }, - { -1818, -2, -213, 14 }, - { -1820, -2, -193, 14 }, - { -1821, -2, -173, 14 }, - { -1823, -2, -153, 14 }, - { -1825, -2, -133, 14 }, - { -1827, -3, -113, 14 }, - { -1827, -2, -93, 14 }, - { -1828, -2, -73, 14 }, - { -1827, -1, -53, 14 }, - { -1827, -1, -33, 14 }, - { -1825, 0, -13, 14 }, - { -1823, 0, 6, 14 }, - { -1821, 0, 26, 14 }, - { -1818, 0, 45, 14 }, - { -1814, 0, 65, 14 }, - { -1810, 0, 85, 14 }, - { -1805, 1, 104, 15 }, - { -1800, 1, 124, 15 }, - { -1794, 1, 143, 15 }, - { -1789, 5, 162, 255 }, - { -1783, 12, 181, 255 }, - { -1777, 2, 200, 15 }, - { -1772, 0, 220, 15 }, - { -1766, 0, 239, 15 }, - { -1760, 0, 258, 15 }, - { -1754, 0, 277, 15 }, - { -1748, 0, 296, 15 }, - { -1742, 0, 315, 15 }, - { -1736, -1, 334, 15 }, - { -1730, -1, 353, 15 }, - { -1724, -1, 372, 15 }, - { -1718, -1, 391, 15 }, - { -1711, -1, 410, 15 }, - { -1705, -1, 430, 15 }, - { -1700, -1, 449, 16 }, - { -1694, -1, 468, 16 }, - { -1689, -1, 487, 16 }, - { -1684, -1, 507, 16 }, - { -1680, -2, 526, 16 }, - { -1676, -2, 546, 16 }, - { -1672, -2, 565, 16 }, - { -1669, -2, 585, 16 }, - { -1666, -2, 605, 16 }, - { -1663, -2, 625, 16 }, - { -1661, -1, 645, 16 }, - { -1659, -1, 665, 17 }, - { -1658, -1, 685, 17 }, - { -1657, -1, 705, 17 }, - { -1657, 0, 725, 17 }, - { -1657, 0, 745, 17 }, - { -1657, 0, 765, 17 }, - { -1658, 0, 785, 17 }, - { -1659, 0, 805, 17 }, - { -1660, 0, 825, 17 }, - { -1661, 0, 845, 17 }, - { -1663, 0, 865, 17 }, - { -1665, 0, 885, 17 }, - { -1667, 0, 904, 17 }, - { -1669, 0, 924, 17 }, - { -1671, -1, 944, 17 }, - { -1674, -1, 964, 17 }, - { -1677, -1, 984, 17 }, - { -1679, -1, 1004, 17 }, - { -1682, -1, 1024, 17 }, - { -1685, -1, 1043, 18 }, - { -1688, -1, 1063, 18 }, - { -1691, 0, 1083, 18 }, - { -1693, 0, 1103, 18 }, - { -1696, 0, 1123, 18 }, - { -1699, 0, 1142, 18 }, - { -1702, 0, 1162, 18 }, - { -1705, 0, 1182, 18 }, - { -1708, 0, 1202, 18 }, - { -1710, -1, 1222, 18 }, - { -1709, -1, 1242, 18 }, - { -1705, -2, 1261, 18 }, - { -1698, -2, 1280, 18 }, - { -1691, -2, 1299, 18 }, - { -1683, -2, 1317, 18 }, - { -1675, -1, 1335, 18 }, - { -1667, -1, 1354, 18 }, - { -1659, -2, 1372, 18 }, - { -1651, -3, 1390, 18 }, - { -1642, -3, 1408, 18 }, - { -1633, -3, 1426, 18 }, - { -1624, -3, 1444, 18 }, - { -1614, -3, 1461, 18 }, - { -1604, -4, 1479, 18 }, - { -1593, -4, 1496, 18 }, - { -1583, -4, 1513, 18 }, - { -1572, -5, 1530, 18 }, - { -1561, -5, 1546, 20 }, - { -1550, -5, 1563, 20 }, - { -1539, -6, 1580, 20 }, - { -1528, -6, 1596, 20 }, - { -1518, -7, 1614, 36 }, - { -1510, -7, 1632, 36 }, - { -1504, -7, 1651, 36 }, - { -1498, -7, 1670, 36 }, - { -1493, -7, 1690, 36 }, - { -1489, -7, 1709, 36 }, - { -1485, -7, 1729, 36 }, - { -1481, -7, 1749, 36 }, - { -1477, -7, 1768, 36 }, - { -1473, -7, 1788, 36 }, - { -1469, -7, 1807, 36 }, - { -1465, -7, 1827, 36 }, - { -1461, -7, 1847, 36 }, - { -1457, -7, 1866, 36 }, - { -1453, -7, 1886, 36 }, - { -1448, -7, 1905, 36 }, - { -1443, -7, 1925, 36 }, - { -1438, -7, 1944, 36 }, - { -1433, -7, 1963, 36 }, - { -1427, -7, 1982, 36 }, - { -1421, -7, 2002, 36 }, - { -1415, -7, 2021, 36 }, - { -1409, -7, 2040, 36 }, - { -1402, -7, 2059, 36 }, - { -1396, -7, 2078, 36 }, - { -1389, -7, 2096, 36 }, - { -1383, -7, 2115, 36 }, - { -1377, -7, 2135, 36 }, - { -1371, -7, 2154, 36 }, - { -1365, -7, 2173, 36 }, - { -1359, -7, 2192, 36 }, - { -1354, -6, 2211, 25 }, - { -1349, -6, 2231, 25 }, - { -1344, -5, 2250, 25 }, - { -1340, -5, 2270, 25 }, - { -1336, -4, 2289, 25 }, - { -1333, -4, 2309, 25 }, - { -1330, -3, 2329, 25 }, - { -1328, -3, 2349, 25 }, - { -1326, -2, 2369, 25 }, - { -1325, 0, 2389, 25 }, - { -1324, 0, 2409, 25 }, - { -1323, 1, 2429, 25 }, - { -1323, 1, 2449, 25 }, - { -1323, 1, 2469, 25 }, - { -1322, 1, 2489, 25 }, - { -1322, 1, 2509, 26 }, - { -1321, 1, 2529, 26 }, - { -1320, 2, 2549, 26 }, - { -1318, 2, 2569, 26 }, - { -1316, 3, 2589, 26 }, - { -1314, 3, 2608, 26 }, - { -1312, 2, 2628, 26 }, - { -1309, 2, 2648, 26 }, - { -1305, 1, 2668, 26 }, - { -1301, 1, 2687, 26 }, - { -1297, 1, 2707, 26 }, - { -1291, 1, 2726, 26 }, - { -1283, 1, 2745, 26 }, - { -1275, 1, 2763, 26 }, - { -1264, 1, 2780, 26 }, - { -1252, 1, 2796, 26 }, - { -1239, 1, 2811, 26 }, - { -1225, 1, 2825, 26 }, - { -1209, 1, 2838, 26 }, - { -1193, 1, 2849, 26 }, - { -1176, 1, 2860, 26 }, - { -1159, 1, 2869, 26 }, - { -1141, 1, 2878, 26 }, - { -1122, 1, 2886, 27 }, - { -1104, 1, 2894, 27 }, - { -1085, 1, 2901, 27 }, - { -1067, 1, 2908, 27 }, - { -1048, 1, 2915, 27 }, - { -1028, 1, 2921, 27 }, - { -1009, 1, 2926, 27 }, - { -990, 1, 2932, 27 }, - { -971, 1, 2937, 27 }, - { -951, 1, 2941, 27 }, - { -932, 1, 2945, 27 }, - { -912, 1, 2949, 27 }, - { -892, 1, 2952, 27 }, - { -872, 1, 2954, 27 }, - { -852, 1, 2956, 27 }, - { -832, 1, 2958, 27 }, - { -812, 1, 2959, 27 }, - { -792, 1, 2960, 27 }, - { -772, 1, 2961, 27 }, - { -752, 1, 2961, 27 }, - { -732, 1, 2961, 27 }, - { -712, 1, 2960, 27 }, - { -692, 1, 2960, 27 }, - { -672, 1, 2958, 27 }, - { -652, 1, 2957, 28 }, - { -632, 1, 2956, 28 }, - { -613, 1, 2954, 28 }, - { -593, 2, 2952, 28 }, - { -573, 2, 2950, 28 }, - { -553, 3, 2948, 28 }, - { -533, 4, 2945, 28 }, - { -513, 5, 2943, 28 }, - { -493, 5, 2940, 28 }, - { -474, 6, 2937, 28 }, - { -454, 7, 2933, 28 }, - { -434, 7, 2930, 28 }, - { -414, 7, 2926, 28 }, - { -395, 8, 2923, 28 }, - { -375, 9, 2919, 28 }, - { -356, 9, 2914, 28 }, - { -336, 10, 2910, 28 }, - { -317, 11, 2905, 28 }, - { -297, 11, 2900, 28 }, - { -278, 12, 2895, 28 }, - { -259, 13, 2889, 28 }, - { -240, 12, 2883, 29 }, - { -220, 12, 2877, 29 }, - { -202, 11, 2871, 29 }, - { -183, 10, 2864, 29 }, - { -164, 9, 2857, 29 }, - { -145, 8, 2850, 29 }, - { -127, 7, 2843, 29 }, - { -108, 6, 2835, 29 }, - { -90, 6, 2826, 29 }, - { -72, 4, 2817, 29 }, - { -55, 3, 2808, 29 }, - { -38, 2, 2797, 29 }, - { -21, 1, 2786, 29 }, - { -5, 1, 2774, 29 }, - { 8, 1, 2760, 29 }, - { 22, 1, 2745, 29 }, - { 34, 1, 2730, 29 }, - { 47, 1, 2714, 29 }, - { 58, 1, 2697, 29 }, - { 69, 1, 2680, 29 }, - { 79, 1, 2663, 29 }, - { 89, 1, 2646, 29 }, - { 98, 1, 2628, 30 }, - { 107, 1, 2610, 30 }, - { 115, 1, 2592, 30 }, - { 124, 1, 2574, 30 }, - { 134, 1, 2556, 30 }, - { 144, 1, 2539, 30 }, - { 155, 1, 2522, 30 }, - { 166, 1, 2506, 30 }, - { 178, 1, 2490, 30 }, - { 190, 1, 2474, 30 }, - { 203, 1, 2459, 30 }, - { 217, 1, 2444, 30 }, - { 231, 1, 2429, 30 }, - { 245, 1, 2415, 30 }, - { 259, 1, 2401, 30 }, - { 273, 1, 2387, 30 }, - { 287, 1, 2372, 30 }, - { 300, 1, 2358, 30 }, - { 314, 1, 2343, 30 }, - { 328, 1, 2328, 30 }, - { 341, 1, 2314, 30 }, - { 354, 1, 2299, 30 }, - { 368, 1, 2284, 31 }, - { 380, 1, 2268, 31 }, - { 393, 1, 2253, 31 }, - { 405, 1, 2237, 31 }, - { 418, 1, 2221, 31 }, - { 430, 1, 2205, 31 }, - { 441, 1, 2189, 31 }, - { 453, 1, 2173, 31 }, - { 464, 1, 2156, 31 }, - { 476, 1, 2140, 31 }, - { 487, 1, 2123, 31 }, - { 498, 1, 2106, 31 }, - { 508, 1, 2089, 31 }, - { 519, 1, 2072, 31 }, - { 528, 1, 2055, 31 }, - { 538, 1, 2037, 31 }, - { 546, 1, 2019, 31 }, - { 555, 1, 2001, 31 }, - { 563, 1, 1982, 31 }, - { 570, 1, 1964, 31 }, - { 577, 1, 1945, 31 }, - { 584, 1, 1926, 31 }, - { 590, 1, 1907, 32 }, - { 595, 1, 1888, 32 }, - { 600, 1, 1869, 32 }, - { 605, 1, 1849, 32 }, - { 610, 1, 1830, 32 }, - { 614, 1, 1810, 32 }, - { 618, 1, 1790, 32 }, - { 622, 1, 1771, 32 }, - { 625, 1, 1751, 32 }, - { 627, 1, 1731, 32 }, - { 629, 1, 1711, 32 }, - { 630, 1, 1691, 32 }, - { 630, 1, 1671, 32 }, - { 629, 1, 1651, 32 }, - { 626, 1, 1631, 32 }, - { 622, 1, 1612, 32 }, - { 617, 1, 1592, 32 }, - { 611, 1, 1573, 32 }, - { 603, 1, 1555, 32 }, - { 594, 1, 1537, 32 }, - { 584, 1, 1520, 32 }, - { 572, 1, 1504, 33 }, - { 559, 1, 1489, 33 }, - { 545, 1, 1474, 33 }, - { 531, 1, 1460, 33 }, - { 517, 1, 1446, 33 }, - { 502, 1, 1433, 33 }, - { 487, 1, 1420, 33 }, - { 472, 0, 1407, 33 }, - { 456, 0, 1394, 33 }, - { 441, 0, 1381, 33 }, - { 425, -1, 1369, 33 }, - { 409, -2, 1356, 33 }, - { 394, -2, 1343, 33 }, - { 379, -3, 1330, 33 }, - { 364, -3, 1317, 33 }, - { 349, -3, 1303, 33 }, - { 335, -3, 1290, 33 }, - { 320, -3, 1276, 33 }, - { 306, -3, 1261, 33 }, - { 293, -2, 1247, 33 }, - { 279, -2, 1232, 33 }, - { 266, -1, 1217, 33 }, - { 253, -1, 1201, 33 }, - { 241, -1, 1185, 33 }, - { 229, -1, 1169, 33 }, - { 218, -1, 1153, 33 }, - { 207, -1, 1136, 34 }, - { 196, -1, 1119, 34 }, - { 186, -1, 1102, 34 }, - { 175, -1, 1085, 34 }, - { 165, -1, 1068, 34 }, - { 155, -1, 1050, 34 }, - { 146, -1, 1033, 34 }, - { 136, 0, 1015, 34 }, - { 127, 0, 998, 34 }, - { 117, 0, 980, 34 }, - { 108, 0, 962, 34 }, - { 99, -1, 944, 34 }, - { 90, -2, 926, 34 }, - { 82, -2, 908, 34 }, - { 73, -3, 890, 34 }, - { 65, -3, 872, 34 }, - { 57, -3, 853, 34 }, - { 50, -3, 835, 34 }, - { 43, -3, 816, 34 }, - { 37, -2, 797, 34 }, - { 31, -2, 778, 34 }, - { 25, -1, 759, 34 }, - { 20, 0, 739, 34 }, - { 15, 0, 720, 34 }, - { 10, 0, 701, 35 }, - { 6, 0, 681, 35 }, - { 2, 0, 661, 35 }, - { 0, 0, 642, 35 }, - { -3, 1, 622, 35 }, - { -5, 1, 602, 35 }, - { -7, 1, 582, 35 }, - { -9, 1, 562, 35 }, - { -11, 1, 542, 35 }, - { -13, 5, 522, 255 }, - { -14, 12, 502, 255 }, - { -16, 18, 482, 255 }, - { -17, 8, 462, 35 }, - { -18, 1, 442, 35 }, - { -19, 1, 422, 35 }, - { -20, 1, 402, 35 }, - { -21, 1, 382, 35 }, - { -22, 1, 362, 35 }, - { -23, 1, 342, 35 }, - { -24, 1, 322, 35 }, - { -24, 1, 302, 1 }, - { -25, 1, 282, 1 }, - { -25, 1, 262, 1 }, - { -25, 1, 242, 1 }, - { -25, 1, 222, 1 }, - { -26, 1, 202, 1 }, - { -26, 1, 182, 1 }, - { -26, 1, 162, 1 }, - { -26, 1, 142, 1 }, - { -27, 1, 122, 1 }, - { -28, 1, 102, 1 }, - { -32768, -32768, -32768, 0 }, +#include "courses/koopa_troopa_beach/d_course_koopa_troopa_beach_track_path_2.inc.c" }; +#endif // 0xD628 u8 d_course_koopa_troopa_beach_crab_tlut[] = { @@ -8258,3 +7624,18 @@ Gfx* d_course_koopa_troopa_beach_dl_list2[] = { d_course_koopa_troopa_beach_dl_A9A0, d_course_koopa_troopa_beach_dl_AC10, d_course_koopa_troopa_beach_dl_AAE8, d_course_koopa_troopa_beach_dl_AD40, }; + +#ifdef VERSION_JP /* VERSION_JP path order: JP puts the paths last */ +TrackPathPoint d_course_koopa_troopa_beach_unknown_path[] = { +#include "courses/koopa_troopa_beach/d_course_koopa_troopa_beach_unknown_path.inc.c" +}; +TrackPathPoint d_course_koopa_troopa_beach_unknown_path1[] = { +#include "courses/koopa_troopa_beach/d_course_koopa_troopa_beach_unknown_path1.inc.c" +}; +TrackPathPoint d_course_koopa_troopa_beach_track_path[] = { +#include "courses/koopa_troopa_beach/d_course_koopa_troopa_beach_track_path.inc.c" +}; +TrackPathPoint d_course_koopa_troopa_beach_track_path_2[] = { +#include "courses/koopa_troopa_beach/d_course_koopa_troopa_beach_track_path_2.inc.c" +}; +#endif diff --git a/courses/koopa_troopa_beach/d_course_koopa_troopa_beach_track_path.inc.c b/courses/koopa_troopa_beach/d_course_koopa_troopa_beach_track_path.inc.c new file mode 100644 index 0000000000..730b747293 --- /dev/null +++ b/courses/koopa_troopa_beach/d_course_koopa_troopa_beach_track_path.inc.c @@ -0,0 +1,203 @@ + { -34, 1, 81, 1 }, { -34, 1, 61, 1 }, { -34, 1, 41, 1 }, + { -34, 1, 21, 2 }, { -34, 1, 1, 2 }, { -35, 1, -18, 2 }, + { -35, 1, -38, 2 }, { -35, 1, -58, 2 }, { -36, 1, -78, 2 }, + { -36, 1, -98, 2 }, { -36, 1, -118, 2 }, { -36, 1, -138, 2 }, + { -36, 1, -158, 2 }, { -36, 1, -178, 2 }, { -35, 1, -198, 2 }, + { -35, 1, -218, 2 }, { -34, 1, -238, 2 }, { -32, 1, -258, 3 }, + { -29, 1, -278, 3 }, { -24, 0, -297, 3 }, { -18, 0, -316, 3 }, + { -10, 0, -335, 3 }, { -2, -1, -353, 3 }, { 7, -1, -370, 3 }, + { 17, 0, -388, 3 }, { 27, 0, -405, 3 }, { 38, 0, -422, 3 }, + { 49, 1, -439, 3 }, { 60, 1, -455, 3 }, { 71, 1, -472, 3 }, + { 82, 1, -488, 3 }, { 94, 1, -505, 3 }, { 105, 1, -522, 4 }, + { 115, 1, -539, 4 }, { 125, 1, -556, 4 }, { 133, 1, -575, 4 }, + { 139, 1, -593, 4 }, { 142, 1, -613, 4 }, { 142, 1, -633, 4 }, + { 139, 1, -653, 4 }, { 134, 1, -672, 4 }, { 128, 1, -692, 4 }, + { 121, 1, -710, 4 }, { 112, 1, -728, 4 }, { 102, 1, -745, 4 }, + { 89, 1, -761, 4 }, { 75, 1, -775, 4 }, { 60, 1, -788, 4 }, + { 44, 1, -799, 4 }, { 27, 1, -811, 5 }, { 12, 1, -824, 5 }, + { -1, 1, -838, 5 }, { -15, 1, -853, 5 }, { -28, 1, -868, 5 }, + { -40, 1, -884, 5 }, { -52, 1, -900, 5 }, { -63, 1, -916, 5 }, + { -75, 1, -933, 5 }, { -85, 1, -950, 5 }, { -96, 1, -967, 5 }, + { -106, 1, -984, 5 }, { -116, 1, -1001, 5 }, { -126, 1, -1019, 5 }, + { -135, 1, -1037, 5 }, { -144, 1, -1055, 5 }, { -153, 1, -1073, 5 }, + { -161, 1, -1091, 8 }, { -169, 1, -1109, 8 }, { -177, 1, -1127, 8 }, + { -185, 1, -1146, 8 }, { -192, 1, -1164, 8 }, { -200, 1, -1183, 8 }, + { -209, 1, -1201, 8 }, { -217, 1, -1219, 8 }, { -226, 1, -1237, 8 }, + { -236, 1, -1255, 8 }, { -245, 1, -1272, 8 }, { -255, 1, -1289, 8 }, + { -266, 1, -1306, 8 }, { -277, 1, -1323, 8 }, { -289, 1, -1339, 8 }, + { -301, 1, -1355, 8 }, { -314, 1, -1370, 8 }, { -329, 1, -1384, 8 }, + { -344, 1, -1396, 9 }, { -361, 1, -1407, 9 }, { -380, 1, -1415, 9 }, + { -399, 1, -1420, 9 }, { -419, 1, -1422, 9 }, { -439, 1, -1423, 9 }, + { -459, 1, -1423, 9 }, { -479, 1, -1422, 9 }, { -499, 1, -1420, 9 }, + { -518, 1, -1417, 9 }, { -538, 1, -1414, 9 }, { -558, 1, -1410, 9 }, + { -577, 1, -1406, 9 }, { -597, 1, -1401, 9 }, { -616, 1, -1397, 9 }, + { -636, 1, -1392, 9 }, { -655, 1, -1386, 9 }, { -674, 1, -1381, 10 }, + { -693, 1, -1375, 10 }, { -713, 1, -1370, 10 }, { -732, 2, -1364, 10 }, + { -751, 3, -1358, 10 }, { -770, 3, -1352, 10 }, { -789, 4, -1346, 10 }, + { -808, 4, -1340, 10 }, { -828, 4, -1335, 10 }, { -847, 3, -1329, 10 }, + { -866, 2, -1324, 10 }, { -885, 1, -1318, 10 }, { -905, 1, -1313, 10 }, + { -924, 1, -1308, 10 }, { -943, 1, -1303, 10 }, { -963, 1, -1297, 10 }, + { -982, 1, -1292, 10 }, { -1001, 1, -1287, 10 }, { -1021, 1, -1282, 10 }, + { -1040, 1, -1277, 11 }, { -1059, 1, -1272, 11 }, { -1079, 1, -1267, 11 }, + { -1098, 1, -1261, 11 }, { -1117, 1, -1256, 11 }, { -1136, 1, -1250, 11 }, + { -1155, 1, -1244, 11 }, { -1174, 1, -1238, 11 }, { -1193, 2, -1231, 11 }, + { -1212, 3, -1224, 11 }, { -1231, 3, -1217, 11 }, { -1249, 3, -1209, 11 }, + { -1268, 2, -1201, 11 }, { -1286, 1, -1193, 11 }, { -1304, 1, -1184, 11 }, + { -1321, 1, -1175, 11 }, { -1339, 1, -1164, 11 }, { -1355, 2, -1153, 11 }, + { -1371, 2, -1141, 11 }, { -1386, 3, -1128, 11 }, { -1401, 3, -1114, 11 }, + { -1414, 3, -1100, 12 }, { -1428, 3, -1085, 12 }, { -1440, 2, -1069, 12 }, + { -1452, 1, -1053, 12 }, { -1464, 1, -1037, 12 }, { -1475, 1, -1020, 12 }, + { -1485, 1, -1003, 12 }, { -1495, 1, -986, 12 }, { -1505, 1, -968, 12 }, + { -1514, 1, -950, 12 }, { -1524, 1, -933, 12 }, { -1533, 1, -915, 12 }, + { -1543, 1, -897, 12 }, { -1552, 1, -880, 12 }, { -1561, 1, -862, 12 }, + { -1570, 1, -844, 12 }, { -1580, 1, -826, 13 }, { -1589, 2, -809, 13 }, + { -1598, 2, -791, 13 }, { -1606, 1, -773, 13 }, { -1615, 1, -755, 13 }, + { -1625, 1, -737, 13 }, { -1635, 1, -720, 13 }, { -1646, 1, -703, 13 }, + { -1657, 0, -687, 13 }, { -1669, 0, -671, 13 }, { -1682, 0, -655, 13 }, + { -1695, -1, -640, 13 }, { -1708, -1, -625, 13 }, { -1720, -2, -609, 13 }, + { -1731, -3, -592, 13 }, { -1742, -3, -575, 13 }, { -1751, -4, -558, 13 }, + { -1760, -4, -539, 13 }, { -1767, -5, -521, 13 }, { -1773, -5, -502, 13 }, + { -1779, -5, -483, 13 }, { -1784, -5, -463, 13 }, { -1789, -5, -444, 13 }, + { -1793, -5, -424, 13 }, { -1797, -5, -405, 13 }, { -1800, -5, -385, 13 }, + { -1803, -5, -365, 13 }, { -1806, -5, -345, 14 }, { -1809, -4, -325, 14 }, + { -1811, -4, -306, 14 }, { -1813, -4, -286, 14 }, { -1815, -3, -266, 14 }, + { -1817, -3, -246, 14 }, { -1818, -3, -226, 14 }, { -1820, -2, -206, 14 }, + { -1821, -2, -186, 14 }, { -1822, -2, -166, 14 }, { -1823, -2, -146, 14 }, + { -1823, -2, -126, 14 }, { -1823, -2, -106, 14 }, { -1823, -2, -86, 14 }, + { -1823, -1, -66, 14 }, { -1821, 0, -46, 14 }, { -1819, 0, -26, 14 }, + { -1816, 0, -6, 14 }, { -1813, 0, 12, 14 }, { -1809, 0, 32, 14 }, + { -1805, 0, 52, 14 }, { -1800, 0, 71, 14 }, { -1795, 1, 90, 15 }, + { -1789, 1, 109, 15 }, { -1782, 1, 128, 15 }, { -1776, 3, 147, 255 }, + { -1769, 9, 166, 255 }, { -1762, 16, 185, 255 }, { -1755, 6, 204, 15 }, + { -1747, 1, 222, 15 }, { -1740, 1, 241, 15 }, { -1732, 1, 259, 15 }, + { -1724, 1, 278, 15 }, { -1716, 1, 296, 15 }, { -1708, 1, 314, 15 }, + { -1700, 1, 333, 15 }, { -1692, 1, 351, 15 }, { -1683, 1, 369, 15 }, + { -1674, 1, 387, 15 }, { -1666, 1, 405, 15 }, { -1657, 1, 423, 16 }, + { -1648, 1, 441, 16 }, { -1639, 1, 458, 16 }, { -1630, 1, 476, 16 }, + { -1620, 1, 494, 16 }, { -1611, 1, 512, 16 }, { -1602, 1, 529, 16 }, + { -1592, 1, 547, 16 }, { -1583, 1, 565, 16 }, { -1573, 1, 582, 16 }, + { -1563, 1, 600, 16 }, { -1554, 1, 617, 16 }, { -1544, 1, 634, 16 }, + { -1534, 1, 652, 16 }, { -1524, 1, 669, 16 }, { -1513, 2, 686, 16 }, + { -1503, 2, 704, 17 }, { -1493, 2, 721, 17 }, { -1482, 2, 738, 17 }, + { -1472, 2, 755, 17 }, { -1461, 2, 772, 17 }, { -1451, 2, 789, 17 }, + { -1440, 1, 806, 17 }, { -1429, 1, 823, 17 }, { -1419, 1, 839, 17 }, + { -1408, 1, 856, 17 }, { -1397, 1, 873, 17 }, { -1386, 1, 890, 17 }, + { -1375, 1, 906, 17 }, { -1364, 1, 923, 17 }, { -1352, 1, 939, 17 }, + { -1340, 1, 955, 17 }, { -1328, 1, 971, 19 }, { -1315, 1, 987, 19 }, + { -1302, 1, 1002, 19 }, { -1288, 1, 1017, 19 }, { -1275, 1, 1031, 19 }, + { -1260, 1, 1045, 19 }, { -1245, 1, 1058, 19 }, { -1230, 1, 1071, 19 }, + { -1214, 1, 1084, 19 }, { -1198, 1, 1095, 19 }, { -1181, 1, 1106, 19 }, + { -1165, 1, 1117, 19 }, { -1148, 1, 1128, 19 }, { -1131, 6, 1139, 255 }, + { -1114, 13, 1149, 255 }, { -1097, 20, 1160, 255 }, { -1080, 10, 1170, 21 }, + { -1063, 1, 1181, 21 }, { -1046, 1, 1191, 21 }, { -1028, 1, 1201, 21 }, + { -1011, 1, 1211, 21 }, { -994, 1, 1221, 21 }, { -976, 1, 1231, 21 }, + { -958, 1, 1240, 21 }, { -941, 1, 1249, 21 }, { -923, 1, 1258, 21 }, + { -905, 1, 1267, 21 }, { -887, 6, 1276, 255 }, { -869, 12, 1284, 255 }, + { -850, 19, 1293, 255 }, { -832, 9, 1301, 21 }, { -814, 1, 1310, 21 }, + { -797, 0, 1320, 21 }, { -781, 0, 1332, 21 }, { -765, 0, 1344, 21 }, + { -751, 0, 1358, 21 }, { -738, 0, 1373, 21 }, { -725, 0, 1389, 21 }, + { -714, 0, 1405, 22 }, { -704, 0, 1423, 22 }, { -695, 0, 1440, 22 }, + { -686, 0, 1458, 22 }, { -677, 0, 1476, 22 }, { -669, 1, 1495, 22 }, + { -661, 1, 1513, 22 }, { -653, 1, 1531, 22 }, { -645, 1, 1550, 22 }, + { -638, 1, 1568, 22 }, { -631, 1, 1587, 22 }, { -624, 1, 1606, 22 }, + { -618, 1, 1625, 22 }, { -612, 1, 1644, 22 }, { -607, 1, 1663, 22 }, + { -602, 0, 1683, 22 }, { -598, 0, 1702, 22 }, { -595, 0, 1722, 22 }, + { -592, 0, 1742, 22 }, { -591, 0, 1762, 22 }, { -590, 0, 1782, 23 }, + { -591, 0, 1802, 23 }, { -592, 0, 1822, 23 }, { -594, 0, 1842, 23 }, + { -597, 1, 1862, 23 }, { -601, 1, 1881, 23 }, { -606, 1, 1901, 23 }, + { -612, 1, 1920, 23 }, { -619, 1, 1939, 23 }, { -627, 1, 1957, 23 }, + { -635, 1, 1975, 23 }, { -644, 1, 1993, 23 }, { -654, 1, 2011, 23 }, + { -664, 1, 2028, 23 }, { -676, 1, 2044, 23 }, { -688, 1, 2060, 23 }, + { -701, 1, 2075, 23 }, { -715, 1, 2089, 24 }, { -729, 1, 2103, 24 }, + { -744, 1, 2116, 24 }, { -760, 1, 2129, 24 }, { -776, 1, 2141, 24 }, + { -792, 1, 2153, 24 }, { -809, 1, 2164, 24 }, { -826, 0, 2174, 24 }, + { -843, 0, 2185, 24 }, { -860, 0, 2195, 24 }, { -878, 0, 2204, 24 }, + { -896, 0, 2214, 24 }, { -913, 0, 2223, 24 }, { -931, 0, 2232, 24 }, + { -949, 0, 2240, 24 }, { -968, 0, 2249, 24 }, { -986, 0, 2257, 24 }, + { -1004, 0, 2265, 24 }, { -1022, 0, 2273, 25 }, { -1041, 0, 2281, 25 }, + { -1059, 0, 2290, 25 }, { -1077, 1, 2298, 25 }, { -1095, 1, 2306, 25 }, + { -1113, 1, 2315, 25 }, { -1131, 1, 2323, 25 }, { -1150, 1, 2332, 25 }, + { -1168, 1, 2340, 25 }, { -1186, 1, 2349, 25 }, { -1203, 1, 2359, 25 }, + { -1220, 1, 2370, 25 }, { -1236, 1, 2381, 25 }, { -1252, 1, 2394, 25 }, + { -1266, 1, 2408, 25 }, { -1278, 1, 2424, 25 }, { -1289, 1, 2441, 25 }, + { -1297, 1, 2459, 25 }, { -1304, 1, 2478, 25 }, { -1309, 1, 2497, 25 }, + { -1313, 1, 2517, 26 }, { -1316, 1, 2537, 26 }, { -1317, 2, 2557, 26 }, + { -1318, 2, 2577, 26 }, { -1319, 2, 2597, 26 }, { -1318, 2, 2617, 26 }, + { -1316, 2, 2636, 26 }, { -1313, 1, 2656, 26 }, { -1309, 1, 2676, 26 }, + { -1303, 1, 2695, 26 }, { -1296, 1, 2714, 26 }, { -1288, 1, 2732, 26 }, + { -1277, 1, 2749, 26 }, { -1265, 1, 2765, 26 }, { -1251, 1, 2779, 26 }, + { -1237, 1, 2793, 26 }, { -1222, 1, 2806, 26 }, { -1206, 1, 2819, 26 }, + { -1190, 1, 2831, 26 }, { -1174, 1, 2842, 26 }, { -1157, 1, 2853, 26 }, + { -1140, 1, 2864, 26 }, { -1122, 1, 2873, 26 }, { -1105, 1, 2882, 27 }, + { -1086, 1, 2891, 27 }, { -1068, 1, 2898, 27 }, { -1049, 1, 2906, 27 }, + { -1030, 1, 2912, 27 }, { -1011, 1, 2919, 27 }, { -992, 1, 2924, 27 }, + { -973, 1, 2930, 27 }, { -954, 1, 2935, 27 }, { -934, 1, 2939, 27 }, + { -914, 1, 2943, 27 }, { -895, 1, 2947, 27 }, { -875, 1, 2951, 27 }, + { -855, 1, 2954, 27 }, { -836, 1, 2958, 27 }, { -816, 1, 2960, 27 }, + { -796, 1, 2963, 27 }, { -776, 1, 2965, 27 }, { -756, 1, 2967, 27 }, + { -736, 1, 2969, 27 }, { -716, 1, 2971, 27 }, { -696, 1, 2972, 27 }, + { -676, 1, 2973, 27 }, { -656, 1, 2974, 28 }, { -636, 1, 2974, 28 }, + { -616, 1, 2974, 28 }, { -596, 1, 2974, 28 }, { -576, 2, 2974, 28 }, + { -556, 2, 2973, 28 }, { -536, 3, 2972, 28 }, { -516, 4, 2971, 28 }, + { -496, 4, 2970, 28 }, { -477, 5, 2968, 28 }, { -457, 6, 2966, 28 }, + { -437, 6, 2963, 28 }, { -417, 7, 2960, 28 }, { -397, 7, 2957, 28 }, + { -378, 7, 2953, 28 }, { -358, 8, 2949, 28 }, { -338, 9, 2945, 28 }, + { -319, 9, 2940, 28 }, { -300, 10, 2935, 28 }, { -280, 11, 2929, 28 }, + { -261, 11, 2923, 28 }, { -242, 11, 2917, 29 }, { -224, 11, 2910, 29 }, + { -205, 10, 2903, 29 }, { -186, 10, 2896, 29 }, { -168, 9, 2888, 29 }, + { -150, 8, 2880, 29 }, { -132, 7, 2871, 29 }, { -114, 6, 2862, 29 }, + { -96, 6, 2853, 29 }, { -78, 5, 2843, 29 }, { -61, 4, 2833, 29 }, + { -44, 3, 2822, 29 }, { -27, 2, 2811, 29 }, { -11, 1, 2800, 29 }, + { 4, 1, 2788, 29 }, { 19, 1, 2775, 29 }, { 34, 1, 2761, 29 }, + { 48, 1, 2747, 29 }, { 62, 1, 2733, 29 }, { 74, 1, 2717, 29 }, + { 86, 1, 2701, 29 }, { 98, 1, 2685, 29 }, { 109, 1, 2668, 29 }, + { 119, 1, 2651, 30 }, { 129, 1, 2634, 30 }, { 138, 1, 2616, 30 }, + { 146, 1, 2597, 30 }, { 154, 1, 2579, 30 }, { 160, 1, 2560, 30 }, + { 166, 1, 2541, 30 }, { 171, 1, 2521, 30 }, { 175, 1, 2502, 30 }, + { 181, 1, 2483, 30 }, { 187, 1, 2464, 30 }, { 194, 1, 2445, 30 }, + { 202, 1, 2427, 30 }, { 212, 1, 2409, 30 }, { 224, 1, 2393, 30 }, + { 238, 1, 2379, 30 }, { 253, 1, 2365, 30 }, { 268, 1, 2353, 30 }, + { 285, 1, 2341, 30 }, { 302, 1, 2330, 30 }, { 319, 1, 2320, 30 }, + { 336, 1, 2309, 30 }, { 352, 1, 2298, 30 }, { 368, 1, 2286, 31 }, + { 384, 1, 2275, 31 }, { 400, 1, 2262, 31 }, { 416, 1, 2250, 31 }, + { 431, 1, 2237, 31 }, { 447, 1, 2224, 31 }, { 462, 1, 2211, 31 }, + { 476, 1, 2197, 31 }, { 489, 1, 2182, 31 }, { 501, 1, 2166, 31 }, + { 513, 1, 2150, 31 }, { 523, 1, 2133, 31 }, { 533, 1, 2115, 31 }, + { 542, 1, 2097, 31 }, { 549, 1, 2078, 31 }, { 556, 1, 2060, 31 }, + { 562, 1, 2040, 31 }, { 567, 1, 2021, 31 }, { 573, 1, 2002, 31 }, + { 578, 1, 1983, 31 }, { 584, 1, 1963, 31 }, { 589, 1, 1944, 31 }, + { 594, 1, 1925, 32 }, { 599, 1, 1906, 32 }, { 604, 1, 1886, 32 }, + { 609, 1, 1867, 32 }, { 614, 1, 1847, 32 }, { 619, 1, 1828, 32 }, + { 624, 1, 1809, 32 }, { 628, 1, 1789, 32 }, { 632, 1, 1769, 32 }, + { 636, 1, 1750, 32 }, { 638, 1, 1730, 32 }, { 640, 1, 1710, 32 }, + { 640, 1, 1690, 32 }, { 639, 1, 1670, 32 }, { 634, 1, 1650, 32 }, + { 629, 1, 1631, 32 }, { 622, 1, 1612, 32 }, { 615, 1, 1594, 32 }, + { 607, 1, 1575, 32 }, { 599, 1, 1557, 32 }, { 590, 1, 1539, 32 }, + { 580, 1, 1522, 32 }, { 568, 1, 1506, 33 }, { 556, 1, 1490, 33 }, + { 543, 1, 1475, 33 }, { 529, 1, 1461, 33 }, { 514, 1, 1447, 33 }, + { 499, 1, 1433, 33 }, { 484, 1, 1420, 33 }, { 469, 0, 1407, 33 }, + { 454, 0, 1394, 33 }, { 440, 0, 1380, 33 }, { 426, -1, 1366, 33 }, + { 413, -2, 1351, 33 }, { 399, -3, 1336, 33 }, { 387, -3, 1320, 33 }, + { 374, -4, 1304, 33 }, { 362, -4, 1288, 33 }, { 351, -5, 1272, 33 }, + { 339, -5, 1256, 33 }, { 328, -5, 1239, 33 }, { 317, -4, 1223, 33 }, + { 305, -4, 1206, 33 }, { 294, -4, 1190, 33 }, { 282, -4, 1174, 33 }, + { 270, -3, 1158, 33 }, { 258, -3, 1141, 33 }, { 246, -3, 1125, 34 }, + { 234, -3, 1109, 34 }, { 222, -3, 1093, 34 }, { 210, -3, 1078, 34 }, + { 198, -3, 1062, 34 }, { 185, -2, 1046, 34 }, { 173, -2, 1030, 34 }, + { 161, -2, 1015, 34 }, { 148, -2, 999, 34 }, { 135, -1, 983, 34 }, + { 123, -1, 968, 34 }, { 110, -1, 952, 34 }, { 97, -1, 937, 34 }, + { 85, -2, 922, 34 }, { 72, -2, 906, 34 }, { 59, -2, 891, 34 }, + { 46, -2, 876, 34 }, { 32, -1, 861, 34 }, { 19, 0, 846, 34 }, + { 8, 0, 830, 34 }, { -2, 1, 813, 34 }, { -11, 1, 795, 34 }, + { -20, 1, 777, 34 }, { -27, 1, 758, 34 }, { -33, 1, 739, 34 }, + { -37, 6, 719, 255 }, { -41, 12, 700, 255 }, { -45, 19, 680, 255 }, + { -47, 9, 660, 35 }, { -49, 1, 640, 35 }, { -50, 1, 620, 35 }, + { -50, 1, 600, 35 }, { -49, 1, 580, 35 }, { -48, 1, 560, 35 }, + { -46, 1, 540, 35 }, { -44, 6, 520, 255 }, { -42, 12, 501, 255 }, + { -40, 19, 481, 255 }, { -38, 9, 461, 35 }, { -37, 1, 441, 35 }, + { -36, 1, 421, 35 }, { -35, 1, 401, 35 }, { -34, 1, 381, 35 }, + { -33, 1, 361, 35 }, { -32, 1, 341, 35 }, { -32, 1, 321, 35 }, + { -31, 1, 301, 1 }, { -31, 1, 281, 1 }, { -31, 1, 261, 1 }, + { -31, 1, 241, 1 }, { -31, 1, 221, 1 }, { -31, 1, 201, 1 }, + { -31, 1, 181, 1 }, { -32, 1, 161, 1 }, { -32, 1, 141, 1 }, + { -33, 1, 121, 1 }, { -33, 1, 101, 1 }, { -32768, -32768, -32768, 0 }, diff --git a/courses/koopa_troopa_beach/d_course_koopa_troopa_beach_track_path_2.inc.c b/courses/koopa_troopa_beach/d_course_koopa_troopa_beach_track_path_2.inc.c new file mode 100644 index 0000000000..7442fe11d7 --- /dev/null +++ b/courses/koopa_troopa_beach/d_course_koopa_troopa_beach_track_path_2.inc.c @@ -0,0 +1,559 @@ + { -29, 1, 88, 1 }, + { -29, 1, 68, 1 }, + { -29, 1, 48, 1 }, + { -29, 1, 28, 2 }, + { -29, 1, 8, 2 }, + { -29, 1, -11, 2 }, + { -29, 1, -31, 2 }, + { -29, 1, -51, 2 }, + { -28, 1, -71, 2 }, + { -28, 1, -91, 2 }, + { -28, 1, -111, 2 }, + { -27, 1, -131, 2 }, + { -27, 1, -151, 2 }, + { -27, 1, -171, 2 }, + { -26, 1, -191, 2 }, + { -26, 1, -211, 2 }, + { -25, 1, -231, 2 }, + { -25, 1, -251, 2 }, + { -23, 1, -271, 3 }, + { -20, 0, -291, 3 }, + { -16, 0, -310, 3 }, + { -10, 0, -330, 3 }, + { -3, -1, -348, 3 }, + { 4, -1, -367, 3 }, + { 13, 0, -385, 3 }, + { 22, 0, -402, 3 }, + { 31, 0, -420, 3 }, + { 41, 1, -438, 3 }, + { 51, 1, -455, 3 }, + { 61, 1, -472, 3 }, + { 72, 1, -489, 3 }, + { 82, 1, -506, 3 }, + { 92, 1, -523, 3 }, + { 102, 1, -541, 4 }, + { 110, 1, -559, 4 }, + { 118, 1, -578, 4 }, + { 124, 1, -597, 4 }, + { 127, 1, -617, 4 }, + { 127, 1, -637, 4 }, + { 124, 1, -656, 4 }, + { 119, 1, -676, 4 }, + { 113, 1, -695, 4 }, + { 104, 1, -713, 4 }, + { 95, 1, -731, 4 }, + { 85, 1, -748, 4 }, + { 74, 1, -765, 4 }, + { 63, 1, -781, 4 }, + { 51, 1, -797, 4 }, + { 38, 1, -812, 4 }, + { 24, 1, -827, 5 }, + { 9, 1, -840, 5 }, + { -6, 1, -853, 5 }, + { -22, 1, -864, 5 }, + { -39, 1, -875, 5 }, + { -56, 1, -885, 5 }, + { -74, 1, -895, 5 }, + { -92, 1, -903, 5 }, + { -110, 1, -910, 5 }, + { -129, 1, -916, 5 }, + { -149, 1, -921, 5 }, + { -169, 1, -925, 5 }, + { -188, 2, -927, 5 }, + { -208, 2, -927, 5 }, + { -228, 2, -926, 5 }, + { -248, 2, -924, 5 }, + { -268, 1, -922, 5 }, + { -288, 1, -919, 5 }, + { -308, 1, -917, 5 }, + { -328, 1, -914, 6 }, + { -348, 1, -910, 6 }, + { -367, 1, -907, 6 }, + { -387, 1, -903, 6 }, + { -407, 1, -899, 6 }, + { -426, 1, -896, 6 }, + { -446, 1, -892, 6 }, + { -466, 1, -889, 6 }, + { -485, 1, -886, 6 }, + { -505, 1, -883, 6 }, + { -525, 1, -881, 6 }, + { -545, 1, -880, 6 }, + { -565, 1, -880, 6 }, + { -585, 1, -882, 6 }, + { -605, 1, -885, 6 }, + { -624, 1, -891, 6 }, + { -642, 1, -899, 6 }, + { -659, 1, -910, 6 }, + { -674, 1, -923, 7 }, + { -689, 1, -937, 7 }, + { -702, 1, -952, 7 }, + { -714, 1, -968, 7 }, + { -725, 1, -985, 7 }, + { -734, 1, -1002, 7 }, + { -742, 1, -1021, 7 }, + { -750, 1, -1039, 7 }, + { -760, 1, -1056, 7 }, + { -770, 1, -1074, 7 }, + { -781, 1, -1090, 7 }, + { -792, 1, -1107, 7 }, + { -804, 1, -1123, 7 }, + { -816, 1, -1139, 7 }, + { -828, 1, -1155, 7 }, + { -842, 1, -1170, 7 }, + { -856, 1, -1184, 7 }, + { -872, 1, -1196, 7 }, + { -889, 1, -1207, 10 }, + { -907, 1, -1215, 10 }, + { -926, 1, -1221, 10 }, + { -946, 1, -1225, 10 }, + { -966, 1, -1226, 10 }, + { -986, 1, -1227, 10 }, + { -1006, 1, -1225, 10 }, + { -1026, 1, -1224, 11 }, + { -1045, 1, -1221, 11 }, + { -1065, 1, -1219, 11 }, + { -1085, 1, -1216, 11 }, + { -1105, 1, -1213, 11 }, + { -1125, 1, -1210, 11 }, + { -1144, 1, -1206, 11 }, + { -1164, 1, -1202, 11 }, + { -1183, 2, -1197, 11 }, + { -1202, 2, -1191, 11 }, + { -1221, 3, -1185, 11 }, + { -1240, 3, -1178, 11 }, + { -1259, 2, -1171, 11 }, + { -1277, 1, -1163, 11 }, + { -1296, 1, -1155, 11 }, + { -1314, 1, -1147, 11 }, + { -1332, 1, -1138, 11 }, + { -1349, 2, -1128, 11 }, + { -1366, 2, -1117, 11 }, + { -1382, 3, -1106, 11 }, + { -1398, 3, -1093, 11 }, + { -1413, 3, -1080, 12 }, + { -1427, 2, -1066, 12 }, + { -1441, 2, -1052, 12 }, + { -1455, 1, -1037, 12 }, + { -1468, 1, -1022, 12 }, + { -1480, 1, -1006, 12 }, + { -1492, 1, -990, 12 }, + { -1504, 1, -973, 12 }, + { -1515, 1, -957, 12 }, + { -1526, 1, -940, 12 }, + { -1537, 1, -924, 12 }, + { -1548, 1, -907, 12 }, + { -1559, 1, -890, 12 }, + { -1570, 1, -873, 12 }, + { -1580, 1, -856, 12 }, + { -1591, 1, -839, 13 }, + { -1601, 1, -822, 13 }, + { -1612, 1, -805, 13 }, + { -1622, 1, -788, 13 }, + { -1632, 0, -771, 13 }, + { -1642, 0, -753, 13 }, + { -1652, 0, -736, 13 }, + { -1662, 0, -718, 13 }, + { -1671, 0, -701, 13 }, + { -1681, 0, -684, 13 }, + { -1691, 0, -666, 13 }, + { -1701, -1, -649, 13 }, + { -1712, -1, -632, 13 }, + { -1722, -2, -615, 13 }, + { -1733, -3, -598, 13 }, + { -1744, -3, -581, 13 }, + { -1755, -4, -565, 13 }, + { -1765, -5, -547, 13 }, + { -1773, -5, -529, 13 }, + { -1779, -5, -510, 13 }, + { -1784, -5, -491, 13 }, + { -1789, -5, -471, 13 }, + { -1792, -5, -451, 13 }, + { -1795, -5, -432, 13 }, + { -1798, -5, -412, 13 }, + { -1800, -5, -392, 13 }, + { -1802, -5, -372, 13 }, + { -1804, -5, -352, 14 }, + { -1806, -4, -332, 14 }, + { -1808, -4, -312, 14 }, + { -1810, -4, -292, 14 }, + { -1812, -3, -272, 14 }, + { -1814, -3, -252, 14 }, + { -1816, -3, -233, 14 }, + { -1818, -2, -213, 14 }, + { -1820, -2, -193, 14 }, + { -1821, -2, -173, 14 }, + { -1823, -2, -153, 14 }, + { -1825, -2, -133, 14 }, + { -1827, -3, -113, 14 }, + { -1827, -2, -93, 14 }, + { -1828, -2, -73, 14 }, + { -1827, -1, -53, 14 }, + { -1827, -1, -33, 14 }, + { -1825, 0, -13, 14 }, + { -1823, 0, 6, 14 }, + { -1821, 0, 26, 14 }, + { -1818, 0, 45, 14 }, + { -1814, 0, 65, 14 }, + { -1810, 0, 85, 14 }, + { -1805, 1, 104, 15 }, + { -1800, 1, 124, 15 }, + { -1794, 1, 143, 15 }, + { -1789, 5, 162, 255 }, + { -1783, 12, 181, 255 }, + { -1777, 2, 200, 15 }, + { -1772, 0, 220, 15 }, + { -1766, 0, 239, 15 }, + { -1760, 0, 258, 15 }, + { -1754, 0, 277, 15 }, + { -1748, 0, 296, 15 }, + { -1742, 0, 315, 15 }, + { -1736, -1, 334, 15 }, + { -1730, -1, 353, 15 }, + { -1724, -1, 372, 15 }, + { -1718, -1, 391, 15 }, + { -1711, -1, 410, 15 }, + { -1705, -1, 430, 15 }, + { -1700, -1, 449, 16 }, + { -1694, -1, 468, 16 }, + { -1689, -1, 487, 16 }, + { -1684, -1, 507, 16 }, + { -1680, -2, 526, 16 }, + { -1676, -2, 546, 16 }, + { -1672, -2, 565, 16 }, + { -1669, -2, 585, 16 }, + { -1666, -2, 605, 16 }, + { -1663, -2, 625, 16 }, + { -1661, -1, 645, 16 }, + { -1659, -1, 665, 17 }, + { -1658, -1, 685, 17 }, + { -1657, -1, 705, 17 }, + { -1657, 0, 725, 17 }, + { -1657, 0, 745, 17 }, + { -1657, 0, 765, 17 }, + { -1658, 0, 785, 17 }, + { -1659, 0, 805, 17 }, + { -1660, 0, 825, 17 }, + { -1661, 0, 845, 17 }, + { -1663, 0, 865, 17 }, + { -1665, 0, 885, 17 }, + { -1667, 0, 904, 17 }, + { -1669, 0, 924, 17 }, + { -1671, -1, 944, 17 }, + { -1674, -1, 964, 17 }, + { -1677, -1, 984, 17 }, + { -1679, -1, 1004, 17 }, + { -1682, -1, 1024, 17 }, + { -1685, -1, 1043, 18 }, + { -1688, -1, 1063, 18 }, + { -1691, 0, 1083, 18 }, + { -1693, 0, 1103, 18 }, + { -1696, 0, 1123, 18 }, + { -1699, 0, 1142, 18 }, + { -1702, 0, 1162, 18 }, + { -1705, 0, 1182, 18 }, + { -1708, 0, 1202, 18 }, + { -1710, -1, 1222, 18 }, + { -1709, -1, 1242, 18 }, + { -1705, -2, 1261, 18 }, + { -1698, -2, 1280, 18 }, + { -1691, -2, 1299, 18 }, + { -1683, -2, 1317, 18 }, + { -1675, -1, 1335, 18 }, + { -1667, -1, 1354, 18 }, + { -1659, -2, 1372, 18 }, + { -1651, -3, 1390, 18 }, + { -1642, -3, 1408, 18 }, + { -1633, -3, 1426, 18 }, + { -1624, -3, 1444, 18 }, + { -1614, -3, 1461, 18 }, + { -1604, -4, 1479, 18 }, + { -1593, -4, 1496, 18 }, + { -1583, -4, 1513, 18 }, + { -1572, -5, 1530, 18 }, + { -1561, -5, 1546, 20 }, + { -1550, -5, 1563, 20 }, + { -1539, -6, 1580, 20 }, + { -1528, -6, 1596, 20 }, + { -1518, -7, 1614, 36 }, + { -1510, -7, 1632, 36 }, + { -1504, -7, 1651, 36 }, + { -1498, -7, 1670, 36 }, + { -1493, -7, 1690, 36 }, + { -1489, -7, 1709, 36 }, + { -1485, -7, 1729, 36 }, + { -1481, -7, 1749, 36 }, + { -1477, -7, 1768, 36 }, + { -1473, -7, 1788, 36 }, + { -1469, -7, 1807, 36 }, + { -1465, -7, 1827, 36 }, + { -1461, -7, 1847, 36 }, + { -1457, -7, 1866, 36 }, + { -1453, -7, 1886, 36 }, + { -1448, -7, 1905, 36 }, + { -1443, -7, 1925, 36 }, + { -1438, -7, 1944, 36 }, + { -1433, -7, 1963, 36 }, + { -1427, -7, 1982, 36 }, + { -1421, -7, 2002, 36 }, + { -1415, -7, 2021, 36 }, + { -1409, -7, 2040, 36 }, + { -1402, -7, 2059, 36 }, + { -1396, -7, 2078, 36 }, + { -1389, -7, 2096, 36 }, + { -1383, -7, 2115, 36 }, + { -1377, -7, 2135, 36 }, + { -1371, -7, 2154, 36 }, + { -1365, -7, 2173, 36 }, + { -1359, -7, 2192, 36 }, + { -1354, -6, 2211, 25 }, + { -1349, -6, 2231, 25 }, + { -1344, -5, 2250, 25 }, + { -1340, -5, 2270, 25 }, + { -1336, -4, 2289, 25 }, + { -1333, -4, 2309, 25 }, + { -1330, -3, 2329, 25 }, + { -1328, -3, 2349, 25 }, + { -1326, -2, 2369, 25 }, + { -1325, 0, 2389, 25 }, + { -1324, 0, 2409, 25 }, + { -1323, 1, 2429, 25 }, + { -1323, 1, 2449, 25 }, + { -1323, 1, 2469, 25 }, + { -1322, 1, 2489, 25 }, + { -1322, 1, 2509, 26 }, + { -1321, 1, 2529, 26 }, + { -1320, 2, 2549, 26 }, + { -1318, 2, 2569, 26 }, + { -1316, 3, 2589, 26 }, + { -1314, 3, 2608, 26 }, + { -1312, 2, 2628, 26 }, + { -1309, 2, 2648, 26 }, + { -1305, 1, 2668, 26 }, + { -1301, 1, 2687, 26 }, + { -1297, 1, 2707, 26 }, + { -1291, 1, 2726, 26 }, + { -1283, 1, 2745, 26 }, + { -1275, 1, 2763, 26 }, + { -1264, 1, 2780, 26 }, + { -1252, 1, 2796, 26 }, + { -1239, 1, 2811, 26 }, + { -1225, 1, 2825, 26 }, + { -1209, 1, 2838, 26 }, + { -1193, 1, 2849, 26 }, + { -1176, 1, 2860, 26 }, + { -1159, 1, 2869, 26 }, + { -1141, 1, 2878, 26 }, + { -1122, 1, 2886, 27 }, + { -1104, 1, 2894, 27 }, + { -1085, 1, 2901, 27 }, + { -1067, 1, 2908, 27 }, + { -1048, 1, 2915, 27 }, + { -1028, 1, 2921, 27 }, + { -1009, 1, 2926, 27 }, + { -990, 1, 2932, 27 }, + { -971, 1, 2937, 27 }, + { -951, 1, 2941, 27 }, + { -932, 1, 2945, 27 }, + { -912, 1, 2949, 27 }, + { -892, 1, 2952, 27 }, + { -872, 1, 2954, 27 }, + { -852, 1, 2956, 27 }, + { -832, 1, 2958, 27 }, + { -812, 1, 2959, 27 }, + { -792, 1, 2960, 27 }, + { -772, 1, 2961, 27 }, + { -752, 1, 2961, 27 }, + { -732, 1, 2961, 27 }, + { -712, 1, 2960, 27 }, + { -692, 1, 2960, 27 }, + { -672, 1, 2958, 27 }, + { -652, 1, 2957, 28 }, + { -632, 1, 2956, 28 }, + { -613, 1, 2954, 28 }, + { -593, 2, 2952, 28 }, + { -573, 2, 2950, 28 }, + { -553, 3, 2948, 28 }, + { -533, 4, 2945, 28 }, + { -513, 5, 2943, 28 }, + { -493, 5, 2940, 28 }, + { -474, 6, 2937, 28 }, + { -454, 7, 2933, 28 }, + { -434, 7, 2930, 28 }, + { -414, 7, 2926, 28 }, + { -395, 8, 2923, 28 }, + { -375, 9, 2919, 28 }, + { -356, 9, 2914, 28 }, + { -336, 10, 2910, 28 }, + { -317, 11, 2905, 28 }, + { -297, 11, 2900, 28 }, + { -278, 12, 2895, 28 }, + { -259, 13, 2889, 28 }, + { -240, 12, 2883, 29 }, + { -220, 12, 2877, 29 }, + { -202, 11, 2871, 29 }, + { -183, 10, 2864, 29 }, + { -164, 9, 2857, 29 }, + { -145, 8, 2850, 29 }, + { -127, 7, 2843, 29 }, + { -108, 6, 2835, 29 }, + { -90, 6, 2826, 29 }, + { -72, 4, 2817, 29 }, + { -55, 3, 2808, 29 }, + { -38, 2, 2797, 29 }, + { -21, 1, 2786, 29 }, + { -5, 1, 2774, 29 }, + { 8, 1, 2760, 29 }, + { 22, 1, 2745, 29 }, + { 34, 1, 2730, 29 }, + { 47, 1, 2714, 29 }, + { 58, 1, 2697, 29 }, + { 69, 1, 2680, 29 }, + { 79, 1, 2663, 29 }, + { 89, 1, 2646, 29 }, + { 98, 1, 2628, 30 }, + { 107, 1, 2610, 30 }, + { 115, 1, 2592, 30 }, + { 124, 1, 2574, 30 }, + { 134, 1, 2556, 30 }, + { 144, 1, 2539, 30 }, + { 155, 1, 2522, 30 }, + { 166, 1, 2506, 30 }, + { 178, 1, 2490, 30 }, + { 190, 1, 2474, 30 }, + { 203, 1, 2459, 30 }, + { 217, 1, 2444, 30 }, + { 231, 1, 2429, 30 }, + { 245, 1, 2415, 30 }, + { 259, 1, 2401, 30 }, + { 273, 1, 2387, 30 }, + { 287, 1, 2372, 30 }, + { 300, 1, 2358, 30 }, + { 314, 1, 2343, 30 }, + { 328, 1, 2328, 30 }, + { 341, 1, 2314, 30 }, + { 354, 1, 2299, 30 }, + { 368, 1, 2284, 31 }, + { 380, 1, 2268, 31 }, + { 393, 1, 2253, 31 }, + { 405, 1, 2237, 31 }, + { 418, 1, 2221, 31 }, + { 430, 1, 2205, 31 }, + { 441, 1, 2189, 31 }, + { 453, 1, 2173, 31 }, + { 464, 1, 2156, 31 }, + { 476, 1, 2140, 31 }, + { 487, 1, 2123, 31 }, + { 498, 1, 2106, 31 }, + { 508, 1, 2089, 31 }, + { 519, 1, 2072, 31 }, + { 528, 1, 2055, 31 }, + { 538, 1, 2037, 31 }, + { 546, 1, 2019, 31 }, + { 555, 1, 2001, 31 }, + { 563, 1, 1982, 31 }, + { 570, 1, 1964, 31 }, + { 577, 1, 1945, 31 }, + { 584, 1, 1926, 31 }, + { 590, 1, 1907, 32 }, + { 595, 1, 1888, 32 }, + { 600, 1, 1869, 32 }, + { 605, 1, 1849, 32 }, + { 610, 1, 1830, 32 }, + { 614, 1, 1810, 32 }, + { 618, 1, 1790, 32 }, + { 622, 1, 1771, 32 }, + { 625, 1, 1751, 32 }, + { 627, 1, 1731, 32 }, + { 629, 1, 1711, 32 }, + { 630, 1, 1691, 32 }, + { 630, 1, 1671, 32 }, + { 629, 1, 1651, 32 }, + { 626, 1, 1631, 32 }, + { 622, 1, 1612, 32 }, + { 617, 1, 1592, 32 }, + { 611, 1, 1573, 32 }, + { 603, 1, 1555, 32 }, + { 594, 1, 1537, 32 }, + { 584, 1, 1520, 32 }, + { 572, 1, 1504, 33 }, + { 559, 1, 1489, 33 }, + { 545, 1, 1474, 33 }, + { 531, 1, 1460, 33 }, + { 517, 1, 1446, 33 }, + { 502, 1, 1433, 33 }, + { 487, 1, 1420, 33 }, + { 472, 0, 1407, 33 }, + { 456, 0, 1394, 33 }, + { 441, 0, 1381, 33 }, + { 425, -1, 1369, 33 }, + { 409, -2, 1356, 33 }, + { 394, -2, 1343, 33 }, + { 379, -3, 1330, 33 }, + { 364, -3, 1317, 33 }, + { 349, -3, 1303, 33 }, + { 335, -3, 1290, 33 }, + { 320, -3, 1276, 33 }, + { 306, -3, 1261, 33 }, + { 293, -2, 1247, 33 }, + { 279, -2, 1232, 33 }, + { 266, -1, 1217, 33 }, + { 253, -1, 1201, 33 }, + { 241, -1, 1185, 33 }, + { 229, -1, 1169, 33 }, + { 218, -1, 1153, 33 }, + { 207, -1, 1136, 34 }, + { 196, -1, 1119, 34 }, + { 186, -1, 1102, 34 }, + { 175, -1, 1085, 34 }, + { 165, -1, 1068, 34 }, + { 155, -1, 1050, 34 }, + { 146, -1, 1033, 34 }, + { 136, 0, 1015, 34 }, + { 127, 0, 998, 34 }, + { 117, 0, 980, 34 }, + { 108, 0, 962, 34 }, + { 99, -1, 944, 34 }, + { 90, -2, 926, 34 }, + { 82, -2, 908, 34 }, + { 73, -3, 890, 34 }, + { 65, -3, 872, 34 }, + { 57, -3, 853, 34 }, + { 50, -3, 835, 34 }, + { 43, -3, 816, 34 }, + { 37, -2, 797, 34 }, + { 31, -2, 778, 34 }, + { 25, -1, 759, 34 }, + { 20, 0, 739, 34 }, + { 15, 0, 720, 34 }, + { 10, 0, 701, 35 }, + { 6, 0, 681, 35 }, + { 2, 0, 661, 35 }, + { 0, 0, 642, 35 }, + { -3, 1, 622, 35 }, + { -5, 1, 602, 35 }, + { -7, 1, 582, 35 }, + { -9, 1, 562, 35 }, + { -11, 1, 542, 35 }, + { -13, 5, 522, 255 }, + { -14, 12, 502, 255 }, + { -16, 18, 482, 255 }, + { -17, 8, 462, 35 }, + { -18, 1, 442, 35 }, + { -19, 1, 422, 35 }, + { -20, 1, 402, 35 }, + { -21, 1, 382, 35 }, + { -22, 1, 362, 35 }, + { -23, 1, 342, 35 }, + { -24, 1, 322, 35 }, + { -24, 1, 302, 1 }, + { -25, 1, 282, 1 }, + { -25, 1, 262, 1 }, + { -25, 1, 242, 1 }, + { -25, 1, 222, 1 }, + { -26, 1, 202, 1 }, + { -26, 1, 182, 1 }, + { -26, 1, 162, 1 }, + { -26, 1, 142, 1 }, + { -27, 1, 122, 1 }, + { -28, 1, 102, 1 }, + { -32768, -32768, -32768, 0 }, diff --git a/courses/koopa_troopa_beach/d_course_koopa_troopa_beach_unknown_path.inc.c b/courses/koopa_troopa_beach/d_course_koopa_troopa_beach_unknown_path.inc.c new file mode 100644 index 0000000000..0573fef817 --- /dev/null +++ b/courses/koopa_troopa_beach/d_course_koopa_troopa_beach_unknown_path.inc.c @@ -0,0 +1,13 @@ + { -34, 0, 103, 0 }, { -34, 0, 60, 0 }, { -38, 0, -184, 0 }, { -30, 0, -304, 0 }, { 36, 0, -422, 0 }, + { 137, 0, -566, 0 }, { 147, 0, -645, 0 }, { 103, 0, -761, 0 }, { -12, 0, -837, 0 }, { -139, 0, -1031, 0 }, + { -230, 0, -1258, 0 }, { -343, 0, -1414, 0 }, { -465, 0, -1429, 0 }, { -629, 0, -1397, 0 }, { -853, 0, -1326, 0 }, + { -1222, 0, -1231, 0 }, { -1424, 0, -1118, 0 }, { -1576, 0, -838, 0 }, { -1641, 0, -702, 0 }, { -1744, 0, -587, 0 }, + { -1793, 0, -450, 0 }, { -1823, 0, -218, 0 }, { -1825, 0, 11, 0 }, { -1734, 0, 267, 0 }, { -1607, 0, 526, 0 }, + { -1468, 0, 767, 0 }, { -1290, 0, 1036, 0 }, { -1093, 0, 1165, 0 }, { -929, 0, 1259, 0 }, { -748, 0, 1338, 0 }, + { -651, 0, 1527, 0 }, { -586, 0, 1723, 0 }, { -597, 0, 1900, 0 }, { -683, 0, 2071, 0 }, { -847, 0, 2195, 0 }, + { -1098, 0, 2307, 0 }, { -1251, 0, 2381, 0 }, { -1314, 0, 2479, 0 }, { -1323, 0, 2652, 0 }, { -1269, 0, 2781, 0 }, + { -1057, 0, 2920, 0 }, { -684, 0, 2985, 0 }, { -318, 0, 2956, 0 }, { 3, 0, 2811, 0 }, { 148, 0, 2623, 0 }, + { 190, 0, 2438, 0 }, { 249, 0, 2362, 0 }, { 367, 0, 2293, 0 }, { 529, 0, 2155, 0 }, { 593, 0, 1936, 0 }, + { 649, 0, 1712, 0 }, { 626, 0, 1611, 0 }, { 565, 0, 1487, 0 }, { 409, 0, 1359, 0 }, { 265, 0, 1146, 0 }, + { 88, 0, 923, 0 }, { -21, 0, 802, 0 }, { -57, 0, 628, 0 }, { -36, 0, 454, 0 }, { -30, 0, 237, 0 }, + { -32, 0, 136, 0 }, { -32768, 0, 0, 0 }, diff --git a/courses/koopa_troopa_beach/d_course_koopa_troopa_beach_unknown_path1.inc.c b/courses/koopa_troopa_beach/d_course_koopa_troopa_beach_unknown_path1.inc.c new file mode 100644 index 0000000000..47ad4e4c49 --- /dev/null +++ b/courses/koopa_troopa_beach/d_course_koopa_troopa_beach_unknown_path1.inc.c @@ -0,0 +1,15 @@ + { -27, 0, 101, 7 }, { -31, 0, 76, 7 }, { -27, 0, -187, 7 }, { -24, 0, -305, 7 }, + { 26, 0, -415, 7 }, { 119, 0, -564, 7 }, { 133, 0, -646, 7 }, { 94, 0, -742, 7 }, + { 8, 0, -853, 7 }, { -150, 0, -934, 7 }, { -310, 0, -919, 7 }, { -471, 0, -887, 7 }, + { -574, 0, -877, 7 }, { -652, 0, -898, 7 }, { -723, 0, -973, 7 }, { -759, 0, -1062, 7 }, + { -855, 0, -1193, 7 }, { -937, 0, -1229, 7 }, { -1036, 0, -1225, 7 }, { -1207, 0, -1197, 7 }, + { -1417, 0, -1101, 7 }, { -1591, 0, -847, 7 }, { -1719, 0, -616, 7 }, { -1787, 0, -523, 7 }, + { -1812, 0, -278, 7 }, { -1838, 0, -6, 7 }, { -1760, 0, 264, 7 }, { -1668, 0, 545, 7 }, + { -1651, 0, 794, 7 }, { -1700, 0, 1150, 7 }, { -1715, 0, 1239, 7 }, { -1690, 0, 1303, 7 }, + { -1634, 0, 1431, 7 }, { -1566, 0, 1542, 7 }, { -1509, 0, 1623, 7 }, { -1481, 0, 1748, 7 }, + { -1442, 0, 1947, 7 }, { -1360, 0, 2182, 7 }, { -1324, 0, 2342, 7 }, { -1322, 0, 2598, 7 }, + { -1279, 0, 2790, 7 }, { -1126, 0, 2897, 7 }, { -827, 0, 2975, 7 }, { -389, 0, 2933, 7 }, + { -51, 0, 2822, 7 }, { 66, 0, 2701, 7 }, { 155, 0, 2506, 7 }, { 312, 0, 2349, 7 }, + { 426, 0, 2217, 7 }, { 568, 0, 2000, 7 }, { 636, 0, 1730, 7 }, { 624, 0, 1589, 7 }, + { 560, 0, 1476, 7 }, { 296, 0, 1266, 7 }, { 154, 0, 1059, 7 }, { 8, 0, 753, 7 }, + { -24, 0, 409, 7 }, { -28, 0, 128, 7 }, { -32768, 0, 0, 0 }, diff --git a/courses/luigi_raceway/course_data.c b/courses/luigi_raceway/course_data.c index 89c360fb7e..699d467f28 100644 --- a/courses/luigi_raceway/course_data.c +++ b/courses/luigi_raceway/course_data.c @@ -99,29 +99,53 @@ Gfx d_course_luigi_raceway_dl_328[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_A620), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A2A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2130), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_2B58), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_AC70), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_33C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3448), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_B530), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_B590), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_39C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_49B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4A28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B10), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7CF0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7D60), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F68), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), @@ -130,10 +154,18 @@ Gfx d_course_luigi_raceway_dl_328[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_45B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4540), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), gsSPEndDisplayList(), }; @@ -145,8 +177,14 @@ Gfx d_course_luigi_raceway_dl_480[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_C260), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D00), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1BD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_24E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2458), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_A688), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A620), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_A7A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A2A8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A688), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A620), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A7A8), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A2A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2130), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A490), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2B58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AC08), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AC70), gsSPDisplayList(d_course_luigi_raceway_packed_dl_33C8), @@ -155,9 +193,20 @@ Gfx d_course_luigi_raceway_dl_480[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_B878), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B8E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_39C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6EF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6EF0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), @@ -166,17 +215,41 @@ Gfx d_course_luigi_raceway_dl_480[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_A088), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7CF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7DD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7E50), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F68), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F68), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_8AB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8B18), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8CB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8D20), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_53E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6300), gsSPDisplayList(d_course_luigi_raceway_packed_dl_60E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5ED8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), +#endif + gsSPEndDisplayList(), }; Gfx d_course_luigi_raceway_dl_6E0[] = { @@ -263,23 +336,63 @@ Gfx d_course_luigi_raceway_dl_9F8[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_24E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2458), gsSPDisplayList(d_course_luigi_raceway_packed_dl_23E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A620), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A7A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A430), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_ACD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_33C8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_ACD8), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_33C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3448), gsSPDisplayList(d_course_luigi_raceway_packed_dl_34C8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_B590), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B600), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_B948), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B590), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B600), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B948), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7CF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7D60), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7DD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7CF0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7D60), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7DD8), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F68), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8128), gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_45B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4540), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), gsSPEndDisplayList(), }; @@ -297,7 +410,9 @@ Gfx d_course_luigi_raceway_dl_B48[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_2458), gsSPDisplayList(d_course_luigi_raceway_packed_dl_23E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A620), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A430), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_A490), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A4F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_ACD8), @@ -314,12 +429,16 @@ Gfx d_course_luigi_raceway_dl_B48[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), @@ -332,19 +451,35 @@ Gfx d_course_luigi_raceway_dl_B48[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7CF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7DD8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F68), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_8A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8AB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8CB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8D20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8D88), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_53E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_51D8), @@ -352,8 +487,12 @@ Gfx d_course_luigi_raceway_dl_B48[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_60E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5ED8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), +#endif gsSPEndDisplayList(), }; @@ -435,23 +574,67 @@ Gfx d_course_luigi_raceway_dl_1058[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_A748), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2458), gsSPDisplayList(d_course_luigi_raceway_packed_dl_23E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2368), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A7A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A430), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_A490), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A4F8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_B470), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3448), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A490), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A4F8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B470), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3448), gsSPDisplayList(d_course_luigi_raceway_packed_dl_34C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3548), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_B600), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B600), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7BF8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7CF0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_A1B0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7BF8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7CF0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A1B0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_8448), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), gsSPDisplayList(d_course_luigi_raceway_packed_dl_80B0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8128), gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_45B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4540), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), +#endif + gsSPEndDisplayList(), }; Gfx d_course_luigi_raceway_dl_1198[] = { @@ -459,9 +642,17 @@ Gfx d_course_luigi_raceway_dl_1198[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_18B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1848), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D68), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D00), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1BD8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_A748), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2458), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A748), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_2458), gsSPDisplayList(d_course_luigi_raceway_packed_dl_23E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2368), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_A7A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A430), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A7A8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A430), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_A490), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A4F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_ACD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B470), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3448), gsSPDisplayList(d_course_luigi_raceway_packed_dl_34C8), @@ -469,24 +660,60 @@ Gfx d_course_luigi_raceway_dl_1198[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_B678), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B948), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6EF0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6EF0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_49B8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_49B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4A28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B10), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A028), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7BF8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7CF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A1B0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7DD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_8448), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), gsSPDisplayList(d_course_luigi_raceway_packed_dl_80B0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8A58), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7DD8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8448), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_80B0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8AB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8D88), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_53E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_51D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), gsSPEndDisplayList(), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), +#endif + gsSPEndDisplayList(), }; Gfx d_course_luigi_raceway_dl_1398[] = { @@ -551,30 +778,100 @@ Gfx d_course_luigi_raceway_dl_16D8[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_A748), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A6E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_23E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2368), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2560), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A810), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_A430), gsSPDisplayList(d_course_luigi_raceway_packed_dl_21A8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_A4F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A558), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_B470), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B4D0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A430), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_21A8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A4F8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A558), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B470), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B4D0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_34C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3548), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_35D0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B678), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_B408), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B948), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_35D0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B678), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B408), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B948), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6EF0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_4A28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B10), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4A28), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B10), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7B80), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7BF8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A150), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8448), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A150), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8448), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), gsSPDisplayList(d_course_luigi_raceway_packed_dl_80B0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8128), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_45B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4540), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8AB8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8AB8), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), +#endif + gsSPEndDisplayList(), }; Gfx d_course_luigi_raceway_dl_1888[] = { @@ -588,7 +885,9 @@ Gfx d_course_luigi_raceway_dl_1888[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D00), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1BD8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A6E8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_23E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2368), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2560), @@ -603,8 +902,12 @@ Gfx d_course_luigi_raceway_dl_1888[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_35D0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B678), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B408), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_B948), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), @@ -616,9 +919,15 @@ Gfx d_course_luigi_raceway_dl_1888[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6680), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6728), gsSPDisplayList(d_course_luigi_raceway_packed_dl_67D0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_9098), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9120), gsSPDisplayList(d_course_luigi_raceway_packed_dl_91A8), @@ -626,26 +935,48 @@ Gfx d_course_luigi_raceway_dl_1888[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_92B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_95B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9960), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4A28), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B10), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7B80), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7BF8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A150), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A1B0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8448), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_80B0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8128), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8AB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8B18), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_53E0), @@ -653,15 +984,25 @@ Gfx d_course_luigi_raceway_dl_1888[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), +#endif gsSPEndDisplayList(), }; Gfx d_course_luigi_raceway_dl_1B00[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1AC8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1A28), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_2368), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2560), gsSPDisplayList(d_course_luigi_raceway_packed_dl_25E8), @@ -768,32 +1109,82 @@ Gfx d_course_luigi_raceway_dl_1C78[] = { }; Gfx d_course_luigi_raceway_dl_1E30[] = { - gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D68), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D00), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A6E8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D68), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D00), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A6E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A688), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2368), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2560), gsSPDisplayList(d_course_luigi_raceway_packed_dl_25E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_21A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2210), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_A558), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B4D0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A558), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B4D0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_B530), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3548), gsSPDisplayList(d_course_luigi_raceway_packed_dl_35D0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3678), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_B408), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B408), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6EF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7B80), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7BF8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_A150), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_8448), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7B80), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7BF8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A150), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8448), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), gsSPDisplayList(d_course_luigi_raceway_packed_dl_80B0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8128), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8528), gsSPDisplayList(d_course_luigi_raceway_packed_dl_84C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), gsSPEndDisplayList(), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), +#endif + gsSPEndDisplayList(), }; Gfx d_course_luigi_raceway_dl_1FD0[] = { @@ -802,7 +1193,12 @@ Gfx d_course_luigi_raceway_dl_1FD0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_18B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1848), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D68), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D00), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1BD8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_A6E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A688), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A6E8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A688), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_2368), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2560), gsSPDisplayList(d_course_luigi_raceway_packed_dl_25E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_21A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2210), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A558), @@ -810,14 +1206,27 @@ Gfx d_course_luigi_raceway_dl_1FD0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_B530), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3548), gsSPDisplayList(d_course_luigi_raceway_packed_dl_35D0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3678), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B408), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B198), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6EF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6680), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6728), gsSPDisplayList(d_course_luigi_raceway_packed_dl_67D0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6878), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6878), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_93C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9340), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9098), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9120), gsSPDisplayList(d_course_luigi_raceway_packed_dl_91A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9230), @@ -825,21 +1234,47 @@ Gfx d_course_luigi_raceway_dl_1FD0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_9960), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7B80), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7BF8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A150), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_80B0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8128), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_80B0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8128), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8B18), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9F70), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_53E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_51D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), +#endif + gsSPEndDisplayList(), }; Gfx d_course_luigi_raceway_dl_2240[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1AC8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_2560), gsSPDisplayList(d_course_luigi_raceway_packed_dl_25E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_21A8), @@ -847,7 +1282,9 @@ Gfx d_course_luigi_raceway_dl_2240[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_2280), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A930), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AE78), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_35D0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_3678), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3350), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B198), @@ -859,7 +1296,9 @@ Gfx d_course_luigi_raceway_dl_2240[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6680), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_528), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8990), @@ -870,7 +1309,9 @@ Gfx d_course_luigi_raceway_dl_2240[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_51D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), +#endif gsSPEndDisplayList(), }; @@ -907,26 +1348,57 @@ Gfx d_course_luigi_raceway_dl_2348[] = { }; Gfx d_course_luigi_raceway_dl_2518[] = { - gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A688), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A688), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A620), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2560), gsSPDisplayList(d_course_luigi_raceway_packed_dl_25E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_21A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2210), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2280), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B590), gsSPDisplayList(d_course_luigi_raceway_packed_dl_35D0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3678), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3350), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_B198), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B198), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6EF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7B80), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7BF8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A0F0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7B80), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7BF8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A0F0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8128), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), gsSPDisplayList(d_course_luigi_raceway_packed_dl_85F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8528), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_84C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_528), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_84C8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_528), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), +#endif + gsSPEndDisplayList(), }; Gfx d_course_luigi_raceway_dl_2658[] = { @@ -939,8 +1411,12 @@ Gfx d_course_luigi_raceway_dl_2658[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D68), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D00), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A688), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A620), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_2560), gsSPDisplayList(d_course_luigi_raceway_packed_dl_25E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_21A8), @@ -955,8 +1431,12 @@ Gfx d_course_luigi_raceway_dl_2658[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_3350), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B198), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B200), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6EF0), @@ -964,21 +1444,39 @@ Gfx d_course_luigi_raceway_dl_2658[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6680), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B10), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7B80), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7BF8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A0F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A150), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8128), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_85F8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8528), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_84C8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_528), @@ -991,9 +1489,15 @@ Gfx d_course_luigi_raceway_dl_2658[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), +#endif gsSPEndDisplayList(), }; @@ -1003,7 +1507,9 @@ Gfx d_course_luigi_raceway_dl_2860[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_2720), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AE78), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AE10), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_3678), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_3350), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3080), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B200), @@ -1019,8 +1525,12 @@ Gfx d_course_luigi_raceway_dl_2860[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_9098), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9120), gsSPDisplayList(d_course_luigi_raceway_packed_dl_91A8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_9230), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_528), gsSPDisplayList(d_course_luigi_raceway_packed_dl_370), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8788), @@ -1030,8 +1540,12 @@ Gfx d_course_luigi_raceway_dl_2860[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_53E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_51D8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), +#endif gsSPEndDisplayList(), }; @@ -1112,26 +1626,64 @@ Gfx d_course_luigi_raceway_dl_2978[] = { }; Gfx d_course_luigi_raceway_dl_2BC0[] = { - gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D00), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D00), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_A620), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A7A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_25E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A490), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2210), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2280), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_2720), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AE78), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_B590), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B600), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_2720), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_AE78), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B590), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B600), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3678), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3350), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_3080), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3080), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6EF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A028), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_A088), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A028), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A088), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8128), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), gsSPDisplayList(d_course_luigi_raceway_packed_dl_85F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8528), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_84C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_528), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_84C8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_528), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), +#endif + gsSPEndDisplayList(), }; Gfx d_course_luigi_raceway_dl_2D00[] = { @@ -1140,10 +1692,18 @@ Gfx d_course_luigi_raceway_dl_2D00[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1988), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1920), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D68), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D00), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A620), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A7A8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_25E8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_A490), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2210), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2280), @@ -1179,11 +1739,21 @@ Gfx d_course_luigi_raceway_dl_2D00[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A028), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A088), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8128), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_85F8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_84C8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_528), @@ -1198,7 +1768,9 @@ Gfx d_course_luigi_raceway_dl_2D00[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), +#endif gsSPEndDisplayList(), }; @@ -1209,15 +1781,24 @@ Gfx d_course_luigi_raceway_dl_2F08[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_30F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B268), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6680), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6728), gsSPDisplayList(d_course_luigi_raceway_packed_dl_67D0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6728), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_67D0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_DF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B48), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9120), gsSPDisplayList(d_course_luigi_raceway_packed_dl_91A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_370), gsSPDisplayList(d_course_luigi_raceway_packed_dl_118), gsSPDisplayList(d_course_luigi_raceway_packed_dl_87F0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_9F70), gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_9F70), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_53E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_51D8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), +#endif + gsSPEndDisplayList(), }; Gfx d_course_luigi_raceway_dl_2FF8[] = { @@ -1260,7 +1841,9 @@ Gfx d_course_luigi_raceway_dl_2FF8[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6680), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6728), gsSPDisplayList(d_course_luigi_raceway_packed_dl_67D0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6878), @@ -1313,10 +1896,18 @@ Gfx d_course_luigi_raceway_dl_2FF8[] = { }; Gfx d_course_luigi_raceway_dl_32C0[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1988), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1920), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D68), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D00), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_A620), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A7A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A810), @@ -1337,17 +1928,27 @@ Gfx d_course_luigi_raceway_dl_32C0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_94B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1000), gsSPDisplayList(d_course_luigi_raceway_packed_dl_DF0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A028), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A088), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8128), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), gsSPDisplayList(d_course_luigi_raceway_packed_dl_85F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8528), gsSPDisplayList(d_course_luigi_raceway_packed_dl_84C8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8AB8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_528), gsSPDisplayList(d_course_luigi_raceway_packed_dl_370), gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), @@ -1369,15 +1970,21 @@ Gfx d_course_luigi_raceway_dl_3408[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_2D30), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AE10), gsSPDisplayList(d_course_luigi_raceway_packed_dl_ADA8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_B600), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_B678), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3350), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3080), gsSPDisplayList(d_course_luigi_raceway_packed_dl_30F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B268), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B2D0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6EF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), @@ -1400,10 +2007,18 @@ Gfx d_course_luigi_raceway_dl_3408[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_9960), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A028), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A088), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A0F0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_85F8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_8A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8AB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_528), @@ -1419,8 +2034,12 @@ Gfx d_course_luigi_raceway_dl_3408[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), +#endif gsSPEndDisplayList(), }; @@ -1437,8 +2056,12 @@ Gfx d_course_luigi_raceway_dl_3610[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6680), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6728), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_370), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_118), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_53E0), @@ -1490,9 +2113,15 @@ Gfx d_course_luigi_raceway_dl_36A8[] = { }; Gfx d_course_luigi_raceway_dl_3928[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1A28), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1988), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1920), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D68), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A620), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A7A8), @@ -1546,7 +2175,9 @@ Gfx d_course_luigi_raceway_dl_3AB0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1A28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1988), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1920), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D68), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_2720), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2D30), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2CB8), @@ -1563,7 +2194,9 @@ Gfx d_course_luigi_raceway_dl_3AB0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6728), gsSPDisplayList(d_course_luigi_raceway_packed_dl_67D0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6878), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_93C8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_9530), gsSPDisplayList(d_course_luigi_raceway_packed_dl_DF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B48), @@ -1573,7 +2206,9 @@ Gfx d_course_luigi_raceway_dl_3AB0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_92B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_95B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9960), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_370), gsSPDisplayList(d_course_luigi_raceway_packed_dl_118), gsSPDisplayList(d_course_luigi_raceway_packed_dl_190), @@ -1646,7 +2281,9 @@ Gfx d_course_luigi_raceway_dl_3CA0[] = { }; Gfx d_course_luigi_raceway_dl_3EB0[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1AC8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_1A28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1988), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1920), @@ -1675,7 +2312,9 @@ Gfx d_course_luigi_raceway_dl_3EB0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_B48), gsSPDisplayList(d_course_luigi_raceway_packed_dl_BD0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_C58), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_92B8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_95B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9960), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), @@ -1696,15 +2335,27 @@ Gfx d_course_luigi_raceway_dl_3EB0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_53E0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), +#endif gsSPEndDisplayList(), }; Gfx d_course_luigi_raceway_dl_4058[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1AC8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1A28), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_1988), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1920), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D68), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2D30), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1988), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1920), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D68), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_2D30), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2CB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2C40), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AD40), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AEE0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_30F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3170), @@ -1718,7 +2369,10 @@ Gfx d_course_luigi_raceway_dl_4058[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_9230), gsSPDisplayList(d_course_luigi_raceway_packed_dl_92B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_95B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_190), gsSPDisplayList(d_course_luigi_raceway_packed_dl_208), gsSPDisplayList(d_course_luigi_raceway_packed_dl_88C0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_9F70), gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_9F70), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_53E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_51D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), gsSPEndDisplayList(), @@ -1778,7 +2432,10 @@ Gfx d_course_luigi_raceway_dl_4240[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_208), gsSPDisplayList(d_course_luigi_raceway_packed_dl_280), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8928), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9F70), gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_51D8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_51D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), gsSPEndDisplayList(), }; @@ -1844,14 +2501,18 @@ Gfx d_course_luigi_raceway_dl_4440[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_53E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_51D8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), gsSPEndDisplayList(), }; Gfx d_course_luigi_raceway_dl_4638[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1AC8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1A28), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_2CB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2C40), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2BC8), @@ -1949,8 +2610,12 @@ Gfx d_course_luigi_raceway_dl_4828[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_9440), gsSPDisplayList(d_course_luigi_raceway_packed_dl_94B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9530), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_9340), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_9098), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_C58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_CE0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_D68), @@ -1974,7 +2639,9 @@ Gfx d_course_luigi_raceway_dl_4828[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_8B80), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9F70), gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_51D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), @@ -2070,9 +2737,15 @@ Gfx d_course_luigi_raceway_dl_4C60[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_67D0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6878), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6920), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_208), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_280), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_2F8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_51D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), @@ -2132,7 +2805,9 @@ Gfx d_course_luigi_raceway_dl_4E38[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_93C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9440), gsSPDisplayList(d_course_luigi_raceway_packed_dl_94B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_9530), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_D68), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1088), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9960), @@ -2151,7 +2826,9 @@ Gfx d_course_luigi_raceway_dl_4E38[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_5A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8E50), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9F70), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), @@ -2228,14 +2905,19 @@ Gfx d_course_luigi_raceway_dl_4FD8[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_53E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_51D8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), gsSPEndDisplayList(), }; Gfx d_course_luigi_raceway_dl_5220[] = { - gsSPDisplayList(d_course_luigi_raceway_packed_dl_1AC8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1A28), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1AC8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1A28), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_2658), gsSPDisplayList(d_course_luigi_raceway_packed_dl_ADA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2BC8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2DA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2E20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B2D0), @@ -2262,7 +2944,9 @@ Gfx d_course_luigi_raceway_dl_52D0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_32D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_36F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3AD0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_3B38), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), @@ -2273,10 +2957,12 @@ Gfx d_course_luigi_raceway_dl_52D0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6920), gsSPDisplayList(d_course_luigi_raceway_packed_dl_69C0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_49B8), +#ifndef VERSION_JP /* JP drops these two lists and the cull bracket with them */ gsSPClearGeometryMode(G_CULL_BACK), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A028), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A088), gsSPSetGeometryMode(G_CULL_BACK), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), gsSPDisplayList(d_course_luigi_raceway_packed_dl_88C0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2F8), @@ -2351,7 +3037,9 @@ Gfx d_course_luigi_raceway_dl_5558[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_2E90), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B010), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B2D0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_B338), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_32D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_36F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3AD0), @@ -2364,7 +3052,9 @@ Gfx d_course_luigi_raceway_dl_5558[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6680), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6728), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_67D0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6878), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6920), gsSPDisplayList(d_course_luigi_raceway_packed_dl_69C0), @@ -2490,7 +3180,9 @@ Gfx d_course_luigi_raceway_dl_5940[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_84C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8D0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), gsSPEndDisplayList(), }; @@ -2533,7 +3225,9 @@ Gfx d_course_luigi_raceway_dl_5A60[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_53E0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), gsSPEndDisplayList(), }; @@ -2543,7 +3237,9 @@ Gfx d_course_luigi_raceway_dl_5BA0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1A28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1988), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1920), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D68), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_2658), gsSPDisplayList(d_course_luigi_raceway_packed_dl_26B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_22F8), @@ -2567,8 +3263,12 @@ Gfx d_course_luigi_raceway_dl_5BA0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_2F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8D0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_53E0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_51D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), @@ -2817,7 +3517,9 @@ Gfx d_course_luigi_raceway_dl_6350[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7650), gsSPDisplayList(d_course_luigi_raceway_packed_dl_76F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_77B0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7878), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), gsSPClearGeometryMode(G_CULL_BACK), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7B80), @@ -2858,7 +3560,9 @@ Gfx d_course_luigi_raceway_dl_6400[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7650), gsSPDisplayList(d_course_luigi_raceway_packed_dl_76F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_77B0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7878), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), gsSPClearGeometryMode(G_CULL_BACK), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7B80), @@ -2880,7 +3584,9 @@ Gfx d_course_luigi_raceway_dl_6558[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_3B38), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3EB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3FC0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4148), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7050), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7650), gsSPDisplayList(d_course_luigi_raceway_packed_dl_76F8), @@ -2909,7 +3615,10 @@ Gfx d_course_luigi_raceway_dl_6608[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_4148), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4330), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7650), gsSPDisplayList(d_course_luigi_raceway_packed_dl_76F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_77B0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7878), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7940), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7940), +#endif + gsSPEndDisplayList(), }; Gfx d_course_luigi_raceway_dl_6658[] = { @@ -2918,21 +3627,33 @@ Gfx d_course_luigi_raceway_dl_6658[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_4330), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7050), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7650), gsSPDisplayList(d_course_luigi_raceway_packed_dl_76F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_77B0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7878), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7940), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7940), +#endif + gsSPEndDisplayList(), }; Gfx d_course_luigi_raceway_dl_66B8[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_3B38), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3EB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3FC0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4148), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_4330), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7650), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4330), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7650), gsSPDisplayList(d_course_luigi_raceway_packed_dl_76F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_77B0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7878), gsSPEndDisplayList(), }; Gfx d_course_luigi_raceway_dl_6708[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1B28), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E70), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_20C0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_3C40), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3CF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4148), @@ -2941,8 +3662,12 @@ Gfx d_course_luigi_raceway_dl_6708[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_77B0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7878), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7940), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), +#endif gsSPClearGeometryMode(G_CULL_BACK), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7DD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7E50), @@ -2969,15 +3694,29 @@ Gfx d_course_luigi_raceway_dl_67A0[] = { }; Gfx d_course_luigi_raceway_dl_6810[] = { - gsSPDisplayList(d_course_luigi_raceway_packed_dl_1B28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E70), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_20C0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3B38), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1B28), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E70), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_20C0), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3B38), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3C40), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3CF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3EB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3FC0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4148), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4330), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7650), gsSPDisplayList(d_course_luigi_raceway_packed_dl_76F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_77B0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7878), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7940), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), gsSPClearGeometryMode(G_CULL_BACK), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7940), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), +#endif + gsSPClearGeometryMode(G_CULL_BACK), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7E50), gsSPSetGeometryMode(G_CULL_BACK), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8EB0), gsSPEndDisplayList(), }; @@ -2996,7 +3735,10 @@ Gfx d_course_luigi_raceway_dl_6930[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1B28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E70), gsSPDisplayList(d_course_luigi_raceway_packed_dl_20C0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2050), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2900), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3C40), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_3CF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4148), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3CF0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4148), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_4330), gsSPDisplayList(d_course_luigi_raceway_packed_dl_77B0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7878), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7940), gsSPDisplayList(d_course_luigi_raceway_packed_dl_79E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), @@ -3404,7 +4146,10 @@ Gfx d_course_luigi_raceway_dl_74B0[] = { }; Gfx d_course_luigi_raceway_dl_75F0[] = { - gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E10), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2050), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E10), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_2050), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_1FF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2900), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2888), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2810), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A998), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AB38), @@ -3418,8 +4163,12 @@ Gfx d_course_luigi_raceway_dl_75F0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_98D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9640), gsSPDisplayList(d_course_luigi_raceway_packed_dl_96C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9750), gsSPDisplayList(d_course_luigi_raceway_packed_dl_97D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), gsSPClearGeometryMode(G_CULL_BACK), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7E50), gsSPSetGeometryMode(G_CULL_BACK), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), +#ifndef VERSION_JP /* same here: the cull bracket goes with its list */ + gsSPClearGeometryMode(G_CULL_BACK), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7E50), + gsSPSetGeometryMode(G_CULL_BACK), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_938), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8DE8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6418), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6300), @@ -3482,7 +4231,9 @@ Gfx d_course_luigi_raceway_dl_7750[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_A20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8DE8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6418), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_60E0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_5ED8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), @@ -3623,8 +4374,12 @@ Gfx d_course_luigi_raceway_dl_7CD0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_9750), gsSPDisplayList(d_course_luigi_raceway_packed_dl_97D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9860), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_4A28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B10), gsSPClearGeometryMode(G_CULL_BACK), @@ -3669,9 +4424,15 @@ Gfx d_course_luigi_raceway_dl_7EE8[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7248), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8EB0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_9A8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A20), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6418), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6300), gsSPDisplayList(d_course_luigi_raceway_packed_dl_60E0), @@ -3759,7 +4520,9 @@ Gfx d_course_luigi_raceway_dl_8158[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1110), gsSPDisplayList(d_course_luigi_raceway_packed_dl_96C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9750), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_97D8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_858), gsSPDisplayList(d_course_luigi_raceway_packed_dl_610), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8C50), @@ -3769,7 +4532,9 @@ Gfx d_course_luigi_raceway_dl_8158[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_5ED8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), +#endif gsSPEndDisplayList(), }; @@ -3793,15 +4558,24 @@ Gfx d_course_luigi_raceway_dl_8260[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1688), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1438), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1110), gsSPDisplayList(d_course_luigi_raceway_packed_dl_96C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9750), gsSPDisplayList(d_course_luigi_raceway_packed_dl_97D8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_9860), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4A28), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_9860), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4A28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B10), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8448), gsSPDisplayList(d_course_luigi_raceway_packed_dl_85F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8528), gsSPDisplayList(d_course_luigi_raceway_packed_dl_84C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_858), gsSPDisplayList(d_course_luigi_raceway_packed_dl_610), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8C50), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9ED0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6418), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6300), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6418), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6300), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_60E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5ED8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), gsSPEndDisplayList(), @@ -3950,8 +4724,12 @@ Gfx d_course_luigi_raceway_dl_8790[] = { }; Gfx d_course_luigi_raceway_dl_8958[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_17E0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1B28), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E70), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E10), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A308), @@ -4072,8 +4850,16 @@ Gfx d_course_luigi_raceway_dl_8CC8[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_3858), gsSPDisplayList(d_course_luigi_raceway_packed_dl_38D0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_71A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7248), gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_610), gsSPDisplayList(d_course_luigi_raceway_packed_dl_688), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_700), gsSPDisplayList(d_course_luigi_raceway_packed_dl_60E0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_610), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_688), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_700), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_60E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5ED8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), gsSPEndDisplayList(), }; @@ -4081,7 +4867,9 @@ Gfx d_course_luigi_raceway_dl_8CC8[] = { Gfx d_course_luigi_raceway_dl_8D68[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_17E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1B28), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E70), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_1BD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A748), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A2A8), @@ -4104,8 +4892,12 @@ Gfx d_course_luigi_raceway_dl_8D68[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_99D8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_9A60), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_11B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1260), gsSPDisplayList(d_course_luigi_raceway_packed_dl_97D8), @@ -4120,7 +4912,9 @@ Gfx d_course_luigi_raceway_dl_8D68[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_85F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8528), gsSPDisplayList(d_course_luigi_raceway_packed_dl_84C8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_610), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_688), gsSPDisplayList(d_course_luigi_raceway_packed_dl_700), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8D20), @@ -4137,7 +4931,9 @@ Gfx d_course_luigi_raceway_dl_8F00[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1B28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E70), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E10), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1BD8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_2810), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2798), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2978), @@ -4261,7 +5057,9 @@ Gfx d_course_luigi_raceway_dl_9058[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6418), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6300), gsSPDisplayList(d_course_luigi_raceway_packed_dl_60E0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5ED8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), @@ -4279,7 +5077,9 @@ Gfx d_course_luigi_raceway_dl_9310[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_3858), gsSPDisplayList(d_course_luigi_raceway_packed_dl_38D0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3948), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_70F8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_71A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7248), gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), @@ -4293,7 +5093,9 @@ Gfx d_course_luigi_raceway_dl_9310[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_688), gsSPDisplayList(d_course_luigi_raceway_packed_dl_700), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9ED0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6300), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_60E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5ED8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), @@ -4303,8 +5105,12 @@ Gfx d_course_luigi_raceway_dl_9310[] = { }; Gfx d_course_luigi_raceway_dl_9408[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_17E0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1B28), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_1BD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A748), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A6E8), @@ -4322,7 +5128,9 @@ Gfx d_course_luigi_raceway_dl_9408[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_B948), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), @@ -4340,16 +5148,24 @@ Gfx d_course_luigi_raceway_dl_9408[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_8448), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_45B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4540), gsSPDisplayList(d_course_luigi_raceway_packed_dl_700), gsSPDisplayList(d_course_luigi_raceway_packed_dl_778), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), @@ -4359,17 +5175,39 @@ Gfx d_course_luigi_raceway_dl_9408[] = { Gfx d_course_luigi_raceway_dl_95A0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_17E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1B28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E70), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E10), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_1BD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A748), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_A6E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A430), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1BD8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A748), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A6E8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A430), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_ACD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A998), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AB38), gsSPDisplayList(d_course_luigi_raceway_packed_dl_29F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2A68), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2AE0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_B470), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B740), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B470), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B740), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B7A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3858), gsSPDisplayList(d_course_luigi_raceway_packed_dl_38D0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3948), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_B948), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_70F8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B948), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_70F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_71A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7248), gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), @@ -4378,15 +5216,37 @@ Gfx d_course_luigi_raceway_dl_95A0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_9640), gsSPDisplayList(d_course_luigi_raceway_packed_dl_11B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1260), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1308), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9860), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A1B0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A1B0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_A210), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7E50), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_85F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_610), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_85F8), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_610), gsSPDisplayList(d_course_luigi_raceway_packed_dl_688), gsSPDisplayList(d_course_luigi_raceway_packed_dl_700), gsSPDisplayList(d_course_luigi_raceway_packed_dl_778), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_9ED0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6418), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_9ED0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6418), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6300), gsSPDisplayList(d_course_luigi_raceway_packed_dl_60E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5ED8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), gsSPEndDisplayList(), @@ -4424,7 +5284,10 @@ Gfx d_course_luigi_raceway_dl_97B0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6418), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6300), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_60E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_60E0), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), gsSPEndDisplayList(), }; @@ -4435,14 +5298,26 @@ Gfx d_course_luigi_raceway_dl_99C0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_2AE0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B7A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B810), gsSPDisplayList(d_course_luigi_raceway_packed_dl_38D0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3948), gsSPDisplayList(d_course_luigi_raceway_packed_dl_39C8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_70F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_71A0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_70F8), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_71A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7248), gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8C50), gsSPDisplayList(d_course_luigi_raceway_packed_dl_700), gsSPDisplayList(d_course_luigi_raceway_packed_dl_778), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6418), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6300), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6418), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6300), gsSPDisplayList(d_course_luigi_raceway_packed_dl_60E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5ED8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), gsSPEndDisplayList(), @@ -4454,23 +5329,51 @@ Gfx d_course_luigi_raceway_dl_9AD0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1F90), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2130), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2B58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2A68), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2AE0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B470), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_B4D0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B530), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B4D0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B530), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_38D0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3948), gsSPDisplayList(d_course_luigi_raceway_packed_dl_39C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_49B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4A28), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B10), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A150), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_A1B0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7DD8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B10), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A150), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A1B0), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7DD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7E50), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F68), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_45B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4540), gsSPDisplayList(d_course_luigi_raceway_packed_dl_778), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), gsSPEndDisplayList(), }; @@ -4483,7 +5386,9 @@ Gfx d_course_luigi_raceway_dl_9C50[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1BD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A748), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A6E8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_1F90), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2130), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2B58), @@ -4498,10 +5403,18 @@ Gfx d_course_luigi_raceway_dl_9C50[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_3948), gsSPDisplayList(d_course_luigi_raceway_packed_dl_39C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_75A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_70F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_71A0), @@ -4521,18 +5434,34 @@ Gfx d_course_luigi_raceway_dl_9C50[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7DD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7E50), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F68), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_8C50), gsSPDisplayList(d_course_luigi_raceway_packed_dl_700), gsSPDisplayList(d_course_luigi_raceway_packed_dl_778), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6418), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6300), gsSPDisplayList(d_course_luigi_raceway_packed_dl_60E0), @@ -4546,7 +5475,10 @@ Gfx d_course_luigi_raceway_dl_9C50[] = { Gfx d_course_luigi_raceway_dl_9E58[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_18B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1848), gsSPDisplayList(d_course_luigi_raceway_packed_dl_17E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1B28), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E70), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E10), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E70), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E10), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D00), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1BD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_24E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A6E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A688), @@ -4613,7 +5545,9 @@ Gfx d_course_luigi_raceway_dl_A178[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_2AE0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_33C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B4D0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_B530), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_B878), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3948), gsSPDisplayList(d_course_luigi_raceway_packed_dl_39C8), @@ -4621,17 +5555,27 @@ Gfx d_course_luigi_raceway_dl_A178[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_49B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4A28), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B10), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A150), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7DD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7E50), @@ -4644,12 +5588,22 @@ Gfx d_course_luigi_raceway_dl_A178[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_45B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4540), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_778), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F0), +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), gsSPEndDisplayList(), @@ -4661,7 +5615,10 @@ Gfx d_course_luigi_raceway_dl_A320[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E70), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E10), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D00), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1BD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_24E0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_A6E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A688), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A6E8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A688), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_1F90), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2130), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2B58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AC08), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2AE0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_33C8), @@ -4669,8 +5626,16 @@ Gfx d_course_luigi_raceway_dl_A320[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_B810), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B878), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3948), gsSPDisplayList(d_course_luigi_raceway_packed_dl_39C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), +#endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7248), gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), @@ -4680,196 +5645,50 @@ Gfx d_course_luigi_raceway_dl_A320[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_A0F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A150), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7DD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7E50), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F68), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8A58), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F68), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8AB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8CB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_778), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F0), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), +#endif + gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6418), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6300), gsSPDisplayList(d_course_luigi_raceway_packed_dl_60E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5ED8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), - gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), +#endif + gsSPEndDisplayList(), }; // 0xA540 +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_luigi_raceway_unknown_path[] = { - { -139, 0, -202, 0 }, { -139, 0, -218, 0 }, { -139, 0, -297, 0 }, { -139, 0, -2247, 0 }, - { -138, 0, -2474, 0 }, { -170, 0, -2745, 0 }, { -249, 0, -2930, 0 }, { -373, 0, -3095, 0 }, - { -550, 0, -3226, 0 }, { -787, 0, -3310, 0 }, { -1022, 0, -3321, 0 }, { -1236, 0, -3258, 0 }, - { -1415, 0, -3148, 0 }, { -1571, 0, -2974, 0 }, { -1658, 0, -2773, 0 }, { -1683, 0, -2574, 0 }, - { -1661, 0, -2374, 0 }, { -1577, 0, -2184, 0 }, { -1447, 0, -2015, 0 }, { -1180, 0, -1836, 0 }, - { -697, 0, -1554, 0 }, { -547, 0, -1442, 0 }, { -444, 0, -1329, 0 }, { -368, 0, -1198, 0 }, - { -341, 0, -1118, 0 }, { -307, 0, -871, 0 }, { -305, 0, -538, 0 }, { -307, 0, -224, 0 }, - { -324, 0, -85, 0 }, { -364, 0, 33, 0 }, { -453, 0, 137, 0 }, { -678, 0, 317, 0 }, - { -1128, 0, 657, 0 }, { -1256, 0, 798, 0 }, { -1336, 0, 960, 0 }, { -1362, 0, 1141, 0 }, - { -1329, 0, 1310, 0 }, { -1236, 0, 1483, 0 }, { -1092, 0, 1620, 0 }, { -911, 0, 1692, 0 }, - { -717, 0, 1705, 0 }, { -523, 0, 1655, 0 }, { -352, 0, 1529, 0 }, { -239, 0, 1345, 0 }, - { -179, 0, 1142, 0 }, { -140, 0, 854, 0 }, { -134, 0, 491, 0 }, { -139, 0, -16, 0 }, - { -140, 0, -157, 0 }, { -32768, 0, 0, 0 }, +#include "courses/luigi_raceway/d_course_luigi_raceway_unknown_path.inc.c" }; +#endif // 0xA6D0 +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_luigi_raceway_track_path[] = { - { -139, -50, -210, 1 }, { -139, -50, -230, 2 }, { -139, -50, -250, 2 }, { -139, -50, -270, 2 }, - { -139, -50, -290, 2 }, { -139, -50, -310, 2 }, { -139, -50, -330, 2 }, { -139, -50, -350, 2 }, - { -139, -50, -370, 2 }, { -139, -50, -390, 2 }, { -139, -50, -410, 2 }, { -139, -50, -430, 2 }, - { -139, -50, -450, 2 }, { -139, -50, -470, 2 }, { -139, -50, -490, 2 }, { -139, -50, -510, 2 }, - { -139, -50, -530, 2 }, { -139, -50, -550, 2 }, { -139, -50, -570, 2 }, { -139, -50, -590, 2 }, - { -139, -50, -610, 2 }, { -139, -50, -630, 2 }, { -139, -50, -650, 2 }, { -139, -50, -670, 2 }, - { -139, -50, -690, 3 }, { -139, -50, -710, 3 }, { -139, -50, -730, 3 }, { -139, -50, -750, 3 }, - { -139, -50, -770, 3 }, { -139, -50, -790, 3 }, { -139, -50, -810, 3 }, { -139, -50, -830, 3 }, - { -139, -50, -850, 3 }, { -139, -50, -870, 3 }, { -139, -50, -890, 3 }, { -139, -50, -910, 3 }, - { -139, -50, -930, 3 }, { -139, -50, -950, 3 }, { -139, -50, -970, 3 }, { -139, -50, -990, 3 }, - { -139, -50, -1010, 3 }, { -139, -50, -1030, 3 }, { -139, -50, -1050, 3 }, { -139, -50, -1070, 3 }, - { -139, -50, -1090, 3 }, { -139, -50, -1110, 3 }, { -139, -50, -1130, 4 }, { -139, -50, -1150, 4 }, - { -139, -50, -1170, 4 }, { -139, -50, -1190, 4 }, { -139, -50, -1210, 4 }, { -139, -50, -1230, 4 }, - { -139, -50, -1250, 4 }, { -139, -50, -1270, 4 }, { -138, -50, -1290, 4 }, { -138, -50, -1310, 4 }, - { -138, -50, -1330, 4 }, { -138, -49, -1351, 4 }, { -138, -49, -1371, 4 }, { -138, -48, -1391, 4 }, - { -138, -48, -1411, 4 }, { -138, -47, -1431, 4 }, { -138, -46, -1451, 4 }, { -138, -46, -1471, 4 }, - { -138, -45, -1491, 4 }, { -138, -44, -1511, 4 }, { -138, -44, -1531, 4 }, { -138, -43, -1551, 4 }, - { -138, -43, -1571, 4 }, { -138, -42, -1591, 5 }, { -138, -40, -1611, 5 }, { -138, -39, -1631, 5 }, - { -138, -38, -1651, 5 }, { -138, -37, -1671, 5 }, { -138, -36, -1691, 5 }, { -138, -36, -1711, 5 }, - { -138, -36, -1731, 5 }, { -138, -37, -1751, 5 }, { -138, -38, -1771, 5 }, { -138, -39, -1791, 5 }, - { -138, -40, -1811, 5 }, { -138, -41, -1831, 5 }, { -138, -42, -1851, 5 }, { -138, -43, -1871, 5 }, - { -138, -44, -1891, 5 }, { -138, -45, -1911, 5 }, { -138, -46, -1931, 5 }, { -138, -47, -1951, 5 }, - { -138, -47, -1971, 5 }, { -138, -47, -1991, 5 }, { -138, -47, -2011, 5 }, { -138, -48, -2031, 6 }, - { -138, -48, -2051, 6 }, { -138, -49, -2071, 6 }, { -138, -49, -2091, 6 }, { -138, -50, -2111, 6 }, - { -138, -50, -2131, 6 }, { -138, -50, -2151, 6 }, { -138, -50, -2171, 6 }, { -138, -50, -2191, 6 }, - { -138, -50, -2211, 6 }, { -138, -50, -2231, 6 }, { -138, -50, -2251, 6 }, { -138, -50, -2271, 6 }, - { -138, -50, -2291, 6 }, { -138, -50, -2311, 6 }, { -138, -50, -2331, 6 }, { -138, -50, -2351, 6 }, - { -138, -50, -2371, 6 }, { -138, -50, -2391, 6 }, { -139, -50, -2411, 6 }, { -139, -50, -2431, 6 }, - { -140, -50, -2451, 6 }, { -141, -50, -2471, 6 }, { -142, -49, -2491, 7 }, { -144, -48, -2511, 7 }, - { -146, -48, -2531, 7 }, { -147, -48, -2551, 7 }, { -149, -48, -2571, 7 }, { -151, -47, -2591, 7 }, - { -154, -47, -2611, 7 }, { -156, -47, -2631, 7 }, { -159, -47, -2650, 7 }, { -162, -46, -2670, 7 }, - { -166, -44, -2690, 7 }, { -170, -44, -2709, 7 }, { -174, -44, -2729, 7 }, { -179, -44, -2748, 7 }, - { -184, -43, -2768, 7 }, { -190, -41, -2787, 7 }, { -197, -41, -2806, 7 }, { -204, -41, -2824, 7 }, - { -212, -41, -2843, 8 }, { -220, -40, -2861, 8 }, { -228, -39, -2879, 8 }, { -238, -38, -2897, 8 }, - { -247, -38, -2915, 8 }, { -257, -38, -2932, 8 }, { -267, -38, -2949, 8 }, { -278, -37, -2966, 8 }, - { -289, -37, -2983, 8 }, { -301, -37, -2999, 8 }, { -313, -36, -3015, 8 }, { -325, -35, -3031, 8 }, - { -338, -35, -3046, 8 }, { -351, -35, -3061, 8 }, { -365, -35, -3076, 8 }, { -379, -35, -3090, 8 }, - { -393, -35, -3104, 8 }, { -408, -35, -3117, 8 }, { -423, -35, -3130, 8 }, { -439, -35, -3143, 8 }, - { -455, -35, -3155, 8 }, { -471, -35, -3167, 9 }, { -487, -35, -3179, 9 }, { -504, -35, -3189, 9 }, - { -521, -35, -3200, 9 }, { -539, -35, -3210, 9 }, { -556, -35, -3219, 9 }, { -574, -35, -3228, 9 }, - { -592, -35, -3237, 9 }, { -610, -35, -3245, 9 }, { -629, -35, -3253, 9 }, { -648, -36, -3260, 9 }, - { -666, -36, -3267, 9 }, { -685, -36, -3273, 9 }, { -704, -36, -3280, 9 }, { -723, -35, -3285, 9 }, - { -743, -36, -3290, 9 }, { -762, -36, -3295, 9 }, { -782, -36, -3299, 9 }, { -801, -36, -3303, 9 }, - { -821, -36, -3307, 9 }, { -841, -36, -3309, 9 }, { -861, -36, -3312, 9 }, { -881, -36, -3314, 9 }, - { -901, -36, -3315, 9 }, { -921, -36, -3316, 10 }, { -941, -35, -3316, 10 }, { -961, -35, -3315, 10 }, - { -981, -35, -3315, 10 }, { -1001, -35, -3313, 10 }, { -1021, -35, -3311, 10 }, { -1040, -35, -3308, 10 }, - { -1060, -35, -3305, 10 }, { -1080, -35, -3301, 10 }, { -1099, -35, -3297, 10 }, { -1119, -36, -3292, 10 }, - { -1138, -36, -3286, 10 }, { -1157, -36, -3280, 10 }, { -1176, -36, -3274, 10 }, { -1195, -36, -3267, 10 }, - { -1213, -36, -3259, 10 }, { -1232, -36, -3251, 10 }, { -1250, -36, -3243, 10 }, { -1268, -36, -3234, 10 }, - { -1286, -35, -3225, 10 }, { -1303, -35, -3215, 10 }, { -1320, -35, -3205, 10 }, { -1337, -35, -3195, 11 }, - { -1354, -35, -3184, 11 }, { -1370, -35, -3172, 11 }, { -1386, -36, -3160, 11 }, { -1402, -36, -3148, 11 }, - { -1417, -36, -3135, 11 }, { -1432, -36, -3121, 11 }, { -1447, -36, -3108, 11 }, { -1461, -36, -3094, 11 }, - { -1475, -36, -3079, 11 }, { -1489, -36, -3065, 11 }, { -1502, -36, -3050, 11 }, { -1515, -35, -3034, 11 }, - { -1527, -35, -3019, 11 }, { -1539, -35, -3003, 11 }, { -1551, -35, -2986, 11 }, { -1562, -35, -2970, 11 }, - { -1573, -35, -2953, 11 }, { -1583, -35, -2936, 11 }, { -1592, -35, -2918, 11 }, { -1601, -35, -2900, 11 }, - { -1610, -35, -2882, 11 }, { -1618, -36, -2864, 11 }, { -1625, -35, -2845, 12 }, { -1633, -35, -2826, 12 }, - { -1639, -35, -2808, 12 }, { -1645, -35, -2788, 12 }, { -1651, -35, -2769, 12 }, { -1656, -35, -2750, 12 }, - { -1660, -35, -2730, 12 }, { -1664, -35, -2711, 12 }, { -1667, -36, -2691, 12 }, { -1670, -36, -2671, 12 }, - { -1672, -36, -2651, 12 }, { -1674, -36, -2631, 12 }, { -1675, -35, -2611, 12 }, { -1676, -36, -2591, 12 }, - { -1677, -36, -2571, 12 }, { -1677, -35, -2551, 12 }, { -1676, -35, -2531, 12 }, { -1675, -35, -2511, 12 }, - { -1673, -36, -2491, 12 }, { -1671, -37, -2472, 13 }, { -1669, -37, -2452, 13 }, { -1666, -37, -2432, 13 }, - { -1662, -38, -2412, 13 }, { -1657, -38, -2393, 13 }, { -1652, -38, -2373, 13 }, { -1647, -39, -2354, 13 }, - { -1641, -40, -2335, 13 }, { -1634, -41, -2316, 13 }, { -1627, -41, -2298, 13 }, { -1619, -41, -2279, 13 }, - { -1611, -42, -2261, 13 }, { -1602, -43, -2243, 13 }, { -1593, -44, -2225, 13 }, { -1583, -44, -2208, 13 }, - { -1573, -44, -2190, 13 }, { -1563, -45, -2173, 13 }, { -1552, -46, -2156, 13 }, { -1541, -47, -2140, 13 }, - { -1530, -47, -2123, 13 }, { -1518, -47, -2107, 13 }, { -1505, -47, -2091, 14 }, { -1493, -47, -2076, 14 }, - { -1479, -47, -2061, 14 }, { -1465, -47, -2047, 14 }, { -1451, -48, -2033, 14 }, { -1436, -48, -2019, 14 }, - { -1421, -49, -2006, 14 }, { -1406, -49, -1993, 14 }, { -1390, -50, -1981, 14 }, { -1374, -50, -1969, 14 }, - { -1358, -50, -1957, 14 }, { -1342, -50, -1945, 14 }, { -1325, -50, -1933, 14 }, { -1309, -51, -1922, 14 }, - { -1292, -51, -1911, 14 }, { -1275, -52, -1900, 14 }, { -1259, -52, -1889, 14 }, { -1242, -53, -1879, 14 }, - { -1225, -53, -1868, 14 }, { -1208, -54, -1857, 14 }, { -1191, -54, -1847, 14 }, { -1174, -55, -1836, 15 }, - { -1157, -55, -1825, 15 }, { -1140, -56, -1815, 15 }, { -1123, -57, -1805, 15 }, { -1106, -57, -1794, 15 }, - { -1089, -58, -1784, 15 }, { -1072, -59, -1773, 15 }, { -1054, -59, -1763, 15 }, { -1037, -60, -1753, 15 }, - { -1020, -60, -1743, 15 }, { -1003, -61, -1733, 15 }, { -985, -62, -1722, 15 }, { -968, -62, -1712, 15 }, - { -951, -63, -1702, 15 }, { -934, -63, -1692, 15 }, { -916, -64, -1682, 15 }, { -899, -64, -1672, 15 }, - { -882, -65, -1662, 15 }, { -865, -65, -1651, 15 }, { -847, -66, -1641, 15 }, { -830, -66, -1631, 15 }, - { -813, -67, -1621, 15 }, { -796, -67, -1610, 15 }, { -779, -68, -1600, 16 }, { -762, -69, -1589, 16 }, - { -745, -70, -1579, 16 }, { -728, -70, -1568, 16 }, { -711, -71, -1558, 16 }, { -694, -72, -1547, 16 }, - { -677, -73, -1536, 16 }, { -661, -75, -1525, 16 }, { -644, -75, -1514, 16 }, { -628, -76, -1502, 16 }, - { -612, -77, -1490, 16 }, { -596, -78, -1478, 16 }, { -580, -80, -1465, 16 }, { -565, -81, -1452, 16 }, - { -550, -82, -1439, 16 }, { -535, -83, -1426, 16 }, { -521, -85, -1412, 16 }, { -507, -85, -1398, 16 }, - { -493, -86, -1383, 17 }, { -480, -89, -1368, 17 }, { -467, -91, -1352, 17 }, { -455, -93, -1337, 17 }, - { -443, -95, -1321, 17 }, { -431, -96, -1304, 17 }, { -420, -98, -1287, 17 }, { -410, -100, -1270, 17 }, - { -400, -103, -1253, 17 }, { -390, -106, -1236, 17 }, { -381, -109, -1218, 17 }, { -372, -111, -1200, 17 }, - { -363, -115, -1182, 17 }, { -356, -119, -1163, 17 }, { -350, -122, -1144, 17 }, { -345, -126, -1125, 17 }, - { -341, -129, -1105, 18 }, { -338, -132, -1086, 18 }, { -334, -136, -1066, 18 }, { -331, -140, -1046, 18 }, - { -328, -143, -1026, 18 }, { -325, -147, -1006, 18 }, { -322, -151, -987, 18 }, { -320, -154, -967, 18 }, - { -318, -158, -947, 18 }, { -316, -161, -927, 18 }, { -314, -164, -907, 18 }, { -312, -168, -887, 18 }, - { -311, -171, -867, 18 }, { -310, -174, -847, 18 }, { -309, -177, -827, 18 }, { -308, -180, -807, 18 }, - { -307, -183, -787, 18 }, { -306, -186, -767, 18 }, { -306, -188, -747, 19 }, { -306, -190, -727, 19 }, - { -306, -192, -707, 19 }, { -305, -193, -687, 19 }, { -305, -195, -667, 19 }, { -305, -196, -647, 19 }, - { -305, -196, -627, 19 }, { -305, -197, -607, 19 }, { -305, -198, -587, 19 }, { -305, -199, -567, 19 }, - { -305, -199, -547, 19 }, { -305, -199, -527, 19 }, { -305, -198, -507, 19 }, { -305, -197, -487, 19 }, - { -305, -196, -467, 19 }, { -305, -194, -447, 19 }, { -305, -193, -427, 19 }, { -305, -192, -407, 19 }, - { -305, -190, -387, 19 }, { -306, -188, -367, 19 }, { -306, -186, -347, 19 }, { -306, -184, -327, 20 }, - { -306, -181, -307, 20 }, { -307, -179, -287, 20 }, { -308, -176, -267, 20 }, { -308, -173, -247, 20 }, - { -309, -171, -227, 20 }, { -310, -169, -207, 20 }, { -312, -166, -187, 20 }, { -314, -163, -167, 20 }, - { -316, -161, -147, 20 }, { -319, -158, -127, 20 }, { -322, -156, -108, 20 }, { -326, -153, -88, 20 }, - { -331, -149, -68, 20 }, { -336, -146, -49, 20 }, { -342, -142, -30, 20 }, { -349, -138, -11, 21 }, - { -357, -134, 6, 21 }, { -366, -131, 24, 21 }, { -376, -127, 41, 21 }, { -387, -122, 58, 21 }, - { -399, -119, 74, 21 }, { -412, -116, 89, 21 }, { -426, -112, 104, 21 }, { -440, -109, 118, 21 }, - { -454, -107, 132, 21 }, { -469, -104, 145, 21 }, { -484, -101, 159, 21 }, { -499, -98, 172, 21 }, - { -514, -96, 185, 21 }, { -530, -94, 198, 21 }, { -545, -91, 210, 21 }, { -561, -89, 223, 21 }, - { -576, -87, 235, 22 }, { -592, -85, 248, 22 }, { -608, -83, 260, 22 }, { -623, -81, 273, 22 }, - { -639, -80, 285, 22 }, { -655, -78, 297, 22 }, { -671, -76, 310, 22 }, { -687, -75, 322, 22 }, - { -702, -74, 334, 22 }, { -718, -72, 346, 22 }, { -734, -71, 358, 22 }, { -750, -70, 371, 22 }, - { -766, -69, 383, 22 }, { -782, -68, 395, 22 }, { -798, -67, 407, 22 }, { -814, -65, 419, 22 }, - { -830, -64, 431, 22 }, { -846, -64, 443, 22 }, { -861, -63, 455, 22 }, { -877, -62, 468, 22 }, - { -893, -61, 480, 22 }, { -909, -61, 492, 22 }, { -925, -60, 504, 22 }, { -941, -59, 516, 22 }, - { -957, -58, 528, 22 }, { -973, -58, 540, 22 }, { -989, -57, 553, 23 }, { -1005, -56, 565, 23 }, - { -1020, -55, 577, 23 }, { -1036, -54, 590, 23 }, { -1052, -54, 602, 23 }, { -1067, -53, 615, 23 }, - { -1083, -52, 628, 23 }, { -1098, -51, 641, 23 }, { -1113, -50, 653, 23 }, { -1128, -49, 667, 23 }, - { -1143, -49, 680, 23 }, { -1158, -48, 693, 23 }, { -1172, -48, 707, 23 }, { -1186, -48, 722, 23 }, - { -1200, -48, 736, 23 }, { -1213, -47, 752, 23 }, { -1225, -47, 767, 23 }, { -1237, -47, 783, 23 }, - { -1249, -47, 799, 23 }, { -1260, -47, 816, 23 }, { -1271, -47, 833, 23 }, { -1281, -46, 850, 23 }, - { -1290, -45, 868, 23 }, { -1299, -43, 886, 24 }, { -1307, -42, 904, 24 }, { -1315, -41, 923, 24 }, - { -1322, -41, 941, 24 }, { -1328, -41, 960, 24 }, { -1334, -40, 980, 24 }, { -1339, -39, 999, 24 }, - { -1343, -39, 1019, 24 }, { -1347, -39, 1038, 24 }, { -1350, -38, 1058, 24 }, { -1352, -37, 1078, 24 }, - { -1353, -36, 1098, 24 }, { -1354, -36, 1118, 24 }, { -1354, -36, 1138, 24 }, { -1353, -35, 1158, 24 }, - { -1352, -34, 1178, 24 }, { -1350, -34, 1198, 24 }, { -1346, -35, 1218, 24 }, { -1342, -35, 1237, 25 }, - { -1338, -35, 1257, 25 }, { -1332, -35, 1276, 25 }, { -1326, -35, 1295, 25 }, { -1320, -35, 1314, 25 }, - { -1312, -35, 1332, 25 }, { -1304, -35, 1351, 25 }, { -1296, -36, 1369, 25 }, { -1287, -36, 1387, 25 }, - { -1277, -36, 1404, 25 }, { -1267, -36, 1422, 25 }, { -1257, -36, 1439, 25 }, { -1246, -35, 1455, 25 }, - { -1234, -35, 1472, 25 }, { -1222, -35, 1487, 25 }, { -1209, -35, 1503, 25 }, { -1196, -35, 1518, 25 }, - { -1182, -35, 1533, 25 }, { -1168, -36, 1547, 25 }, { -1153, -35, 1560, 26 }, { -1138, -35, 1574, 26 }, - { -1123, -35, 1586, 26 }, { -1107, -35, 1598, 26 }, { -1090, -35, 1609, 26 }, { -1073, -34, 1620, 26 }, - { -1056, -34, 1630, 26 }, { -1038, -34, 1639, 26 }, { -1020, -34, 1648, 26 }, { -1001, -34, 1655, 26 }, - { -983, -34, 1662, 26 }, { -964, -34, 1669, 26 }, { -945, -34, 1675, 26 }, { -925, -34, 1680, 26 }, - { -906, -34, 1685, 26 }, { -886, -34, 1689, 26 }, { -867, -34, 1692, 26 }, { -847, -34, 1695, 26 }, - { -827, -34, 1697, 26 }, { -807, -34, 1698, 27 }, { -787, -34, 1699, 27 }, { -767, -34, 1699, 27 }, - { -747, -34, 1699, 27 }, { -727, -34, 1698, 27 }, { -707, -35, 1696, 27 }, { -687, -34, 1693, 27 }, - { -667, -34, 1690, 27 }, { -648, -34, 1686, 27 }, { -628, -35, 1682, 27 }, { -609, -35, 1677, 27 }, - { -590, -35, 1671, 27 }, { -571, -35, 1664, 27 }, { -552, -35, 1657, 27 }, { -534, -35, 1649, 27 }, - { -516, -35, 1640, 27 }, { -498, -35, 1631, 27 }, { -481, -34, 1621, 27 }, { -464, -35, 1610, 27 }, - { -447, -35, 1599, 27 }, { -431, -36, 1587, 28 }, { -415, -36, 1575, 28 }, { -400, -36, 1562, 28 }, - { -385, -36, 1548, 28 }, { -371, -36, 1534, 28 }, { -357, -36, 1520, 28 }, { -344, -37, 1505, 28 }, - { -332, -37, 1489, 28 }, { -320, -38, 1473, 28 }, { -308, -38, 1457, 28 }, { -297, -39, 1440, 28 }, - { -287, -39, 1423, 28 }, { -277, -40, 1406, 28 }, { -267, -41, 1388, 28 }, { -258, -41, 1370, 28 }, - { -250, -41, 1352, 28 }, { -241, -42, 1334, 28 }, { -234, -43, 1315, 28 }, { -226, -44, 1297, 28 }, - { -220, -44, 1278, 28 }, { -213, -44, 1259, 28 }, { -208, -44, 1240, 29 }, { -202, -45, 1220, 29 }, - { -197, -46, 1201, 29 }, { -192, -47, 1182, 29 }, { -188, -47, 1162, 29 }, { -184, -47, 1143, 29 }, - { -180, -47, 1123, 29 }, { -176, -48, 1103, 29 }, { -172, -49, 1084, 29 }, { -169, -49, 1064, 29 }, - { -166, -49, 1044, 29 }, { -163, -49, 1024, 29 }, { -160, -49, 1005, 29 }, { -157, -50, 985, 29 }, - { -155, -50, 965, 29 }, { -153, -50, 945, 29 }, { -150, -50, 925, 29 }, { -149, -50, 905, 29 }, - { -147, -50, 885, 29 }, { -145, -50, 865, 29 }, { -144, -50, 845, 29 }, { -142, -50, 825, 29 }, - { -141, -50, 805, 29 }, { -140, -50, 785, 29 }, { -139, -50, 765, 29 }, { -138, -50, 745, 30 }, - { -138, -50, 725, 30 }, { -137, -50, 705, 30 }, { -137, -50, 685, 30 }, { -136, -50, 665, 30 }, - { -136, -50, 645, 30 }, { -136, -50, 625, 30 }, { -136, -50, 605, 30 }, { -135, -50, 585, 30 }, - { -135, -50, 565, 30 }, { -135, -50, 545, 30 }, { -135, -50, 525, 30 }, { -135, -50, 505, 30 }, - { -135, -50, 485, 30 }, { -135, -50, 465, 30 }, { -135, -50, 445, 30 }, { -135, -50, 425, 30 }, - { -135, -50, 405, 30 }, { -135, -50, 385, 30 }, { -135, -50, 365, 30 }, { -135, -50, 345, 30 }, - { -135, -50, 325, 30 }, { -135, -50, 305, 30 }, { -136, -50, 285, 30 }, { -136, -50, 265, 30 }, - { -136, -50, 245, 30 }, { -136, -50, 225, 1 }, { -136, -50, 205, 1 }, { -137, -50, 185, 1 }, - { -137, -50, 165, 1 }, { -137, -50, 145, 1 }, { -137, -50, 125, 1 }, { -137, -50, 105, 1 }, - { -137, -50, 85, 1 }, { -138, -50, 65, 1 }, { -138, -50, 45, 1 }, { -138, -50, 25, 1 }, - { -138, -50, 5, 1 }, { -138, -50, -14, 1 }, { -138, -50, -34, 1 }, { -138, -50, -54, 1 }, - { -138, -50, -74, 1 }, { -138, -50, -94, 1 }, { -139, -50, -114, 1 }, { -139, -50, -134, 1 }, - { -139, -50, -154, 1 }, { -139, -50, -174, 1 }, { -139, -50, -194, 1 }, { -32768, -32768, -32768, 0 }, +#include "courses/luigi_raceway/d_course_luigi_raceway_track_path.inc.c" }; +#endif // 0xBA90 @@ -5563,3 +6382,12 @@ TrackSections d_course_luigi_raceway_addr[] = { { d_course_luigi_raceway_packed_dl_4EE8, RAMP, 255, 0x0000 }, { 0x00000000, 0, 0, 0x0000 }, }; + +#ifdef VERSION_JP /* VERSION_JP path order: JP puts the paths last */ +TrackPathPoint d_course_luigi_raceway_unknown_path[] = { +#include "courses/luigi_raceway/d_course_luigi_raceway_unknown_path.inc.c" +}; +TrackPathPoint d_course_luigi_raceway_track_path[] = { +#include "courses/luigi_raceway/d_course_luigi_raceway_track_path.inc.c" +}; +#endif diff --git a/courses/luigi_raceway/course_displaylists.jp.v11.s b/courses/luigi_raceway/course_displaylists.jp.v11.s new file mode 100644 index 0000000000..1be403d866 --- /dev/null +++ b/courses/luigi_raceway/course_displaylists.jp.v11.s @@ -0,0 +1,1092 @@ +# JP luigi_raceway display lists. +# +# JP ships a different build of this course - different vertices and +# display lists - and there is no disassembler here that round-trips the +# packed format, so the stream is checked in as data. It was produced by +# unpacking the real JP blob with the game's own unpack_* logic (see +# dlunpack.py), verified two ways: unpacking OUR US blob reproduces our US +# course_displaylists.inc.bin byte for byte, and re-packing this stream with +# tools/displaylist_packer reproduces the real JP blob byte for byte. +# +# Symbol names keep their US spelling (they are just identifiers); the +# addresses are the JP ones, which is what course_data.c needs. + +.include "macros.inc" + +.section .data + +.balign 8 + +glabel d_course_luigi_raceway_packed_dl_0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x0, 0x68 + +glabel d_course_luigi_raceway_packed_dl_68 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x68, 0x10 + +glabel d_course_luigi_raceway_packed_dl_78 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x78, 0x68 + +glabel d_course_luigi_raceway_packed_dl_E0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xe0, 0x10 + +glabel d_course_luigi_raceway_packed_dl_F0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xf0, 0x18 + +glabel d_course_luigi_raceway_packed_dl_108 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x108, 0x10 + +glabel d_course_luigi_raceway_packed_dl_118 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x118, 0x78 + +glabel d_course_luigi_raceway_packed_dl_190 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x190, 0x78 + +glabel d_course_luigi_raceway_packed_dl_208 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x208, 0x78 + +glabel d_course_luigi_raceway_packed_dl_280 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x280, 0x78 + +glabel d_course_luigi_raceway_packed_dl_2F8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2f8, 0x78 + +glabel d_course_luigi_raceway_packed_dl_370 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x370, 0x78 + +glabel d_course_luigi_raceway_packed_dl_3E8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3e8, 0x68 + +glabel d_course_luigi_raceway_packed_dl_450 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x450, 0x68 + +glabel d_course_luigi_raceway_packed_dl_4B8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4b8, 0x70 + +glabel d_course_luigi_raceway_packed_dl_528 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x528, 0x78 + +glabel d_course_luigi_raceway_packed_dl_5A0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x5a0, 0x70 + +glabel d_course_luigi_raceway_packed_dl_610 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x610, 0x78 + +glabel d_course_luigi_raceway_packed_dl_688 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x688, 0x78 + +glabel d_course_luigi_raceway_packed_dl_700 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x700, 0x78 + +glabel d_course_luigi_raceway_packed_dl_778 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x778, 0x78 + +glabel d_course_luigi_raceway_packed_dl_7F0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7f0, 0x68 + +glabel d_course_luigi_raceway_packed_dl_858 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x858, 0x78 + +glabel d_course_luigi_raceway_packed_dl_8D0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8d0, 0x68 + +glabel d_course_luigi_raceway_packed_dl_938 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x938, 0x70 + +glabel d_course_luigi_raceway_packed_dl_9A8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9a8, 0x78 + +glabel d_course_luigi_raceway_packed_dl_A20 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa20, 0x78 + +glabel d_course_luigi_raceway_packed_dl_A98 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa98, 0xb0 + +glabel d_course_luigi_raceway_packed_dl_B48 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb48, 0x88 + +glabel d_course_luigi_raceway_packed_dl_BD0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbd0, 0x88 + +glabel d_course_luigi_raceway_packed_dl_C58 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc58, 0x88 + +glabel d_course_luigi_raceway_packed_dl_CE0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xce0, 0x88 + +glabel d_course_luigi_raceway_packed_dl_D68 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xd68, 0x88 + +glabel d_course_luigi_raceway_packed_dl_DF0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xdf0, 0x88 + +glabel d_course_luigi_raceway_packed_dl_E78 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xe78, 0x88 + +glabel d_course_luigi_raceway_packed_dl_F00 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xf00, 0x88 + +glabel d_course_luigi_raceway_packed_dl_F88 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xf88, 0x78 + +glabel d_course_luigi_raceway_packed_dl_1000 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1000, 0x88 + +glabel d_course_luigi_raceway_packed_dl_1088 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1088, 0x88 + +glabel d_course_luigi_raceway_packed_dl_1110 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1110, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_11B8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x11b8, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_1260 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1260, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_1308 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1308, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_13B0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x13b0, 0x88 + +glabel d_course_luigi_raceway_packed_dl_1438 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1438, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_14E0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x14e0, 0x78 + +glabel d_course_luigi_raceway_packed_dl_1558 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1558, 0x88 + +glabel d_course_luigi_raceway_packed_dl_15E0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x15e0, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_1688 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1688, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_1730 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1730, 0xb0 + +glabel d_course_luigi_raceway_packed_dl_17E0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x17e0, 0x68 + +glabel d_course_luigi_raceway_packed_dl_1848 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1848, 0x70 + +glabel d_course_luigi_raceway_packed_dl_18B8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x18b8, 0x68 + +glabel d_course_luigi_raceway_packed_dl_1920 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1920, 0x68 + +glabel d_course_luigi_raceway_packed_dl_1988 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1988, 0xa0 + +glabel d_course_luigi_raceway_packed_dl_1A28 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1a28, 0xa0 + +glabel d_course_luigi_raceway_packed_dl_1AC8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1ac8, 0x60 + +glabel d_course_luigi_raceway_packed_dl_1B28 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1b28, 0xb0 + +glabel d_course_luigi_raceway_packed_dl_1BD8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1bd8, 0xb8 + +glabel d_course_luigi_raceway_packed_dl_1C90 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1c90, 0x70 + +glabel d_course_luigi_raceway_packed_dl_1D00 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1d00, 0x68 + +glabel d_course_luigi_raceway_packed_dl_1D68 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1d68, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_1E10 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1e10, 0x60 + +glabel d_course_luigi_raceway_packed_dl_1E70 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1e70, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_1F18 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1f18, 0x78 + +glabel d_course_luigi_raceway_packed_dl_1F90 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1f90, 0x60 + +glabel d_course_luigi_raceway_packed_dl_1FF0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1ff0, 0x60 + +glabel d_course_luigi_raceway_packed_dl_2050 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2050, 0x70 + +glabel d_course_luigi_raceway_packed_dl_20C0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x20c0, 0x70 + +glabel d_course_luigi_raceway_packed_dl_2130 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2130, 0x78 + +glabel d_course_luigi_raceway_packed_dl_21A8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x21a8, 0x68 + +glabel d_course_luigi_raceway_packed_dl_2210 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2210, 0x70 + +glabel d_course_luigi_raceway_packed_dl_2280 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2280, 0x78 + +glabel d_course_luigi_raceway_packed_dl_22F8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x22f8, 0x70 + +glabel d_course_luigi_raceway_packed_dl_2368 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2368, 0x78 + +glabel d_course_luigi_raceway_packed_dl_23E0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x23e0, 0x78 + +glabel d_course_luigi_raceway_packed_dl_2458 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2458, 0x88 + +glabel d_course_luigi_raceway_packed_dl_24E0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x24e0, 0x80 + +glabel d_course_luigi_raceway_packed_dl_2560 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2560, 0x88 + +glabel d_course_luigi_raceway_packed_dl_25E8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x25e8, 0x70 + +glabel d_course_luigi_raceway_packed_dl_2658 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2658, 0x60 + +glabel d_course_luigi_raceway_packed_dl_26B8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x26b8, 0x68 + +glabel d_course_luigi_raceway_packed_dl_2720 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2720, 0x78 + +glabel d_course_luigi_raceway_packed_dl_2798 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2798, 0x78 + +glabel d_course_luigi_raceway_packed_dl_2810 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2810, 0x78 + +glabel d_course_luigi_raceway_packed_dl_2888 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2888, 0x78 + +glabel d_course_luigi_raceway_packed_dl_2900 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2900, 0x78 + +glabel d_course_luigi_raceway_packed_dl_2978 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2978, 0x78 + +glabel d_course_luigi_raceway_packed_dl_29F0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x29f0, 0x78 + +glabel d_course_luigi_raceway_packed_dl_2A68 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2a68, 0x78 + +glabel d_course_luigi_raceway_packed_dl_2AE0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2ae0, 0x78 + +glabel d_course_luigi_raceway_packed_dl_2B58 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2b58, 0x70 + +glabel d_course_luigi_raceway_packed_dl_2BC8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2bc8, 0x78 + +glabel d_course_luigi_raceway_packed_dl_2C40 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2c40, 0x78 + +glabel d_course_luigi_raceway_packed_dl_2CB8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2cb8, 0x78 + +glabel d_course_luigi_raceway_packed_dl_2D30 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2d30, 0x78 + +glabel d_course_luigi_raceway_packed_dl_2DA8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2da8, 0x78 + +glabel d_course_luigi_raceway_packed_dl_2E20 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2e20, 0x70 + +glabel d_course_luigi_raceway_packed_dl_2E90 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2e90, 0x68 + +glabel d_course_luigi_raceway_packed_dl_2EF8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2ef8, 0x68 + +glabel d_course_luigi_raceway_packed_dl_2F60 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2f60, 0x120 + +glabel d_course_luigi_raceway_packed_dl_3080 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3080, 0x78 + +glabel d_course_luigi_raceway_packed_dl_30F8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x30f8, 0x78 + +glabel d_course_luigi_raceway_packed_dl_3170 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3170, 0x78 + +glabel d_course_luigi_raceway_packed_dl_31E8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x31e8, 0x78 + +glabel d_course_luigi_raceway_packed_dl_3260 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3260, 0x78 + +glabel d_course_luigi_raceway_packed_dl_32D8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x32d8, 0x78 + +glabel d_course_luigi_raceway_packed_dl_3350 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3350, 0x78 + +glabel d_course_luigi_raceway_packed_dl_33C8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x33c8, 0x80 + +glabel d_course_luigi_raceway_packed_dl_3448 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3448, 0x80 + +glabel d_course_luigi_raceway_packed_dl_34C8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x34c8, 0x80 + +glabel d_course_luigi_raceway_packed_dl_3548 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3548, 0x88 + +glabel d_course_luigi_raceway_packed_dl_35D0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x35d0, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_3678 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3678, 0x80 + +glabel d_course_luigi_raceway_packed_dl_36F8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x36f8, 0x70 + +glabel d_course_luigi_raceway_packed_dl_3768 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3768, 0x78 + +glabel d_course_luigi_raceway_packed_dl_37E0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x37e0, 0x78 + +glabel d_course_luigi_raceway_packed_dl_3858 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3858, 0x78 + +glabel d_course_luigi_raceway_packed_dl_38D0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x38d0, 0x78 + +glabel d_course_luigi_raceway_packed_dl_3948 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3948, 0x80 + +glabel d_course_luigi_raceway_packed_dl_39C8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x39c8, 0x90 + +glabel d_course_luigi_raceway_packed_dl_3A58 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3a58, 0x78 + +glabel d_course_luigi_raceway_packed_dl_3AD0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3ad0, 0x68 + +glabel d_course_luigi_raceway_packed_dl_3B38 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3b38, 0x98 + +glabel d_course_luigi_raceway_packed_dl_3BD0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3bd0, 0x70 + +glabel d_course_luigi_raceway_packed_dl_3C40 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3c40, 0xb0 + +glabel d_course_luigi_raceway_packed_dl_3CF0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3cf0, 0x70 + +glabel d_course_luigi_raceway_packed_dl_3D60 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3d60, 0x78 + +glabel d_course_luigi_raceway_packed_dl_3DD8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3dd8, 0xe0 + +glabel d_course_luigi_raceway_packed_dl_3EB8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3eb8, 0x108 + +glabel d_course_luigi_raceway_packed_dl_3FC0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3fc0, 0x188 + +glabel d_course_luigi_raceway_packed_dl_4148 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4148, 0x1e8 + +glabel d_course_luigi_raceway_packed_dl_4330 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4330, 0x1e8 + +glabel d_course_luigi_raceway_packed_dl_4518 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4518, 0x28 + +glabel d_course_luigi_raceway_packed_dl_4540 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4540, 0x78 + +glabel d_course_luigi_raceway_packed_dl_45B8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x45b8, 0xd8 + +glabel d_course_luigi_raceway_packed_dl_46A0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4690, 0x1e0 + +glabel d_course_luigi_raceway_packed_dl_4860 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4870, 0x20 + +glabel d_course_luigi_raceway_packed_dl_4880 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4890, 0xe0 + +glabel d_course_luigi_raceway_packed_dl_4960 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4970, 0x58 + +glabel d_course_luigi_raceway_packed_dl_49B8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x49c8, 0x70 + +glabel d_course_luigi_raceway_packed_dl_4A28 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4a38, 0xe8 + +glabel d_course_luigi_raceway_packed_dl_4B10 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4b20, 0x118 + +glabel d_course_luigi_raceway_packed_dl_4C28 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4c38, 0x2c0 + +glabel d_course_luigi_raceway_packed_dl_4EE8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4ef8, 0x38 + +glabel d_course_luigi_raceway_packed_dl_4F20 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4f30, 0x118 + +glabel d_course_luigi_raceway_packed_dl_5038 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x5048, 0x1a0 + +glabel d_course_luigi_raceway_packed_dl_51D8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x51e8, 0x208 + +glabel d_course_luigi_raceway_packed_dl_53E0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x53f0, 0x208 + +glabel d_course_luigi_raceway_packed_dl_55E8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x55f8, 0x1a0 + +glabel d_course_luigi_raceway_packed_dl_5788 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x5798, 0x118 + +glabel d_course_luigi_raceway_packed_dl_58A0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x58b0, 0x118 + +glabel d_course_luigi_raceway_packed_dl_59B8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x59c8, 0x100 + +glabel d_course_luigi_raceway_packed_dl_5AB8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x5ac8, 0x100 + +glabel d_course_luigi_raceway_packed_dl_5BB8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x5bc8, 0x118 + +glabel d_course_luigi_raceway_packed_dl_5CD0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x5ce0, 0x208 + +glabel d_course_luigi_raceway_packed_dl_5ED8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x5ee8, 0x208 + +glabel d_course_luigi_raceway_packed_dl_60E0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x60f0, 0x208 + +glabel d_course_luigi_raceway_packed_dl_6300 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x62f8, 0x118 + +glabel d_course_luigi_raceway_packed_dl_6418 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6410, 0x140 + +glabel d_course_luigi_raceway_packed_dl_6558 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6550, 0x80 + +glabel d_course_luigi_raceway_packed_dl_65D8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x65d0, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_6680 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6678, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_6728 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6720, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_67D0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x67c8, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_6878 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6870, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_6920 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6918, 0xa0 + +glabel d_course_luigi_raceway_packed_dl_69C0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x69b8, 0x98 + +glabel d_course_luigi_raceway_packed_dl_6A58 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6a50, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_6B00 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6af8, 0xf0 + +glabel d_course_luigi_raceway_packed_dl_6BF0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6be8, 0xb8 + +glabel d_course_luigi_raceway_packed_dl_6CA8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6ca0, 0xb8 + +glabel d_course_luigi_raceway_packed_dl_6D60 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6d58, 0xb8 + +glabel d_course_luigi_raceway_packed_dl_6E18 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6e10, 0xd8 + +glabel d_course_luigi_raceway_packed_dl_6EF0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6ee8, 0xb8 + +glabel d_course_luigi_raceway_packed_dl_6FA8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6fa0, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_7050 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7048, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_70F8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x70f0, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_71A0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7198, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_7248 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7240, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_72F0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x72e8, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_7398 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7390, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_7440 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7438, 0xb0 + +glabel d_course_luigi_raceway_packed_dl_74F0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x74e8, 0xb8 + +glabel d_course_luigi_raceway_packed_dl_75A8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x75a0, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_7650 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7648, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_76F8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x76f0, 0xb8 + +glabel d_course_luigi_raceway_packed_dl_77B0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x77a8, 0xc8 + +glabel d_course_luigi_raceway_packed_dl_7878 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7870, 0xc8 + +glabel d_course_luigi_raceway_packed_dl_7940 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7938, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_79E8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x79e0, 0xa0 + +glabel d_course_luigi_raceway_packed_dl_7A88 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7a80, 0xf8 + +glabel d_course_luigi_raceway_packed_dl_7B80 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7b78, 0x78 + +glabel d_course_luigi_raceway_packed_dl_7BF8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7bf0, 0x88 + +glabel d_course_luigi_raceway_packed_dl_7C80 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7c78, 0x70 + +glabel d_course_luigi_raceway_packed_dl_7CF0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7ce8, 0x70 + +glabel d_course_luigi_raceway_packed_dl_7D60 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7d58, 0x78 + +glabel d_course_luigi_raceway_packed_dl_7DD8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7dd0, 0x78 + +glabel d_course_luigi_raceway_packed_dl_7E50 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7e48, 0x68 + +glabel d_course_luigi_raceway_packed_dl_7EB8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7eb0, 0x40 + +glabel d_course_luigi_raceway_packed_dl_7EF8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7ef0, 0x70 + +glabel d_course_luigi_raceway_packed_dl_7F68 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7f60, 0x78 + +glabel d_course_luigi_raceway_packed_dl_7FE0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7fd8, 0x68 + +glabel d_course_luigi_raceway_packed_dl_8048 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8040, 0x68 + +glabel d_course_luigi_raceway_packed_dl_80B0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x80a8, 0x78 + +glabel d_course_luigi_raceway_packed_dl_8128 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8120, 0x68 + +glabel d_course_luigi_raceway_packed_dl_8190 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8188, 0x70 + +glabel d_course_luigi_raceway_packed_dl_8200 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x81f8, 0x40 + +glabel d_course_luigi_raceway_packed_dl_8240 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8238, 0xe0 + +glabel d_course_luigi_raceway_packed_dl_8320 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8318, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_83C8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x83c0, 0x18 + +glabel d_course_luigi_raceway_packed_dl_83E0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x83d8, 0x68 + +glabel d_course_luigi_raceway_packed_dl_8448 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8440, 0x68 + +glabel d_course_luigi_raceway_packed_dl_84B0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x84a8, 0x18 + +glabel d_course_luigi_raceway_packed_dl_84C8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x84c0, 0x60 + +glabel d_course_luigi_raceway_packed_dl_8528 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8520, 0xc0 + +glabel d_course_luigi_raceway_packed_dl_85F8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x85e0, 0x170 + +glabel d_course_luigi_raceway_packed_dl_8768 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8750, 0x20 + +glabel d_course_luigi_raceway_packed_dl_8788 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8770, 0x68 + +glabel d_course_luigi_raceway_packed_dl_87F0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x87d8, 0x68 + +glabel d_course_luigi_raceway_packed_dl_8858 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8840, 0x68 + +glabel d_course_luigi_raceway_packed_dl_88C0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x88a8, 0x68 + +glabel d_course_luigi_raceway_packed_dl_8928 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8910, 0x68 + +glabel d_course_luigi_raceway_packed_dl_8990 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8978, 0x68 + +glabel d_course_luigi_raceway_packed_dl_89F8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x89e0, 0x60 + +glabel d_course_luigi_raceway_packed_dl_8A58 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8a40, 0x60 + +glabel d_course_luigi_raceway_packed_dl_8AB8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8aa0, 0x60 + +glabel d_course_luigi_raceway_packed_dl_8B18 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8b00, 0x68 + +glabel d_course_luigi_raceway_packed_dl_8B80 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8b68, 0x68 + +glabel d_course_luigi_raceway_packed_dl_8BE8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8bd0, 0x68 + +glabel d_course_luigi_raceway_packed_dl_8C50 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8c38, 0x68 + +glabel d_course_luigi_raceway_packed_dl_8CB8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8ca0, 0x68 + +glabel d_course_luigi_raceway_packed_dl_8D20 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8d08, 0x68 + +glabel d_course_luigi_raceway_packed_dl_8D88 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8d70, 0x60 + +glabel d_course_luigi_raceway_packed_dl_8DE8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8dd0, 0x68 + +glabel d_course_luigi_raceway_packed_dl_8E50 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8e38, 0x60 + +glabel d_course_luigi_raceway_packed_dl_8EB0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8e98, 0x68 + +glabel d_course_luigi_raceway_packed_dl_8F18 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8f00, 0x68 + +glabel d_course_luigi_raceway_packed_dl_8F80 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8f68, 0x68 + +glabel d_course_luigi_raceway_packed_dl_8FE8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8fd0, 0xb0 + +glabel d_course_luigi_raceway_packed_dl_9098 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9080, 0x88 + +glabel d_course_luigi_raceway_packed_dl_9120 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9108, 0x88 + +glabel d_course_luigi_raceway_packed_dl_91A8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9190, 0x88 + +glabel d_course_luigi_raceway_packed_dl_9230 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9218, 0x88 + +glabel d_course_luigi_raceway_packed_dl_92B8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x92a0, 0x88 + +glabel d_course_luigi_raceway_packed_dl_9340 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9328, 0x88 + +glabel d_course_luigi_raceway_packed_dl_93C8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x93b0, 0x78 + +glabel d_course_luigi_raceway_packed_dl_9440 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9428, 0x78 + +glabel d_course_luigi_raceway_packed_dl_94B8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x94a0, 0x78 + +glabel d_course_luigi_raceway_packed_dl_9530 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9518, 0x88 + +glabel d_course_luigi_raceway_packed_dl_95B8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x95a0, 0x88 + +glabel d_course_luigi_raceway_packed_dl_9640 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9628, 0x88 + +glabel d_course_luigi_raceway_packed_dl_96C8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x96b0, 0x88 + +glabel d_course_luigi_raceway_packed_dl_9750 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9738, 0x88 + +glabel d_course_luigi_raceway_packed_dl_97D8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x97c0, 0x88 + +glabel d_course_luigi_raceway_packed_dl_9860 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9848, 0x78 + +glabel d_course_luigi_raceway_packed_dl_98D8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x98c0, 0x88 + +glabel d_course_luigi_raceway_packed_dl_9960 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9948, 0x78 + +glabel d_course_luigi_raceway_packed_dl_99D8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x99c0, 0x88 + +glabel d_course_luigi_raceway_packed_dl_9A60 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9a48, 0x88 + +glabel d_course_luigi_raceway_packed_dl_9AE8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9ad0, 0x88 + +glabel d_course_luigi_raceway_packed_dl_9B70 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9b58, 0xb0 + +glabel d_course_luigi_raceway_packed_dl_9C20 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9c08, 0x2a0 + +glabel d_course_luigi_raceway_packed_dl_9EC0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9ea8, 0x10 + +glabel d_course_luigi_raceway_packed_dl_9ED0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9eb8, 0xa0 + +glabel d_course_luigi_raceway_packed_dl_9F70 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9f58, 0xa0 + +glabel d_course_luigi_raceway_packed_dl_A010 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9ff8, 0x18 + +glabel d_course_luigi_raceway_packed_dl_A028 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa010, 0x60 + +glabel d_course_luigi_raceway_packed_dl_A088 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa070, 0x68 + +glabel d_course_luigi_raceway_packed_dl_A0F0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa0d8, 0x60 + +glabel d_course_luigi_raceway_packed_dl_A150 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa138, 0x60 + +glabel d_course_luigi_raceway_packed_dl_A1B0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa198, 0x60 + +glabel d_course_luigi_raceway_packed_dl_A210 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa1f8, 0x60 + +glabel d_course_luigi_raceway_packed_dl_A270 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa258, 0x38 + +glabel d_course_luigi_raceway_packed_dl_A2A8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa290, 0x60 + +glabel d_course_luigi_raceway_packed_dl_A308 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa2f0, 0x60 + +glabel d_course_luigi_raceway_packed_dl_A368 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa350, 0x60 + +glabel d_course_luigi_raceway_packed_dl_A3C8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa3b0, 0x68 + +glabel d_course_luigi_raceway_packed_dl_A430 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa418, 0x60 + +glabel d_course_luigi_raceway_packed_dl_A490 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa478, 0x68 + +glabel d_course_luigi_raceway_packed_dl_A4F8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa4e0, 0x60 + +glabel d_course_luigi_raceway_packed_dl_A558 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa540, 0x68 + +glabel d_course_luigi_raceway_packed_dl_A5C0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa5a8, 0x60 + +glabel d_course_luigi_raceway_packed_dl_A620 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa608, 0x68 + +glabel d_course_luigi_raceway_packed_dl_A688 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa670, 0x60 + +glabel d_course_luigi_raceway_packed_dl_A6E8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa6d0, 0x60 + +glabel d_course_luigi_raceway_packed_dl_A748 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa730, 0x60 + +glabel d_course_luigi_raceway_packed_dl_A7A8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa790, 0x68 + +glabel d_course_luigi_raceway_packed_dl_A810 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa7f8, 0x60 + +glabel d_course_luigi_raceway_packed_dl_A870 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa858, 0x60 + +glabel d_course_luigi_raceway_packed_dl_A8D0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa8b8, 0x60 + +glabel d_course_luigi_raceway_packed_dl_A930 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa918, 0x68 + +glabel d_course_luigi_raceway_packed_dl_A998 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa980, 0x68 + +glabel d_course_luigi_raceway_packed_dl_AA00 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa9e8, 0x68 + +glabel d_course_luigi_raceway_packed_dl_AA68 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xaa50, 0x68 + +glabel d_course_luigi_raceway_packed_dl_AAD0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xaab8, 0x68 + +glabel d_course_luigi_raceway_packed_dl_AB38 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xab20, 0x68 + +glabel d_course_luigi_raceway_packed_dl_ABA0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xab88, 0x68 + +glabel d_course_luigi_raceway_packed_dl_AC08 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xabf0, 0x68 + +glabel d_course_luigi_raceway_packed_dl_AC70 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xac58, 0x68 + +glabel d_course_luigi_raceway_packed_dl_ACD8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xacc0, 0x68 + +glabel d_course_luigi_raceway_packed_dl_AD40 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xad28, 0x68 + +glabel d_course_luigi_raceway_packed_dl_ADA8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xad90, 0x68 + +glabel d_course_luigi_raceway_packed_dl_AE10 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xadf8, 0x68 + +glabel d_course_luigi_raceway_packed_dl_AE78 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xae60, 0x68 + +glabel d_course_luigi_raceway_packed_dl_AEE0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xaec8, 0x68 + +glabel d_course_luigi_raceway_packed_dl_AF48 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xaf30, 0x68 + +glabel d_course_luigi_raceway_packed_dl_AFB0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xaf98, 0x60 + +glabel d_course_luigi_raceway_packed_dl_B010 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xaff8, 0x68 + +glabel d_course_luigi_raceway_packed_dl_B078 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb060, 0x120 + +glabel d_course_luigi_raceway_packed_dl_B198 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb180, 0x68 + +glabel d_course_luigi_raceway_packed_dl_B200 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb1e8, 0x68 + +glabel d_course_luigi_raceway_packed_dl_B268 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb250, 0x68 + +glabel d_course_luigi_raceway_packed_dl_B2D0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb2b8, 0x68 + +glabel d_course_luigi_raceway_packed_dl_B338 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb320, 0x68 + +glabel d_course_luigi_raceway_packed_dl_B3A0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb388, 0x68 + +glabel d_course_luigi_raceway_packed_dl_B408 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb3f0, 0x68 + +glabel d_course_luigi_raceway_packed_dl_B470 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb458, 0x60 + +glabel d_course_luigi_raceway_packed_dl_B4D0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb4b8, 0x60 + +glabel d_course_luigi_raceway_packed_dl_B530 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb518, 0x60 + +glabel d_course_luigi_raceway_packed_dl_B590 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb578, 0x70 + +glabel d_course_luigi_raceway_packed_dl_B600 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb5e8, 0x78 + +glabel d_course_luigi_raceway_packed_dl_B678 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb660, 0x60 + +glabel d_course_luigi_raceway_packed_dl_B6D8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb6c0, 0x68 + +glabel d_course_luigi_raceway_packed_dl_B740 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb728, 0x68 + +glabel d_course_luigi_raceway_packed_dl_B7A8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb790, 0x68 + +glabel d_course_luigi_raceway_packed_dl_B810 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb7f8, 0x68 + +glabel d_course_luigi_raceway_packed_dl_B878 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb860, 0x68 + +glabel d_course_luigi_raceway_packed_dl_B8E0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb8c8, 0x68 + +glabel d_course_luigi_raceway_packed_dl_B948 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb930, 0x70 + +glabel d_course_luigi_raceway_packed_dl_B9B8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb9a0, 0x68 + +glabel d_course_luigi_raceway_packed_dl_BA20 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xba08, 0x60 + +glabel d_course_luigi_raceway_packed_dl_BA80 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xba68, 0x70 + +glabel d_course_luigi_raceway_packed_dl_BAF0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbad8, 0x60 + +glabel d_course_luigi_raceway_packed_dl_BB50 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbb38, 0x70 + +glabel d_course_luigi_raceway_packed_dl_BBC0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbba8, 0x60 + +glabel d_course_luigi_raceway_packed_dl_BC20 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbc08, 0x68 + +glabel d_course_luigi_raceway_packed_dl_BC88 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbc70, 0xe0 + +glabel d_course_luigi_raceway_packed_dl_BD68 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbd50, 0x60 + +glabel d_course_luigi_raceway_packed_dl_BDC8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbdb0, 0x60 + +glabel d_course_luigi_raceway_packed_dl_BE28 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbe10, 0x60 + +glabel d_course_luigi_raceway_packed_dl_BE88 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbe70, 0x98 + +glabel d_course_luigi_raceway_packed_dl_BF20 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbf08, 0x98 + +glabel d_course_luigi_raceway_packed_dl_BFB8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbfa0, 0x98 + +glabel d_course_luigi_raceway_packed_dl_C050 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc038, 0xa0 + +glabel d_course_luigi_raceway_packed_dl_C0F0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc0d8, 0xb0 + +glabel d_course_luigi_raceway_packed_dl_C1A0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc188, 0x60 + +glabel d_course_luigi_raceway_packed_dl_C200 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc1e8, 0x60 + +glabel d_course_luigi_raceway_packed_dl_C260 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc248, 0xa0 + +glabel d_course_luigi_raceway_packed_dl_C300 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc2e8, 0xa8 + +glabel d_course_luigi_raceway_packed_dl_C3A8 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc390, 0x68 + +glabel d_course_luigi_raceway_packed_dl_C410 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc3f8, 0xb0 + +glabel d_course_luigi_raceway_packed_dl_C4C0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc4a8, 0x80 + +glabel d_course_luigi_raceway_packed_dl_C540 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc528, 0x80 + +glabel d_course_luigi_raceway_packed_dl_C5C0 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc5a8, 0x80 + +glabel d_course_luigi_raceway_packed_dl_C640 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc628, 0x28 + +glabel d_course_luigi_raceway_packed_dl_C668 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc650, 0xc8 + +glabel d_course_luigi_raceway_packed_dl_C730 +.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc718, 0x10 diff --git a/courses/luigi_raceway/course_offsets.c b/courses/luigi_raceway/course_offsets.c index 5ba10b28e2..22f4db66bc 100644 --- a/courses/luigi_raceway/course_offsets.c +++ b/courses/luigi_raceway/course_offsets.c @@ -43,6 +43,51 @@ extern u8 gTextureSignNintendoRed1[]; extern u8 gTextureSignYoshi[]; extern u8 gTextureCheckerboardBlueGray[]; +#ifdef VERSION_JP /* JP reorders the sign textures, which moves the whole segment 5 layout */ +const course_texture luigi_raceway_textures[] = { + { gTextureSignShellShot0, 0x038C, 0x1000, 0x0 }, + { gTextureSignShellShot1, 0x0247, 0x1000, 0x0 }, + { gTextureSignBlue64, 0x02BF, 0x1000, 0x0 }, + { gTextureCheckerboardYellowBlue, 0x013A, 0x0800, 0x0 }, + { gTexture64619C, 0x0124, 0x0800, 0x0 }, + { gTextureCheckerboardBlueGreen, 0x0139, 0x0800, 0x0 }, + { gTextureGrass3, 0x0372, 0x0800, 0x0 }, + { gTextureFlagRed, 0x019E, 0x0800, 0x0 }, + { gTexture65100C, 0x0120, 0x0800, 0x0 }, + { gTexture65112C, 0x0150, 0x0800, 0x0 }, + { gTexture653608, 0x07A7, 0x0800, 0x0 }, + { gTextureSignKoopaAir0, 0x03C2, 0x1000, 0x0 }, + { gTextureSignKoopaAir1, 0x0319, 0x1000, 0x0 }, + { gTextureGrass11, 0x01F8, 0x0800, 0x0 }, + { gTextureSignLuigiFace0, 0x05C9, 0x1000, 0x0 }, + { gTextureSignLuigiFace1, 0x065F, 0x1000, 0x0 }, + { gTextureSignLuigis0, 0x026A, 0x1000, 0x0 }, + { gTextureSignLuigis1, 0x02CC, 0x1000, 0x0 }, + { gTextureSignMarioStar0, 0x0349, 0x1000, 0x0 }, + { gTextureSignMarioStar1, 0x02D7, 0x1000, 0x0 }, + { gTexture66C7A8, 0x0149, 0x0800, 0x0 }, + { gTextureSignNintendoRed0, 0x02E1, 0x1000, 0x0 }, + { gTextureSignNintendoRed1, 0x034C, 0x1000, 0x0 }, + { gTexture670AC8, 0x0FBF, 0x1000, 0x0 }, + { gTexture671A88, 0x012D, 0x0800, 0x0 }, + { gTexture6735DC, 0x03B1, 0x0800, 0x0 }, + { gTexture673C68, 0x038D, 0x0800, 0x0 }, + { gTexture6747C4, 0x0145, 0x0800, 0x0 }, + { gTextureRoad1, 0x02D2, 0x1000, 0x0 }, + { gTextureRoad2, 0x02AE, 0x1000, 0x0 }, + { gTextureRoadFinish1, 0x026B, 0x1000, 0x0 }, + { gTexture67BBD8, 0x0310, 0x0800, 0x0 }, + { gTexture68272C, 0x01F9, 0x1000, 0x0 }, + { gTexture682928, 0x01F9, 0x1000, 0x0 }, + { gTexture682B24, 0x01F9, 0x1000, 0x0 }, + { gTexture682D20, 0x01F9, 0x1000, 0x0 }, + { gTexture682F1C, 0x01F9, 0x1000, 0x0 }, + { gTexture683118, 0x01F9, 0x1000, 0x0 }, + { gTextureSignYoshi, 0x0342, 0x1000, 0x0 }, + { gTextureCheckerboardBlueGray, 0x027F, 0x1000, 0x0 }, + { 0x00000000, 0x0000, 0x0000, 0x0 }, +}; +#else const course_texture luigi_raceway_textures[] = { { gTextureSignShellShot0, 0x038C, 0x1000, 0x0 }, { gTextureSignShellShot1, 0x0247, 0x1000, 0x0 }, @@ -86,6 +131,7 @@ const course_texture luigi_raceway_textures[] = { { gTextureCheckerboardBlueGray, 0x04A1, 0x1000, 0x0 }, { 0x00000000, 0x0000, 0x0000, 0x0 }, }; +#endif const Gfx* luigi_raceway_dls[] = { d_course_luigi_raceway_dl_0, d_course_luigi_raceway_dl_328, d_course_luigi_raceway_dl_1A8, diff --git a/courses/luigi_raceway/d_course_luigi_raceway_track_path.inc.c b/courses/luigi_raceway/d_course_luigi_raceway_track_path.inc.c new file mode 100644 index 0000000000..28faac931e --- /dev/null +++ b/courses/luigi_raceway/d_course_luigi_raceway_track_path.inc.c @@ -0,0 +1,158 @@ + { -139, -50, -210, 1 }, { -139, -50, -230, 2 }, { -139, -50, -250, 2 }, { -139, -50, -270, 2 }, + { -139, -50, -290, 2 }, { -139, -50, -310, 2 }, { -139, -50, -330, 2 }, { -139, -50, -350, 2 }, + { -139, -50, -370, 2 }, { -139, -50, -390, 2 }, { -139, -50, -410, 2 }, { -139, -50, -430, 2 }, + { -139, -50, -450, 2 }, { -139, -50, -470, 2 }, { -139, -50, -490, 2 }, { -139, -50, -510, 2 }, + { -139, -50, -530, 2 }, { -139, -50, -550, 2 }, { -139, -50, -570, 2 }, { -139, -50, -590, 2 }, + { -139, -50, -610, 2 }, { -139, -50, -630, 2 }, { -139, -50, -650, 2 }, { -139, -50, -670, 2 }, + { -139, -50, -690, 3 }, { -139, -50, -710, 3 }, { -139, -50, -730, 3 }, { -139, -50, -750, 3 }, + { -139, -50, -770, 3 }, { -139, -50, -790, 3 }, { -139, -50, -810, 3 }, { -139, -50, -830, 3 }, + { -139, -50, -850, 3 }, { -139, -50, -870, 3 }, { -139, -50, -890, 3 }, { -139, -50, -910, 3 }, + { -139, -50, -930, 3 }, { -139, -50, -950, 3 }, { -139, -50, -970, 3 }, { -139, -50, -990, 3 }, + { -139, -50, -1010, 3 }, { -139, -50, -1030, 3 }, { -139, -50, -1050, 3 }, { -139, -50, -1070, 3 }, + { -139, -50, -1090, 3 }, { -139, -50, -1110, 3 }, { -139, -50, -1130, 4 }, { -139, -50, -1150, 4 }, + { -139, -50, -1170, 4 }, { -139, -50, -1190, 4 }, { -139, -50, -1210, 4 }, { -139, -50, -1230, 4 }, + { -139, -50, -1250, 4 }, { -139, -50, -1270, 4 }, { -138, -50, -1290, 4 }, { -138, -50, -1310, 4 }, + { -138, -50, -1330, 4 }, { -138, -49, -1351, 4 }, { -138, -49, -1371, 4 }, { -138, -48, -1391, 4 }, + { -138, -48, -1411, 4 }, { -138, -47, -1431, 4 }, { -138, -46, -1451, 4 }, { -138, -46, -1471, 4 }, + { -138, -45, -1491, 4 }, { -138, -44, -1511, 4 }, { -138, -44, -1531, 4 }, { -138, -43, -1551, 4 }, + { -138, -43, -1571, 4 }, { -138, -42, -1591, 5 }, { -138, -40, -1611, 5 }, { -138, -39, -1631, 5 }, + { -138, -38, -1651, 5 }, { -138, -37, -1671, 5 }, { -138, -36, -1691, 5 }, { -138, -36, -1711, 5 }, + { -138, -36, -1731, 5 }, { -138, -37, -1751, 5 }, { -138, -38, -1771, 5 }, { -138, -39, -1791, 5 }, + { -138, -40, -1811, 5 }, { -138, -41, -1831, 5 }, { -138, -42, -1851, 5 }, { -138, -43, -1871, 5 }, + { -138, -44, -1891, 5 }, { -138, -45, -1911, 5 }, { -138, -46, -1931, 5 }, { -138, -47, -1951, 5 }, + { -138, -47, -1971, 5 }, { -138, -47, -1991, 5 }, { -138, -47, -2011, 5 }, { -138, -48, -2031, 6 }, + { -138, -48, -2051, 6 }, { -138, -49, -2071, 6 }, { -138, -49, -2091, 6 }, { -138, -50, -2111, 6 }, + { -138, -50, -2131, 6 }, { -138, -50, -2151, 6 }, { -138, -50, -2171, 6 }, { -138, -50, -2191, 6 }, + { -138, -50, -2211, 6 }, { -138, -50, -2231, 6 }, { -138, -50, -2251, 6 }, { -138, -50, -2271, 6 }, + { -138, -50, -2291, 6 }, { -138, -50, -2311, 6 }, { -138, -50, -2331, 6 }, { -138, -50, -2351, 6 }, + { -138, -50, -2371, 6 }, { -138, -50, -2391, 6 }, { -139, -50, -2411, 6 }, { -139, -50, -2431, 6 }, + { -140, -50, -2451, 6 }, { -141, -50, -2471, 6 }, { -142, -49, -2491, 7 }, { -144, -48, -2511, 7 }, + { -146, -48, -2531, 7 }, { -147, -48, -2551, 7 }, { -149, -48, -2571, 7 }, { -151, -47, -2591, 7 }, + { -154, -47, -2611, 7 }, { -156, -47, -2631, 7 }, { -159, -47, -2650, 7 }, { -162, -46, -2670, 7 }, + { -166, -44, -2690, 7 }, { -170, -44, -2709, 7 }, { -174, -44, -2729, 7 }, { -179, -44, -2748, 7 }, + { -184, -43, -2768, 7 }, { -190, -41, -2787, 7 }, { -197, -41, -2806, 7 }, { -204, -41, -2824, 7 }, + { -212, -41, -2843, 8 }, { -220, -40, -2861, 8 }, { -228, -39, -2879, 8 }, { -238, -38, -2897, 8 }, + { -247, -38, -2915, 8 }, { -257, -38, -2932, 8 }, { -267, -38, -2949, 8 }, { -278, -37, -2966, 8 }, + { -289, -37, -2983, 8 }, { -301, -37, -2999, 8 }, { -313, -36, -3015, 8 }, { -325, -35, -3031, 8 }, + { -338, -35, -3046, 8 }, { -351, -35, -3061, 8 }, { -365, -35, -3076, 8 }, { -379, -35, -3090, 8 }, + { -393, -35, -3104, 8 }, { -408, -35, -3117, 8 }, { -423, -35, -3130, 8 }, { -439, -35, -3143, 8 }, + { -455, -35, -3155, 8 }, { -471, -35, -3167, 9 }, { -487, -35, -3179, 9 }, { -504, -35, -3189, 9 }, + { -521, -35, -3200, 9 }, { -539, -35, -3210, 9 }, { -556, -35, -3219, 9 }, { -574, -35, -3228, 9 }, + { -592, -35, -3237, 9 }, { -610, -35, -3245, 9 }, { -629, -35, -3253, 9 }, { -648, -36, -3260, 9 }, + { -666, -36, -3267, 9 }, { -685, -36, -3273, 9 }, { -704, -36, -3280, 9 }, { -723, -35, -3285, 9 }, + { -743, -36, -3290, 9 }, { -762, -36, -3295, 9 }, { -782, -36, -3299, 9 }, { -801, -36, -3303, 9 }, + { -821, -36, -3307, 9 }, { -841, -36, -3309, 9 }, { -861, -36, -3312, 9 }, { -881, -36, -3314, 9 }, + { -901, -36, -3315, 9 }, { -921, -36, -3316, 10 }, { -941, -35, -3316, 10 }, { -961, -35, -3315, 10 }, + { -981, -35, -3315, 10 }, { -1001, -35, -3313, 10 }, { -1021, -35, -3311, 10 }, { -1040, -35, -3308, 10 }, + { -1060, -35, -3305, 10 }, { -1080, -35, -3301, 10 }, { -1099, -35, -3297, 10 }, { -1119, -36, -3292, 10 }, + { -1138, -36, -3286, 10 }, { -1157, -36, -3280, 10 }, { -1176, -36, -3274, 10 }, { -1195, -36, -3267, 10 }, + { -1213, -36, -3259, 10 }, { -1232, -36, -3251, 10 }, { -1250, -36, -3243, 10 }, { -1268, -36, -3234, 10 }, + { -1286, -35, -3225, 10 }, { -1303, -35, -3215, 10 }, { -1320, -35, -3205, 10 }, { -1337, -35, -3195, 11 }, + { -1354, -35, -3184, 11 }, { -1370, -35, -3172, 11 }, { -1386, -36, -3160, 11 }, { -1402, -36, -3148, 11 }, + { -1417, -36, -3135, 11 }, { -1432, -36, -3121, 11 }, { -1447, -36, -3108, 11 }, { -1461, -36, -3094, 11 }, + { -1475, -36, -3079, 11 }, { -1489, -36, -3065, 11 }, { -1502, -36, -3050, 11 }, { -1515, -35, -3034, 11 }, + { -1527, -35, -3019, 11 }, { -1539, -35, -3003, 11 }, { -1551, -35, -2986, 11 }, { -1562, -35, -2970, 11 }, + { -1573, -35, -2953, 11 }, { -1583, -35, -2936, 11 }, { -1592, -35, -2918, 11 }, { -1601, -35, -2900, 11 }, + { -1610, -35, -2882, 11 }, { -1618, -36, -2864, 11 }, { -1625, -35, -2845, 12 }, { -1633, -35, -2826, 12 }, + { -1639, -35, -2808, 12 }, { -1645, -35, -2788, 12 }, { -1651, -35, -2769, 12 }, { -1656, -35, -2750, 12 }, + { -1660, -35, -2730, 12 }, { -1664, -35, -2711, 12 }, { -1667, -36, -2691, 12 }, { -1670, -36, -2671, 12 }, + { -1672, -36, -2651, 12 }, { -1674, -36, -2631, 12 }, { -1675, -35, -2611, 12 }, { -1676, -36, -2591, 12 }, + { -1677, -36, -2571, 12 }, { -1677, -35, -2551, 12 }, { -1676, -35, -2531, 12 }, { -1675, -35, -2511, 12 }, + { -1673, -36, -2491, 12 }, { -1671, -37, -2472, 13 }, { -1669, -37, -2452, 13 }, { -1666, -37, -2432, 13 }, + { -1662, -38, -2412, 13 }, { -1657, -38, -2393, 13 }, { -1652, -38, -2373, 13 }, { -1647, -39, -2354, 13 }, + { -1641, -40, -2335, 13 }, { -1634, -41, -2316, 13 }, { -1627, -41, -2298, 13 }, { -1619, -41, -2279, 13 }, + { -1611, -42, -2261, 13 }, { -1602, -43, -2243, 13 }, { -1593, -44, -2225, 13 }, { -1583, -44, -2208, 13 }, + { -1573, -44, -2190, 13 }, { -1563, -45, -2173, 13 }, { -1552, -46, -2156, 13 }, { -1541, -47, -2140, 13 }, + { -1530, -47, -2123, 13 }, { -1518, -47, -2107, 13 }, { -1505, -47, -2091, 14 }, { -1493, -47, -2076, 14 }, + { -1479, -47, -2061, 14 }, { -1465, -47, -2047, 14 }, { -1451, -48, -2033, 14 }, { -1436, -48, -2019, 14 }, + { -1421, -49, -2006, 14 }, { -1406, -49, -1993, 14 }, { -1390, -50, -1981, 14 }, { -1374, -50, -1969, 14 }, + { -1358, -50, -1957, 14 }, { -1342, -50, -1945, 14 }, { -1325, -50, -1933, 14 }, { -1309, -51, -1922, 14 }, + { -1292, -51, -1911, 14 }, { -1275, -52, -1900, 14 }, { -1259, -52, -1889, 14 }, { -1242, -53, -1879, 14 }, + { -1225, -53, -1868, 14 }, { -1208, -54, -1857, 14 }, { -1191, -54, -1847, 14 }, { -1174, -55, -1836, 15 }, + { -1157, -55, -1825, 15 }, { -1140, -56, -1815, 15 }, { -1123, -57, -1805, 15 }, { -1106, -57, -1794, 15 }, + { -1089, -58, -1784, 15 }, { -1072, -59, -1773, 15 }, { -1054, -59, -1763, 15 }, { -1037, -60, -1753, 15 }, + { -1020, -60, -1743, 15 }, { -1003, -61, -1733, 15 }, { -985, -62, -1722, 15 }, { -968, -62, -1712, 15 }, + { -951, -63, -1702, 15 }, { -934, -63, -1692, 15 }, { -916, -64, -1682, 15 }, { -899, -64, -1672, 15 }, + { -882, -65, -1662, 15 }, { -865, -65, -1651, 15 }, { -847, -66, -1641, 15 }, { -830, -66, -1631, 15 }, + { -813, -67, -1621, 15 }, { -796, -67, -1610, 15 }, { -779, -68, -1600, 16 }, { -762, -69, -1589, 16 }, + { -745, -70, -1579, 16 }, { -728, -70, -1568, 16 }, { -711, -71, -1558, 16 }, { -694, -72, -1547, 16 }, + { -677, -73, -1536, 16 }, { -661, -75, -1525, 16 }, { -644, -75, -1514, 16 }, { -628, -76, -1502, 16 }, + { -612, -77, -1490, 16 }, { -596, -78, -1478, 16 }, { -580, -80, -1465, 16 }, { -565, -81, -1452, 16 }, + { -550, -82, -1439, 16 }, { -535, -83, -1426, 16 }, { -521, -85, -1412, 16 }, { -507, -85, -1398, 16 }, + { -493, -86, -1383, 17 }, { -480, -89, -1368, 17 }, { -467, -91, -1352, 17 }, { -455, -93, -1337, 17 }, + { -443, -95, -1321, 17 }, { -431, -96, -1304, 17 }, { -420, -98, -1287, 17 }, { -410, -100, -1270, 17 }, + { -400, -103, -1253, 17 }, { -390, -106, -1236, 17 }, { -381, -109, -1218, 17 }, { -372, -111, -1200, 17 }, + { -363, -115, -1182, 17 }, { -356, -119, -1163, 17 }, { -350, -122, -1144, 17 }, { -345, -126, -1125, 17 }, + { -341, -129, -1105, 18 }, { -338, -132, -1086, 18 }, { -334, -136, -1066, 18 }, { -331, -140, -1046, 18 }, + { -328, -143, -1026, 18 }, { -325, -147, -1006, 18 }, { -322, -151, -987, 18 }, { -320, -154, -967, 18 }, + { -318, -158, -947, 18 }, { -316, -161, -927, 18 }, { -314, -164, -907, 18 }, { -312, -168, -887, 18 }, + { -311, -171, -867, 18 }, { -310, -174, -847, 18 }, { -309, -177, -827, 18 }, { -308, -180, -807, 18 }, + { -307, -183, -787, 18 }, { -306, -186, -767, 18 }, { -306, -188, -747, 19 }, { -306, -190, -727, 19 }, + { -306, -192, -707, 19 }, { -305, -193, -687, 19 }, { -305, -195, -667, 19 }, { -305, -196, -647, 19 }, + { -305, -196, -627, 19 }, { -305, -197, -607, 19 }, { -305, -198, -587, 19 }, { -305, -199, -567, 19 }, + { -305, -199, -547, 19 }, { -305, -199, -527, 19 }, { -305, -198, -507, 19 }, { -305, -197, -487, 19 }, + { -305, -196, -467, 19 }, { -305, -194, -447, 19 }, { -305, -193, -427, 19 }, { -305, -192, -407, 19 }, + { -305, -190, -387, 19 }, { -306, -188, -367, 19 }, { -306, -186, -347, 19 }, { -306, -184, -327, 20 }, + { -306, -181, -307, 20 }, { -307, -179, -287, 20 }, { -308, -176, -267, 20 }, { -308, -173, -247, 20 }, + { -309, -171, -227, 20 }, { -310, -169, -207, 20 }, { -312, -166, -187, 20 }, { -314, -163, -167, 20 }, + { -316, -161, -147, 20 }, { -319, -158, -127, 20 }, { -322, -156, -108, 20 }, { -326, -153, -88, 20 }, + { -331, -149, -68, 20 }, { -336, -146, -49, 20 }, { -342, -142, -30, 20 }, { -349, -138, -11, 21 }, + { -357, -134, 6, 21 }, { -366, -131, 24, 21 }, { -376, -127, 41, 21 }, { -387, -122, 58, 21 }, + { -399, -119, 74, 21 }, { -412, -116, 89, 21 }, { -426, -112, 104, 21 }, { -440, -109, 118, 21 }, + { -454, -107, 132, 21 }, { -469, -104, 145, 21 }, { -484, -101, 159, 21 }, { -499, -98, 172, 21 }, + { -514, -96, 185, 21 }, { -530, -94, 198, 21 }, { -545, -91, 210, 21 }, { -561, -89, 223, 21 }, + { -576, -87, 235, 22 }, { -592, -85, 248, 22 }, { -608, -83, 260, 22 }, { -623, -81, 273, 22 }, + { -639, -80, 285, 22 }, { -655, -78, 297, 22 }, { -671, -76, 310, 22 }, { -687, -75, 322, 22 }, + { -702, -74, 334, 22 }, { -718, -72, 346, 22 }, { -734, -71, 358, 22 }, { -750, -70, 371, 22 }, + { -766, -69, 383, 22 }, { -782, -68, 395, 22 }, { -798, -67, 407, 22 }, { -814, -65, 419, 22 }, + { -830, -64, 431, 22 }, { -846, -64, 443, 22 }, { -861, -63, 455, 22 }, { -877, -62, 468, 22 }, + { -893, -61, 480, 22 }, { -909, -61, 492, 22 }, { -925, -60, 504, 22 }, { -941, -59, 516, 22 }, + { -957, -58, 528, 22 }, { -973, -58, 540, 22 }, { -989, -57, 553, 23 }, { -1005, -56, 565, 23 }, + { -1020, -55, 577, 23 }, { -1036, -54, 590, 23 }, { -1052, -54, 602, 23 }, { -1067, -53, 615, 23 }, + { -1083, -52, 628, 23 }, { -1098, -51, 641, 23 }, { -1113, -50, 653, 23 }, { -1128, -49, 667, 23 }, + { -1143, -49, 680, 23 }, { -1158, -48, 693, 23 }, { -1172, -48, 707, 23 }, { -1186, -48, 722, 23 }, + { -1200, -48, 736, 23 }, { -1213, -47, 752, 23 }, { -1225, -47, 767, 23 }, { -1237, -47, 783, 23 }, + { -1249, -47, 799, 23 }, { -1260, -47, 816, 23 }, { -1271, -47, 833, 23 }, { -1281, -46, 850, 23 }, + { -1290, -45, 868, 23 }, { -1299, -43, 886, 24 }, { -1307, -42, 904, 24 }, { -1315, -41, 923, 24 }, + { -1322, -41, 941, 24 }, { -1328, -41, 960, 24 }, { -1334, -40, 980, 24 }, { -1339, -39, 999, 24 }, + { -1343, -39, 1019, 24 }, { -1347, -39, 1038, 24 }, { -1350, -38, 1058, 24 }, { -1352, -37, 1078, 24 }, + { -1353, -36, 1098, 24 }, { -1354, -36, 1118, 24 }, { -1354, -36, 1138, 24 }, { -1353, -35, 1158, 24 }, + { -1352, -34, 1178, 24 }, { -1350, -34, 1198, 24 }, { -1346, -35, 1218, 24 }, { -1342, -35, 1237, 25 }, + { -1338, -35, 1257, 25 }, { -1332, -35, 1276, 25 }, { -1326, -35, 1295, 25 }, { -1320, -35, 1314, 25 }, + { -1312, -35, 1332, 25 }, { -1304, -35, 1351, 25 }, { -1296, -36, 1369, 25 }, { -1287, -36, 1387, 25 }, + { -1277, -36, 1404, 25 }, { -1267, -36, 1422, 25 }, { -1257, -36, 1439, 25 }, { -1246, -35, 1455, 25 }, + { -1234, -35, 1472, 25 }, { -1222, -35, 1487, 25 }, { -1209, -35, 1503, 25 }, { -1196, -35, 1518, 25 }, + { -1182, -35, 1533, 25 }, { -1168, -36, 1547, 25 }, { -1153, -35, 1560, 26 }, { -1138, -35, 1574, 26 }, + { -1123, -35, 1586, 26 }, { -1107, -35, 1598, 26 }, { -1090, -35, 1609, 26 }, { -1073, -34, 1620, 26 }, + { -1056, -34, 1630, 26 }, { -1038, -34, 1639, 26 }, { -1020, -34, 1648, 26 }, { -1001, -34, 1655, 26 }, + { -983, -34, 1662, 26 }, { -964, -34, 1669, 26 }, { -945, -34, 1675, 26 }, { -925, -34, 1680, 26 }, + { -906, -34, 1685, 26 }, { -886, -34, 1689, 26 }, { -867, -34, 1692, 26 }, { -847, -34, 1695, 26 }, + { -827, -34, 1697, 26 }, { -807, -34, 1698, 27 }, { -787, -34, 1699, 27 }, { -767, -34, 1699, 27 }, + { -747, -34, 1699, 27 }, { -727, -34, 1698, 27 }, { -707, -35, 1696, 27 }, { -687, -34, 1693, 27 }, + { -667, -34, 1690, 27 }, { -648, -34, 1686, 27 }, { -628, -35, 1682, 27 }, { -609, -35, 1677, 27 }, + { -590, -35, 1671, 27 }, { -571, -35, 1664, 27 }, { -552, -35, 1657, 27 }, { -534, -35, 1649, 27 }, + { -516, -35, 1640, 27 }, { -498, -35, 1631, 27 }, { -481, -34, 1621, 27 }, { -464, -35, 1610, 27 }, + { -447, -35, 1599, 27 }, { -431, -36, 1587, 28 }, { -415, -36, 1575, 28 }, { -400, -36, 1562, 28 }, + { -385, -36, 1548, 28 }, { -371, -36, 1534, 28 }, { -357, -36, 1520, 28 }, { -344, -37, 1505, 28 }, + { -332, -37, 1489, 28 }, { -320, -38, 1473, 28 }, { -308, -38, 1457, 28 }, { -297, -39, 1440, 28 }, + { -287, -39, 1423, 28 }, { -277, -40, 1406, 28 }, { -267, -41, 1388, 28 }, { -258, -41, 1370, 28 }, + { -250, -41, 1352, 28 }, { -241, -42, 1334, 28 }, { -234, -43, 1315, 28 }, { -226, -44, 1297, 28 }, + { -220, -44, 1278, 28 }, { -213, -44, 1259, 28 }, { -208, -44, 1240, 29 }, { -202, -45, 1220, 29 }, + { -197, -46, 1201, 29 }, { -192, -47, 1182, 29 }, { -188, -47, 1162, 29 }, { -184, -47, 1143, 29 }, + { -180, -47, 1123, 29 }, { -176, -48, 1103, 29 }, { -172, -49, 1084, 29 }, { -169, -49, 1064, 29 }, + { -166, -49, 1044, 29 }, { -163, -49, 1024, 29 }, { -160, -49, 1005, 29 }, { -157, -50, 985, 29 }, + { -155, -50, 965, 29 }, { -153, -50, 945, 29 }, { -150, -50, 925, 29 }, { -149, -50, 905, 29 }, + { -147, -50, 885, 29 }, { -145, -50, 865, 29 }, { -144, -50, 845, 29 }, { -142, -50, 825, 29 }, + { -141, -50, 805, 29 }, { -140, -50, 785, 29 }, { -139, -50, 765, 29 }, { -138, -50, 745, 30 }, + { -138, -50, 725, 30 }, { -137, -50, 705, 30 }, { -137, -50, 685, 30 }, { -136, -50, 665, 30 }, + { -136, -50, 645, 30 }, { -136, -50, 625, 30 }, { -136, -50, 605, 30 }, { -135, -50, 585, 30 }, + { -135, -50, 565, 30 }, { -135, -50, 545, 30 }, { -135, -50, 525, 30 }, { -135, -50, 505, 30 }, + { -135, -50, 485, 30 }, { -135, -50, 465, 30 }, { -135, -50, 445, 30 }, { -135, -50, 425, 30 }, + { -135, -50, 405, 30 }, { -135, -50, 385, 30 }, { -135, -50, 365, 30 }, { -135, -50, 345, 30 }, + { -135, -50, 325, 30 }, { -135, -50, 305, 30 }, { -136, -50, 285, 30 }, { -136, -50, 265, 30 }, + { -136, -50, 245, 30 }, { -136, -50, 225, 1 }, { -136, -50, 205, 1 }, { -137, -50, 185, 1 }, + { -137, -50, 165, 1 }, { -137, -50, 145, 1 }, { -137, -50, 125, 1 }, { -137, -50, 105, 1 }, + { -137, -50, 85, 1 }, { -138, -50, 65, 1 }, { -138, -50, 45, 1 }, { -138, -50, 25, 1 }, + { -138, -50, 5, 1 }, { -138, -50, -14, 1 }, { -138, -50, -34, 1 }, { -138, -50, -54, 1 }, + { -138, -50, -74, 1 }, { -138, -50, -94, 1 }, { -139, -50, -114, 1 }, { -139, -50, -134, 1 }, + { -139, -50, -154, 1 }, { -139, -50, -174, 1 }, { -139, -50, -194, 1 }, { -32768, -32768, -32768, 0 }, diff --git a/courses/luigi_raceway/d_course_luigi_raceway_unknown_path.inc.c b/courses/luigi_raceway/d_course_luigi_raceway_unknown_path.inc.c new file mode 100644 index 0000000000..c3b4467a5f --- /dev/null +++ b/courses/luigi_raceway/d_course_luigi_raceway_unknown_path.inc.c @@ -0,0 +1,13 @@ + { -139, 0, -202, 0 }, { -139, 0, -218, 0 }, { -139, 0, -297, 0 }, { -139, 0, -2247, 0 }, + { -138, 0, -2474, 0 }, { -170, 0, -2745, 0 }, { -249, 0, -2930, 0 }, { -373, 0, -3095, 0 }, + { -550, 0, -3226, 0 }, { -787, 0, -3310, 0 }, { -1022, 0, -3321, 0 }, { -1236, 0, -3258, 0 }, + { -1415, 0, -3148, 0 }, { -1571, 0, -2974, 0 }, { -1658, 0, -2773, 0 }, { -1683, 0, -2574, 0 }, + { -1661, 0, -2374, 0 }, { -1577, 0, -2184, 0 }, { -1447, 0, -2015, 0 }, { -1180, 0, -1836, 0 }, + { -697, 0, -1554, 0 }, { -547, 0, -1442, 0 }, { -444, 0, -1329, 0 }, { -368, 0, -1198, 0 }, + { -341, 0, -1118, 0 }, { -307, 0, -871, 0 }, { -305, 0, -538, 0 }, { -307, 0, -224, 0 }, + { -324, 0, -85, 0 }, { -364, 0, 33, 0 }, { -453, 0, 137, 0 }, { -678, 0, 317, 0 }, + { -1128, 0, 657, 0 }, { -1256, 0, 798, 0 }, { -1336, 0, 960, 0 }, { -1362, 0, 1141, 0 }, + { -1329, 0, 1310, 0 }, { -1236, 0, 1483, 0 }, { -1092, 0, 1620, 0 }, { -911, 0, 1692, 0 }, + { -717, 0, 1705, 0 }, { -523, 0, 1655, 0 }, { -352, 0, 1529, 0 }, { -239, 0, 1345, 0 }, + { -179, 0, 1142, 0 }, { -140, 0, 854, 0 }, { -134, 0, 491, 0 }, { -139, 0, -16, 0 }, + { -140, 0, -157, 0 }, { -32768, 0, 0, 0 }, diff --git a/courses/mario_raceway/course_data.c b/courses/mario_raceway/course_data.c index 371f350236..e0a633bc29 100644 --- a/courses/mario_raceway/course_data.c +++ b/courses/mario_raceway/course_data.c @@ -107,9 +107,13 @@ Gfx d_course_mario_raceway_dl_1D0[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_20B0), gsSPDisplayList(d_course_mario_raceway_packed_dl_2138), gsSPDisplayList(d_course_mario_raceway_packed_dl_21C0), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1EA8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1F30), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_26F8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_2760), gsSPEndDisplayList(), }; @@ -127,23 +131,35 @@ Gfx d_course_mario_raceway_dl_2C8[] = { gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), gsSPDisplayList(d_course_mario_raceway_packed_dl_1770), gsSPDisplayList(d_course_mario_raceway_packed_dl_1950), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_18E0), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_17D8), gsSPDisplayList(d_course_mario_raceway_packed_dl_5218), gsSPDisplayList(d_course_mario_raceway_packed_dl_50E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4A68), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_4BB8), gsSPDisplayList(d_course_mario_raceway_packed_dl_4B50), gsSPDisplayList(d_course_mario_raceway_packed_dl_40D8), gsSPDisplayList(d_course_mario_raceway_packed_dl_5BC8), gsSPDisplayList(d_course_mario_raceway_packed_dl_5D70), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2138), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_21C0), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1EA8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1F30), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_2340), gsSPDisplayList(d_course_mario_raceway_packed_dl_26F8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2760), +#endif gsSPEndDisplayList(), }; @@ -170,7 +186,9 @@ Gfx d_course_mario_raceway_dl_3A8[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_4CB8), gsSPDisplayList(d_course_mario_raceway_packed_dl_4BB8), gsSPDisplayList(d_course_mario_raceway_packed_dl_5CE8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2038), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_20B0), gsSPDisplayList(d_course_mario_raceway_packed_dl_2138), gsSPDisplayList(d_course_mario_raceway_packed_dl_1EA8), @@ -198,7 +216,9 @@ Gfx d_course_mario_raceway_dl_478[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_4F90), gsSPDisplayList(d_course_mario_raceway_packed_dl_4EE8), gsSPDisplayList(d_course_mario_raceway_packed_dl_4E20), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4CB8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_4BB8), gsSPDisplayList(d_course_mario_raceway_packed_dl_40D8), gsSPDisplayList(d_course_mario_raceway_packed_dl_4188), @@ -226,7 +246,9 @@ Gfx d_course_mario_raceway_dl_568[] = { gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), gsSPDisplayList(d_course_mario_raceway_packed_dl_1770), gsSPDisplayList(d_course_mario_raceway_packed_dl_16D8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1950), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_17D8), gsSPDisplayList(d_course_mario_raceway_packed_dl_5218), gsSPDisplayList(d_course_mario_raceway_packed_dl_50E8), @@ -243,7 +265,9 @@ Gfx d_course_mario_raceway_dl_568[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_20B0), gsSPDisplayList(d_course_mario_raceway_packed_dl_2138), gsSPDisplayList(d_course_mario_raceway_packed_dl_21C0), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1EA8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1F30), gsSPDisplayList(d_course_mario_raceway_packed_dl_26F8), gsSPDisplayList(d_course_mario_raceway_packed_dl_2760), @@ -263,24 +287,34 @@ Gfx d_course_mario_raceway_dl_668[] = { gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), gsSPDisplayList(d_course_mario_raceway_packed_dl_1770), gsSPDisplayList(d_course_mario_raceway_packed_dl_16D8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1950), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_17D8), gsSPDisplayList(d_course_mario_raceway_packed_dl_5218), gsSPDisplayList(d_course_mario_raceway_packed_dl_50E8), gsSPDisplayList(d_course_mario_raceway_packed_dl_4F90), gsSPDisplayList(d_course_mario_raceway_packed_dl_4EE8), gsSPDisplayList(d_course_mario_raceway_packed_dl_4A68), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4CB8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_4BB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_40D8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_4188), gsSPDisplayList(d_course_mario_raceway_packed_dl_2038), gsSPDisplayList(d_course_mario_raceway_packed_dl_20B0), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2138), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1EA8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1F30), gsSPDisplayList(d_course_mario_raceway_packed_dl_26F8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2760), +#endif gsSPEndDisplayList(), }; @@ -307,7 +341,9 @@ Gfx d_course_mario_raceway_dl_750[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_4CB8), gsSPDisplayList(d_course_mario_raceway_packed_dl_4C28), gsSPDisplayList(d_course_mario_raceway_packed_dl_4BB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4B50), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_5CE8), gsSPDisplayList(d_course_mario_raceway_packed_dl_2038), gsSPDisplayList(d_course_mario_raceway_packed_dl_20B0), @@ -449,7 +485,9 @@ Gfx d_course_mario_raceway_dl_B08[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_4A68), gsSPDisplayList(d_course_mario_raceway_packed_dl_4CB8), gsSPDisplayList(d_course_mario_raceway_packed_dl_4BB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4B50), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_5CE8), gsSPDisplayList(d_course_mario_raceway_packed_dl_2038), gsSPDisplayList(d_course_mario_raceway_packed_dl_20B0), @@ -487,7 +525,9 @@ Gfx d_course_mario_raceway_dl_C20[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_5550), gsSPDisplayList(d_course_mario_raceway_packed_dl_5408), gsSPDisplayList(d_course_mario_raceway_packed_dl_3630), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4BB8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_4B50), gsSPDisplayList(d_course_mario_raceway_packed_dl_62A0), gsSPDisplayList(d_course_mario_raceway_packed_dl_6528), @@ -604,7 +644,9 @@ Gfx d_course_mario_raceway_dl_F60[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_4CB8), gsSPDisplayList(d_course_mario_raceway_packed_dl_4BB8), gsSPDisplayList(d_course_mario_raceway_packed_dl_4B50), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_6528), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_5DF0), gsSPDisplayList(d_course_mario_raceway_packed_dl_5D70), gsSPDisplayList(d_course_mario_raceway_packed_dl_2038), @@ -613,7 +655,9 @@ Gfx d_course_mario_raceway_dl_F60[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_21C0), gsSPDisplayList(d_course_mario_raceway_packed_dl_2248), gsSPDisplayList(d_course_mario_raceway_packed_dl_22B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1FB0), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1EA8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1F30), gsSPDisplayList(d_course_mario_raceway_packed_dl_2340), @@ -690,7 +734,9 @@ Gfx d_course_mario_raceway_dl_1210[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1500), gsSPDisplayList(d_course_mario_raceway_packed_dl_1850), gsSPDisplayList(d_course_mario_raceway_packed_dl_1A08), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4F90), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_4E20), gsSPDisplayList(d_course_mario_raceway_packed_dl_3CD8), gsSPDisplayList(d_course_mario_raceway_packed_dl_5608), @@ -699,9 +745,15 @@ Gfx d_course_mario_raceway_dl_1210[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_5408), gsSPDisplayList(d_course_mario_raceway_packed_dl_5368), gsSPDisplayList(d_course_mario_raceway_packed_dl_4290), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4BB8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4B50), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_56F0), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_6240), gsSPDisplayList(d_course_mario_raceway_packed_dl_4348), gsSPDisplayList(d_course_mario_raceway_packed_dl_43C0), @@ -715,7 +767,9 @@ Gfx d_course_mario_raceway_dl_1210[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_5DF0), gsSPDisplayList(d_course_mario_raceway_packed_dl_5D70), gsSPDisplayList(d_course_mario_raceway_packed_dl_5C80), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_20B0), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_2138), gsSPDisplayList(d_course_mario_raceway_packed_dl_21C0), gsSPDisplayList(d_course_mario_raceway_packed_dl_2248), @@ -723,7 +777,9 @@ Gfx d_course_mario_raceway_dl_1210[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1FB0), gsSPDisplayList(d_course_mario_raceway_packed_dl_1BB8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1C48), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1CF8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1E30), gsSPDisplayList(d_course_mario_raceway_packed_dl_26F8), @@ -821,7 +877,11 @@ Gfx d_course_mario_raceway_dl_15C8[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_4F90), gsSPDisplayList(d_course_mario_raceway_packed_dl_4EE8), gsSPDisplayList(d_course_mario_raceway_packed_dl_4E20), +#ifdef VERSION_JP + gsSPDisplayList(d_course_mario_raceway_packed_dl_3CD8), +#else gsSPDisplayList(d_course_mario_raceway_packed_dl_52B8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_5608), gsSPDisplayList(d_course_mario_raceway_packed_dl_5550), gsSPDisplayList(d_course_mario_raceway_packed_dl_5408), @@ -850,7 +910,9 @@ Gfx d_course_mario_raceway_dl_15C8[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_2760), gsSPDisplayList(d_course_mario_raceway_packed_dl_27E8), gsSPDisplayList(d_course_mario_raceway_packed_dl_2870), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_29B0), +#endif gsSPEndDisplayList(), }; @@ -1018,7 +1080,9 @@ Gfx d_course_mario_raceway_dl_1B70[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_14C8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1500), gsSPDisplayList(d_course_mario_raceway_packed_dl_1550), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1A08), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_3C28), gsSPDisplayList(d_course_mario_raceway_packed_dl_3CD8), gsSPDisplayList(d_course_mario_raceway_packed_dl_38B8), @@ -1031,9 +1095,15 @@ Gfx d_course_mario_raceway_dl_1B70[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_4BB8), gsSPDisplayList(d_course_mario_raceway_packed_dl_4B50), gsSPDisplayList(d_course_mario_raceway_packed_dl_6528), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4540), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4210), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_3E00), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_5E58), gsSPDisplayList(d_course_mario_raceway_packed_dl_5DF0), gsSPDisplayList(d_course_mario_raceway_packed_dl_5D70), @@ -1052,8 +1122,12 @@ Gfx d_course_mario_raceway_dl_1B70[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_27E8), gsSPDisplayList(d_course_mario_raceway_packed_dl_2870), gsSPDisplayList(d_course_mario_raceway_packed_dl_28F8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_29B0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2680), +#endif gsSPEndDisplayList(), }; @@ -1080,7 +1154,9 @@ Gfx d_course_mario_raceway_dl_1CF8[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_3630), gsSPDisplayList(d_course_mario_raceway_packed_dl_4D48), gsSPDisplayList(d_course_mario_raceway_packed_dl_49E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4950), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_4870), gsSPDisplayList(d_course_mario_raceway_packed_dl_4780), gsSPDisplayList(d_course_mario_raceway_packed_dl_46A0), @@ -1160,12 +1236,18 @@ Gfx d_course_mario_raceway_dl_1F68[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1500), gsSPDisplayList(d_course_mario_raceway_packed_dl_1550), gsSPDisplayList(d_course_mario_raceway_packed_dl_1600), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1850), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1AF8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_54B0), gsSPDisplayList(d_course_mario_raceway_packed_dl_4D48), gsSPDisplayList(d_course_mario_raceway_packed_dl_49E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4950), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_4870), gsSPDisplayList(d_course_mario_raceway_packed_dl_4780), gsSPDisplayList(d_course_mario_raceway_packed_dl_46A0), @@ -1173,15 +1255,25 @@ Gfx d_course_mario_raceway_dl_1F68[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_56F0), gsSPDisplayList(d_course_mario_raceway_packed_dl_6240), gsSPDisplayList(d_course_mario_raceway_packed_dl_4348), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_44C0), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_62A0), gsSPDisplayList(d_course_mario_raceway_packed_dl_6528), gsSPDisplayList(d_course_mario_raceway_packed_dl_5C80), gsSPDisplayList(d_course_mario_raceway_packed_dl_1CF8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1E30), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2680), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_23B8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_2420), gsSPDisplayList(d_course_mario_raceway_packed_dl_2498), gsSPDisplayList(d_course_mario_raceway_packed_dl_2510), @@ -1217,9 +1309,15 @@ Gfx d_course_mario_raceway_dl_20A0[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_46A0), gsSPDisplayList(d_course_mario_raceway_packed_dl_4348), gsSPDisplayList(d_course_mario_raceway_packed_dl_43C0), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_44C0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_62A0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_6528), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_5E58), gsSPDisplayList(d_course_mario_raceway_packed_dl_5DF0), gsSPDisplayList(d_course_mario_raceway_packed_dl_5D70), @@ -1231,8 +1329,12 @@ Gfx d_course_mario_raceway_dl_20A0[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1E30), gsSPDisplayList(d_course_mario_raceway_packed_dl_29B0), gsSPDisplayList(d_course_mario_raceway_packed_dl_2680), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_23B8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2420), +#endif gsSPEndDisplayList(), }; @@ -1341,17 +1443,25 @@ Gfx d_course_mario_raceway_dl_2418[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_56F0), gsSPDisplayList(d_course_mario_raceway_packed_dl_6240), gsSPDisplayList(d_course_mario_raceway_packed_dl_6198), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_43C0), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_4458), gsSPDisplayList(d_course_mario_raceway_packed_dl_44C0), gsSPDisplayList(d_course_mario_raceway_packed_dl_62A0), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_6528), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_5C80), gsSPDisplayList(d_course_mario_raceway_packed_dl_1C48), gsSPDisplayList(d_course_mario_raceway_packed_dl_1CF8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1E30), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2680), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_23B8), gsSPDisplayList(d_course_mario_raceway_packed_dl_2420), gsSPDisplayList(d_course_mario_raceway_packed_dl_2498), @@ -1498,7 +1608,9 @@ Gfx d_course_mario_raceway_dl_28B0[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1600), gsSPDisplayList(d_course_mario_raceway_packed_dl_1850), gsSPDisplayList(d_course_mario_raceway_packed_dl_1AF8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1A80), +#endif gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), @@ -1506,7 +1618,9 @@ Gfx d_course_mario_raceway_dl_28B0[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_36B0), gsSPDisplayList(d_course_mario_raceway_packed_dl_3728), gsSPDisplayList(d_course_mario_raceway_packed_dl_4950), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4870), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_4780), gsSPDisplayList(d_course_mario_raceway_packed_dl_46A0), gsSPDisplayList(d_course_mario_raceway_packed_dl_4AD8), @@ -1517,13 +1631,17 @@ Gfx d_course_mario_raceway_dl_28B0[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_4458), gsSPDisplayList(d_course_mario_raceway_packed_dl_44C0), gsSPDisplayList(d_course_mario_raceway_packed_dl_62A0), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_6528), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_5C80), gsSPDisplayList(d_course_mario_raceway_packed_dl_1C48), gsSPDisplayList(d_course_mario_raceway_packed_dl_1CF8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1E30), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2680), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_23B8), gsSPDisplayList(d_course_mario_raceway_packed_dl_2420), gsSPDisplayList(d_course_mario_raceway_packed_dl_2498), @@ -1635,7 +1753,9 @@ Gfx d_course_mario_raceway_dl_2C98[] = { G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), gsDPLoadSync(), gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1600), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1850), gsSPDisplayList(d_course_mario_raceway_packed_dl_1AF8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1A80), @@ -1663,7 +1783,9 @@ Gfx d_course_mario_raceway_dl_2C98[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_23B8), gsSPDisplayList(d_course_mario_raceway_packed_dl_2420), gsSPDisplayList(d_course_mario_raceway_packed_dl_2498), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2510), +#endif gsSPEndDisplayList(), }; @@ -1699,7 +1821,9 @@ Gfx d_course_mario_raceway_dl_2DC0[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_6528), gsSPDisplayList(d_course_mario_raceway_packed_dl_6490), gsSPDisplayList(d_course_mario_raceway_packed_dl_5C80), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1CF8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1E30), gsSPDisplayList(d_course_mario_raceway_packed_dl_2680), @@ -1733,7 +1857,11 @@ Gfx d_course_mario_raceway_dl_2EF8[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_4950), gsSPDisplayList(d_course_mario_raceway_packed_dl_3818), gsSPDisplayList(d_course_mario_raceway_packed_dl_3D50), +#ifdef VERSION_JP + gsSPDisplayList(d_course_mario_raceway_packed_dl_4290), +#else gsSPDisplayList(d_course_mario_raceway_packed_dl_46A0), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_6198), gsSPDisplayList(d_course_mario_raceway_packed_dl_60F0), gsSPDisplayList(d_course_mario_raceway_packed_dl_6068), @@ -1862,16 +1990,26 @@ Gfx d_course_mario_raceway_dl_32D8[] = { G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), gsDPLoadSync(), gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1550), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1600), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1850), gsSPDisplayList(d_course_mario_raceway_packed_dl_1AF8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1A80), gsSPDisplayList(d_course_mario_raceway_packed_dl_1A08), gsSPDisplayList(d_course_mario_raceway_packed_dl_1988), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_5550), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_3530), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_3818), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_3D50), gsSPDisplayList(d_course_mario_raceway_packed_dl_4290), gsSPDisplayList(d_course_mario_raceway_packed_dl_56F0), @@ -1885,13 +2023,21 @@ Gfx d_course_mario_raceway_dl_32D8[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_6490), gsSPDisplayList(d_course_mario_raceway_packed_dl_63B0), gsSPDisplayList(d_course_mario_raceway_packed_dl_6308), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_3E78), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_3EF8), gsSPDisplayList(d_course_mario_raceway_packed_dl_5C80), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1FB0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1BB8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1C48), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1CF8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1E30), gsSPDisplayList(d_course_mario_raceway_packed_dl_29B0), @@ -1915,8 +2061,12 @@ Gfx d_course_mario_raceway_dl_3458[] = { G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), gsDPLoadSync(), gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1550), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1600), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1850), gsSPDisplayList(d_course_mario_raceway_packed_dl_1AF8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1A80), @@ -1926,9 +2076,15 @@ Gfx d_course_mario_raceway_dl_3458[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_5550), gsSPDisplayList(d_course_mario_raceway_packed_dl_3530), gsSPDisplayList(d_course_mario_raceway_packed_dl_3798), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_3818), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_3D50), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4290), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_4348), gsSPDisplayList(d_course_mario_raceway_packed_dl_60F0), gsSPDisplayList(d_course_mario_raceway_packed_dl_6068), @@ -2057,8 +2213,12 @@ Gfx d_course_mario_raceway_dl_3830[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1A80), gsSPDisplayList(d_course_mario_raceway_packed_dl_1A08), gsSPDisplayList(d_course_mario_raceway_packed_dl_1988), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_5550), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_3530), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_56F0), gsSPDisplayList(d_course_mario_raceway_packed_dl_6240), gsSPDisplayList(d_course_mario_raceway_packed_dl_60F0), @@ -2164,7 +2324,9 @@ Gfx d_course_mario_raceway_dl_3AA0[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_3F80), gsSPDisplayList(d_course_mario_raceway_packed_dl_4028), gsSPDisplayList(d_course_mario_raceway_packed_dl_40D8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_5D70), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_22B8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1FB0), gsSPDisplayList(d_course_mario_raceway_packed_dl_1BB8), @@ -2172,9 +2334,15 @@ Gfx d_course_mario_raceway_dl_3AA0[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1E30), gsSPDisplayList(d_course_mario_raceway_packed_dl_2340), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_26F8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2760), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_27E8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_2870), gsSPDisplayList(d_course_mario_raceway_packed_dl_28F8), gsSPEndDisplayList(), @@ -2195,8 +2363,12 @@ Gfx d_course_mario_raceway_dl_3C08[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1A08), gsSPDisplayList(d_course_mario_raceway_packed_dl_1988), gsSPDisplayList(d_course_mario_raceway_packed_dl_1890), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_18B8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_18E0), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_43C0), gsSPDisplayList(d_course_mario_raceway_packed_dl_44C0), gsSPDisplayList(d_course_mario_raceway_packed_dl_62A0), @@ -2208,18 +2380,28 @@ Gfx d_course_mario_raceway_dl_3C08[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_5AE0), gsSPDisplayList(d_course_mario_raceway_packed_dl_5A48), gsSPDisplayList(d_course_mario_raceway_packed_dl_3F80), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4028), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_40D8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_5E58), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_5D70), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_5C80), gsSPDisplayList(d_course_mario_raceway_packed_dl_1FB0), gsSPDisplayList(d_course_mario_raceway_packed_dl_1BB8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1C48), gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1E30), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_26F8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2760), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_27E8), gsSPDisplayList(d_course_mario_raceway_packed_dl_2870), gsSPDisplayList(d_course_mario_raceway_packed_dl_28F8), @@ -2246,8 +2428,12 @@ Gfx d_course_mario_raceway_dl_3D68[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1890), gsSPDisplayList(d_course_mario_raceway_packed_dl_18B8), gsSPDisplayList(d_course_mario_raceway_packed_dl_18E0), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_5550), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_3530), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_4AD8), gsSPDisplayList(d_course_mario_raceway_packed_dl_56F0), gsSPDisplayList(d_course_mario_raceway_packed_dl_6240), @@ -2287,7 +2473,9 @@ Gfx d_course_mario_raceway_dl_3EB8[] = { G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), gsDPLoadSync(), gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1A80), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1A08), gsSPDisplayList(d_course_mario_raceway_packed_dl_1988), gsSPDisplayList(d_course_mario_raceway_packed_dl_1890), @@ -2298,7 +2486,9 @@ Gfx d_course_mario_raceway_dl_3EB8[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_5550), gsSPDisplayList(d_course_mario_raceway_packed_dl_3530), gsSPDisplayList(d_course_mario_raceway_packed_dl_4B50), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_44C0), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_6528), gsSPDisplayList(d_course_mario_raceway_packed_dl_4540), gsSPDisplayList(d_course_mario_raceway_packed_dl_63B0), @@ -2325,7 +2515,9 @@ Gfx d_course_mario_raceway_dl_3EB8[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_2870), gsSPDisplayList(d_course_mario_raceway_packed_dl_28F8), gsSPDisplayList(d_course_mario_raceway_packed_dl_29B0), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2680), +#endif gsSPEndDisplayList(), }; @@ -2343,8 +2535,12 @@ Gfx d_course_mario_raceway_dl_4038[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1988), gsSPDisplayList(d_course_mario_raceway_packed_dl_1890), gsSPDisplayList(d_course_mario_raceway_packed_dl_18B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_18E0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1950), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_3C28), gsSPDisplayList(d_course_mario_raceway_packed_dl_5550), gsSPDisplayList(d_course_mario_raceway_packed_dl_3530), @@ -2352,9 +2548,15 @@ Gfx d_course_mario_raceway_dl_4038[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_5AE0), gsSPDisplayList(d_course_mario_raceway_packed_dl_5A48), gsSPDisplayList(d_course_mario_raceway_packed_dl_5970), +#ifdef VERSION_JP + gsSPDisplayList(d_course_mario_raceway_packed_dl_4028), +#else gsSPDisplayList(d_course_mario_raceway_packed_dl_5870), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_40D8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_5D70), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_2248), gsSPDisplayList(d_course_mario_raceway_packed_dl_22B8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1FB0), @@ -2362,8 +2564,12 @@ Gfx d_course_mario_raceway_dl_4038[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1C48), gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), gsSPDisplayList(d_course_mario_raceway_packed_dl_2340), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_26F8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2760), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_27E8), gsSPDisplayList(d_course_mario_raceway_packed_dl_2870), gsSPEndDisplayList(), @@ -2385,7 +2591,9 @@ Gfx d_course_mario_raceway_dl_4150[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1988), gsSPDisplayList(d_course_mario_raceway_packed_dl_1890), gsSPDisplayList(d_course_mario_raceway_packed_dl_18B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_18E0), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_44C0), gsSPDisplayList(d_course_mario_raceway_packed_dl_62A0), gsSPDisplayList(d_course_mario_raceway_packed_dl_6528), @@ -2397,15 +2605,21 @@ Gfx d_course_mario_raceway_dl_4150[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_5A48), gsSPDisplayList(d_course_mario_raceway_packed_dl_5970), gsSPDisplayList(d_course_mario_raceway_packed_dl_4028), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_40D8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_5D70), gsSPDisplayList(d_course_mario_raceway_packed_dl_22B8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1FB0), gsSPDisplayList(d_course_mario_raceway_packed_dl_1BB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1C48), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1E30), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_26F8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_2760), gsSPDisplayList(d_course_mario_raceway_packed_dl_27E8), gsSPDisplayList(d_course_mario_raceway_packed_dl_2870), @@ -2517,24 +2731,36 @@ Gfx d_course_mario_raceway_dl_44F8[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_18B8), gsSPDisplayList(d_course_mario_raceway_packed_dl_18E0), gsSPDisplayList(d_course_mario_raceway_packed_dl_1950), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_17D8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_3AB8), gsSPDisplayList(d_course_mario_raceway_packed_dl_3C28), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4BB8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_5A48), gsSPDisplayList(d_course_mario_raceway_packed_dl_5970), gsSPDisplayList(d_course_mario_raceway_packed_dl_5870), gsSPDisplayList(d_course_mario_raceway_packed_dl_5768), +#ifdef VERSION_JP + gsSPDisplayList(d_course_mario_raceway_packed_dl_4188), +#else gsSPDisplayList(d_course_mario_raceway_packed_dl_5BC8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_21C0), gsSPDisplayList(d_course_mario_raceway_packed_dl_2248), gsSPDisplayList(d_course_mario_raceway_packed_dl_22B8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1FB0), gsSPDisplayList(d_course_mario_raceway_packed_dl_1BB8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1C48), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1EA8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_2340), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_26F8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_2760), gsSPDisplayList(d_course_mario_raceway_packed_dl_27E8), gsSPDisplayList(d_course_mario_raceway_packed_dl_2870), @@ -2567,15 +2793,23 @@ Gfx d_course_mario_raceway_dl_4610[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_5A48), gsSPDisplayList(d_course_mario_raceway_packed_dl_5970), gsSPDisplayList(d_course_mario_raceway_packed_dl_5870), +#ifdef VERSION_JP + gsSPDisplayList(d_course_mario_raceway_packed_dl_40D8), +#else gsSPDisplayList(d_course_mario_raceway_packed_dl_5768), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_5BC8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_2248), gsSPDisplayList(d_course_mario_raceway_packed_dl_22B8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1FB0), gsSPDisplayList(d_course_mario_raceway_packed_dl_1BB8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1E30), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2340), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_26F8), gsSPDisplayList(d_course_mario_raceway_packed_dl_2760), gsSPDisplayList(d_course_mario_raceway_packed_dl_27E8), @@ -2599,7 +2833,9 @@ Gfx d_course_mario_raceway_dl_4738[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1890), gsSPDisplayList(d_course_mario_raceway_packed_dl_18B8), gsSPDisplayList(d_course_mario_raceway_packed_dl_18E0), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_3AB8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_3C28), gsSPDisplayList(d_course_mario_raceway_packed_dl_62A0), gsSPDisplayList(d_course_mario_raceway_packed_dl_5ED0), @@ -2607,7 +2843,9 @@ Gfx d_course_mario_raceway_dl_4738[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_5A48), gsSPDisplayList(d_course_mario_raceway_packed_dl_5970), gsSPDisplayList(d_course_mario_raceway_packed_dl_5870), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_5768), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_2248), gsSPDisplayList(d_course_mario_raceway_packed_dl_22B8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1FB0), @@ -2640,7 +2878,11 @@ Gfx d_course_mario_raceway_dl_4840[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_5970), gsSPDisplayList(d_course_mario_raceway_packed_dl_5870), gsSPDisplayList(d_course_mario_raceway_packed_dl_5768), +#ifdef VERSION_JP + gsSPDisplayList(d_course_mario_raceway_packed_dl_4188), +#else gsSPDisplayList(d_course_mario_raceway_packed_dl_5BC8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_21C0), gsSPDisplayList(d_course_mario_raceway_packed_dl_2248), gsSPDisplayList(d_course_mario_raceway_packed_dl_22B8), @@ -2665,8 +2907,12 @@ Gfx d_course_mario_raceway_dl_4910[] = { gsDPLoadSync(), gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), gsSPDisplayList(d_course_mario_raceway_packed_dl_1770), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1988), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1890), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_18B8), gsSPDisplayList(d_course_mario_raceway_packed_dl_18E0), gsSPDisplayList(d_course_mario_raceway_packed_dl_1950), @@ -2679,7 +2925,9 @@ Gfx d_course_mario_raceway_dl_4910[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_5550), gsSPDisplayList(d_course_mario_raceway_packed_dl_4A68), gsSPDisplayList(d_course_mario_raceway_packed_dl_4BB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_5A48), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_3F80), gsSPDisplayList(d_course_mario_raceway_packed_dl_5870), gsSPDisplayList(d_course_mario_raceway_packed_dl_5768), @@ -2689,8 +2937,12 @@ Gfx d_course_mario_raceway_dl_4910[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_2248), gsSPDisplayList(d_course_mario_raceway_packed_dl_22B8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1FB0), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1BB8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1EA8), gsSPDisplayList(d_course_mario_raceway_packed_dl_1F30), gsSPDisplayList(d_course_mario_raceway_packed_dl_2340), @@ -2711,7 +2963,9 @@ Gfx d_course_mario_raceway_dl_4A60[] = { G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), gsDPLoadSync(), gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1988), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1890), gsSPDisplayList(d_course_mario_raceway_packed_dl_18B8), gsSPDisplayList(d_course_mario_raceway_packed_dl_18E0), @@ -2729,8 +2983,12 @@ Gfx d_course_mario_raceway_dl_4A60[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_21C0), gsSPDisplayList(d_course_mario_raceway_packed_dl_2248), gsSPDisplayList(d_course_mario_raceway_packed_dl_22B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1FB0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1BB8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), gsSPDisplayList(d_course_mario_raceway_packed_dl_2340), gsSPDisplayList(d_course_mario_raceway_packed_dl_26F8), @@ -2805,7 +3063,9 @@ Gfx d_course_mario_raceway_dl_4CD8[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1950), gsSPDisplayList(d_course_mario_raceway_packed_dl_17D8), gsSPDisplayList(d_course_mario_raceway_packed_dl_3950), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4A68), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_4BB8), gsSPDisplayList(d_course_mario_raceway_packed_dl_4B50), gsSPDisplayList(d_course_mario_raceway_packed_dl_5870), @@ -2815,8 +3075,12 @@ Gfx d_course_mario_raceway_dl_4CD8[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_21C0), gsSPDisplayList(d_course_mario_raceway_packed_dl_2248), gsSPDisplayList(d_course_mario_raceway_packed_dl_22B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1F30), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1EA8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_2340), gsSPDisplayList(d_course_mario_raceway_packed_dl_26F8), gsSPDisplayList(d_course_mario_raceway_packed_dl_2760), @@ -2890,10 +3154,18 @@ Gfx d_course_mario_raceway_dl_4ED0[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_5D70), gsSPDisplayList(d_course_mario_raceway_packed_dl_2138), gsSPDisplayList(d_course_mario_raceway_packed_dl_21C0), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2248), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_22B8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1FB0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1BB8), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), gsSPDisplayList(d_course_mario_raceway_packed_dl_2340), gsSPDisplayList(d_course_mario_raceway_packed_dl_26F8), @@ -2963,13 +3235,17 @@ Gfx d_course_mario_raceway_dl_5150[] = { G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), gsDPLoadSync(), gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1770), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_18E0), gsSPDisplayList(d_course_mario_raceway_packed_dl_1950), gsSPDisplayList(d_course_mario_raceway_packed_dl_17D8), gsSPDisplayList(d_course_mario_raceway_packed_dl_5218), gsSPDisplayList(d_course_mario_raceway_packed_dl_39E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4A68), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_4BB8), gsSPDisplayList(d_course_mario_raceway_packed_dl_5768), gsSPDisplayList(d_course_mario_raceway_packed_dl_5BC8), @@ -2977,7 +3253,9 @@ Gfx d_course_mario_raceway_dl_5150[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_2138), gsSPDisplayList(d_course_mario_raceway_packed_dl_21C0), gsSPDisplayList(d_course_mario_raceway_packed_dl_1EA8), +#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1F30), +#endif gsSPDisplayList(d_course_mario_raceway_packed_dl_2340), gsSPDisplayList(d_course_mario_raceway_packed_dl_26F8), gsSPDisplayList(d_course_mario_raceway_packed_dl_2760), @@ -3093,151 +3371,17 @@ Gfx d_course_mario_raceway_dl_5228[] = { gsSPEndDisplayList(), }; +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_mario_raceway_unknown_path[] = { - { 0, 0, -224, 0 }, { 0, 0, -241, 0 }, { 0, 0, -612, 0 }, { 16, 0, -690, 0 }, { 62, 0, -756, 0 }, - { 128, 0, -798, 0 }, { 494, 0, -944, 0 }, { 637, 0, -997, 0 }, { 708, 0, -1007, 0 }, { 776, 0, -992, 0 }, - { 836, 0, -949, 0 }, { 883, 0, -890, 0 }, { 902, 0, -796, 0 }, { 878, 0, -706, 0 }, { 812, 0, -584, 0 }, - { 788, 0, -516, 0 }, { 788, 0, -440, 0 }, { 815, 0, -372, 0 }, { 861, 0, -322, 0 }, { 1099, 0, -194, 0 }, - { 1360, 0, -79, 0 }, { 1452, 0, -56, 0 }, { 1652, 0, -48, 0 }, { 1722, 0, -56, 0 }, { 1765, 0, -73, 0 }, - { 1819, 0, -128, 0 }, { 2029, 0, -423, 0 }, { 2138, 0, -572, 0 }, { 2196, 0, -615, 0 }, { 2260, 0, -633, 0 }, - { 2331, 0, -628, 0 }, { 2398, 0, -599, 0 }, { 2452, 0, -543, 0 }, { 2484, 0, -469, 0 }, { 2483, 0, -389, 0 }, - { 2450, 0, -319, 0 }, { 2265, 0, -34, 0 }, { 2228, 0, 36, 0 }, { 2223, 0, 112, 0 }, { 2243, 0, 180, 0 }, - { 2374, 0, 402, 0 }, { 2396, 0, 471, 0 }, { 2401, 0, 512, 0 }, { 2402, 0, 802, 0 }, { 2399, 0, 1269, 0 }, - { 2385, 0, 1345, 0 }, { 2343, 0, 1409, 0 }, { 2275, 0, 1453, 0 }, { 2190, 0, 1485, 0 }, { 2110, 0, 1482, 0 }, - { 1911, 0, 1407, 0 }, { 1847, 0, 1372, 0 }, { 1794, 0, 1312, 0 }, { 1771, 0, 1237, 0 }, { 1774, 0, 1159, 0 }, - { 1815, 0, 1088, 0 }, { 1869, 0, 1008, 0 }, { 1906, 0, 940, 0 }, { 1909, 0, 862, 0 }, { 1884, 0, 777, 0 }, - { 1826, 0, 679, 0 }, { 1790, 0, 646, 0 }, { 1710, 0, 616, 0 }, { 1500, 0, 602, 0 }, { 755, 0, 600, 0 }, - { 252, 0, 607, 0 }, { 166, 0, 598, 0 }, { 88, 0, 569, 0 }, { 33, 0, 515, 0 }, { 3, 0, 442, 0 }, - { 1, 0, 255, 0 }, { 0, 0, -180, 0 }, { -32768, 0, 0, 0 }, +#include "courses/mario_raceway/d_course_mario_raceway_unknown_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_mario_raceway_track_path[] = { - { 0, 0, -232, 1 }, { 0, 0, -252, 1 }, { 0, 0, -272, 1 }, { 0, 0, -292, 1 }, - { 0, 0, -312, 1 }, { 0, 0, -332, 1 }, { 0, 0, -352, 1 }, { 0, 0, -372, 1 }, - { 0, 0, -392, 1 }, { 0, 0, -412, 1 }, { 0, 0, -432, 1 }, { 0, 0, -452, 1 }, - { 0, 0, -472, 1 }, { 0, 0, -492, 1 }, { 0, 0, -512, 2 }, { 0, 0, -532, 2 }, - { 1, 0, -552, 2 }, { 1, 0, -572, 2 }, { 2, 0, -592, 2 }, { 3, 0, -612, 2 }, - { 5, 0, -632, 2 }, { 8, 0, -652, 2 }, { 13, 0, -671, 2 }, { 20, 0, -690, 2 }, - { 29, 0, -708, 2 }, { 40, 0, -725, 2 }, { 52, 0, -740, 2 }, { 66, 0, -755, 2 }, - { 82, 0, -768, 2 }, { 98, 0, -779, 2 }, { 116, 0, -788, 2 }, { 134, 0, -797, 2 }, - { 152, 0, -805, 2 }, { 171, 0, -813, 2 }, { 189, 0, -821, 2 }, { 207, 0, -829, 2 }, - { 226, 0, -836, 2 }, { 244, 0, -844, 2 }, { 263, 0, -851, 2 }, { 282, 0, -859, 2 }, - { 300, 0, -866, 2 }, { 319, 0, -874, 2 }, { 337, 0, -881, 2 }, { 356, 0, -889, 2 }, - { 374, 0, -896, 2 }, { 393, 0, -903, 2 }, { 412, 0, -911, 2 }, { 430, 0, -918, 2 }, - { 449, 0, -925, 2 }, { 468, 0, -933, 2 }, { 486, 0, -940, 2 }, { 505, 0, -947, 3 }, - { 524, 0, -954, 3 }, { 542, 1, -961, 3 }, { 561, 2, -968, 3 }, { 580, 2, -975, 3 }, - { 599, 2, -982, 3 }, { 618, 2, -988, 3 }, { 637, 2, -994, 3 }, { 656, 2, -999, 3 }, - { 676, 2, -1002, 3 }, { 696, 2, -1003, 3 }, { 716, 2, -1003, 3 }, { 736, 2, -1000, 3 }, - { 755, 2, -995, 3 }, { 774, 2, -988, 3 }, { 792, 2, -979, 3 }, { 808, 2, -968, 3 }, - { 824, 2, -956, 3 }, { 839, 2, -942, 3 }, { 852, 2, -927, 3 }, { 865, 2, -912, 3 }, - { 875, 2, -894, 3 }, { 883, 3, -876, 3 }, { 889, 3, -857, 3 }, { 893, 4, -837, 3 }, - { 896, 4, -817, 3 }, { 896, 5, -797, 3 }, { 895, 6, -778, 3 }, { 891, 7, -758, 3 }, - { 886, 8, -739, 3 }, { 880, 9, -720, 3 }, { 872, 10, -701, 3 }, { 864, 10, -683, 3 }, - { 855, 11, -665, 3 }, { 846, 12, -647, 3 }, { 836, 13, -629, 3 }, { 827, 15, -612, 3 }, - { 818, 17, -594, 3 }, { 810, 18, -576, 4 }, { 802, 19, -557, 4 }, { 796, 21, -538, 4 }, - { 791, 23, -519, 4 }, { 788, 24, -499, 4 }, { 788, 25, -479, 4 }, { 788, 26, -459, 4 }, - { 791, 27, -439, 4 }, { 796, 28, -420, 4 }, { 803, 29, -401, 4 }, { 812, 30, -383, 4 }, - { 822, 31, -366, 4 }, { 834, 32, -350, 4 }, { 849, 34, -336, 4 }, { 865, 35, -324, 4 }, - { 882, 36, -313, 4 }, { 899, 37, -303, 4 }, { 916, 37, -293, 4 }, { 933, 38, -283, 4 }, - { 951, 38, -273, 4 }, { 968, 39, -264, 4 }, { 986, 39, -254, 4 }, { 1004, 40, -245, 4 }, - { 1021, 40, -235, 4 }, { 1039, 41, -226, 4 }, { 1057, 41, -217, 4 }, { 1075, 41, -208, 4 }, - { 1093, 42, -199, 4 }, { 1111, 42, -191, 5 }, { 1129, 43, -182, 5 }, { 1147, 44, -173, 5 }, - { 1165, 44, -165, 5 }, { 1183, 45, -156, 5 }, { 1202, 46, -148, 5 }, { 1220, 46, -140, 5 }, - { 1238, 47, -132, 5 }, { 1257, 47, -124, 5 }, { 1275, 47, -116, 5 }, { 1293, 48, -108, 5 }, - { 1312, 48, -101, 5 }, { 1330, 48, -93, 5 }, { 1349, 48, -86, 5 }, { 1368, 49, -79, 5 }, - { 1387, 49, -72, 5 }, { 1406, 50, -67, 5 }, { 1426, 50, -63, 5 }, { 1445, 50, -60, 5 }, - { 1465, 49, -57, 5 }, { 1485, 48, -55, 5 }, { 1505, 48, -54, 5 }, { 1525, 47, -53, 5 }, - { 1545, 47, -52, 5 }, { 1565, 47, -51, 5 }, { 1585, 47, -50, 5 }, { 1605, 47, -50, 5 }, - { 1625, 47, -50, 5 }, { 1645, 46, -50, 5 }, { 1665, 46, -50, 6 }, { 1685, 45, -51, 6 }, - { 1705, 45, -54, 6 }, { 1724, 45, -58, 6 }, { 1744, 44, -64, 6 }, { 1761, 43, -74, 6 }, - { 1777, 42, -86, 6 }, { 1791, 41, -100, 6 }, { 1805, 40, -115, 6 }, { 1817, 39, -130, 6 }, - { 1829, 38, -146, 6 }, { 1841, 37, -162, 6 }, { 1853, 36, -178, 6 }, { 1865, 36, -194, 6 }, - { 1877, 35, -210, 6 }, { 1889, 34, -227, 6 }, { 1901, 33, -243, 6 }, { 1912, 33, -259, 6 }, - { 1924, 31, -276, 6 }, { 1935, 30, -292, 6 }, { 1947, 29, -308, 6 }, { 1959, 28, -324, 6 }, - { 1970, 26, -341, 6 }, { 1982, 25, -357, 6 }, { 1994, 24, -373, 6 }, { 2005, 22, -390, 6 }, - { 2017, 21, -406, 6 }, { 2029, 20, -422, 6 }, { 2040, 19, -438, 6 }, { 2052, 19, -454, 6 }, - { 2064, 18, -471, 6 }, { 2076, 17, -487, 6 }, { 2087, 16, -503, 6 }, { 2099, 14, -519, 6 }, - { 2112, 13, -535, 6 }, { 2124, 12, -550, 7 }, { 2138, 11, -565, 7 }, { 2151, 11, -580, 7 }, - { 2166, 11, -593, 7 }, { 2183, 11, -604, 7 }, { 2201, 10, -614, 7 }, { 2219, 10, -621, 7 }, - { 2239, 10, -626, 7 }, { 2258, 9, -629, 7 }, { 2278, 9, -631, 7 }, { 2298, 9, -630, 7 }, - { 2318, 9, -627, 7 }, { 2338, 8, -622, 7 }, { 2357, 8, -616, 7 }, { 2375, 8, -608, 7 }, - { 2392, 7, -598, 7 }, { 2408, 7, -586, 7 }, { 2423, 7, -572, 7 }, { 2436, 7, -557, 7 }, - { 2448, 7, -541, 7 }, { 2458, 7, -524, 7 }, { 2467, 7, -506, 7 }, { 2474, 7, -487, 7 }, - { 2479, 7, -468, 7 }, { 2482, 7, -448, 7 }, { 2483, 7, -428, 7 }, { 2482, 7, -408, 7 }, - { 2478, 7, -389, 7 }, { 2473, 7, -370, 7 }, { 2465, 7, -351, 7 }, { 2455, 7, -333, 7 }, - { 2445, 6, -316, 8 }, { 2435, 5, -299, 8 }, { 2425, 4, -282, 8 }, { 2414, 4, -265, 8 }, - { 2403, 3, -248, 8 }, { 2393, 2, -231, 8 }, { 2382, 2, -214, 8 }, { 2371, 2, -197, 8 }, - { 2360, 2, -181, 8 }, { 2349, 2, -164, 8 }, { 2338, 1, -147, 8 }, { 2327, 1, -130, 8 }, - { 2317, 0, -113, 8 }, { 2306, 0, -97, 8 }, { 2295, 0, -80, 8 }, { 2284, 0, -63, 8 }, - { 2274, 0, -46, 8 }, { 2263, 0, -29, 8 }, { 2253, 0, -11, 8 }, { 2244, 0, 5, 8 }, - { 2236, 0, 23, 8 }, { 2230, 0, 43, 8 }, { 2226, 0, 62, 8 }, { 2225, 0, 82, 8 }, - { 2225, 0, 102, 8 }, { 2227, 0, 122, 8 }, { 2231, 0, 142, 8 }, { 2238, 0, 160, 8 }, - { 2246, 0, 179, 8 }, { 2255, 0, 197, 8 }, { 2265, 0, 214, 8 }, { 2274, 0, 232, 9 }, - { 2284, 0, 249, 9 }, { 2294, 0, 267, 9 }, { 2304, 0, 284, 9 }, { 2314, 0, 301, 9 }, - { 2324, 0, 318, 9 }, { 2334, 0, 336, 9 }, { 2344, 0, 353, 9 }, { 2354, 0, 371, 9 }, - { 2363, 0, 388, 9 }, { 2372, 0, 406, 9 }, { 2380, 0, 425, 9 }, { 2387, 0, 444, 9 }, - { 2392, 0, 463, 9 }, { 2397, 0, 482, 9 }, { 2399, 0, 502, 9 }, { 2400, 0, 522, 9 }, - { 2400, 0, 542, 9 }, { 2400, 0, 562, 9 }, { 2401, 0, 582, 9 }, { 2401, 0, 602, 9 }, - { 2401, 0, 622, 9 }, { 2401, 0, 642, 9 }, { 2401, 0, 662, 9 }, { 2401, 0, 682, 9 }, - { 2401, 0, 702, 9 }, { 2401, 0, 722, 9 }, { 2401, 0, 742, 9 }, { 2401, 0, 762, 9 }, - { 2401, 0, 782, 9 }, { 2401, 0, 802, 10 }, { 2401, 0, 822, 10 }, { 2401, 0, 842, 10 }, - { 2401, 0, 862, 10 }, { 2401, 0, 882, 10 }, { 2401, 0, 902, 10 }, { 2401, 0, 922, 10 }, - { 2401, 0, 942, 10 }, { 2400, 0, 962, 10 }, { 2400, 0, 982, 10 }, { 2400, 0, 1002, 10 }, - { 2400, 0, 1022, 10 }, { 2400, 0, 1042, 10 }, { 2400, 0, 1063, 10 }, { 2400, 0, 1083, 10 }, - { 2399, 0, 1103, 10 }, { 2399, 0, 1123, 10 }, { 2399, 0, 1143, 10 }, { 2399, 0, 1163, 10 }, - { 2398, 0, 1183, 10 }, { 2398, 0, 1203, 10 }, { 2397, 0, 1223, 10 }, { 2396, 0, 1243, 10 }, - { 2395, 0, 1263, 10 }, { 2394, 0, 1283, 10 }, { 2392, 0, 1302, 10 }, { 2388, 0, 1322, 11 }, - { 2382, 0, 1341, 11 }, { 2374, 0, 1359, 11 }, { 2363, 0, 1377, 11 }, { 2352, 0, 1393, 11 }, - { 2338, 0, 1407, 11 }, { 2323, 0, 1420, 11 }, { 2306, 0, 1432, 11 }, { 2289, 0, 1442, 11 }, - { 2272, 0, 1451, 11 }, { 2253, 0, 1460, 11 }, { 2235, 0, 1467, 11 }, { 2216, 0, 1474, 11 }, - { 2197, 0, 1479, 11 }, { 2177, 0, 1482, 11 }, { 2157, 0, 1483, 11 }, { 2137, 0, 1482, 11 }, - { 2117, 0, 1478, 11 }, { 2098, 0, 1473, 11 }, { 2079, 0, 1468, 11 }, { 2059, 0, 1462, 11 }, - { 2041, 0, 1455, 11 }, { 2022, 0, 1448, 11 }, { 2003, 0, 1441, 11 }, { 1984, 0, 1434, 11 }, - { 1966, 0, 1427, 11 }, { 1947, 0, 1420, 11 }, { 1929, 0, 1412, 11 }, { 1910, 0, 1404, 11 }, - { 1892, 0, 1396, 12 }, { 1874, 0, 1387, 12 }, { 1857, 0, 1376, 12 }, { 1842, 0, 1363, 12 }, - { 1827, 0, 1349, 12 }, { 1814, 0, 1334, 12 }, { 1802, 0, 1318, 12 }, { 1793, 0, 1301, 12 }, - { 1785, 0, 1282, 12 }, { 1779, 0, 1263, 12 }, { 1775, 0, 1244, 12 }, { 1772, 0, 1224, 12 }, - { 1772, 0, 1204, 12 }, { 1773, 0, 1184, 12 }, { 1777, 0, 1164, 12 }, { 1783, 0, 1145, 12 }, - { 1792, 0, 1127, 12 }, { 1802, 0, 1110, 12 }, { 1812, 0, 1093, 12 }, { 1823, 0, 1076, 12 }, - { 1834, 0, 1059, 12 }, { 1845, 0, 1042, 12 }, { 1856, 0, 1026, 12 }, { 1867, 0, 1009, 12 }, - { 1877, 0, 991, 13 }, { 1887, 0, 974, 13 }, { 1895, 0, 956, 13 }, { 1902, 0, 937, 13 }, - { 1906, 0, 917, 13 }, { 1907, 0, 897, 13 }, { 1907, 1, 877, 13 }, { 1905, 1, 858, 13 }, - { 1901, 2, 838, 13 }, { 1896, 2, 819, 13 }, { 1890, 3, 800, 13 }, { 1882, 3, 781, 13 }, - { 1874, 3, 763, 13 }, { 1864, 3, 745, 13 }, { 1855, 4, 728, 13 }, { 1844, 4, 711, 13 }, - { 1833, 4, 694, 13 }, { 1821, 4, 678, 13 }, { 1808, 5, 663, 13 }, { 1792, 4, 651, 13 }, - { 1775, 4, 641, 13 }, { 1756, 4, 633, 13 }, { 1737, 4, 627, 13 }, { 1718, 4, 622, 13 }, - { 1698, 4, 618, 13 }, { 1678, 3, 615, 13 }, { 1659, 3, 613, 13 }, { 1639, 3, 611, 13 }, - { 1619, 2, 610, 13 }, { 1599, 1, 608, 13 }, { 1579, 0, 607, 13 }, { 1559, 0, 606, 13 }, - { 1539, -2, 605, 13 }, { 1519, -3, 605, 13 }, { 1499, -5, 604, 14 }, { 1479, -6, 604, 14 }, - { 1459, -8, 603, 14 }, { 1439, -9, 603, 14 }, { 1419, -11, 603, 14 }, { 1399, -13, 602, 14 }, - { 1379, -14, 602, 14 }, { 1359, -16, 602, 14 }, { 1339, -17, 602, 14 }, { 1319, -19, 602, 14 }, - { 1299, -21, 601, 14 }, { 1279, -22, 601, 14 }, { 1259, -24, 601, 14 }, { 1239, -26, 601, 14 }, - { 1219, -28, 601, 14 }, { 1199, -30, 601, 14 }, { 1179, -32, 601, 14 }, { 1159, -34, 601, 14 }, - { 1139, -36, 601, 14 }, { 1119, -38, 600, 14 }, { 1098, -40, 600, 14 }, { 1078, -42, 600, 14 }, - { 1058, -44, 600, 14 }, { 1038, -46, 600, 14 }, { 1018, -48, 600, 14 }, { 998, -50, 600, 15 }, - { 978, -50, 600, 15 }, { 958, -50, 600, 15 }, { 938, -50, 600, 15 }, { 918, -50, 600, 15 }, - { 898, -50, 600, 15 }, { 878, -50, 600, 15 }, { 858, -50, 600, 15 }, { 838, -50, 600, 15 }, - { 818, -50, 601, 15 }, { 798, -50, 601, 15 }, { 778, -50, 601, 15 }, { 758, -50, 601, 15 }, - { 738, -50, 601, 15 }, { 718, -50, 601, 15 }, { 698, -50, 601, 15 }, { 678, -50, 601, 15 }, - { 658, -50, 601, 15 }, { 638, -50, 602, 15 }, { 618, -50, 602, 15 }, { 598, -50, 602, 15 }, - { 578, -50, 602, 15 }, { 558, -50, 602, 15 }, { 538, -50, 603, 15 }, { 518, -50, 603, 15 }, - { 498, -49, 603, 16 }, { 478, -47, 603, 16 }, { 458, -45, 604, 16 }, { 438, -43, 604, 16 }, - { 418, -41, 604, 16 }, { 398, -39, 604, 16 }, { 378, -37, 604, 16 }, { 358, -35, 604, 16 }, - { 338, -32, 605, 16 }, { 318, -30, 605, 16 }, { 298, -28, 604, 16 }, { 278, -25, 604, 16 }, - { 258, -23, 604, 16 }, { 238, -21, 604, 16 }, { 218, -19, 603, 16 }, { 198, -18, 601, 16 }, - { 178, -16, 598, 16 }, { 159, -14, 593, 16 }, { 140, -12, 588, 16 }, { 121, -11, 581, 16 }, - { 103, -10, 572, 16 }, { 85, -9, 562, 16 }, { 69, -8, 550, 16 }, { 55, -7, 536, 16 }, - { 42, -7, 521, 16 }, { 31, -6, 504, 16 }, { 21, -5, 487, 16 }, { 14, -5, 468, 17 }, - { 9, -5, 449, 17 }, { 6, -4, 429, 17 }, { 4, -3, 409, 17 }, { 3, -3, 389, 17 }, - { 2, -3, 369, 17 }, { 2, -3, 349, 17 }, { 1, -3, 329, 17 }, { 1, -2, 309, 17 }, - { 1, -1, 289, 17 }, { 1, 0, 269, 17 }, { 1, 0, 249, 17 }, { 1, 0, 229, 17 }, - { 1, 0, 209, 17 }, { 1, 0, 189, 17 }, { 0, 0, 169, 17 }, { 0, 0, 149, 17 }, - { 0, 0, 129, 17 }, { 0, 0, 109, 17 }, { 0, 0, 89, 17 }, { 0, 0, 69, 17 }, - { 0, 0, 49, 17 }, { 0, 0, 29, 17 }, { 0, 0, 9, 17 }, { 0, 0, -10, 1 }, - { 0, 0, -30, 1 }, { 0, 0, -50, 1 }, { 0, 0, -70, 1 }, { 0, 0, -90, 1 }, - { 0, 0, -110, 1 }, { 0, 0, -130, 1 }, { 0, 0, -150, 1 }, { 0, 0, -170, 1 }, - { 0, 0, -190, 1 }, { 0, 0, -210, 1 }, { 0, 0, -230, 1 }, { -32768, -32768, -32768, 0 } +#include "courses/mario_raceway/d_course_mario_raceway_track_path.inc.c" }; +#endif // 0x6740 tlut for gTexture698378 / gTexturePiranhaPlant u8 d_course_mario_raceway_piranha_plant_tlut[] = { @@ -3666,3 +3810,12 @@ TrackSections d_course_mario_raceway_addr[] = { { d_course_mario_raceway_packed_dl_6490, SAND_OFFROAD, 11, 0x0000 }, { 0x00000000, 0, 0, 0x00000 }, }; + +#ifdef VERSION_JP /* VERSION_JP path order: JP puts the paths last */ +TrackPathPoint d_course_mario_raceway_unknown_path[] = { +#include "courses/mario_raceway/d_course_mario_raceway_unknown_path.inc.c" +}; +TrackPathPoint d_course_mario_raceway_track_path[] = { +#include "courses/mario_raceway/d_course_mario_raceway_track_path.inc.c" +}; +#endif diff --git a/courses/mario_raceway/course_offsets.c b/courses/mario_raceway/course_offsets.c index 9c7f445ad3..536f85a75c 100644 --- a/courses/mario_raceway/course_offsets.c +++ b/courses/mario_raceway/course_offsets.c @@ -33,6 +33,41 @@ extern u8 gTextureSignShellShot1[]; extern u8 gTextureSignKoopaAir0[]; extern u8 gTextureSignKoopaAir1[]; +#ifdef VERSION_JP /* JP ships different sign textures, so their compressed sizes differ */ +const course_texture mario_raceway_textures[] = { + { gTextureCheckerboardYellowPink, 0x0149, 0x0800, 0x0 }, + { gTexture64619C, 0x0124, 0x0800, 0x0 }, + { gTextureGrass1, 0x0125, 0x0800, 0x0 }, + { gTexture64BB60, 0x0169, 0x0800, 0x0 }, + { gTextureGrass7, 0x05DE, 0x0800, 0x0 }, + { gTextureGrass5, 0x023F, 0x0800, 0x0 }, + { gTextureFlagRed, 0x019E, 0x0800, 0x0 }, + { gTexture663F90, 0x0122, 0x0800, 0x0 }, + { gTexture6642A4, 0x0162, 0x0800, 0x0 }, + { gTexture6640B4, 0x01EF, 0x0800, 0x0 }, + { gTextureGrass10, 0x01F8, 0x0800, 0x0 }, + { gTexture6684F8, 0x010D, 0x0800, 0x0 }, + { gTextureSignLuigis0, 0x026A, 0x1000, 0x0 }, + { gTextureSignLuigis1, 0x02CC, 0x1000, 0x0 }, + { gTextureSignMarioStar0, 0x0349, 0x1000, 0x0 }, + { gTextureSignMarioStar1, 0x02D7, 0x1000, 0x0 }, + { gTexture66C8F4, 0x01A1, 0x0800, 0x0 }, + { gTextureSignNintendoRed0, 0x02E1, 0x1000, 0x0 }, + { gTextureSignNintendoRed1, 0x034C, 0x1000, 0x0 }, + { gTexture670AC8, 0x0FBF, 0x1000, 0x0 }, + { gTexture674354, 0x046F, 0x0800, 0x0 }, + { gTextureRoad0, 0x0300, 0x1000, 0x0 }, + { gTextureRoadFinish0, 0x0338, 0x1000, 0x0 }, + { gTexture67B9B0, 0x0225, 0x0800, 0x0 }, + { gTextureSignYoshi, 0x0342, 0x1000, 0x0 }, + { gTextureCheckerboardBlueGray, 0x027F, 0x1000, 0x0 }, + { gTextureSignShellShot0, 0x038C, 0x1000, 0x0 }, + { gTextureSignShellShot1, 0x0247, 0x1000, 0x0 }, + { gTextureSignKoopaAir0, 0x03C2, 0x1000, 0x0 }, + { gTextureSignKoopaAir1, 0x0319, 0x1000, 0x0 }, + { 0x00000000, 0x0000, 0x0000, 0x0 }, +}; +#else const course_texture mario_raceway_textures[] = { { gTextureCheckerboardYellowPink, 0x0149, 0x0800, 0x0 }, { gTexture64619C, 0x0124, 0x0800, 0x0 }, @@ -66,6 +101,7 @@ const course_texture mario_raceway_textures[] = { { gTextureSignKoopaAir1, 0x0304, 0x1000, 0x0 }, { 0x00000000, 0x0000, 0x0000, 0x0 }, }; +#endif const Gfx* mario_raceway_dls[] = { d_course_mario_raceway_dl_0, d_course_mario_raceway_dl_1D0, d_course_mario_raceway_dl_E8, diff --git a/courses/mario_raceway/d_course_mario_raceway_track_path.inc.c b/courses/mario_raceway/d_course_mario_raceway_track_path.inc.c new file mode 100644 index 0000000000..c6a6538fdf --- /dev/null +++ b/courses/mario_raceway/d_course_mario_raceway_track_path.inc.c @@ -0,0 +1,125 @@ + { 0, 0, -232, 1 }, { 0, 0, -252, 1 }, { 0, 0, -272, 1 }, { 0, 0, -292, 1 }, + { 0, 0, -312, 1 }, { 0, 0, -332, 1 }, { 0, 0, -352, 1 }, { 0, 0, -372, 1 }, + { 0, 0, -392, 1 }, { 0, 0, -412, 1 }, { 0, 0, -432, 1 }, { 0, 0, -452, 1 }, + { 0, 0, -472, 1 }, { 0, 0, -492, 1 }, { 0, 0, -512, 2 }, { 0, 0, -532, 2 }, + { 1, 0, -552, 2 }, { 1, 0, -572, 2 }, { 2, 0, -592, 2 }, { 3, 0, -612, 2 }, + { 5, 0, -632, 2 }, { 8, 0, -652, 2 }, { 13, 0, -671, 2 }, { 20, 0, -690, 2 }, + { 29, 0, -708, 2 }, { 40, 0, -725, 2 }, { 52, 0, -740, 2 }, { 66, 0, -755, 2 }, + { 82, 0, -768, 2 }, { 98, 0, -779, 2 }, { 116, 0, -788, 2 }, { 134, 0, -797, 2 }, + { 152, 0, -805, 2 }, { 171, 0, -813, 2 }, { 189, 0, -821, 2 }, { 207, 0, -829, 2 }, + { 226, 0, -836, 2 }, { 244, 0, -844, 2 }, { 263, 0, -851, 2 }, { 282, 0, -859, 2 }, + { 300, 0, -866, 2 }, { 319, 0, -874, 2 }, { 337, 0, -881, 2 }, { 356, 0, -889, 2 }, + { 374, 0, -896, 2 }, { 393, 0, -903, 2 }, { 412, 0, -911, 2 }, { 430, 0, -918, 2 }, + { 449, 0, -925, 2 }, { 468, 0, -933, 2 }, { 486, 0, -940, 2 }, { 505, 0, -947, 3 }, + { 524, 0, -954, 3 }, { 542, 1, -961, 3 }, { 561, 2, -968, 3 }, { 580, 2, -975, 3 }, + { 599, 2, -982, 3 }, { 618, 2, -988, 3 }, { 637, 2, -994, 3 }, { 656, 2, -999, 3 }, + { 676, 2, -1002, 3 }, { 696, 2, -1003, 3 }, { 716, 2, -1003, 3 }, { 736, 2, -1000, 3 }, + { 755, 2, -995, 3 }, { 774, 2, -988, 3 }, { 792, 2, -979, 3 }, { 808, 2, -968, 3 }, + { 824, 2, -956, 3 }, { 839, 2, -942, 3 }, { 852, 2, -927, 3 }, { 865, 2, -912, 3 }, + { 875, 2, -894, 3 }, { 883, 3, -876, 3 }, { 889, 3, -857, 3 }, { 893, 4, -837, 3 }, + { 896, 4, -817, 3 }, { 896, 5, -797, 3 }, { 895, 6, -778, 3 }, { 891, 7, -758, 3 }, + { 886, 8, -739, 3 }, { 880, 9, -720, 3 }, { 872, 10, -701, 3 }, { 864, 10, -683, 3 }, + { 855, 11, -665, 3 }, { 846, 12, -647, 3 }, { 836, 13, -629, 3 }, { 827, 15, -612, 3 }, + { 818, 17, -594, 3 }, { 810, 18, -576, 4 }, { 802, 19, -557, 4 }, { 796, 21, -538, 4 }, + { 791, 23, -519, 4 }, { 788, 24, -499, 4 }, { 788, 25, -479, 4 }, { 788, 26, -459, 4 }, + { 791, 27, -439, 4 }, { 796, 28, -420, 4 }, { 803, 29, -401, 4 }, { 812, 30, -383, 4 }, + { 822, 31, -366, 4 }, { 834, 32, -350, 4 }, { 849, 34, -336, 4 }, { 865, 35, -324, 4 }, + { 882, 36, -313, 4 }, { 899, 37, -303, 4 }, { 916, 37, -293, 4 }, { 933, 38, -283, 4 }, + { 951, 38, -273, 4 }, { 968, 39, -264, 4 }, { 986, 39, -254, 4 }, { 1004, 40, -245, 4 }, + { 1021, 40, -235, 4 }, { 1039, 41, -226, 4 }, { 1057, 41, -217, 4 }, { 1075, 41, -208, 4 }, + { 1093, 42, -199, 4 }, { 1111, 42, -191, 5 }, { 1129, 43, -182, 5 }, { 1147, 44, -173, 5 }, + { 1165, 44, -165, 5 }, { 1183, 45, -156, 5 }, { 1202, 46, -148, 5 }, { 1220, 46, -140, 5 }, + { 1238, 47, -132, 5 }, { 1257, 47, -124, 5 }, { 1275, 47, -116, 5 }, { 1293, 48, -108, 5 }, + { 1312, 48, -101, 5 }, { 1330, 48, -93, 5 }, { 1349, 48, -86, 5 }, { 1368, 49, -79, 5 }, + { 1387, 49, -72, 5 }, { 1406, 50, -67, 5 }, { 1426, 50, -63, 5 }, { 1445, 50, -60, 5 }, + { 1465, 49, -57, 5 }, { 1485, 48, -55, 5 }, { 1505, 48, -54, 5 }, { 1525, 47, -53, 5 }, + { 1545, 47, -52, 5 }, { 1565, 47, -51, 5 }, { 1585, 47, -50, 5 }, { 1605, 47, -50, 5 }, + { 1625, 47, -50, 5 }, { 1645, 46, -50, 5 }, { 1665, 46, -50, 6 }, { 1685, 45, -51, 6 }, + { 1705, 45, -54, 6 }, { 1724, 45, -58, 6 }, { 1744, 44, -64, 6 }, { 1761, 43, -74, 6 }, + { 1777, 42, -86, 6 }, { 1791, 41, -100, 6 }, { 1805, 40, -115, 6 }, { 1817, 39, -130, 6 }, + { 1829, 38, -146, 6 }, { 1841, 37, -162, 6 }, { 1853, 36, -178, 6 }, { 1865, 36, -194, 6 }, + { 1877, 35, -210, 6 }, { 1889, 34, -227, 6 }, { 1901, 33, -243, 6 }, { 1912, 33, -259, 6 }, + { 1924, 31, -276, 6 }, { 1935, 30, -292, 6 }, { 1947, 29, -308, 6 }, { 1959, 28, -324, 6 }, + { 1970, 26, -341, 6 }, { 1982, 25, -357, 6 }, { 1994, 24, -373, 6 }, { 2005, 22, -390, 6 }, + { 2017, 21, -406, 6 }, { 2029, 20, -422, 6 }, { 2040, 19, -438, 6 }, { 2052, 19, -454, 6 }, + { 2064, 18, -471, 6 }, { 2076, 17, -487, 6 }, { 2087, 16, -503, 6 }, { 2099, 14, -519, 6 }, + { 2112, 13, -535, 6 }, { 2124, 12, -550, 7 }, { 2138, 11, -565, 7 }, { 2151, 11, -580, 7 }, + { 2166, 11, -593, 7 }, { 2183, 11, -604, 7 }, { 2201, 10, -614, 7 }, { 2219, 10, -621, 7 }, + { 2239, 10, -626, 7 }, { 2258, 9, -629, 7 }, { 2278, 9, -631, 7 }, { 2298, 9, -630, 7 }, + { 2318, 9, -627, 7 }, { 2338, 8, -622, 7 }, { 2357, 8, -616, 7 }, { 2375, 8, -608, 7 }, + { 2392, 7, -598, 7 }, { 2408, 7, -586, 7 }, { 2423, 7, -572, 7 }, { 2436, 7, -557, 7 }, + { 2448, 7, -541, 7 }, { 2458, 7, -524, 7 }, { 2467, 7, -506, 7 }, { 2474, 7, -487, 7 }, + { 2479, 7, -468, 7 }, { 2482, 7, -448, 7 }, { 2483, 7, -428, 7 }, { 2482, 7, -408, 7 }, + { 2478, 7, -389, 7 }, { 2473, 7, -370, 7 }, { 2465, 7, -351, 7 }, { 2455, 7, -333, 7 }, + { 2445, 6, -316, 8 }, { 2435, 5, -299, 8 }, { 2425, 4, -282, 8 }, { 2414, 4, -265, 8 }, + { 2403, 3, -248, 8 }, { 2393, 2, -231, 8 }, { 2382, 2, -214, 8 }, { 2371, 2, -197, 8 }, + { 2360, 2, -181, 8 }, { 2349, 2, -164, 8 }, { 2338, 1, -147, 8 }, { 2327, 1, -130, 8 }, + { 2317, 0, -113, 8 }, { 2306, 0, -97, 8 }, { 2295, 0, -80, 8 }, { 2284, 0, -63, 8 }, + { 2274, 0, -46, 8 }, { 2263, 0, -29, 8 }, { 2253, 0, -11, 8 }, { 2244, 0, 5, 8 }, + { 2236, 0, 23, 8 }, { 2230, 0, 43, 8 }, { 2226, 0, 62, 8 }, { 2225, 0, 82, 8 }, + { 2225, 0, 102, 8 }, { 2227, 0, 122, 8 }, { 2231, 0, 142, 8 }, { 2238, 0, 160, 8 }, + { 2246, 0, 179, 8 }, { 2255, 0, 197, 8 }, { 2265, 0, 214, 8 }, { 2274, 0, 232, 9 }, + { 2284, 0, 249, 9 }, { 2294, 0, 267, 9 }, { 2304, 0, 284, 9 }, { 2314, 0, 301, 9 }, + { 2324, 0, 318, 9 }, { 2334, 0, 336, 9 }, { 2344, 0, 353, 9 }, { 2354, 0, 371, 9 }, + { 2363, 0, 388, 9 }, { 2372, 0, 406, 9 }, { 2380, 0, 425, 9 }, { 2387, 0, 444, 9 }, + { 2392, 0, 463, 9 }, { 2397, 0, 482, 9 }, { 2399, 0, 502, 9 }, { 2400, 0, 522, 9 }, + { 2400, 0, 542, 9 }, { 2400, 0, 562, 9 }, { 2401, 0, 582, 9 }, { 2401, 0, 602, 9 }, + { 2401, 0, 622, 9 }, { 2401, 0, 642, 9 }, { 2401, 0, 662, 9 }, { 2401, 0, 682, 9 }, + { 2401, 0, 702, 9 }, { 2401, 0, 722, 9 }, { 2401, 0, 742, 9 }, { 2401, 0, 762, 9 }, + { 2401, 0, 782, 9 }, { 2401, 0, 802, 10 }, { 2401, 0, 822, 10 }, { 2401, 0, 842, 10 }, + { 2401, 0, 862, 10 }, { 2401, 0, 882, 10 }, { 2401, 0, 902, 10 }, { 2401, 0, 922, 10 }, + { 2401, 0, 942, 10 }, { 2400, 0, 962, 10 }, { 2400, 0, 982, 10 }, { 2400, 0, 1002, 10 }, + { 2400, 0, 1022, 10 }, { 2400, 0, 1042, 10 }, { 2400, 0, 1063, 10 }, { 2400, 0, 1083, 10 }, + { 2399, 0, 1103, 10 }, { 2399, 0, 1123, 10 }, { 2399, 0, 1143, 10 }, { 2399, 0, 1163, 10 }, + { 2398, 0, 1183, 10 }, { 2398, 0, 1203, 10 }, { 2397, 0, 1223, 10 }, { 2396, 0, 1243, 10 }, + { 2395, 0, 1263, 10 }, { 2394, 0, 1283, 10 }, { 2392, 0, 1302, 10 }, { 2388, 0, 1322, 11 }, + { 2382, 0, 1341, 11 }, { 2374, 0, 1359, 11 }, { 2363, 0, 1377, 11 }, { 2352, 0, 1393, 11 }, + { 2338, 0, 1407, 11 }, { 2323, 0, 1420, 11 }, { 2306, 0, 1432, 11 }, { 2289, 0, 1442, 11 }, + { 2272, 0, 1451, 11 }, { 2253, 0, 1460, 11 }, { 2235, 0, 1467, 11 }, { 2216, 0, 1474, 11 }, + { 2197, 0, 1479, 11 }, { 2177, 0, 1482, 11 }, { 2157, 0, 1483, 11 }, { 2137, 0, 1482, 11 }, + { 2117, 0, 1478, 11 }, { 2098, 0, 1473, 11 }, { 2079, 0, 1468, 11 }, { 2059, 0, 1462, 11 }, + { 2041, 0, 1455, 11 }, { 2022, 0, 1448, 11 }, { 2003, 0, 1441, 11 }, { 1984, 0, 1434, 11 }, + { 1966, 0, 1427, 11 }, { 1947, 0, 1420, 11 }, { 1929, 0, 1412, 11 }, { 1910, 0, 1404, 11 }, + { 1892, 0, 1396, 12 }, { 1874, 0, 1387, 12 }, { 1857, 0, 1376, 12 }, { 1842, 0, 1363, 12 }, + { 1827, 0, 1349, 12 }, { 1814, 0, 1334, 12 }, { 1802, 0, 1318, 12 }, { 1793, 0, 1301, 12 }, + { 1785, 0, 1282, 12 }, { 1779, 0, 1263, 12 }, { 1775, 0, 1244, 12 }, { 1772, 0, 1224, 12 }, + { 1772, 0, 1204, 12 }, { 1773, 0, 1184, 12 }, { 1777, 0, 1164, 12 }, { 1783, 0, 1145, 12 }, + { 1792, 0, 1127, 12 }, { 1802, 0, 1110, 12 }, { 1812, 0, 1093, 12 }, { 1823, 0, 1076, 12 }, + { 1834, 0, 1059, 12 }, { 1845, 0, 1042, 12 }, { 1856, 0, 1026, 12 }, { 1867, 0, 1009, 12 }, + { 1877, 0, 991, 13 }, { 1887, 0, 974, 13 }, { 1895, 0, 956, 13 }, { 1902, 0, 937, 13 }, + { 1906, 0, 917, 13 }, { 1907, 0, 897, 13 }, { 1907, 1, 877, 13 }, { 1905, 1, 858, 13 }, + { 1901, 2, 838, 13 }, { 1896, 2, 819, 13 }, { 1890, 3, 800, 13 }, { 1882, 3, 781, 13 }, + { 1874, 3, 763, 13 }, { 1864, 3, 745, 13 }, { 1855, 4, 728, 13 }, { 1844, 4, 711, 13 }, + { 1833, 4, 694, 13 }, { 1821, 4, 678, 13 }, { 1808, 5, 663, 13 }, { 1792, 4, 651, 13 }, + { 1775, 4, 641, 13 }, { 1756, 4, 633, 13 }, { 1737, 4, 627, 13 }, { 1718, 4, 622, 13 }, + { 1698, 4, 618, 13 }, { 1678, 3, 615, 13 }, { 1659, 3, 613, 13 }, { 1639, 3, 611, 13 }, + { 1619, 2, 610, 13 }, { 1599, 1, 608, 13 }, { 1579, 0, 607, 13 }, { 1559, 0, 606, 13 }, + { 1539, -2, 605, 13 }, { 1519, -3, 605, 13 }, { 1499, -5, 604, 14 }, { 1479, -6, 604, 14 }, + { 1459, -8, 603, 14 }, { 1439, -9, 603, 14 }, { 1419, -11, 603, 14 }, { 1399, -13, 602, 14 }, + { 1379, -14, 602, 14 }, { 1359, -16, 602, 14 }, { 1339, -17, 602, 14 }, { 1319, -19, 602, 14 }, + { 1299, -21, 601, 14 }, { 1279, -22, 601, 14 }, { 1259, -24, 601, 14 }, { 1239, -26, 601, 14 }, + { 1219, -28, 601, 14 }, { 1199, -30, 601, 14 }, { 1179, -32, 601, 14 }, { 1159, -34, 601, 14 }, + { 1139, -36, 601, 14 }, { 1119, -38, 600, 14 }, { 1098, -40, 600, 14 }, { 1078, -42, 600, 14 }, + { 1058, -44, 600, 14 }, { 1038, -46, 600, 14 }, { 1018, -48, 600, 14 }, { 998, -50, 600, 15 }, + { 978, -50, 600, 15 }, { 958, -50, 600, 15 }, { 938, -50, 600, 15 }, { 918, -50, 600, 15 }, + { 898, -50, 600, 15 }, { 878, -50, 600, 15 }, { 858, -50, 600, 15 }, { 838, -50, 600, 15 }, + { 818, -50, 601, 15 }, { 798, -50, 601, 15 }, { 778, -50, 601, 15 }, { 758, -50, 601, 15 }, + { 738, -50, 601, 15 }, { 718, -50, 601, 15 }, { 698, -50, 601, 15 }, { 678, -50, 601, 15 }, + { 658, -50, 601, 15 }, { 638, -50, 602, 15 }, { 618, -50, 602, 15 }, { 598, -50, 602, 15 }, + { 578, -50, 602, 15 }, { 558, -50, 602, 15 }, { 538, -50, 603, 15 }, { 518, -50, 603, 15 }, + { 498, -49, 603, 16 }, { 478, -47, 603, 16 }, { 458, -45, 604, 16 }, { 438, -43, 604, 16 }, + { 418, -41, 604, 16 }, { 398, -39, 604, 16 }, { 378, -37, 604, 16 }, { 358, -35, 604, 16 }, + { 338, -32, 605, 16 }, { 318, -30, 605, 16 }, { 298, -28, 604, 16 }, { 278, -25, 604, 16 }, + { 258, -23, 604, 16 }, { 238, -21, 604, 16 }, { 218, -19, 603, 16 }, { 198, -18, 601, 16 }, + { 178, -16, 598, 16 }, { 159, -14, 593, 16 }, { 140, -12, 588, 16 }, { 121, -11, 581, 16 }, + { 103, -10, 572, 16 }, { 85, -9, 562, 16 }, { 69, -8, 550, 16 }, { 55, -7, 536, 16 }, + { 42, -7, 521, 16 }, { 31, -6, 504, 16 }, { 21, -5, 487, 16 }, { 14, -5, 468, 17 }, + { 9, -5, 449, 17 }, { 6, -4, 429, 17 }, { 4, -3, 409, 17 }, { 3, -3, 389, 17 }, + { 2, -3, 369, 17 }, { 2, -3, 349, 17 }, { 1, -3, 329, 17 }, { 1, -2, 309, 17 }, + { 1, -1, 289, 17 }, { 1, 0, 269, 17 }, { 1, 0, 249, 17 }, { 1, 0, 229, 17 }, + { 1, 0, 209, 17 }, { 1, 0, 189, 17 }, { 0, 0, 169, 17 }, { 0, 0, 149, 17 }, + { 0, 0, 129, 17 }, { 0, 0, 109, 17 }, { 0, 0, 89, 17 }, { 0, 0, 69, 17 }, + { 0, 0, 49, 17 }, { 0, 0, 29, 17 }, { 0, 0, 9, 17 }, { 0, 0, -10, 1 }, + { 0, 0, -30, 1 }, { 0, 0, -50, 1 }, { 0, 0, -70, 1 }, { 0, 0, -90, 1 }, + { 0, 0, -110, 1 }, { 0, 0, -130, 1 }, { 0, 0, -150, 1 }, { 0, 0, -170, 1 }, + { 0, 0, -190, 1 }, { 0, 0, -210, 1 }, { 0, 0, -230, 1 }, { -32768, -32768, -32768, 0 } diff --git a/courses/mario_raceway/d_course_mario_raceway_unknown_path.inc.c b/courses/mario_raceway/d_course_mario_raceway_unknown_path.inc.c new file mode 100644 index 0000000000..a213fa6873 --- /dev/null +++ b/courses/mario_raceway/d_course_mario_raceway_unknown_path.inc.c @@ -0,0 +1,15 @@ + { 0, 0, -224, 0 }, { 0, 0, -241, 0 }, { 0, 0, -612, 0 }, { 16, 0, -690, 0 }, { 62, 0, -756, 0 }, + { 128, 0, -798, 0 }, { 494, 0, -944, 0 }, { 637, 0, -997, 0 }, { 708, 0, -1007, 0 }, { 776, 0, -992, 0 }, + { 836, 0, -949, 0 }, { 883, 0, -890, 0 }, { 902, 0, -796, 0 }, { 878, 0, -706, 0 }, { 812, 0, -584, 0 }, + { 788, 0, -516, 0 }, { 788, 0, -440, 0 }, { 815, 0, -372, 0 }, { 861, 0, -322, 0 }, { 1099, 0, -194, 0 }, + { 1360, 0, -79, 0 }, { 1452, 0, -56, 0 }, { 1652, 0, -48, 0 }, { 1722, 0, -56, 0 }, { 1765, 0, -73, 0 }, + { 1819, 0, -128, 0 }, { 2029, 0, -423, 0 }, { 2138, 0, -572, 0 }, { 2196, 0, -615, 0 }, { 2260, 0, -633, 0 }, + { 2331, 0, -628, 0 }, { 2398, 0, -599, 0 }, { 2452, 0, -543, 0 }, { 2484, 0, -469, 0 }, { 2483, 0, -389, 0 }, + { 2450, 0, -319, 0 }, { 2265, 0, -34, 0 }, { 2228, 0, 36, 0 }, { 2223, 0, 112, 0 }, { 2243, 0, 180, 0 }, + { 2374, 0, 402, 0 }, { 2396, 0, 471, 0 }, { 2401, 0, 512, 0 }, { 2402, 0, 802, 0 }, { 2399, 0, 1269, 0 }, + { 2385, 0, 1345, 0 }, { 2343, 0, 1409, 0 }, { 2275, 0, 1453, 0 }, { 2190, 0, 1485, 0 }, { 2110, 0, 1482, 0 }, + { 1911, 0, 1407, 0 }, { 1847, 0, 1372, 0 }, { 1794, 0, 1312, 0 }, { 1771, 0, 1237, 0 }, { 1774, 0, 1159, 0 }, + { 1815, 0, 1088, 0 }, { 1869, 0, 1008, 0 }, { 1906, 0, 940, 0 }, { 1909, 0, 862, 0 }, { 1884, 0, 777, 0 }, + { 1826, 0, 679, 0 }, { 1790, 0, 646, 0 }, { 1710, 0, 616, 0 }, { 1500, 0, 602, 0 }, { 755, 0, 600, 0 }, + { 252, 0, 607, 0 }, { 166, 0, 598, 0 }, { 88, 0, 569, 0 }, { 33, 0, 515, 0 }, { 3, 0, 442, 0 }, + { 1, 0, 255, 0 }, { 0, 0, -180, 0 }, { -32768, 0, 0, 0 }, diff --git a/courses/moo_moo_farm/course_data.c b/courses/moo_moo_farm/course_data.c index f08ffb028e..90b2e88ab5 100644 --- a/courses/moo_moo_farm/course_data.c +++ b/courses/moo_moo_farm/course_data.c @@ -278,8 +278,12 @@ Gfx d_course_moo_moo_farm_dl_598[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3190), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1BA0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1C40), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1270), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1128), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1168), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_14B8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1518), @@ -364,7 +368,9 @@ Gfx d_course_moo_moo_farm_dl_8A0[] = { gsSPDisplayList(d_course_moo_moo_farm_dl_60), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2C68), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2CD8), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2658), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_31C8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1BA0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1C40), @@ -372,8 +378,12 @@ Gfx d_course_moo_moo_farm_dl_8A0[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_13E0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1430), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1270), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1128), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1168), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1578), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_15E0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_23C0), @@ -641,7 +651,9 @@ Gfx d_course_moo_moo_farm_dl_FE0[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1BA0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1C40), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1C98), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1270), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1128), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1168), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_14B8), @@ -649,7 +661,9 @@ Gfx d_course_moo_moo_farm_dl_FE0[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1578), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_15E0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1640), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F20), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F58), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2008), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2040), @@ -734,7 +748,9 @@ Gfx d_course_moo_moo_farm_dl_12B8[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1430), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1270), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1128), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1168), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1578), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_15E0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1640), @@ -894,7 +910,11 @@ Gfx d_course_moo_moo_farm_dl_1790[] = { gsDPLoadSync(), gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), gsSPDisplayList(d_course_moo_moo_farm_dl_60), +#ifdef VERSION_JP + gsSPDisplayList(d_course_moo_moo_farm_packed_dl_26C0), +#else gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2C68), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2CD8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2D30), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2D90), @@ -987,7 +1007,11 @@ Gfx d_course_moo_moo_farm_dl_1A20[] = { gsDPLoadSync(), gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), gsSPDisplayList(d_course_moo_moo_farm_dl_60), +#ifdef VERSION_JP + gsSPDisplayList(d_course_moo_moo_farm_packed_dl_26C0), +#else gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2C68), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2CD8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2D30), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2D90), @@ -1008,7 +1032,9 @@ Gfx d_course_moo_moo_farm_dl_1A20[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1C40), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1C98), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1D00), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1270), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1128), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1168), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_14B8), @@ -1096,7 +1122,9 @@ Gfx d_course_moo_moo_farm_dl_1D00[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1430), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1270), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1128), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1168), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_15E0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1640), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_20C0), @@ -1474,7 +1502,9 @@ Gfx d_course_moo_moo_farm_dl_27A8[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1D60), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1270), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1128), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1168), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_15E0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1640), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_20C0), @@ -2129,7 +2159,9 @@ Gfx d_course_moo_moo_farm_dl_39F8[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_30A8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_30F0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3190), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_13E0), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1D60), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1DD0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1E58), @@ -2137,11 +2169,17 @@ Gfx d_course_moo_moo_farm_dl_39F8[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_11B0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_11F0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1230), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1578), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_15E0), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F58), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F90), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2040), +#endif gsDPTileSync(), gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, 6, G_TX_NOLOD), @@ -2498,8 +2536,12 @@ Gfx d_course_moo_moo_farm_dl_4428[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_11F0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1230), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1478), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1578), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_15E0), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F58), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F90), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1FD0), @@ -3064,7 +3106,11 @@ Gfx d_course_moo_moo_farm_dl_5458[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2C10), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2998), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_29F0), +#ifdef VERSION_JP + gsSPDisplayList(d_course_moo_moo_farm_packed_dl_28D8), +#else gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2A50), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2AB8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2898), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2B50), @@ -3160,7 +3206,11 @@ Gfx d_course_moo_moo_farm_dl_5758[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2C10), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2998), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_29F0), +#ifdef VERSION_JP + gsSPDisplayList(d_course_moo_moo_farm_packed_dl_28D8), +#else gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2A50), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2AB8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2898), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2B50), @@ -3857,7 +3907,9 @@ Gfx d_course_moo_moo_farm_dl_6A70[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_17A8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_17D8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_16B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_14B8), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F90), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1FD0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2008), @@ -4214,7 +4266,9 @@ Gfx d_course_moo_moo_farm_dl_74C8[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2AB8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2AF0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2850), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_11F0), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_19A0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1A00), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1A60), @@ -4222,8 +4276,12 @@ Gfx d_course_moo_moo_farm_dl_74C8[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1750), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_17A8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_17D8), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_16B8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_14B8), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F90), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1FD0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2008), @@ -4519,7 +4577,9 @@ Gfx d_course_moo_moo_farm_dl_7CD8[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_14B8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1518), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1578), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F90), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1FD0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2008), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2040), @@ -4602,8 +4662,12 @@ Gfx d_course_moo_moo_farm_dl_7F78[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_17A8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_17D8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_16B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_14B8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F58), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F90), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1FD0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2008), @@ -4953,7 +5017,9 @@ Gfx d_course_moo_moo_farm_dl_89A0[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2AF0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2B50), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2BA8), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_11B0), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_11F0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1230), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1478), @@ -5066,7 +5132,9 @@ Gfx d_course_moo_moo_farm_dl_8C00[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_20C0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F20), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F58), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F90), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2008), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2040), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2080), @@ -5143,7 +5211,11 @@ Gfx d_course_moo_moo_farm_dl_8F18[] = { gsSPDisplayList(d_course_moo_moo_farm_dl_60), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_28D8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2AB8), +#ifdef VERSION_JP + gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2898), +#else gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2AF0), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2B50), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2BA8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2F10), @@ -5328,7 +5400,9 @@ Gfx d_course_moo_moo_farm_dl_93D0[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_17D8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_16B8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_14B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F58), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F90), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1FD0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2008), @@ -5402,7 +5476,11 @@ Gfx d_course_moo_moo_farm_dl_9640[] = { gsSPDisplayList(d_course_moo_moo_farm_dl_60), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_28D8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2AB8), +#ifdef VERSION_JP + gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2898), +#else gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2AF0), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2B50), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2BA8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2F10), @@ -5673,8 +5751,12 @@ Gfx d_course_moo_moo_farm_dl_9DF8[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2F10), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3210), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3268), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_11B0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_11F0), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1230), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1478), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1718), @@ -5684,7 +5766,9 @@ Gfx d_course_moo_moo_farm_dl_9DF8[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_20F8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_16B8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_14B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F58), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F90), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1FD0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2008), @@ -6020,8 +6104,12 @@ Gfx d_course_moo_moo_farm_dl_A7B0[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2F10), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3210), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3268), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_11B0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_11F0), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1230), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1478), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1718), @@ -6031,7 +6119,9 @@ Gfx d_course_moo_moo_farm_dl_A7B0[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_20F8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2160), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_14B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F58), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F90), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1FD0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2008), @@ -6397,7 +6487,9 @@ Gfx d_course_moo_moo_farm_dl_B230[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3210), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3268), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_32A0), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_11F0), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1230), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1478), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1718), @@ -6407,7 +6499,9 @@ Gfx d_course_moo_moo_farm_dl_B230[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_20F8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2160), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_21D8), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F58), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F90), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1FD0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2008), @@ -7315,7 +7409,11 @@ Gfx d_course_moo_moo_farm_dl_CBC8[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3310), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3350), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3380), +#ifdef VERSION_JP + gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2748), +#else gsSPDisplayList(d_course_moo_moo_farm_packed_dl_31C8), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2F90), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2FF8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_30F0), @@ -7500,7 +7598,11 @@ Gfx d_course_moo_moo_farm_dl_D140[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3310), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3350), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3380), +#ifdef VERSION_JP + gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2748), +#else gsSPDisplayList(d_course_moo_moo_farm_packed_dl_31C8), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2F90), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2FF8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_30F0), @@ -7600,7 +7702,11 @@ Gfx d_course_moo_moo_farm_dl_D408[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3310), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3350), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3380), +#ifdef VERSION_JP + gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2748), +#else gsSPDisplayList(d_course_moo_moo_farm_packed_dl_31C8), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_30F0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3190), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_12E0), @@ -7676,7 +7782,11 @@ Gfx d_course_moo_moo_farm_dl_D6B0[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_5668), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_5F08), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_40A8), +#ifdef VERSION_JP + gsSPDisplayList(d_course_moo_moo_farm_packed_dl_5FD8), +#else gsSPDisplayList(d_course_moo_moo_farm_packed_dl_41B0), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_42B8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_43A0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_4480), @@ -7795,7 +7905,11 @@ Gfx d_course_moo_moo_farm_dl_DA50[] = { gsSPDisplayList(d_course_moo_moo_farm_dl_48), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_5F08), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_40A8), +#ifdef VERSION_JP + gsSPDisplayList(d_course_moo_moo_farm_packed_dl_5FD8), +#else gsSPDisplayList(d_course_moo_moo_farm_packed_dl_41B0), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_42B8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_43A0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_4480), @@ -7875,7 +7989,11 @@ Gfx d_course_moo_moo_farm_dl_DC70[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_5C98), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_5F08), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_40A8), +#ifdef VERSION_JP + gsSPDisplayList(d_course_moo_moo_farm_packed_dl_5FD8), +#else gsSPDisplayList(d_course_moo_moo_farm_packed_dl_41B0), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_42B8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_43A0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_4480), @@ -7907,8 +8025,12 @@ Gfx d_course_moo_moo_farm_dl_DC70[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_30F0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3138), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3190), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1270), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1128), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_17A8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_17D8), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_16B8), @@ -7917,7 +8039,9 @@ Gfx d_course_moo_moo_farm_dl_DC70[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_22B0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2338), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_23C0), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F20), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F90), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1FD0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2008), @@ -8283,7 +8407,9 @@ Gfx d_course_moo_moo_farm_dl_E708[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3138), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3190), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1BA0), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1388), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1128), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1168), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_17A8), @@ -8294,7 +8420,9 @@ Gfx d_course_moo_moo_farm_dl_E708[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1578), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2338), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_23C0), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F20), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F58), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F90), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1FD0), @@ -8384,8 +8512,12 @@ Gfx d_course_moo_moo_farm_dl_EA18[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_13E0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1430), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1270), +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1128), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1168), +#endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2338), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_23C0), gsSPDisplayList(d_course_moo_moo_farm_packed_dl_20C0), @@ -8424,175 +8556,17 @@ Gfx d_course_moo_moo_farm_dl_EA18[] = { }; // 0xEC80 +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_moo_moo_farm_unknown_path[] = { - { 11, 0, 46, 0 }, { 9, 0, 21, 0 }, { 5, 0, -307, 0 }, { -19, 0, -698, 0 }, { -28, 0, -1122, 0 }, - { -11, 0, -1281, 0 }, { -17, 0, -1480, 0 }, { 35, 0, -1705, 0 }, { 221, 0, -1918, 0 }, { 413, 0, -2044, 0 }, - { 628, 0, -2130, 0 }, { 851, 0, -2141, 0 }, { 1056, 0, -2065, 0 }, { 1200, 0, -1919, 0 }, { 1336, 0, -1771, 0 }, - { 1520, 0, -1697, 0 }, { 1705, 0, -1614, 0 }, { 1816, 0, -1417, 0 }, { 1841, 0, -1225, 0 }, { 1755, 0, -1006, 0 }, - { 1632, 0, -837, 0 }, { 1557, 0, -743, 0 }, { 1540, 0, -573, 0 }, { 1573, 0, -471, 0 }, { 1832, 0, -7, 0 }, - { 1855, 0, 202, 0 }, { 1830, 0, 379, 0 }, { 1819, 0, 586, 0 }, { 1806, 0, 781, 0 }, { 1737, 0, 973, 0 }, - { 1591, 0, 1176, 0 }, { 1369, 0, 1322, 0 }, { 1164, 0, 1406, 0 }, { 859, 0, 1416, 0 }, { 651, 0, 1352, 0 }, - { 472, 0, 1245, 0 }, { 321, 0, 1095, 0 }, { 213, 0, 921, 0 }, { 134, 0, 754, 0 }, { 65, 0, 603, 0 }, - { 27, 0, 423, 0 }, { 6, 0, 185, 0 }, { 6, 0, 78, 0 }, { 1737, 0, -186, 0 }, { -32768, 0, 0, 0 }, +#include "courses/moo_moo_farm/d_course_moo_moo_farm_unknown_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_moo_moo_farm_track_path[] = { - { 10, 18, 33, 1 }, { 9, 17, 13, 2 }, { 8, 17, -6, 2 }, - { 8, 16, -26, 2 }, { 8, 15, -46, 2 }, { 7, 14, -66, 2 }, - { 7, 14, -86, 2 }, { 7, 14, -106, 2 }, { 7, 14, -126, 2 }, - { 6, 14, -146, 2 }, { 6, 14, -166, 2 }, { 6, 14, -186, 2 }, - { 5, 14, -206, 2 }, { 5, 14, -226, 2 }, { 4, 14, -246, 2 }, - { 4, 14, -266, 2 }, { 3, 14, -286, 2 }, { 2, 14, -306, 2 }, - { 2, 14, -326, 3 }, { 1, 14, -346, 3 }, { 0, 14, -366, 3 }, - { 0, 14, -386, 3 }, { -1, 14, -406, 3 }, { -2, 14, -426, 3 }, - { -3, 14, -446, 3 }, { -4, 14, -466, 3 }, { -6, 15, -486, 3 }, - { -7, 16, -506, 3 }, { -8, 16, -526, 3 }, { -9, 17, -546, 3 }, - { -10, 19, -566, 3 }, { -11, 21, -586, 3 }, { -12, 23, -606, 3 }, - { -13, 25, -626, 3 }, { -14, 27, -646, 3 }, { -15, 28, -666, 3 }, - { -16, 29, -686, 3 }, { -17, 29, -706, 4 }, { -18, 28, -726, 4 }, - { -18, 27, -746, 4 }, { -19, 25, -766, 4 }, { -20, 23, -786, 4 }, - { -20, 22, -806, 4 }, { -21, 20, -826, 4 }, { -21, 18, -846, 4 }, - { -22, 16, -866, 4 }, { -22, 15, -886, 4 }, { -23, 14, -906, 4 }, - { -23, 14, -926, 4 }, { -24, 13, -946, 4 }, { -24, 13, -966, 4 }, - { -24, 13, -986, 4 }, { -24, 13, -1006, 4 }, { -25, 13, -1026, 4 }, - { -25, 13, -1046, 5 }, { -24, 13, -1066, 5 }, { -24, 13, -1086, 5 }, - { -24, 13, -1106, 5 }, { -23, 14, -1126, 5 }, { -23, 14, -1146, 5 }, - { -22, 14, -1166, 5 }, { -20, 14, -1186, 5 }, { -18, 14, -1206, 5 }, - { -17, 13, -1226, 5 }, { -15, 13, -1246, 5 }, { -14, 13, -1266, 5 }, - { -13, 12, -1286, 5 }, { -13, 12, -1306, 5 }, { -13, 11, -1326, 5 }, - { -13, 10, -1346, 5 }, { -13, 10, -1366, 5 }, { -14, 10, -1386, 5 }, - { -14, 9, -1406, 5 }, { -13, 9, -1426, 5 }, { -12, 8, -1446, 6 }, - { -11, 7, -1466, 6 }, { -9, 7, -1486, 6 }, { -6, 6, -1506, 6 }, - { -4, 5, -1525, 6 }, { 0, 4, -1545, 6 }, { 3, 4, -1565, 6 }, - { 7, 3, -1584, 6 }, { 11, 2, -1604, 6 }, { 17, 1, -1623, 6 }, - { 23, 1, -1642, 6 }, { 31, 0, -1661, 6 }, { 39, 0, -1679, 6 }, - { 48, 0, -1697, 6 }, { 58, 0, -1714, 6 }, { 68, 0, -1732, 6 }, - { 79, 0, -1748, 6 }, { 90, 1, -1765, 6 }, { 102, 2, -1781, 7 }, - { 115, 2, -1796, 7 }, { 128, 2, -1811, 7 }, { 141, 2, -1826, 7 }, - { 155, 3, -1841, 7 }, { 169, 4, -1856, 7 }, { 183, 2, -1870, 7 }, - { 197, 1, -1884, 7 }, { 211, 1, -1898, 7 }, { 226, 0, -1911, 7 }, - { 241, 0, -1924, 7 }, { 257, 0, -1937, 7 }, { 273, 0, -1949, 7 }, - { 289, 0, -1961, 7 }, { 305, 0, -1973, 7 }, { 322, 0, -1984, 7 }, - { 339, 0, -1995, 7 }, { 356, 0, -2005, 7 }, { 373, 0, -2015, 7 }, - { 390, 0, -2025, 7 }, { 408, 0, -2035, 7 }, { 426, 0, -2044, 8 }, - { 444, 0, -2053, 8 }, { 462, 0, -2061, 8 }, { 480, 0, -2070, 8 }, - { 498, 0, -2078, 8 }, { 517, 0, -2085, 8 }, { 535, 0, -2092, 8 }, - { 554, 0, -2099, 8 }, { 573, 0, -2105, 8 }, { 592, 0, -2111, 8 }, - { 612, 0, -2116, 8 }, { 631, 1, -2121, 8 }, { 651, 1, -2125, 8 }, - { 671, 1, -2128, 8 }, { 690, 1, -2131, 8 }, { 710, 1, -2133, 8 }, - { 730, 2, -2135, 8 }, { 750, 3, -2135, 8 }, { 770, 3, -2136, 8 }, - { 790, 3, -2135, 8 }, { 810, 4, -2134, 8 }, { 830, 4, -2132, 8 }, - { 850, 4, -2129, 9 }, { 870, 4, -2126, 9 }, { 889, 4, -2122, 9 }, - { 909, 3, -2117, 9 }, { 928, 4, -2111, 9 }, { 947, 4, -2105, 9 }, - { 965, 4, -2098, 9 }, { 984, 3, -2090, 9 }, { 1002, 3, -2081, 9 }, - { 1020, 3, -2072, 9 }, { 1037, 3, -2062, 9 }, { 1054, 3, -2052, 9 }, - { 1071, 2, -2040, 9 }, { 1087, 2, -2028, 9 }, { 1102, 1, -2015, 9 }, - { 1117, 1, -2002, 9 }, { 1131, 0, -1988, 9 }, { 1145, 0, -1974, 9 }, - { 1159, 0, -1959, 9 }, { 1173, 0, -1945, 9 }, { 1187, 0, -1931, 9 }, - { 1201, 0, -1916, 10 }, { 1214, 0, -1902, 10 }, { 1228, 0, -1887, 10 }, - { 1242, 0, -1872, 10 }, { 1255, 0, -1858, 10 }, { 1269, 2, -1843, 10 }, - { 1283, 2, -1829, 10 }, { 1297, 2, -1815, 10 }, { 1312, 2, -1802, 10 }, - { 1328, 2, -1789, 10 }, { 1344, 1, -1778, 10 }, { 1361, 0, -1767, 10 }, - { 1379, 0, -1757, 10 }, { 1396, 0, -1747, 10 }, { 1414, 0, -1739, 10 }, - { 1433, 0, -1731, 10 }, { 1451, 0, -1724, 10 }, { 1470, 0, -1716, 10 }, - { 1488, 0, -1709, 10 }, { 1507, 0, -1701, 10 }, { 1525, 0, -1693, 11 }, - { 1544, 0, -1685, 11 }, { 1562, 0, -1677, 11 }, { 1580, 0, -1669, 11 }, - { 1599, 0, -1661, 11 }, { 1617, 0, -1653, 11 }, { 1635, 0, -1644, 11 }, - { 1652, 0, -1633, 11 }, { 1668, 0, -1622, 11 }, { 1684, 0, -1609, 11 }, - { 1699, 1, -1596, 11 }, { 1713, 0, -1582, 11 }, { 1726, 0, -1566, 11 }, - { 1738, 0, -1550, 11 }, { 1749, 0, -1534, 11 }, { 1759, 1, -1517, 11 }, - { 1769, 2, -1499, 11 }, { 1778, 2, -1481, 11 }, { 1786, 2, -1463, 11 }, - { 1794, 2, -1445, 11 }, { 1802, 2, -1426, 11 }, { 1808, 1, -1407, 12 }, - { 1814, 1, -1388, 12 }, { 1819, 1, -1369, 12 }, { 1823, 1, -1349, 12 }, - { 1827, 1, -1329, 12 }, { 1829, 1, -1310, 12 }, { 1831, 1, -1290, 12 }, - { 1831, 0, -1270, 12 }, { 1830, 0, -1250, 12 }, { 1828, 0, -1230, 12 }, - { 1825, 0, -1210, 12 }, { 1821, 0, -1190, 12 }, { 1816, 0, -1171, 12 }, - { 1810, 0, -1152, 12 }, { 1804, 0, -1133, 12 }, { 1797, 0, -1114, 12 }, - { 1790, 0, -1095, 12 }, { 1782, 0, -1077, 12 }, { 1773, 0, -1059, 12 }, - { 1765, 0, -1041, 12 }, { 1756, 0, -1023, 12 }, { 1746, 0, -1005, 13 }, - { 1736, 0, -988, 13 }, { 1726, 0, -971, 13 }, { 1715, 0, -954, 13 }, - { 1704, 0, -937, 13 }, { 1693, 0, -921, 13 }, { 1681, 0, -905, 13 }, - { 1669, 0, -888, 13 }, { 1657, 0, -872, 13 }, { 1645, 0, -856, 13 }, - { 1633, 0, -840, 13 }, { 1621, 0, -824, 13 }, { 1609, 0, -808, 13 }, - { 1597, 0, -793, 13 }, { 1585, 0, -777, 13 }, { 1575, 1, -759, 13 }, - { 1567, 1, -741, 13 }, { 1560, 1, -722, 13 }, { 1555, 1, -703, 13 }, - { 1551, 1, -683, 13 }, { 1549, 1, -663, 13 }, { 1547, 1, -643, 14 }, - { 1546, 1, -623, 14 }, { 1545, 0, -603, 14 }, { 1546, 0, -583, 14 }, - { 1547, 0, -563, 14 }, { 1550, 0, -544, 14 }, { 1555, 0, -524, 14 }, - { 1562, 0, -505, 14 }, { 1570, 0, -487, 14 }, { 1579, 0, -469, 14 }, - { 1588, 0, -451, 14 }, { 1597, 0, -433, 14 }, { 1606, 0, -415, 14 }, - { 1615, 0, -398, 14 }, { 1624, 0, -380, 14 }, { 1634, 0, -362, 14 }, - { 1643, 0, -345, 14 }, { 1653, 0, -327, 14 }, { 1663, 0, -310, 14 }, - { 1672, 0, -292, 14 }, { 1682, 0, -275, 15 }, { 1692, 0, -257, 15 }, - { 1701, 0, -240, 15 }, { 1711, 0, -222, 15 }, { 1721, 0, -205, 15 }, - { 1730, 0, -187, 15 }, { 1740, 0, -169, 15 }, { 1749, 0, -151, 15 }, - { 1758, 0, -134, 15 }, { 1767, 0, -116, 15 }, { 1775, 0, -98, 15 }, - { 1784, 0, -80, 15 }, { 1792, 0, -61, 15 }, { 1800, 0, -43, 15 }, - { 1808, 0, -24, 15 }, { 1815, 0, -6, 15 }, { 1822, 0, 12, 15 }, - { 1828, 0, 31, 15 }, { 1834, -1, 50, 15 }, { 1838, -1, 70, 15 }, - { 1842, -1, 89, 15 }, { 1844, -3, 109, 16 }, { 1846, -5, 129, 16 }, - { 1847, -7, 149, 16 }, { 1848, -9, 169, 16 }, { 1848, -10, 189, 16 }, - { 1848, -12, 209, 16 }, { 1848, -14, 229, 16 }, { 1846, -16, 249, 16 }, - { 1845, -18, 269, 16 }, { 1842, -19, 289, 16 }, { 1839, -18, 309, 16 }, - { 1837, -17, 329, 16 }, { 1835, -15, 349, 16 }, { 1833, -13, 368, 16 }, - { 1831, -12, 388, 16 }, { 1829, -10, 408, 16 }, { 1827, -8, 428, 16 }, - { 1826, -6, 448, 16 }, { 1825, -4, 468, 16 }, { 1824, -2, 488, 17 }, - { 1823, -2, 508, 17 }, { 1821, -1, 528, 17 }, { 1820, -1, 548, 17 }, - { 1819, 0, 568, 17 }, { 1818, 0, 588, 17 }, { 1817, 0, 608, 17 }, - { 1816, 0, 628, 17 }, { 1814, 0, 648, 17 }, { 1813, 0, 668, 17 }, - { 1812, 0, 688, 17 }, { 1810, 0, 708, 17 }, { 1808, 1, 728, 17 }, - { 1805, 1, 747, 17 }, { 1801, 3, 767, 17 }, { 1797, 3, 787, 17 }, - { 1792, 4, 806, 17 }, { 1787, 5, 826, 17 }, { 1782, 5, 845, 17 }, - { 1775, 6, 864, 17 }, { 1769, 5, 883, 18 }, { 1761, 4, 901, 18 }, - { 1754, 4, 920, 18 }, { 1745, 3, 938, 18 }, { 1736, 2, 956, 18 }, - { 1727, 2, 974, 18 }, { 1717, 2, 991, 18 }, { 1707, 2, 1008, 18 }, - { 1697, 2, 1025, 18 }, { 1686, 1, 1042, 18 }, { 1674, 0, 1059, 18 }, - { 1663, 0, 1075, 18 }, { 1651, 0, 1091, 18 }, { 1638, 0, 1107, 18 }, - { 1626, 0, 1122, 18 }, { 1612, 0, 1137, 18 }, { 1598, 0, 1151, 18 }, - { 1584, 0, 1165, 18 }, { 1569, 0, 1179, 18 }, { 1554, 0, 1192, 18 }, - { 1539, 0, 1205, 18 }, { 1523, 0, 1217, 18 }, { 1507, 0, 1229, 18 }, - { 1491, 0, 1241, 18 }, { 1474, 0, 1252, 19 }, { 1457, 2, 1263, 19 }, - { 1440, 4, 1273, 19 }, { 1423, 5, 1284, 19 }, { 1406, 7, 1294, 19 }, - { 1389, 9, 1304, 19 }, { 1371, 11, 1313, 19 }, { 1353, 10, 1323, 19 }, - { 1336, 8, 1332, 19 }, { 1318, 6, 1341, 19 }, { 1299, 5, 1349, 19 }, - { 1281, 3, 1357, 19 }, { 1263, 1, 1365, 19 }, { 1244, 2, 1372, 19 }, - { 1225, 3, 1378, 19 }, { 1206, 3, 1384, 19 }, { 1186, 4, 1389, 19 }, - { 1167, 4, 1393, 19 }, { 1147, 6, 1397, 19 }, { 1127, 7, 1400, 19 }, - { 1108, 8, 1403, 19 }, { 1088, 9, 1405, 19 }, { 1068, 10, 1407, 19 }, - { 1048, 12, 1409, 20 }, { 1028, 13, 1410, 20 }, { 1008, 14, 1411, 20 }, - { 988, 15, 1411, 20 }, { 968, 16, 1411, 20 }, { 948, 17, 1411, 20 }, - { 928, 16, 1410, 20 }, { 908, 14, 1409, 20 }, { 888, 13, 1408, 20 }, - { 868, 12, 1406, 20 }, { 848, 11, 1404, 20 }, { 828, 10, 1401, 20 }, - { 809, 9, 1397, 20 }, { 789, 7, 1393, 20 }, { 770, 6, 1388, 20 }, - { 751, 5, 1382, 20 }, { 731, 5, 1376, 20 }, { 713, 4, 1370, 20 }, - { 694, 3, 1363, 20 }, { 675, 2, 1355, 20 }, { 657, 2, 1347, 20 }, - { 639, 1, 1339, 21 }, { 621, 1, 1330, 21 }, { 603, 0, 1321, 21 }, - { 585, 0, 1312, 21 }, { 568, 0, 1302, 21 }, { 551, 0, 1292, 21 }, - { 534, 0, 1281, 21 }, { 517, 0, 1270, 21 }, { 501, 0, 1258, 21 }, - { 485, 0, 1246, 21 }, { 469, 0, 1234, 21 }, { 453, 0, 1222, 21 }, - { 438, 1, 1209, 21 }, { 423, 2, 1195, 21 }, { 408, 3, 1182, 21 }, - { 394, 4, 1168, 21 }, { 380, 6, 1153, 21 }, { 366, 7, 1139, 21 }, - { 353, 9, 1124, 21 }, { 340, 11, 1109, 21 }, { 327, 13, 1093, 21 }, - { 315, 14, 1077, 22 }, { 303, 15, 1061, 22 }, { 291, 16, 1045, 22 }, - { 280, 16, 1029, 22 }, { 269, 17, 1012, 22 }, { 259, 17, 995, 22 }, - { 248, 16, 978, 22 }, { 238, 16, 960, 22 }, { 228, 15, 943, 22 }, - { 218, 14, 926, 22 }, { 209, 13, 908, 22 }, { 199, 10, 890, 22 }, - { 190, 8, 872, 22 }, { 181, 5, 855, 22 }, { 173, 3, 836, 22 }, - { 164, 2, 818, 22 }, { 156, 1, 800, 22 }, { 147, 0, 782, 22 }, - { 139, 0, 764, 23 }, { 130, 0, 746, 23 }, { 122, 1, 728, 23 }, - { 113, 1, 710, 23 }, { 105, 2, 691, 23 }, { 97, 3, 673, 23 }, - { 89, 4, 655, 23 }, { 82, 5, 636, 23 }, { 75, 6, 617, 23 }, - { 68, 7, 598, 23 }, { 62, 8, 579, 23 }, { 57, 9, 560, 23 }, - { 52, 10, 541, 23 }, { 47, 10, 521, 23 }, { 43, 11, 502, 23 }, - { 39, 11, 482, 23 }, { 36, 12, 462, 1 }, { 33, 12, 442, 1 }, - { 30, 13, 423, 1 }, { 27, 13, 403, 1 }, { 24, 13, 383, 1 }, - { 22, 14, 363, 1 }, { 20, 15, 343, 1 }, { 18, 16, 323, 1 }, - { 16, 16, 303, 1 }, { 14, 17, 283, 1 }, { 13, 18, 264, 1 }, - { 11, 18, 244, 1 }, { 10, 18, 224, 1 }, { 8, 18, 204, 1 }, - { 7, 18, 184, 1 }, { 6, 18, 164, 1 }, { 6, 18, 144, 1 }, - { 6, 18, 124, 1 }, { 6, 18, 104, 1 }, { 6, 18, 84, 1 }, - { 8, 18, 64, 1 }, { 10, 18, 44, 1 }, { -32768, -32768, -32768, 0 }, +#include "courses/moo_moo_farm/d_course_moo_moo_farm_track_path.inc.c" }; +#endif // 0xFC70 u8 d_course_moo_moo_farm_mole_tlut[] = { @@ -9019,3 +8993,12 @@ TrackSections d_course_moo_moo_farm_addr[] = { { d_course_moo_moo_farm_packed_dl_F20, RAMP, 255, 0x0000 }, { 0x00000000, 0, 0, 0x0000 }, }; + +#ifdef VERSION_JP /* VERSION_JP path order: JP puts the paths last */ +TrackPathPoint d_course_moo_moo_farm_unknown_path[] = { +#include "courses/moo_moo_farm/d_course_moo_moo_farm_unknown_path.inc.c" +}; +TrackPathPoint d_course_moo_moo_farm_track_path[] = { +#include "courses/moo_moo_farm/d_course_moo_moo_farm_track_path.inc.c" +}; +#endif diff --git a/courses/moo_moo_farm/course_offsets.c b/courses/moo_moo_farm/course_offsets.c index bd8293a9a8..0090a7b228 100644 --- a/courses/moo_moo_farm/course_offsets.c +++ b/courses/moo_moo_farm/course_offsets.c @@ -31,6 +31,39 @@ extern u8 gTexture66D698[]; extern u8 gTexture66EBF0[]; extern u8 gTextureWheelSteamEngineReal[]; +#ifdef VERSION_JP /* JP ships different sign textures, so their compressed sizes differ */ +const course_texture moo_moo_farm_textures[] = { + { gTextureWoodDoor0, 0x0294, 0x1000, 0x0 }, + { gTextureGrass2, 0x0415, 0x0800, 0x0 }, + { gTexture64AF50, 0x0140, 0x0800, 0x0 }, + { gTexture64B090, 0x0365, 0x0800, 0x0 }, + { gTexture64B54C, 0x038C, 0x0800, 0x0 }, + { gTexture64B3F8, 0x0153, 0x0800, 0x0 }, + { gTextureSignNintendo0, 0x0541, 0x1000, 0x0 }, + { gTextureSignNintendo1, 0x0512, 0x1000, 0x0 }, + { gTexture6684F8, 0x010D, 0x0800, 0x0 }, + { gTextureSignLuigis0, 0x026A, 0x1000, 0x0 }, + { gTextureSignLuigis1, 0x02CC, 0x1000, 0x0 }, + { gTextureSignMarioStar0, 0x0349, 0x1000, 0x0 }, + { gTextureSignMarioStar1, 0x02D7, 0x1000, 0x0 }, + { gTexture674D58, 0x030C, 0x1000, 0x0 }, + { gTexture675064, 0x01BB, 0x0800, 0x0 }, + { gTexture675220, 0x0212, 0x0800, 0x0 }, + { gTexture6775EC, 0x0233, 0x1000, 0x0 }, + { gTexture683314, 0x02DC, 0x1000, 0x0 }, + { gTexture68CDA0, 0x0110, 0x0800, 0x0 }, + { gTexture6442D4, 0x0138, 0x0800, 0x0 }, + { gTexture64440C, 0x029D, 0x1000, 0x0 }, + { gTexture6446AC, 0x0116, 0x0800, 0x0 }, + { gTextureMooMooFarmSignLeft, 0x0844, 0x1000, 0x0 }, + { gTextureMooMooFarmSignRight, 0x07DD, 0x1000, 0x0 }, + { gTexture64ACAC, 0x02A3, 0x0800, 0x0 }, + { gTexture66D698, 0x0370, 0x0800, 0x0 }, + { gTexture66EBF0, 0x0146, 0x0800, 0x0 }, + { gTextureWheelSteamEngineReal, 0x022F, 0x1000, 0x0 }, + { 0x00000000, 0x0000, 0x0000, 0x0 }, +}; +#else const course_texture moo_moo_farm_textures[] = { { gTextureWoodDoor0, 0x0294, 0x1000, 0x0 }, { gTextureGrass2, 0x0415, 0x0800, 0x0 }, @@ -62,6 +95,7 @@ const course_texture moo_moo_farm_textures[] = { { gTextureWheelSteamEngineReal, 0x022F, 0x1000, 0x0 }, { 0x00000000, 0x0000, 0x0000, 0x0 }, }; +#endif const Gfx* moo_moo_farm_dls[] = { d_course_moo_moo_farm_dl_88, d_course_moo_moo_farm_dl_598, d_course_moo_moo_farm_dl_338, diff --git a/courses/moo_moo_farm/d_course_moo_moo_farm_track_path.inc.c b/courses/moo_moo_farm/d_course_moo_moo_farm_track_path.inc.c new file mode 100644 index 0000000000..cb5dc2ca1a --- /dev/null +++ b/courses/moo_moo_farm/d_course_moo_moo_farm_track_path.inc.c @@ -0,0 +1,155 @@ + { 10, 18, 33, 1 }, { 9, 17, 13, 2 }, { 8, 17, -6, 2 }, + { 8, 16, -26, 2 }, { 8, 15, -46, 2 }, { 7, 14, -66, 2 }, + { 7, 14, -86, 2 }, { 7, 14, -106, 2 }, { 7, 14, -126, 2 }, + { 6, 14, -146, 2 }, { 6, 14, -166, 2 }, { 6, 14, -186, 2 }, + { 5, 14, -206, 2 }, { 5, 14, -226, 2 }, { 4, 14, -246, 2 }, + { 4, 14, -266, 2 }, { 3, 14, -286, 2 }, { 2, 14, -306, 2 }, + { 2, 14, -326, 3 }, { 1, 14, -346, 3 }, { 0, 14, -366, 3 }, + { 0, 14, -386, 3 }, { -1, 14, -406, 3 }, { -2, 14, -426, 3 }, + { -3, 14, -446, 3 }, { -4, 14, -466, 3 }, { -6, 15, -486, 3 }, + { -7, 16, -506, 3 }, { -8, 16, -526, 3 }, { -9, 17, -546, 3 }, + { -10, 19, -566, 3 }, { -11, 21, -586, 3 }, { -12, 23, -606, 3 }, + { -13, 25, -626, 3 }, { -14, 27, -646, 3 }, { -15, 28, -666, 3 }, + { -16, 29, -686, 3 }, { -17, 29, -706, 4 }, { -18, 28, -726, 4 }, + { -18, 27, -746, 4 }, { -19, 25, -766, 4 }, { -20, 23, -786, 4 }, + { -20, 22, -806, 4 }, { -21, 20, -826, 4 }, { -21, 18, -846, 4 }, + { -22, 16, -866, 4 }, { -22, 15, -886, 4 }, { -23, 14, -906, 4 }, + { -23, 14, -926, 4 }, { -24, 13, -946, 4 }, { -24, 13, -966, 4 }, + { -24, 13, -986, 4 }, { -24, 13, -1006, 4 }, { -25, 13, -1026, 4 }, + { -25, 13, -1046, 5 }, { -24, 13, -1066, 5 }, { -24, 13, -1086, 5 }, + { -24, 13, -1106, 5 }, { -23, 14, -1126, 5 }, { -23, 14, -1146, 5 }, + { -22, 14, -1166, 5 }, { -20, 14, -1186, 5 }, { -18, 14, -1206, 5 }, + { -17, 13, -1226, 5 }, { -15, 13, -1246, 5 }, { -14, 13, -1266, 5 }, + { -13, 12, -1286, 5 }, { -13, 12, -1306, 5 }, { -13, 11, -1326, 5 }, + { -13, 10, -1346, 5 }, { -13, 10, -1366, 5 }, { -14, 10, -1386, 5 }, + { -14, 9, -1406, 5 }, { -13, 9, -1426, 5 }, { -12, 8, -1446, 6 }, + { -11, 7, -1466, 6 }, { -9, 7, -1486, 6 }, { -6, 6, -1506, 6 }, + { -4, 5, -1525, 6 }, { 0, 4, -1545, 6 }, { 3, 4, -1565, 6 }, + { 7, 3, -1584, 6 }, { 11, 2, -1604, 6 }, { 17, 1, -1623, 6 }, + { 23, 1, -1642, 6 }, { 31, 0, -1661, 6 }, { 39, 0, -1679, 6 }, + { 48, 0, -1697, 6 }, { 58, 0, -1714, 6 }, { 68, 0, -1732, 6 }, + { 79, 0, -1748, 6 }, { 90, 1, -1765, 6 }, { 102, 2, -1781, 7 }, + { 115, 2, -1796, 7 }, { 128, 2, -1811, 7 }, { 141, 2, -1826, 7 }, + { 155, 3, -1841, 7 }, { 169, 4, -1856, 7 }, { 183, 2, -1870, 7 }, + { 197, 1, -1884, 7 }, { 211, 1, -1898, 7 }, { 226, 0, -1911, 7 }, + { 241, 0, -1924, 7 }, { 257, 0, -1937, 7 }, { 273, 0, -1949, 7 }, + { 289, 0, -1961, 7 }, { 305, 0, -1973, 7 }, { 322, 0, -1984, 7 }, + { 339, 0, -1995, 7 }, { 356, 0, -2005, 7 }, { 373, 0, -2015, 7 }, + { 390, 0, -2025, 7 }, { 408, 0, -2035, 7 }, { 426, 0, -2044, 8 }, + { 444, 0, -2053, 8 }, { 462, 0, -2061, 8 }, { 480, 0, -2070, 8 }, + { 498, 0, -2078, 8 }, { 517, 0, -2085, 8 }, { 535, 0, -2092, 8 }, + { 554, 0, -2099, 8 }, { 573, 0, -2105, 8 }, { 592, 0, -2111, 8 }, + { 612, 0, -2116, 8 }, { 631, 1, -2121, 8 }, { 651, 1, -2125, 8 }, + { 671, 1, -2128, 8 }, { 690, 1, -2131, 8 }, { 710, 1, -2133, 8 }, + { 730, 2, -2135, 8 }, { 750, 3, -2135, 8 }, { 770, 3, -2136, 8 }, + { 790, 3, -2135, 8 }, { 810, 4, -2134, 8 }, { 830, 4, -2132, 8 }, + { 850, 4, -2129, 9 }, { 870, 4, -2126, 9 }, { 889, 4, -2122, 9 }, + { 909, 3, -2117, 9 }, { 928, 4, -2111, 9 }, { 947, 4, -2105, 9 }, + { 965, 4, -2098, 9 }, { 984, 3, -2090, 9 }, { 1002, 3, -2081, 9 }, + { 1020, 3, -2072, 9 }, { 1037, 3, -2062, 9 }, { 1054, 3, -2052, 9 }, + { 1071, 2, -2040, 9 }, { 1087, 2, -2028, 9 }, { 1102, 1, -2015, 9 }, + { 1117, 1, -2002, 9 }, { 1131, 0, -1988, 9 }, { 1145, 0, -1974, 9 }, + { 1159, 0, -1959, 9 }, { 1173, 0, -1945, 9 }, { 1187, 0, -1931, 9 }, + { 1201, 0, -1916, 10 }, { 1214, 0, -1902, 10 }, { 1228, 0, -1887, 10 }, + { 1242, 0, -1872, 10 }, { 1255, 0, -1858, 10 }, { 1269, 2, -1843, 10 }, + { 1283, 2, -1829, 10 }, { 1297, 2, -1815, 10 }, { 1312, 2, -1802, 10 }, + { 1328, 2, -1789, 10 }, { 1344, 1, -1778, 10 }, { 1361, 0, -1767, 10 }, + { 1379, 0, -1757, 10 }, { 1396, 0, -1747, 10 }, { 1414, 0, -1739, 10 }, + { 1433, 0, -1731, 10 }, { 1451, 0, -1724, 10 }, { 1470, 0, -1716, 10 }, + { 1488, 0, -1709, 10 }, { 1507, 0, -1701, 10 }, { 1525, 0, -1693, 11 }, + { 1544, 0, -1685, 11 }, { 1562, 0, -1677, 11 }, { 1580, 0, -1669, 11 }, + { 1599, 0, -1661, 11 }, { 1617, 0, -1653, 11 }, { 1635, 0, -1644, 11 }, + { 1652, 0, -1633, 11 }, { 1668, 0, -1622, 11 }, { 1684, 0, -1609, 11 }, + { 1699, 1, -1596, 11 }, { 1713, 0, -1582, 11 }, { 1726, 0, -1566, 11 }, + { 1738, 0, -1550, 11 }, { 1749, 0, -1534, 11 }, { 1759, 1, -1517, 11 }, + { 1769, 2, -1499, 11 }, { 1778, 2, -1481, 11 }, { 1786, 2, -1463, 11 }, + { 1794, 2, -1445, 11 }, { 1802, 2, -1426, 11 }, { 1808, 1, -1407, 12 }, + { 1814, 1, -1388, 12 }, { 1819, 1, -1369, 12 }, { 1823, 1, -1349, 12 }, + { 1827, 1, -1329, 12 }, { 1829, 1, -1310, 12 }, { 1831, 1, -1290, 12 }, + { 1831, 0, -1270, 12 }, { 1830, 0, -1250, 12 }, { 1828, 0, -1230, 12 }, + { 1825, 0, -1210, 12 }, { 1821, 0, -1190, 12 }, { 1816, 0, -1171, 12 }, + { 1810, 0, -1152, 12 }, { 1804, 0, -1133, 12 }, { 1797, 0, -1114, 12 }, + { 1790, 0, -1095, 12 }, { 1782, 0, -1077, 12 }, { 1773, 0, -1059, 12 }, + { 1765, 0, -1041, 12 }, { 1756, 0, -1023, 12 }, { 1746, 0, -1005, 13 }, + { 1736, 0, -988, 13 }, { 1726, 0, -971, 13 }, { 1715, 0, -954, 13 }, + { 1704, 0, -937, 13 }, { 1693, 0, -921, 13 }, { 1681, 0, -905, 13 }, + { 1669, 0, -888, 13 }, { 1657, 0, -872, 13 }, { 1645, 0, -856, 13 }, + { 1633, 0, -840, 13 }, { 1621, 0, -824, 13 }, { 1609, 0, -808, 13 }, + { 1597, 0, -793, 13 }, { 1585, 0, -777, 13 }, { 1575, 1, -759, 13 }, + { 1567, 1, -741, 13 }, { 1560, 1, -722, 13 }, { 1555, 1, -703, 13 }, + { 1551, 1, -683, 13 }, { 1549, 1, -663, 13 }, { 1547, 1, -643, 14 }, + { 1546, 1, -623, 14 }, { 1545, 0, -603, 14 }, { 1546, 0, -583, 14 }, + { 1547, 0, -563, 14 }, { 1550, 0, -544, 14 }, { 1555, 0, -524, 14 }, + { 1562, 0, -505, 14 }, { 1570, 0, -487, 14 }, { 1579, 0, -469, 14 }, + { 1588, 0, -451, 14 }, { 1597, 0, -433, 14 }, { 1606, 0, -415, 14 }, + { 1615, 0, -398, 14 }, { 1624, 0, -380, 14 }, { 1634, 0, -362, 14 }, + { 1643, 0, -345, 14 }, { 1653, 0, -327, 14 }, { 1663, 0, -310, 14 }, + { 1672, 0, -292, 14 }, { 1682, 0, -275, 15 }, { 1692, 0, -257, 15 }, + { 1701, 0, -240, 15 }, { 1711, 0, -222, 15 }, { 1721, 0, -205, 15 }, + { 1730, 0, -187, 15 }, { 1740, 0, -169, 15 }, { 1749, 0, -151, 15 }, + { 1758, 0, -134, 15 }, { 1767, 0, -116, 15 }, { 1775, 0, -98, 15 }, + { 1784, 0, -80, 15 }, { 1792, 0, -61, 15 }, { 1800, 0, -43, 15 }, + { 1808, 0, -24, 15 }, { 1815, 0, -6, 15 }, { 1822, 0, 12, 15 }, + { 1828, 0, 31, 15 }, { 1834, -1, 50, 15 }, { 1838, -1, 70, 15 }, + { 1842, -1, 89, 15 }, { 1844, -3, 109, 16 }, { 1846, -5, 129, 16 }, + { 1847, -7, 149, 16 }, { 1848, -9, 169, 16 }, { 1848, -10, 189, 16 }, + { 1848, -12, 209, 16 }, { 1848, -14, 229, 16 }, { 1846, -16, 249, 16 }, + { 1845, -18, 269, 16 }, { 1842, -19, 289, 16 }, { 1839, -18, 309, 16 }, + { 1837, -17, 329, 16 }, { 1835, -15, 349, 16 }, { 1833, -13, 368, 16 }, + { 1831, -12, 388, 16 }, { 1829, -10, 408, 16 }, { 1827, -8, 428, 16 }, + { 1826, -6, 448, 16 }, { 1825, -4, 468, 16 }, { 1824, -2, 488, 17 }, + { 1823, -2, 508, 17 }, { 1821, -1, 528, 17 }, { 1820, -1, 548, 17 }, + { 1819, 0, 568, 17 }, { 1818, 0, 588, 17 }, { 1817, 0, 608, 17 }, + { 1816, 0, 628, 17 }, { 1814, 0, 648, 17 }, { 1813, 0, 668, 17 }, + { 1812, 0, 688, 17 }, { 1810, 0, 708, 17 }, { 1808, 1, 728, 17 }, + { 1805, 1, 747, 17 }, { 1801, 3, 767, 17 }, { 1797, 3, 787, 17 }, + { 1792, 4, 806, 17 }, { 1787, 5, 826, 17 }, { 1782, 5, 845, 17 }, + { 1775, 6, 864, 17 }, { 1769, 5, 883, 18 }, { 1761, 4, 901, 18 }, + { 1754, 4, 920, 18 }, { 1745, 3, 938, 18 }, { 1736, 2, 956, 18 }, + { 1727, 2, 974, 18 }, { 1717, 2, 991, 18 }, { 1707, 2, 1008, 18 }, + { 1697, 2, 1025, 18 }, { 1686, 1, 1042, 18 }, { 1674, 0, 1059, 18 }, + { 1663, 0, 1075, 18 }, { 1651, 0, 1091, 18 }, { 1638, 0, 1107, 18 }, + { 1626, 0, 1122, 18 }, { 1612, 0, 1137, 18 }, { 1598, 0, 1151, 18 }, + { 1584, 0, 1165, 18 }, { 1569, 0, 1179, 18 }, { 1554, 0, 1192, 18 }, + { 1539, 0, 1205, 18 }, { 1523, 0, 1217, 18 }, { 1507, 0, 1229, 18 }, + { 1491, 0, 1241, 18 }, { 1474, 0, 1252, 19 }, { 1457, 2, 1263, 19 }, + { 1440, 4, 1273, 19 }, { 1423, 5, 1284, 19 }, { 1406, 7, 1294, 19 }, + { 1389, 9, 1304, 19 }, { 1371, 11, 1313, 19 }, { 1353, 10, 1323, 19 }, + { 1336, 8, 1332, 19 }, { 1318, 6, 1341, 19 }, { 1299, 5, 1349, 19 }, + { 1281, 3, 1357, 19 }, { 1263, 1, 1365, 19 }, { 1244, 2, 1372, 19 }, + { 1225, 3, 1378, 19 }, { 1206, 3, 1384, 19 }, { 1186, 4, 1389, 19 }, + { 1167, 4, 1393, 19 }, { 1147, 6, 1397, 19 }, { 1127, 7, 1400, 19 }, + { 1108, 8, 1403, 19 }, { 1088, 9, 1405, 19 }, { 1068, 10, 1407, 19 }, + { 1048, 12, 1409, 20 }, { 1028, 13, 1410, 20 }, { 1008, 14, 1411, 20 }, + { 988, 15, 1411, 20 }, { 968, 16, 1411, 20 }, { 948, 17, 1411, 20 }, + { 928, 16, 1410, 20 }, { 908, 14, 1409, 20 }, { 888, 13, 1408, 20 }, + { 868, 12, 1406, 20 }, { 848, 11, 1404, 20 }, { 828, 10, 1401, 20 }, + { 809, 9, 1397, 20 }, { 789, 7, 1393, 20 }, { 770, 6, 1388, 20 }, + { 751, 5, 1382, 20 }, { 731, 5, 1376, 20 }, { 713, 4, 1370, 20 }, + { 694, 3, 1363, 20 }, { 675, 2, 1355, 20 }, { 657, 2, 1347, 20 }, + { 639, 1, 1339, 21 }, { 621, 1, 1330, 21 }, { 603, 0, 1321, 21 }, + { 585, 0, 1312, 21 }, { 568, 0, 1302, 21 }, { 551, 0, 1292, 21 }, + { 534, 0, 1281, 21 }, { 517, 0, 1270, 21 }, { 501, 0, 1258, 21 }, + { 485, 0, 1246, 21 }, { 469, 0, 1234, 21 }, { 453, 0, 1222, 21 }, + { 438, 1, 1209, 21 }, { 423, 2, 1195, 21 }, { 408, 3, 1182, 21 }, + { 394, 4, 1168, 21 }, { 380, 6, 1153, 21 }, { 366, 7, 1139, 21 }, + { 353, 9, 1124, 21 }, { 340, 11, 1109, 21 }, { 327, 13, 1093, 21 }, + { 315, 14, 1077, 22 }, { 303, 15, 1061, 22 }, { 291, 16, 1045, 22 }, + { 280, 16, 1029, 22 }, { 269, 17, 1012, 22 }, { 259, 17, 995, 22 }, + { 248, 16, 978, 22 }, { 238, 16, 960, 22 }, { 228, 15, 943, 22 }, + { 218, 14, 926, 22 }, { 209, 13, 908, 22 }, { 199, 10, 890, 22 }, + { 190, 8, 872, 22 }, { 181, 5, 855, 22 }, { 173, 3, 836, 22 }, + { 164, 2, 818, 22 }, { 156, 1, 800, 22 }, { 147, 0, 782, 22 }, + { 139, 0, 764, 23 }, { 130, 0, 746, 23 }, { 122, 1, 728, 23 }, + { 113, 1, 710, 23 }, { 105, 2, 691, 23 }, { 97, 3, 673, 23 }, + { 89, 4, 655, 23 }, { 82, 5, 636, 23 }, { 75, 6, 617, 23 }, + { 68, 7, 598, 23 }, { 62, 8, 579, 23 }, { 57, 9, 560, 23 }, + { 52, 10, 541, 23 }, { 47, 10, 521, 23 }, { 43, 11, 502, 23 }, + { 39, 11, 482, 23 }, { 36, 12, 462, 1 }, { 33, 12, 442, 1 }, + { 30, 13, 423, 1 }, { 27, 13, 403, 1 }, { 24, 13, 383, 1 }, + { 22, 14, 363, 1 }, { 20, 15, 343, 1 }, { 18, 16, 323, 1 }, + { 16, 16, 303, 1 }, { 14, 17, 283, 1 }, { 13, 18, 264, 1 }, + { 11, 18, 244, 1 }, { 10, 18, 224, 1 }, { 8, 18, 204, 1 }, + { 7, 18, 184, 1 }, { 6, 18, 164, 1 }, { 6, 18, 144, 1 }, + { 6, 18, 124, 1 }, { 6, 18, 104, 1 }, { 6, 18, 84, 1 }, + { 8, 18, 64, 1 }, { 10, 18, 44, 1 }, { -32768, -32768, -32768, 0 }, diff --git a/courses/moo_moo_farm/d_course_moo_moo_farm_unknown_path.inc.c b/courses/moo_moo_farm/d_course_moo_moo_farm_unknown_path.inc.c new file mode 100644 index 0000000000..82198641f5 --- /dev/null +++ b/courses/moo_moo_farm/d_course_moo_moo_farm_unknown_path.inc.c @@ -0,0 +1,9 @@ + { 11, 0, 46, 0 }, { 9, 0, 21, 0 }, { 5, 0, -307, 0 }, { -19, 0, -698, 0 }, { -28, 0, -1122, 0 }, + { -11, 0, -1281, 0 }, { -17, 0, -1480, 0 }, { 35, 0, -1705, 0 }, { 221, 0, -1918, 0 }, { 413, 0, -2044, 0 }, + { 628, 0, -2130, 0 }, { 851, 0, -2141, 0 }, { 1056, 0, -2065, 0 }, { 1200, 0, -1919, 0 }, { 1336, 0, -1771, 0 }, + { 1520, 0, -1697, 0 }, { 1705, 0, -1614, 0 }, { 1816, 0, -1417, 0 }, { 1841, 0, -1225, 0 }, { 1755, 0, -1006, 0 }, + { 1632, 0, -837, 0 }, { 1557, 0, -743, 0 }, { 1540, 0, -573, 0 }, { 1573, 0, -471, 0 }, { 1832, 0, -7, 0 }, + { 1855, 0, 202, 0 }, { 1830, 0, 379, 0 }, { 1819, 0, 586, 0 }, { 1806, 0, 781, 0 }, { 1737, 0, 973, 0 }, + { 1591, 0, 1176, 0 }, { 1369, 0, 1322, 0 }, { 1164, 0, 1406, 0 }, { 859, 0, 1416, 0 }, { 651, 0, 1352, 0 }, + { 472, 0, 1245, 0 }, { 321, 0, 1095, 0 }, { 213, 0, 921, 0 }, { 134, 0, 754, 0 }, { 65, 0, 603, 0 }, + { 27, 0, 423, 0 }, { 6, 0, 185, 0 }, { 6, 0, 78, 0 }, { 1737, 0, -186, 0 }, { -32768, 0, 0, 0 }, diff --git a/courses/rainbow_road/course_data.c b/courses/rainbow_road/course_data.c index 808d6b1d73..c615728bbc 100644 --- a/courses/rainbow_road/course_data.c +++ b/courses/rainbow_road/course_data.c @@ -813,624 +813,17 @@ Gfx d_course_rainbow_road_dl_1948[] = { gsSPEndDisplayList(), }; +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_rainbow_road_unknown_path[] = { - { 6, 0, 3, 0 }, { 6, 0, -25, 0 }, { 0, 0, -514, 0 }, { 1, 0, -1537, 0 }, - { -3, 0, -2579, 0 }, { -3, 0, -3696, 0 }, { 1, 0, -4448, 0 }, { 30, 0, -4782, 0 }, - { 113, 0, -5064, 0 }, { 331, 0, -5290, 0 }, { 610, 0, -5390, 0 }, { 915, 0, -5345, 0 }, - { 1149, 0, -5158, 0 }, { 1287, 0, -4862, 0 }, { 1271, 0, -4526, 0 }, { 1117, 0, -4214, 0 }, - { 810, 0, -3880, 0 }, { -132, 0, -3352, 0 }, { -544, 0, -3140, 0 }, { -823, 0, -2922, 0 }, - { -980, 0, -2716, 0 }, { -1050, 0, -2539, 0 }, { -1092, 0, -2350, 0 }, { -1127, 0, -2143, 0 }, - { -1194, 0, -1806, 0 }, { -1332, 0, -1421, 0 }, { -1537, 0, -1074, 0 }, { -1675, 0, -715, 0 }, - { -1685, 0, -365, 0 }, { -1637, 0, -240, 0 }, { -1515, 0, -92, 0 }, { -1345, 0, 1, 0 }, - { -1111, 0, 13, 0 }, { -909, 0, -83, 0 }, { -771, 0, -256, 0 }, { -716, 0, -467, 0 }, - { -768, 0, -692, 0 }, { -886, 0, -839, 0 }, { -1072, 0, -929, 0 }, { -1303, 0, -942, 0 }, - { -1492, 0, -859, 0 }, { -1643, 0, -679, 0 }, { -1685, 0, -567, 0 }, { -1704, 0, -147, 0 }, - { -1703, 0, 434, 0 }, { -1715, 0, 643, 0 }, { -1763, 0, 861, 0 }, { -1890, 0, 1040, 0 }, - { -2223, 0, 1351, 0 }, { -2928, 0, 1854, 0 }, { -3246, 0, 2085, 0 }, { -3361, 0, 2245, 0 }, - { -3400, 0, 2415, 0 }, { -3374, 0, 2594, 0 }, { -3284, 0, 2757, 0 }, { -3108, 0, 2886, 0 }, - { -2893, 0, 2921, 0 }, { -2700, 0, 2869, 0 }, { -2466, 0, 2716, 0 }, { -1921, 0, 2318, 0 }, - { -1389, 0, 1994, 0 }, { -1129, 0, 1926, 0 }, { -857, 0, 1930, 0 }, { 154, 0, 1923, 0 }, - { 1180, 0, 1927, 0 }, { 1570, 0, 1992, 0 }, { 1836, 0, 2137, 0 }, { 2029, 0, 2396, 0 }, - { 2135, 0, 2736, 0 }, { 2079, 0, 3132, 0 }, { 1813, 0, 3443, 0 }, { 1495, 0, 3559, 0 }, - { 1181, 0, 3552, 0 }, { 895, 0, 3433, 0 }, { 642, 0, 3206, 0 }, { 334, 0, 2914, 0 }, - { 84, 0, 2764, 0 }, { -176, 0, 2690, 0 }, { -490, 0, 2684, 0 }, { -705, 0, 2774, 0 }, - { -898, 0, 2931, 0 }, { -1010, 0, 3159, 0 }, { -1036, 0, 3422, 0 }, { -962, 0, 3689, 0 }, - { -821, 0, 3878, 0 }, { -577, 0, 4026, 0 }, { -278, 0, 4058, 0 }, { -6, 0, 3971, 0 }, - { 206, 0, 3801, 0 }, { 331, 0, 3510, 0 }, { 366, 0, 3227, 0 }, { 373, 0, 2714, 0 }, - { 357, 0, 2070, 0 }, { 322, 0, 1653, 0 }, { 223, 0, 1342, 0 }, { 114, 0, 1031, 0 }, - { 37, 0, 624, 0 }, { 15, 0, 331, 0 }, { 5, 0, 40, 0 }, { 373, 0, -3598, 0 }, - { -32768, 0, 0, 0 }, +#include "courses/rainbow_road/d_course_rainbow_road_unknown_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_rainbow_road_track_path[] = { - { 6, 1510, -11, 1 }, { 5, 1509, -31, 2 }, { 5, 1509, -51, 2 }, - { 5, 1508, -71, 2 }, { 5, 1507, -91, 2 }, { 4, 1506, -111, 2 }, - { 4, 1505, -131, 2 }, { 4, 1504, -151, 2 }, { 4, 1504, -171, 2 }, - { 3, 1503, -191, 2 }, { 3, 1502, -211, 2 }, { 3, 1501, -231, 2 }, - { 3, 1500, -251, 2 }, { 2, 1500, -271, 2 }, { 2, 1499, -291, 2 }, - { 2, 1498, -311, 2 }, { 2, 1497, -331, 2 }, { 2, 1495, -351, 2 }, - { 1, 1494, -371, 2 }, { 1, 1492, -391, 2 }, { 1, 1490, -411, 2 }, - { 1, 1488, -431, 2 }, { 1, 1486, -451, 2 }, { 1, 1483, -471, 2 }, - { 1, 1481, -491, 2 }, { 1, 1479, -511, 2 }, { 1, 1476, -531, 2 }, - { 0, 1473, -551, 2 }, { 0, 1470, -571, 2 }, { 0, 1467, -591, 2 }, - { 0, 1464, -611, 2 }, { 0, 1460, -631, 2 }, { 0, 1457, -651, 2 }, - { 0, 1454, -671, 2 }, { 0, 1451, -691, 2 }, { 0, 1447, -711, 2 }, - { 0, 1442, -731, 2 }, { 0, 1438, -751, 2 }, { 0, 1434, -771, 2 }, - { 0, 1429, -791, 2 }, { 0, 1423, -811, 2 }, { 0, 1417, -831, 2 }, - { 0, 1411, -851, 2 }, { 0, 1405, -871, 2 }, { 0, 1399, -891, 2 }, - { 0, 1392, -911, 2 }, { 0, 1385, -931, 2 }, { 0, 1377, -951, 2 }, - { 0, 1370, -971, 2 }, { 0, 1362, -991, 2 }, { 0, 1353, -1011, 2 }, - { 0, 1344, -1031, 2 }, { 0, 1336, -1051, 2 }, { 0, 1327, -1071, 2 }, - { 0, 1316, -1091, 2 }, { 0, 1304, -1111, 2 }, { 0, 1293, -1131, 2 }, - { 0, 1281, -1151, 2 }, { 0, 1270, -1171, 2 }, { 0, 1256, -1191, 2 }, - { 0, 1241, -1211, 2 }, { 0, 1227, -1231, 2 }, { 0, 1213, -1251, 2 }, - { 0, 1199, -1271, 2 }, { 0, 1184, -1291, 2 }, { 0, 1169, -1311, 2 }, - { 0, 1154, -1331, 2 }, { 0, 1139, -1351, 2 }, { 0, 1124, -1371, 2 }, - { 0, 1109, -1391, 2 }, { 0, 1094, -1411, 2 }, { 0, 1079, -1431, 2 }, - { 0, 1064, -1451, 2 }, { 0, 1049, -1471, 2 }, { 0, 1034, -1491, 2 }, - { 0, 1019, -1511, 2 }, { 0, 1004, -1531, 2 }, { 0, 989, -1551, 2 }, - { 0, 974, -1571, 2 }, { 0, 959, -1591, 2 }, { 0, 944, -1611, 2 }, - { 0, 929, -1631, 2 }, { 0, 914, -1651, 2 }, { 0, 899, -1671, 2 }, - { 0, 885, -1692, 2 }, { 0, 872, -1712, 2 }, { 0, 858, -1732, 2 }, - { 0, 846, -1752, 2 }, { 0, 834, -1772, 2 }, { 0, 822, -1792, 2 }, - { 0, 810, -1812, 2 }, { 0, 799, -1832, 2 }, { 0, 789, -1852, 2 }, - { 0, 779, -1872, 2 }, { 0, 770, -1892, 2 }, { 0, 760, -1912, 2 }, - { 0, 751, -1932, 2 }, { 0, 743, -1952, 2 }, { 0, 735, -1972, 2 }, - { 0, 727, -1992, 2 }, { 0, 719, -2012, 2 }, { 0, 712, -2032, 2 }, - { 0, 705, -2052, 2 }, { -1, 698, -2072, 2 }, { -1, 691, -2092, 2 }, - { -1, 685, -2112, 2 }, { -1, 680, -2132, 2 }, { -1, 675, -2152, 2 }, - { -1, 670, -2172, 2 }, { -1, 664, -2192, 2 }, { -1, 660, -2212, 2 }, - { -1, 657, -2232, 2 }, { -1, 654, -2252, 2 }, { -1, 650, -2272, 2 }, - { -1, 647, -2292, 2 }, { -1, 645, -2312, 2 }, { -1, 643, -2332, 2 }, - { -1, 642, -2352, 2 }, { -2, 640, -2372, 2 }, { -2, 639, -2392, 2 }, - { -2, 639, -2412, 2 }, { -2, 639, -2432, 2 }, { -2, 639, -2452, 2 }, - { -2, 639, -2472, 2 }, { -2, 639, -2492, 2 }, { -2, 641, -2512, 2 }, - { -2, 643, -2532, 2 }, { -2, 645, -2552, 2 }, { -2, 646, -2572, 2 }, - { -2, 650, -2592, 3 }, { -2, 654, -2612, 3 }, { -2, 658, -2632, 3 }, - { -2, 661, -2652, 3 }, { -2, 665, -2672, 3 }, { -2, 669, -2692, 3 }, - { -2, 673, -2712, 3 }, { -2, 677, -2732, 3 }, { -2, 681, -2752, 3 }, - { -2, 685, -2772, 3 }, { -2, 689, -2792, 3 }, { -2, 694, -2812, 3 }, - { -2, 699, -2832, 3 }, { -2, 704, -2852, 3 }, { -2, 708, -2872, 3 }, - { -2, 713, -2892, 3 }, { -2, 718, -2912, 3 }, { -2, 722, -2932, 3 }, - { -2, 727, -2952, 3 }, { -2, 732, -2972, 3 }, { -2, 737, -2992, 3 }, - { -2, 741, -3012, 3 }, { -2, 746, -3032, 3 }, { -2, 751, -3052, 3 }, - { -2, 755, -3072, 3 }, { -2, 760, -3092, 3 }, { -2, 765, -3112, 3 }, - { -2, 769, -3132, 3 }, { -2, 774, -3152, 3 }, { -2, 779, -3172, 3 }, - { -2, 783, -3193, 3 }, { -2, 788, -3213, 3 }, { -2, 793, -3233, 3 }, - { -2, 798, -3253, 3 }, { -2, 802, -3273, 3 }, { -2, 807, -3293, 3 }, - { -2, 812, -3313, 3 }, { -2, 816, -3333, 3 }, { -2, 820, -3353, 3 }, - { -2, 824, -3373, 3 }, { -2, 828, -3393, 3 }, { -2, 832, -3413, 3 }, - { -2, 836, -3433, 3 }, { -2, 840, -3453, 3 }, { -2, 844, -3473, 3 }, - { -2, 849, -3493, 3 }, { -2, 853, -3513, 3 }, { -2, 856, -3533, 3 }, - { -2, 860, -3553, 3 }, { -2, 863, -3573, 3 }, { -2, 867, -3593, 3 }, - { -2, 871, -3613, 3 }, { -2, 874, -3633, 3 }, { -2, 878, -3653, 3 }, - { -2, 882, -3673, 3 }, { -2, 885, -3693, 3 }, { -2, 889, -3713, 3 }, - { -2, 892, -3733, 3 }, { -2, 895, -3753, 3 }, { -2, 898, -3773, 3 }, - { -2, 901, -3793, 3 }, { -2, 905, -3813, 3 }, { -2, 908, -3833, 3 }, - { -1, 911, -3853, 3 }, { -1, 914, -3873, 3 }, { -1, 917, -3893, 3 }, - { -1, 920, -3913, 3 }, { -1, 923, -3933, 3 }, { -1, 926, -3953, 3 }, - { -1, 928, -3973, 3 }, { -1, 931, -3993, 3 }, { -1, 934, -4013, 3 }, - { -1, 937, -4033, 3 }, { -1, 940, -4053, 3 }, { 0, 942, -4073, 3 }, - { 0, 945, -4093, 3 }, { 0, 947, -4113, 3 }, { 0, 949, -4133, 3 }, - { 0, 952, -4153, 3 }, { 0, 954, -4173, 3 }, { 0, 956, -4193, 3 }, - { 0, 959, -4213, 3 }, { 0, 961, -4233, 3 }, { 0, 963, -4253, 3 }, - { 1, 966, -4273, 3 }, { 1, 967, -4293, 3 }, { 2, 969, -4313, 3 }, - { 2, 971, -4333, 3 }, { 2, 973, -4353, 3 }, { 3, 975, -4373, 3 }, - { 4, 977, -4393, 3 }, { 4, 979, -4413, 3 }, { 5, 981, -4433, 3 }, - { 6, 983, -4453, 3 }, { 6, 984, -4473, 3 }, { 7, 985, -4493, 3 }, - { 8, 987, -4513, 3 }, { 9, 988, -4533, 3 }, { 11, 989, -4553, 3 }, - { 12, 990, -4573, 3 }, { 13, 992, -4593, 3 }, { 15, 993, -4613, 3 }, - { 17, 994, -4633, 3 }, { 19, 994, -4653, 3 }, { 21, 995, -4673, 3 }, - { 23, 996, -4693, 3 }, { 26, 996, -4713, 3 }, { 29, 997, -4732, 3 }, - { 32, 998, -4752, 3 }, { 36, 998, -4772, 3 }, { 39, 999, -4791, 3 }, - { 43, 999, -4811, 3 }, { 47, 999, -4831, 3 }, { 52, 999, -4850, 3 }, - { 57, 999, -4870, 3 }, { 62, 999, -4889, 3 }, { 67, 999, -4908, 3 }, - { 73, 999, -4928, 3 }, { 79, 999, -4947, 3 }, { 85, 999, -4965, 3 }, - { 93, 999, -4984, 3 }, { 101, 999, -5002, 3 }, { 110, 999, -5020, 3 }, - { 119, 999, -5038, 3 }, { 129, 999, -5055, 3 }, { 139, 999, -5073, 3 }, - { 150, 999, -5089, 3 }, { 162, 999, -5106, 3 }, { 174, 999, -5122, 3 }, - { 186, 999, -5137, 3 }, { 199, 999, -5152, 3 }, { 213, 999, -5167, 3 }, - { 227, 999, -5182, 3 }, { 241, 999, -5196, 3 }, { 255, 999, -5209, 3 }, - { 270, 999, -5223, 3 }, { 286, 999, -5235, 3 }, { 301, 999, -5248, 3 }, - { 318, 999, -5260, 3 }, { 334, 999, -5271, 3 }, { 351, 999, -5282, 3 }, - { 368, 999, -5292, 3 }, { 386, 999, -5302, 3 }, { 403, 999, -5311, 3 }, - { 421, 999, -5320, 3 }, { 440, 999, -5328, 3 }, { 458, 999, -5335, 3 }, - { 477, 999, -5342, 3 }, { 496, 999, -5348, 3 }, { 515, 999, -5354, 3 }, - { 535, 999, -5359, 3 }, { 554, 999, -5363, 3 }, { 574, 999, -5366, 3 }, - { 594, 999, -5369, 3 }, { 614, 999, -5371, 3 }, { 634, 999, -5373, 3 }, - { 654, 999, -5374, 3 }, { 674, 999, -5374, 3 }, { 694, 999, -5373, 3 }, - { 714, 999, -5372, 3 }, { 734, 999, -5371, 3 }, { 753, 999, -5368, 3 }, - { 773, 999, -5365, 4 }, { 793, 999, -5362, 4 }, { 812, 999, -5357, 4 }, - { 832, 999, -5352, 4 }, { 851, 999, -5347, 4 }, { 870, 999, -5341, 4 }, - { 889, 999, -5334, 4 }, { 907, 999, -5326, 4 }, { 925, 999, -5318, 4 }, - { 943, 999, -5309, 4 }, { 961, 999, -5299, 4 }, { 978, 999, -5289, 4 }, - { 995, 999, -5278, 4 }, { 1011, 999, -5266, 4 }, { 1027, 999, -5254, 4 }, - { 1043, 999, -5242, 4 }, { 1058, 999, -5229, 4 }, { 1073, 999, -5215, 4 }, - { 1087, 999, -5201, 4 }, { 1101, 999, -5187, 4 }, { 1114, 999, -5172, 4 }, - { 1127, 999, -5156, 4 }, { 1139, 999, -5141, 4 }, { 1151, 999, -5124, 4 }, - { 1162, 999, -5108, 4 }, { 1173, 999, -5091, 4 }, { 1184, 999, -5074, 4 }, - { 1194, 999, -5057, 4 }, { 1203, 999, -5039, 4 }, { 1212, 999, -5021, 4 }, - { 1220, 999, -5003, 4 }, { 1228, 999, -4985, 4 }, { 1236, 999, -4966, 4 }, - { 1243, 999, -4947, 4 }, { 1249, 999, -4928, 4 }, { 1255, 999, -4909, 4 }, - { 1260, 999, -4890, 4 }, { 1264, 999, -4870, 4 }, { 1268, 999, -4851, 4 }, - { 1272, 999, -4831, 4 }, { 1274, 999, -4811, 4 }, { 1276, 999, -4791, 4 }, - { 1278, 999, -4771, 4 }, { 1279, 999, -4751, 4 }, { 1279, 999, -4731, 4 }, - { 1279, 999, -4711, 4 }, { 1278, 999, -4691, 4 }, { 1277, 999, -4671, 4 }, - { 1275, 999, -4651, 4 }, { 1273, 999, -4631, 4 }, { 1270, 999, -4612, 4 }, - { 1267, 999, -4592, 4 }, { 1263, 999, -4572, 4 }, { 1259, 999, -4553, 4 }, - { 1254, 999, -4533, 4 }, { 1249, 999, -4514, 4 }, { 1244, 999, -4495, 4 }, - { 1237, 999, -4476, 4 }, { 1231, 999, -4457, 4 }, { 1224, 999, -4438, 4 }, - { 1216, 999, -4420, 4 }, { 1208, 999, -4401, 4 }, { 1200, 999, -4383, 4 }, - { 1191, 999, -4365, 4 }, { 1182, 999, -4347, 4 }, { 1173, 999, -4330, 4 }, - { 1163, 999, -4312, 4 }, { 1153, 999, -4295, 4 }, { 1142, 999, -4278, 4 }, - { 1132, 999, -4261, 4 }, { 1121, 999, -4244, 4 }, { 1109, 999, -4228, 4 }, - { 1098, 999, -4211, 4 }, { 1086, 999, -4195, 4 }, { 1074, 999, -4179, 4 }, - { 1062, 999, -4163, 4 }, { 1050, 999, -4147, 4 }, { 1037, 999, -4132, 4 }, - { 1024, 999, -4116, 4 }, { 1011, 999, -4101, 4 }, { 998, 999, -4086, 4 }, - { 985, 999, -4071, 4 }, { 972, 1000, -4056, 4 }, { 958, 1000, -4041, 4 }, - { 944, 1001, -4027, 4 }, { 930, 1002, -4013, 4 }, { 915, 1002, -3999, 4 }, - { 900, 1003, -3986, 4 }, { 885, 1003, -3973, 4 }, { 870, 1004, -3960, 4 }, - { 854, 1004, -3947, 4 }, { 839, 1005, -3935, 4 }, { 823, 1006, -3923, 4 }, - { 807, 1006, -3910, 4 }, { 791, 1007, -3899, 4 }, { 775, 1007, -3887, 4 }, - { 759, 1007, -3875, 4 }, { 742, 1007, -3864, 4 }, { 726, 1007, -3852, 4 }, - { 709, 1007, -3841, 4 }, { 693, 1007, -3830, 4 }, { 676, 1007, -3819, 4 }, - { 659, 1007, -3808, 4 }, { 642, 1007, -3797, 4 }, { 626, 1007, -3786, 4 }, - { 609, 1007, -3775, 4 }, { 592, 1007, -3765, 4 }, { 575, 1006, -3754, 4 }, - { 558, 1006, -3744, 4 }, { 541, 1005, -3733, 4 }, { 523, 1004, -3723, 4 }, - { 506, 1004, -3712, 4 }, { 489, 1003, -3702, 4 }, { 472, 1002, -3692, 4 }, - { 455, 1002, -3682, 4 }, { 437, 1001, -3672, 4 }, { 420, 1001, -3662, 4 }, - { 403, 1000, -3652, 4 }, { 385, 999, -3642, 4 }, { 368, 999, -3632, 4 }, - { 350, 998, -3622, 4 }, { 333, 996, -3612, 4 }, { 315, 995, -3603, 4 }, - { 298, 994, -3593, 4 }, { 281, 993, -3583, 4 }, { 263, 991, -3573, 4 }, - { 246, 990, -3564, 4 }, { 228, 989, -3554, 4 }, { 211, 988, -3544, 4 }, - { 193, 986, -3534, 4 }, { 176, 985, -3525, 4 }, { 158, 984, -3515, 4 }, - { 141, 983, -3505, 4 }, { 123, 981, -3495, 4 }, { 106, 980, -3486, 4 }, - { 88, 978, -3476, 4 }, { 71, 976, -3466, 4 }, { 53, 975, -3457, 4 }, - { 36, 973, -3447, 4 }, { 18, 972, -3437, 4 }, { 1, 970, -3428, 4 }, - { -16, 969, -3418, 4 }, { -34, 967, -3408, 4 }, { -51, 966, -3399, 4 }, - { -69, 964, -3389, 4 }, { -86, 962, -3380, 4 }, { -104, 961, -3370, 4 }, - { -121, 959, -3360, 4 }, { -139, 958, -3351, 4 }, { -157, 956, -3341, 4 }, - { -174, 954, -3332, 4 }, { -192, 952, -3322, 4 }, { -209, 950, -3313, 4 }, - { -227, 949, -3303, 4 }, { -245, 947, -3294, 4 }, { -262, 945, -3285, 4 }, - { -280, 943, -3275, 4 }, { -298, 941, -3266, 4 }, { -316, 939, -3257, 4 }, - { -333, 938, -3248, 4 }, { -351, 936, -3238, 4 }, { -369, 934, -3229, 5 }, - { -387, 932, -3220, 5 }, { -404, 930, -3210, 5 }, { -422, 928, -3201, 5 }, - { -439, 926, -3191, 5 }, { -456, 923, -3181, 5 }, { -474, 921, -3171, 5 }, - { -491, 919, -3161, 5 }, { -508, 917, -3150, 5 }, { -525, 915, -3140, 5 }, - { -542, 913, -3129, 5 }, { -559, 911, -3118, 5 }, { -576, 909, -3107, 5 }, - { -592, 907, -3096, 5 }, { -609, 904, -3085, 5 }, { -625, 902, -3073, 5 }, - { -642, 900, -3062, 5 }, { -658, 898, -3050, 5 }, { -674, 896, -3038, 5 }, - { -689, 893, -3026, 5 }, { -705, 891, -3013, 5 }, { -721, 888, -3000, 5 }, - { -736, 886, -2988, 5 }, { -751, 883, -2975, 5 }, { -766, 880, -2961, 5 }, - { -781, 877, -2948, 5 }, { -796, 875, -2934, 5 }, { -810, 872, -2920, 5 }, - { -824, 869, -2906, 5 }, { -838, 866, -2892, 5 }, { -852, 864, -2877, 5 }, - { -865, 861, -2862, 5 }, { -878, 858, -2847, 5 }, { -891, 855, -2832, 5 }, - { -903, 852, -2816, 5 }, { -915, 848, -2800, 5 }, { -927, 845, -2783, 5 }, - { -938, 841, -2767, 5 }, { -949, 837, -2750, 5 }, { -960, 833, -2733, 5 }, - { -970, 829, -2716, 5 }, { -980, 824, -2699, 5 }, { -990, 818, -2681, 5 }, - { -999, 812, -2663, 5 }, { -1007, 807, -2645, 5 }, { -1015, 801, -2627, 5 }, - { -1022, 796, -2608, 5 }, { -1029, 790, -2589, 5 }, { -1035, 784, -2570, 5 }, - { -1042, 777, -2551, 5 }, { -1047, 770, -2532, 5 }, { -1053, 762, -2513, 5 }, - { -1058, 754, -2494, 5 }, { -1063, 746, -2474, 5 }, { -1068, 738, -2455, 5 }, - { -1072, 731, -2435, 5 }, { -1077, 723, -2416, 5 }, { -1081, 715, -2396, 5 }, - { -1085, 707, -2377, 5 }, { -1089, 699, -2357, 5 }, { -1093, 691, -2337, 5 }, - { -1096, 683, -2318, 5 }, { -1100, 674, -2298, 5 }, { -1103, 667, -2278, 5 }, - { -1107, 659, -2259, 5 }, { -1110, 651, -2239, 5 }, { -1114, 644, -2219, 5 }, - { -1117, 637, -2199, 5 }, { -1121, 630, -2180, 5 }, { -1124, 623, -2160, 5 }, - { -1128, 616, -2140, 5 }, { -1132, 609, -2121, 5 }, { -1135, 603, -2101, 5 }, - { -1139, 596, -2081, 5 }, { -1143, 590, -2062, 5 }, { -1147, 583, -2042, 5 }, - { -1150, 577, -2022, 5 }, { -1154, 571, -2003, 5 }, { -1158, 565, -1983, 5 }, - { -1162, 560, -1964, 5 }, { -1166, 554, -1944, 5 }, { -1171, 549, -1924, 5 }, - { -1175, 544, -1905, 5 }, { -1180, 540, -1885, 5 }, { -1184, 536, -1866, 5 }, - { -1189, 532, -1847, 5 }, { -1195, 527, -1827, 5 }, { -1200, 523, -1808, 5 }, - { -1205, 520, -1789, 5 }, { -1211, 516, -1770, 5 }, { -1217, 513, -1750, 5 }, - { -1223, 510, -1731, 5 }, { -1229, 506, -1712, 5 }, { -1235, 504, -1693, 5 }, - { -1241, 502, -1674, 5 }, { -1248, 500, -1655, 5 }, { -1254, 498, -1636, 5 }, - { -1261, 497, -1617, 5 }, { -1268, 495, -1599, 5 }, { -1275, 494, -1580, 5 }, - { -1282, 493, -1561, 5 }, { -1289, 492, -1543, 5 }, { -1297, 491, -1524, 5 }, - { -1304, 490, -1506, 5 }, { -1312, 489, -1487, 5 }, { -1320, 488, -1469, 5 }, - { -1328, 487, -1451, 5 }, { -1337, 486, -1432, 5 }, { -1345, 486, -1414, 5 }, - { -1354, 486, -1396, 5 }, { -1363, 486, -1378, 5 }, { -1372, 486, -1360, 5 }, - { -1381, 486, -1343, 5 }, { -1390, 487, -1325, 5 }, { -1400, 487, -1307, 5 }, - { -1409, 487, -1290, 5 }, { -1419, 487, -1272, 5 }, { -1429, 487, -1255, 5 }, - { -1439, 487, -1238, 5 }, { -1449, 488, -1220, 5 }, { -1459, 489, -1203, 5 }, - { -1469, 489, -1186, 5 }, { -1479, 490, -1168, 5 }, { -1488, 490, -1150, 5 }, - { -1498, 491, -1133, 5 }, { -1507, 491, -1115, 5 }, { -1516, 492, -1097, 5 }, - { -1525, 492, -1079, 5 }, { -1533, 493, -1061, 5 }, { -1542, 494, -1043, 5 }, - { -1550, 495, -1025, 5 }, { -1559, 496, -1007, 5 }, { -1567, 497, -988, 5 }, - { -1575, 498, -970, 5 }, { -1582, 499, -952, 5 }, { -1590, 500, -933, 5 }, - { -1598, 501, -914, 5 }, { -1605, 503, -896, 5 }, { -1612, 503, -877, 5 }, - { -1619, 503, -858, 5 }, { -1625, 503, -839, 5 }, { -1631, 503, -820, 5 }, - { -1637, 504, -801, 5 }, { -1642, 504, -782, 5 }, { -1648, 504, -763, 5 }, - { -1652, 504, -743, 5 }, { -1657, 504, -724, 5 }, { -1661, 505, -704, 6 }, - { -1665, 505, -684, 6 }, { -1668, 505, -665, 6 }, { -1671, 505, -645, 6 }, - { -1673, 505, -625, 6 }, { -1675, 506, -605, 6 }, { -1677, 506, -585, 6 }, - { -1678, 506, -565, 6 }, { -1679, 506, -545, 6 }, { -1680, 506, -525, 6 }, - { -1680, 507, -505, 6 }, { -1680, 507, -485, 6 }, { -1680, 508, -465, 6 }, - { -1680, 508, -445, 6 }, { -1679, 509, -425, 6 }, { -1678, 509, -405, 6 }, - { -1677, 510, -385, 6 }, { -1674, 510, -365, 6 }, { -1672, 512, -345, 6 }, - { -1668, 513, -326, 6 }, { -1662, 514, -307, 6 }, { -1655, 516, -288, 6 }, - { -1646, 517, -270, 6 }, { -1637, 518, -252, 6 }, { -1626, 519, -235, 6 }, - { -1615, 520, -218, 6 }, { -1604, 522, -202, 6 }, { -1592, 523, -186, 6 }, - { -1579, 524, -170, 6 }, { -1567, 526, -155, 6 }, { -1553, 527, -140, 6 }, - { -1539, 528, -126, 6 }, { -1525, 529, -112, 6 }, { -1509, 531, -99, 6 }, - { -1494, 532, -87, 6 }, { -1478, 533, -75, 6 }, { -1461, 534, -64, 6 }, - { -1444, 535, -53, 6 }, { -1427, 537, -43, 6 }, { -1409, 538, -34, 6 }, - { -1390, 539, -26, 6 }, { -1372, 541, -19, 6 }, { -1353, 542, -13, 6 }, - { -1333, 543, -8, 6 }, { -1314, 544, -3, 6 }, { -1294, 545, 0, 6 }, - { -1274, 546, 2, 6 }, { -1254, 547, 5, 6 }, { -1234, 548, 6, 6 }, - { -1214, 549, 7, 6 }, { -1194, 550, 7, 6 }, { -1174, 551, 6, 6 }, - { -1155, 552, 5, 6 }, { -1135, 553, 2, 6 }, { -1115, 554, 0, 6 }, - { -1095, 555, -4, 6 }, { -1076, 556, -9, 6 }, { -1057, 557, -15, 6 }, - { -1038, 558, -22, 6 }, { -1020, 559, -30, 6 }, { -1002, 560, -38, 6 }, - { -984, 562, -48, 6 }, { -966, 563, -58, 6 }, { -950, 564, -68, 6 }, - { -933, 565, -80, 6 }, { -917, 566, -92, 6 }, { -902, 567, -104, 6 }, - { -887, 568, -118, 6 }, { -872, 569, -132, 6 }, { -859, 570, -146, 6 }, - { -846, 572, -161, 6 }, { -833, 573, -177, 6 }, { -821, 574, -193, 6 }, - { -810, 575, -210, 6 }, { -799, 576, -227, 6 }, { -789, 577, -244, 6 }, - { -780, 578, -262, 6 }, { -772, 579, -280, 6 }, { -764, 581, -298, 6 }, - { -757, 582, -317, 6 }, { -750, 582, -336, 6 }, { -745, 584, -355, 6 }, - { -740, 585, -375, 6 }, { -736, 586, -394, 6 }, { -733, 587, -414, 6 }, - { -730, 588, -434, 6 }, { -729, 589, -454, 6 }, { -729, 590, -474, 6 }, - { -729, 591, -494, 6 }, { -731, 592, -514, 6 }, { -733, 593, -534, 6 }, - { -736, 594, -553, 6 }, { -740, 596, -573, 6 }, { -745, 597, -592, 6 }, - { -750, 598, -612, 6 }, { -756, 599, -631, 6 }, { -763, 600, -650, 6 }, - { -770, 601, -668, 6 }, { -778, 602, -687, 6 }, { -787, 604, -705, 6 }, - { -797, 605, -722, 6 }, { -807, 606, -739, 6 }, { -819, 608, -755, 6 }, - { -831, 609, -771, 6 }, { -845, 610, -786, 6 }, { -859, 611, -800, 6 }, - { -873, 613, -814, 6 }, { -888, 614, -827, 6 }, { -904, 615, -839, 6 }, - { -921, 616, -851, 6 }, { -938, 617, -861, 6 }, { -955, 619, -871, 6 }, - { -973, 620, -881, 6 }, { -991, 621, -889, 6 }, { -1009, 623, -897, 6 }, - { -1028, 624, -904, 6 }, { -1047, 625, -910, 6 }, { -1066, 626, -916, 6 }, - { -1086, 627, -921, 6 }, { -1105, 628, -925, 6 }, { -1125, 629, -928, 6 }, - { -1145, 630, -931, 6 }, { -1165, 631, -933, 6 }, { -1185, 632, -935, 6 }, - { -1205, 633, -936, 6 }, { -1225, 634, -936, 6 }, { -1244, 636, -935, 6 }, - { -1264, 637, -934, 6 }, { -1284, 638, -931, 6 }, { -1304, 639, -928, 6 }, - { -1324, 640, -924, 6 }, { -1343, 641, -919, 6 }, { -1362, 642, -913, 6 }, - { -1381, 643, -907, 6 }, { -1399, 644, -899, 6 }, { -1418, 645, -890, 6 }, - { -1435, 647, -881, 6 }, { -1452, 648, -871, 6 }, { -1469, 649, -859, 6 }, - { -1485, 650, -848, 6 }, { -1501, 652, -835, 6 }, { -1516, 653, -822, 6 }, - { -1530, 654, -808, 6 }, { -1544, 655, -794, 6 }, { -1558, 656, -779, 6 }, - { -1571, 657, -764, 6 }, { -1584, 658, -748, 6 }, { -1596, 659, -733, 6 }, - { -1608, 661, -717, 6 }, { -1620, 661, -700, 6 }, { -1631, 662, -684, 6 }, - { -1641, 663, -667, 6 }, { -1651, 663, -649, 6 }, { -1660, 664, -631, 6 }, - { -1667, 665, -613, 6 }, { -1672, 665, -593, 6 }, { -1675, 666, -574, 6 }, - { -1678, 667, -554, 6 }, { -1681, 667, -534, 6 }, { -1683, 667, -514, 6 }, - { -1685, 668, -494, 6 }, { -1687, 668, -474, 6 }, { -1688, 668, -454, 6 }, - { -1690, 669, -434, 6 }, { -1691, 669, -414, 6 }, { -1692, 669, -394, 6 }, - { -1693, 670, -374, 6 }, { -1694, 670, -354, 6 }, { -1695, 671, -334, 7 }, - { -1696, 671, -314, 7 }, { -1697, 671, -294, 7 }, { -1697, 671, -274, 7 }, - { -1698, 671, -254, 7 }, { -1698, 671, -234, 7 }, { -1699, 671, -214, 7 }, - { -1700, 671, -194, 7 }, { -1700, 671, -174, 7 }, { -1700, 671, -154, 7 }, - { -1701, 671, -134, 7 }, { -1701, 671, -114, 7 }, { -1702, 672, -94, 7 }, - { -1702, 672, -74, 7 }, { -1702, 673, -54, 7 }, { -1702, 674, -34, 7 }, - { -1702, 674, -14, 7 }, { -1703, 675, 5, 7 }, { -1703, 675, 25, 7 }, - { -1703, 676, 45, 7 }, { -1703, 676, 65, 7 }, { -1703, 677, 85, 7 }, - { -1703, 677, 105, 7 }, { -1703, 678, 125, 7 }, { -1703, 678, 145, 7 }, - { -1703, 679, 165, 7 }, { -1703, 680, 185, 7 }, { -1703, 681, 205, 7 }, - { -1703, 682, 225, 7 }, { -1703, 683, 245, 7 }, { -1703, 684, 265, 7 }, - { -1703, 685, 285, 7 }, { -1703, 686, 305, 7 }, { -1703, 687, 325, 7 }, - { -1704, 688, 345, 7 }, { -1704, 689, 365, 7 }, { -1704, 690, 385, 7 }, - { -1704, 692, 405, 7 }, { -1705, 693, 425, 7 }, { -1705, 694, 445, 7 }, - { -1706, 695, 465, 7 }, { -1706, 697, 485, 7 }, { -1707, 698, 505, 7 }, - { -1708, 699, 525, 7 }, { -1709, 700, 545, 7 }, { -1710, 701, 565, 7 }, - { -1712, 703, 585, 7 }, { -1714, 704, 605, 7 }, { -1716, 705, 625, 7 }, - { -1719, 707, 644, 7 }, { -1722, 707, 664, 7 }, { -1725, 708, 684, 7 }, - { -1729, 708, 704, 7 }, { -1733, 709, 723, 7 }, { -1737, 709, 743, 7 }, - { -1741, 710, 763, 7 }, { -1746, 710, 782, 7 }, { -1752, 711, 801, 7 }, - { -1758, 711, 820, 7 }, { -1765, 712, 839, 7 }, { -1773, 713, 857, 7 }, - { -1782, 714, 875, 7 }, { -1791, 715, 893, 7 }, { -1800, 716, 911, 7 }, - { -1811, 716, 928, 7 }, { -1822, 717, 944, 7 }, { -1834, 718, 961, 7 }, - { -1846, 719, 976, 7 }, { -1858, 720, 992, 7 }, { -1871, 721, 1007, 7 }, - { -1884, 722, 1022, 7 }, { -1898, 723, 1037, 7 }, { -1911, 724, 1052, 7 }, - { -1925, 725, 1066, 7 }, { -1939, 726, 1081, 7 }, { -1953, 727, 1095, 7 }, - { -1967, 728, 1109, 7 }, { -1981, 729, 1123, 7 }, { -1996, 730, 1137, 7 }, - { -2010, 731, 1151, 7 }, { -2024, 732, 1165, 7 }, { -2039, 733, 1179, 7 }, - { -2054, 733, 1193, 7 }, { -2068, 733, 1206, 7 }, { -2083, 734, 1220, 7 }, - { -2098, 734, 1233, 7 }, { -2113, 735, 1246, 7 }, { -2128, 735, 1259, 7 }, - { -2143, 735, 1272, 7 }, { -2159, 736, 1285, 7 }, { -2174, 736, 1298, 7 }, - { -2189, 737, 1311, 7 }, { -2205, 737, 1323, 7 }, { -2221, 737, 1336, 7 }, - { -2236, 738, 1349, 7 }, { -2252, 738, 1361, 7 }, { -2268, 738, 1373, 7 }, - { -2283, 739, 1386, 7 }, { -2299, 739, 1398, 7 }, { -2315, 739, 1410, 7 }, - { -2331, 740, 1422, 7 }, { -2347, 740, 1434, 7 }, { -2363, 741, 1447, 7 }, - { -2379, 741, 1459, 7 }, { -2395, 741, 1471, 7 }, { -2411, 742, 1483, 7 }, - { -2427, 742, 1494, 7 }, { -2443, 742, 1506, 7 }, { -2459, 743, 1518, 7 }, - { -2475, 743, 1530, 7 }, { -2491, 743, 1542, 7 }, { -2508, 743, 1554, 7 }, - { -2524, 743, 1565, 7 }, { -2540, 743, 1577, 7 }, { -2556, 743, 1589, 7 }, - { -2573, 743, 1600, 7 }, { -2589, 743, 1612, 7 }, { -2605, 743, 1624, 7 }, - { -2621, 743, 1635, 7 }, { -2638, 743, 1647, 7 }, { -2654, 743, 1658, 7 }, - { -2670, 743, 1670, 7 }, { -2687, 743, 1682, 7 }, { -2703, 743, 1693, 7 }, - { -2719, 743, 1705, 7 }, { -2735, 743, 1717, 7 }, { -2752, 743, 1728, 7 }, - { -2768, 743, 1740, 7 }, { -2784, 743, 1752, 7 }, { -2801, 743, 1763, 7 }, - { -2817, 743, 1775, 7 }, { -2833, 743, 1787, 7 }, { -2849, 743, 1798, 7 }, - { -2866, 743, 1810, 7 }, { -2882, 743, 1822, 7 }, { -2898, 743, 1833, 7 }, - { -2914, 743, 1845, 7 }, { -2931, 743, 1857, 7 }, { -2947, 743, 1868, 7 }, - { -2963, 743, 1880, 7 }, { -2979, 743, 1892, 7 }, { -2996, 743, 1903, 7 }, - { -3012, 743, 1915, 7 }, { -3028, 743, 1927, 7 }, { -3044, 743, 1938, 7 }, - { -3061, 743, 1950, 7 }, { -3077, 743, 1962, 7 }, { -3093, 743, 1974, 7 }, - { -3109, 743, 1986, 7 }, { -3125, 743, 1998, 7 }, { -3141, 743, 2010, 7 }, - { -3157, 743, 2022, 8 }, { -3172, 743, 2035, 8 }, { -3188, 743, 2047, 8 }, - { -3203, 743, 2060, 8 }, { -3218, 743, 2074, 8 }, { -3233, 743, 2087, 8 }, - { -3247, 743, 2101, 8 }, { -3261, 743, 2115, 8 }, { -3275, 743, 2130, 8 }, - { -3288, 743, 2145, 8 }, { -3300, 743, 2161, 8 }, { -3312, 743, 2177, 8 }, - { -3323, 743, 2194, 8 }, { -3333, 743, 2211, 8 }, { -3343, 743, 2229, 8 }, - { -3351, 743, 2247, 8 }, { -3359, 743, 2265, 8 }, { -3367, 743, 2284, 8 }, - { -3373, 743, 2303, 8 }, { -3378, 743, 2322, 8 }, { -3383, 743, 2341, 8 }, - { -3386, 743, 2361, 8 }, { -3389, 743, 2381, 8 }, { -3391, 743, 2401, 8 }, - { -3392, 743, 2421, 8 }, { -3392, 743, 2441, 8 }, { -3391, 743, 2461, 8 }, - { -3389, 743, 2481, 8 }, { -3387, 743, 2501, 8 }, { -3384, 743, 2520, 8 }, - { -3380, 743, 2540, 8 }, { -3375, 743, 2559, 8 }, { -3370, 743, 2579, 8 }, - { -3363, 743, 2598, 8 }, { -3356, 743, 2616, 8 }, { -3349, 743, 2635, 8 }, - { -3340, 743, 2653, 8 }, { -3331, 743, 2671, 8 }, { -3321, 743, 2688, 8 }, - { -3310, 743, 2705, 8 }, { -3298, 743, 2721, 8 }, { -3286, 743, 2737, 8 }, - { -3273, 743, 2752, 8 }, { -3259, 743, 2767, 8 }, { -3245, 743, 2780, 8 }, - { -3230, 743, 2794, 8 }, { -3214, 743, 2807, 8 }, { -3199, 743, 2819, 8 }, - { -3182, 743, 2830, 8 }, { -3165, 743, 2841, 8 }, { -3148, 743, 2851, 8 }, - { -3131, 743, 2861, 8 }, { -3113, 743, 2869, 8 }, { -3094, 743, 2877, 8 }, - { -3075, 743, 2884, 8 }, { -3056, 743, 2890, 8 }, { -3037, 743, 2895, 8 }, - { -3017, 743, 2900, 8 }, { -2998, 743, 2903, 8 }, { -2978, 743, 2906, 8 }, - { -2958, 743, 2908, 8 }, { -2938, 743, 2910, 8 }, { -2918, 743, 2910, 8 }, - { -2898, 743, 2910, 8 }, { -2878, 743, 2909, 8 }, { -2858, 743, 2907, 8 }, - { -2838, 743, 2904, 8 }, { -2819, 743, 2900, 8 }, { -2799, 743, 2895, 8 }, - { -2780, 743, 2890, 8 }, { -2761, 743, 2884, 8 }, { -2742, 743, 2877, 8 }, - { -2724, 743, 2869, 8 }, { -2705, 743, 2861, 8 }, { -2687, 743, 2852, 8 }, - { -2669, 743, 2843, 8 }, { -2652, 743, 2834, 8 }, { -2634, 743, 2824, 8 }, - { -2617, 743, 2814, 8 }, { -2600, 743, 2803, 8 }, { -2583, 743, 2793, 8 }, - { -2567, 743, 2782, 8 }, { -2550, 743, 2770, 8 }, { -2533, 743, 2759, 8 }, - { -2517, 743, 2748, 8 }, { -2500, 743, 2737, 8 }, { -2484, 743, 2725, 8 }, - { -2468, 743, 2714, 8 }, { -2451, 743, 2702, 8 }, { -2435, 743, 2691, 8 }, - { -2418, 743, 2679, 8 }, { -2402, 743, 2668, 8 }, { -2386, 743, 2656, 8 }, - { -2370, 743, 2644, 8 }, { -2353, 743, 2633, 8 }, { -2337, 743, 2621, 8 }, - { -2321, 743, 2609, 8 }, { -2305, 743, 2598, 8 }, { -2288, 743, 2586, 8 }, - { -2272, 743, 2574, 8 }, { -2256, 743, 2562, 8 }, { -2240, 743, 2551, 8 }, - { -2224, 743, 2539, 8 }, { -2207, 743, 2527, 8 }, { -2191, 743, 2515, 8 }, - { -2175, 743, 2503, 8 }, { -2159, 743, 2492, 8 }, { -2143, 743, 2480, 8 }, - { -2126, 743, 2468, 8 }, { -2110, 743, 2457, 8 }, { -2094, 743, 2445, 8 }, - { -2077, 743, 2434, 8 }, { -2061, 743, 2422, 8 }, { -2045, 743, 2411, 8 }, - { -2028, 743, 2399, 8 }, { -2012, 743, 2388, 8 }, { -1995, 743, 2376, 8 }, - { -1979, 743, 2365, 8 }, { -1962, 743, 2354, 8 }, { -1946, 743, 2343, 8 }, - { -1929, 743, 2331, 8 }, { -1912, 743, 2320, 8 }, { -1896, 743, 2309, 8 }, - { -1879, 743, 2298, 8 }, { -1862, 743, 2287, 8 }, { -1846, 743, 2276, 8 }, - { -1829, 743, 2265, 8 }, { -1812, 743, 2254, 8 }, { -1795, 743, 2243, 8 }, - { -1778, 743, 2233, 8 }, { -1761, 743, 2222, 8 }, { -1745, 743, 2211, 8 }, - { -1728, 743, 2201, 8 }, { -1711, 743, 2190, 8 }, { -1694, 743, 2180, 8 }, - { -1677, 743, 2169, 8 }, { -1660, 743, 2159, 8 }, { -1642, 743, 2148, 8 }, - { -1625, 743, 2138, 8 }, { -1608, 743, 2128, 8 }, { -1591, 743, 2117, 8 }, - { -1574, 743, 2107, 8 }, { -1556, 743, 2097, 9 }, { -1539, 743, 2087, 9 }, - { -1521, 743, 2078, 9 }, { -1504, 743, 2068, 9 }, { -1486, 743, 2058, 9 }, - { -1469, 743, 2049, 9 }, { -1451, 743, 2040, 9 }, { -1433, 743, 2031, 9 }, - { -1415, 743, 2022, 9 }, { -1397, 743, 2013, 9 }, { -1379, 743, 2005, 9 }, - { -1361, 743, 1997, 9 }, { -1342, 743, 1989, 9 }, { -1324, 743, 1981, 9 }, - { -1305, 743, 1974, 9 }, { -1286, 743, 1968, 9 }, { -1267, 743, 1962, 9 }, - { -1248, 743, 1957, 9 }, { -1228, 743, 1952, 9 }, { -1208, 743, 1948, 9 }, - { -1189, 743, 1944, 9 }, { -1169, 743, 1940, 9 }, { -1149, 743, 1937, 9 }, - { -1130, 743, 1935, 9 }, { -1110, 742, 1933, 9 }, { -1090, 741, 1931, 9 }, - { -1070, 740, 1929, 9 }, { -1050, 739, 1928, 9 }, { -1030, 738, 1928, 9 }, - { -1010, 737, 1927, 9 }, { -990, 736, 1928, 9 }, { -970, 735, 1928, 9 }, - { -950, 734, 1928, 9 }, { -930, 731, 1928, 9 }, { -910, 729, 1928, 9 }, - { -890, 726, 1928, 9 }, { -870, 724, 1928, 9 }, { -850, 720, 1928, 9 }, - { -830, 715, 1928, 9 }, { -810, 711, 1928, 9 }, { -790, 707, 1928, 9 }, - { -770, 702, 1928, 9 }, { -750, 696, 1928, 9 }, { -730, 690, 1928, 9 }, - { -710, 684, 1928, 9 }, { -690, 678, 1928, 9 }, { -669, 671, 1928, 9 }, - { -649, 664, 1928, 9 }, { -629, 657, 1928, 9 }, { -609, 650, 1928, 9 }, - { -589, 643, 1927, 9 }, { -569, 636, 1927, 9 }, { -549, 629, 1927, 9 }, - { -529, 622, 1927, 9 }, { -509, 615, 1927, 9 }, { -489, 608, 1927, 9 }, - { -469, 602, 1927, 9 }, { -449, 596, 1927, 9 }, { -429, 590, 1927, 9 }, - { -409, 584, 1926, 9 }, { -389, 580, 1926, 9 }, { -369, 576, 1926, 9 }, - { -349, 573, 1926, 9 }, { -329, 569, 1926, 9 }, { -309, 567, 1926, 9 }, - { -289, 567, 1926, 9 }, { -269, 567, 1925, 9 }, { -249, 567, 1925, 9 }, - { -229, 567, 1925, 9 }, { -209, 568, 1925, 9 }, { -189, 571, 1925, 9 }, - { -169, 574, 1925, 9 }, { -149, 576, 1925, 9 }, { -129, 579, 1925, 9 }, - { -109, 584, 1925, 9 }, { -89, 589, 1925, 9 }, { -69, 594, 1924, 9 }, - { -49, 600, 1924, 9 }, { -29, 606, 1924, 9 }, { -9, 613, 1924, 9 }, - { 10, 621, 1924, 9 }, { 30, 629, 1924, 9 }, { 50, 636, 1924, 9 }, - { 70, 643, 1924, 9 }, { 90, 650, 1924, 9 }, { 110, 657, 1924, 9 }, - { 130, 664, 1924, 9 }, { 150, 671, 1924, 9 }, { 170, 676, 1924, 9 }, - { 190, 680, 1924, 9 }, { 210, 685, 1924, 9 }, { 230, 690, 1924, 9 }, - { 250, 695, 1924, 9 }, { 270, 699, 1924, 9 }, { 290, 704, 1924, 9 }, - { 310, 709, 1924, 9 }, { 330, 712, 1924, 9 }, { 350, 715, 1924, 9 }, - { 370, 718, 1924, 9 }, { 390, 721, 1924, 9 }, { 410, 724, 1924, 9 }, - { 430, 727, 1924, 9 }, { 450, 730, 1924, 9 }, { 470, 733, 1924, 9 }, - { 490, 735, 1924, 9 }, { 510, 737, 1924, 9 }, { 530, 738, 1924, 9 }, - { 550, 740, 1924, 9 }, { 570, 741, 1924, 9 }, { 590, 743, 1924, 9 }, - { 610, 745, 1924, 9 }, { 630, 746, 1924, 9 }, { 650, 748, 1924, 9 }, - { 670, 749, 1925, 9 }, { 690, 750, 1925, 9 }, { 710, 752, 1925, 9 }, - { 730, 753, 1925, 9 }, { 750, 754, 1925, 9 }, { 770, 755, 1925, 9 }, - { 790, 756, 1925, 9 }, { 811, 757, 1926, 9 }, { 831, 758, 1926, 9 }, - { 851, 759, 1926, 10 }, { 871, 760, 1927, 10 }, { 891, 761, 1927, 10 }, - { 911, 762, 1928, 10 }, { 931, 763, 1928, 10 }, { 951, 764, 1929, 10 }, - { 971, 765, 1929, 10 }, { 991, 766, 1930, 10 }, { 1011, 767, 1930, 10 }, - { 1031, 768, 1931, 10 }, { 1051, 769, 1932, 10 }, { 1071, 770, 1933, 10 }, - { 1091, 770, 1934, 10 }, { 1111, 771, 1935, 10 }, { 1131, 772, 1936, 10 }, - { 1151, 773, 1937, 10 }, { 1171, 774, 1938, 10 }, { 1191, 775, 1939, 10 }, - { 1211, 776, 1941, 10 }, { 1230, 777, 1942, 10 }, { 1250, 777, 1944, 10 }, - { 1270, 778, 1946, 10 }, { 1290, 779, 1948, 10 }, { 1310, 780, 1950, 10 }, - { 1330, 781, 1953, 10 }, { 1350, 781, 1955, 10 }, { 1370, 782, 1958, 10 }, - { 1389, 783, 1962, 10 }, { 1409, 783, 1965, 10 }, { 1429, 784, 1969, 10 }, - { 1448, 784, 1973, 10 }, { 1468, 785, 1978, 10 }, { 1487, 785, 1982, 10 }, - { 1507, 785, 1987, 10 }, { 1526, 786, 1993, 10 }, { 1545, 786, 1999, 10 }, - { 1564, 787, 2005, 10 }, { 1583, 787, 2011, 10 }, { 1602, 788, 2018, 10 }, - { 1620, 788, 2025, 10 }, { 1639, 789, 2033, 10 }, { 1657, 790, 2041, 10 }, - { 1675, 790, 2050, 10 }, { 1693, 791, 2059, 10 }, { 1711, 791, 2068, 10 }, - { 1728, 791, 2079, 10 }, { 1745, 791, 2089, 10 }, { 1762, 791, 2100, 10 }, - { 1778, 791, 2112, 10 }, { 1794, 791, 2124, 10 }, { 1809, 791, 2136, 10 }, - { 1825, 791, 2149, 10 }, { 1840, 791, 2163, 10 }, { 1854, 791, 2176, 10 }, - { 1868, 791, 2191, 10 }, { 1882, 791, 2205, 10 }, { 1895, 791, 2220, 10 }, - { 1908, 791, 2235, 10 }, { 1921, 791, 2251, 10 }, { 1933, 791, 2267, 10 }, - { 1945, 791, 2283, 10 }, { 1956, 791, 2300, 10 }, { 1967, 791, 2316, 10 }, - { 1978, 791, 2333, 10 }, { 1988, 791, 2351, 10 }, { 1998, 791, 2368, 10 }, - { 2007, 791, 2385, 10 }, { 2016, 791, 2403, 10 }, { 2025, 791, 2421, 10 }, - { 2034, 791, 2439, 10 }, { 2042, 791, 2458, 10 }, { 2049, 791, 2476, 10 }, - { 2057, 791, 2495, 10 }, { 2064, 791, 2513, 10 }, { 2071, 791, 2532, 10 }, - { 2077, 791, 2551, 10 }, { 2083, 791, 2570, 10 }, { 2089, 791, 2590, 10 }, - { 2094, 791, 2609, 10 }, { 2098, 791, 2628, 10 }, { 2102, 791, 2648, 10 }, - { 2106, 791, 2668, 10 }, { 2109, 791, 2688, 10 }, { 2111, 791, 2707, 10 }, - { 2113, 791, 2727, 10 }, { 2115, 791, 2747, 10 }, { 2116, 792, 2767, 10 }, - { 2116, 793, 2787, 10 }, { 2116, 794, 2807, 10 }, { 2116, 795, 2827, 10 }, - { 2115, 796, 2847, 10 }, { 2114, 796, 2867, 10 }, { 2112, 797, 2887, 10 }, - { 2110, 798, 2907, 10 }, { 2107, 799, 2927, 10 }, { 2104, 799, 2947, 10 }, - { 2101, 800, 2967, 10 }, { 2097, 801, 2986, 10 }, { 2092, 802, 3006, 10 }, - { 2087, 803, 3025, 10 }, { 2082, 804, 3044, 10 }, { 2075, 804, 3063, 10 }, - { 2069, 805, 3082, 10 }, { 2061, 806, 3101, 10 }, { 2053, 807, 3119, 10 }, - { 2045, 807, 3137, 10 }, { 2036, 808, 3155, 10 }, { 2026, 809, 3172, 10 }, - { 2016, 810, 3190, 10 }, { 2005, 811, 3207, 10 }, { 1994, 811, 3223, 10 }, - { 1983, 812, 3240, 10 }, { 1971, 813, 3256, 10 }, { 1958, 814, 3272, 10 }, - { 1946, 814, 3287, 10 }, { 1932, 815, 3302, 10 }, { 1919, 816, 3317, 10 }, - { 1905, 817, 3331, 10 }, { 1891, 818, 3345, 10 }, { 1877, 819, 3359, 10 }, - { 1862, 820, 3373, 10 }, { 1847, 820, 3386, 10 }, { 1831, 821, 3399, 10 }, - { 1816, 822, 3411, 10 }, { 1799, 823, 3423, 10 }, { 1783, 824, 3434, 10 }, - { 1766, 825, 3445, 10 }, { 1749, 826, 3455, 10 }, { 1732, 827, 3465, 10 }, - { 1714, 828, 3474, 10 }, { 1696, 829, 3483, 10 }, { 1678, 830, 3491, 10 }, - { 1659, 830, 3498, 10 }, { 1640, 831, 3505, 10 }, { 1621, 832, 3512, 10 }, - { 1602, 833, 3518, 10 }, { 1583, 834, 3523, 10 }, { 1563, 835, 3528, 10 }, - { 1544, 836, 3533, 10 }, { 1524, 837, 3538, 10 }, { 1505, 838, 3541, 10 }, - { 1485, 839, 3545, 10 }, { 1465, 840, 3548, 10 }, { 1445, 841, 3550, 10 }, - { 1426, 842, 3552, 10 }, { 1406, 843, 3554, 10 }, { 1386, 844, 3555, 10 }, - { 1366, 845, 3555, 10 }, { 1346, 845, 3555, 10 }, { 1326, 846, 3555, 10 }, - { 1306, 847, 3554, 11 }, { 1286, 849, 3552, 11 }, { 1266, 850, 3550, 11 }, - { 1246, 851, 3548, 11 }, { 1226, 852, 3545, 11 }, { 1206, 853, 3542, 11 }, - { 1187, 854, 3538, 11 }, { 1167, 855, 3534, 11 }, { 1148, 856, 3529, 11 }, - { 1128, 857, 3524, 11 }, { 1109, 858, 3518, 11 }, { 1090, 859, 3512, 11 }, - { 1071, 860, 3505, 11 }, { 1053, 861, 3498, 11 }, { 1034, 862, 3491, 11 }, - { 1016, 863, 3483, 11 }, { 998, 864, 3474, 11 }, { 980, 866, 3465, 11 }, - { 962, 867, 3456, 11 }, { 944, 868, 3446, 11 }, { 927, 869, 3436, 11 }, - { 910, 870, 3426, 11 }, { 893, 871, 3415, 11 }, { 876, 872, 3404, 11 }, - { 860, 873, 3393, 11 }, { 844, 874, 3381, 11 }, { 828, 875, 3369, 11 }, - { 812, 876, 3356, 11 }, { 797, 877, 3344, 11 }, { 781, 878, 3331, 11 }, - { 766, 879, 3318, 11 }, { 751, 880, 3304, 11 }, { 737, 881, 3291, 11 }, - { 722, 882, 3277, 11 }, { 707, 882, 3264, 11 }, { 692, 883, 3250, 11 }, - { 677, 884, 3237, 11 }, { 663, 885, 3223, 11 }, { 648, 886, 3210, 11 }, - { 633, 887, 3196, 11 }, { 619, 887, 3183, 11 }, { 604, 888, 3169, 11 }, - { 589, 889, 3155, 11 }, { 575, 890, 3142, 11 }, { 560, 891, 3128, 11 }, - { 545, 891, 3114, 11 }, { 531, 892, 3101, 11 }, { 516, 893, 3087, 11 }, - { 502, 894, 3073, 11 }, { 487, 895, 3059, 11 }, { 473, 895, 3046, 11 }, - { 458, 896, 3032, 11 }, { 443, 897, 3018, 11 }, { 428, 898, 3005, 11 }, - { 413, 898, 2992, 11 }, { 398, 899, 2979, 11 }, { 383, 900, 2966, 11 }, - { 368, 901, 2953, 11 }, { 352, 901, 2940, 11 }, { 336, 902, 2928, 11 }, - { 321, 903, 2916, 11 }, { 305, 904, 2904, 11 }, { 289, 905, 2892, 11 }, - { 272, 906, 2880, 11 }, { 256, 907, 2869, 11 }, { 239, 908, 2858, 11 }, - { 222, 909, 2847, 11 }, { 205, 910, 2836, 11 }, { 188, 911, 2826, 11 }, - { 170, 912, 2817, 11 }, { 153, 913, 2807, 11 }, { 135, 915, 2798, 11 }, - { 117, 916, 2789, 11 }, { 99, 917, 2781, 11 }, { 81, 918, 2772, 11 }, - { 62, 919, 2764, 11 }, { 44, 920, 2757, 11 }, { 25, 922, 2750, 11 }, - { 6, 923, 2743, 11 }, { -12, 924, 2737, 11 }, { -31, 925, 2731, 11 }, - { -50, 927, 2725, 11 }, { -69, 928, 2720, 11 }, { -89, 929, 2715, 11 }, - { -108, 930, 2711, 11 }, { -128, 931, 2707, 11 }, { -148, 932, 2703, 11 }, - { -167, 934, 2700, 11 }, { -187, 935, 2697, 11 }, { -207, 937, 2695, 11 }, - { -227, 938, 2693, 11 }, { -247, 940, 2691, 11 }, { -267, 942, 2689, 11 }, - { -287, 943, 2688, 11 }, { -307, 945, 2687, 11 }, { -327, 946, 2687, 11 }, - { -347, 948, 2686, 11 }, { -367, 949, 2686, 11 }, { -387, 951, 2687, 11 }, - { -407, 952, 2688, 11 }, { -427, 953, 2689, 11 }, { -447, 955, 2691, 11 }, - { -467, 957, 2694, 11 }, { -486, 958, 2697, 11 }, { -506, 960, 2701, 11 }, - { -526, 961, 2705, 11 }, { -545, 962, 2710, 11 }, { -564, 964, 2716, 11 }, - { -583, 965, 2723, 11 }, { -601, 967, 2730, 12 }, { -620, 968, 2738, 12 }, - { -638, 969, 2747, 12 }, { -656, 971, 2756, 12 }, { -673, 972, 2765, 12 }, - { -691, 974, 2775, 12 }, { -708, 975, 2786, 12 }, { -725, 976, 2796, 12 }, - { -741, 977, 2807, 12 }, { -758, 979, 2819, 12 }, { -774, 980, 2831, 12 }, - { -790, 982, 2843, 12 }, { -805, 983, 2856, 12 }, { -821, 984, 2869, 12 }, - { -835, 985, 2882, 12 }, { -850, 987, 2896, 12 }, { -863, 988, 2911, 12 }, - { -876, 989, 2926, 12 }, { -889, 991, 2941, 12 }, { -901, 992, 2957, 12 }, - { -913, 993, 2974, 12 }, { -924, 995, 2991, 12 }, { -934, 996, 3008, 12 }, - { -944, 998, 3025, 12 }, { -953, 999, 3043, 12 }, { -961, 1000, 3061, 12 }, - { -969, 1001, 3079, 12 }, { -977, 1003, 3098, 12 }, { -984, 1004, 3117, 12 }, - { -990, 1005, 3136, 12 }, { -996, 1006, 3155, 12 }, { -1002, 1008, 3174, 12 }, - { -1007, 1009, 3193, 12 }, { -1011, 1010, 3213, 12 }, { -1015, 1011, 3233, 12 }, - { -1018, 1012, 3252, 12 }, { -1021, 1014, 3272, 12 }, { -1023, 1015, 3292, 12 }, - { -1024, 1016, 3312, 12 }, { -1025, 1017, 3332, 12 }, { -1026, 1018, 3352, 12 }, - { -1026, 1020, 3372, 12 }, { -1025, 1021, 3392, 12 }, { -1024, 1022, 3412, 12 }, - { -1022, 1023, 3432, 12 }, { -1020, 1024, 3452, 12 }, { -1017, 1025, 3472, 12 }, - { -1013, 1027, 3491, 12 }, { -1009, 1028, 3511, 12 }, { -1005, 1029, 3530, 12 }, - { -1000, 1030, 3550, 12 }, { -994, 1032, 3569, 12 }, { -989, 1033, 3588, 12 }, - { -982, 1034, 3607, 12 }, { -975, 1035, 3626, 12 }, { -968, 1036, 3645, 12 }, - { -960, 1038, 3663, 12 }, { -952, 1039, 3681, 12 }, { -943, 1040, 3699, 12 }, - { -934, 1042, 3717, 12 }, { -924, 1043, 3734, 12 }, { -913, 1045, 3751, 12 }, - { -902, 1046, 3768, 12 }, { -890, 1047, 3784, 12 }, { -878, 1048, 3800, 12 }, - { -865, 1049, 3815, 12 }, { -852, 1051, 3830, 12 }, { -838, 1052, 3844, 12 }, - { -823, 1053, 3858, 12 }, { -809, 1055, 3872, 12 }, { -793, 1056, 3885, 12 }, - { -778, 1057, 3897, 12 }, { -762, 1058, 3909, 12 }, { -745, 1059, 3921, 12 }, - { -729, 1061, 3932, 12 }, { -712, 1062, 3943, 12 }, { -695, 1063, 3954, 12 }, - { -678, 1064, 3964, 12 }, { -660, 1065, 3973, 12 }, { -642, 1066, 3982, 12 }, - { -624, 1067, 3990, 12 }, { -606, 1068, 3998, 12 }, { -587, 1069, 4005, 12 }, - { -568, 1071, 4012, 12 }, { -549, 1072, 4018, 12 }, { -530, 1073, 4023, 12 }, - { -510, 1074, 4028, 12 }, { -491, 1075, 4032, 12 }, { -471, 1076, 4035, 12 }, - { -451, 1077, 4039, 12 }, { -431, 1078, 4041, 12 }, { -411, 1080, 4043, 12 }, - { -391, 1081, 4044, 12 }, { -371, 1083, 4045, 12 }, { -351, 1084, 4046, 12 }, - { -331, 1086, 4046, 12 }, { -311, 1088, 4045, 12 }, { -291, 1090, 4044, 12 }, - { -271, 1091, 4042, 12 }, { -252, 1093, 4039, 12 }, { -232, 1095, 4036, 12 }, - { -212, 1096, 4032, 12 }, { -193, 1099, 4028, 12 }, { -173, 1101, 4023, 12 }, - { -154, 1103, 4018, 12 }, { -135, 1105, 4012, 12 }, { -116, 1107, 4005, 12 }, - { -97, 1109, 3998, 12 }, { -79, 1111, 3991, 12 }, { -60, 1113, 3983, 12 }, - { -42, 1115, 3975, 12 }, { -24, 1117, 3966, 12 }, { -6, 1120, 3957, 12 }, - { 10, 1122, 3947, 12 }, { 27, 1124, 3936, 12 }, { 44, 1127, 3926, 12 }, - { 61, 1129, 3914, 12 }, { 77, 1132, 3903, 12 }, { 93, 1135, 3891, 12 }, - { 108, 1137, 3878, 12 }, { 124, 1139, 3865, 12 }, { 138, 1141, 3851, 12 }, - { 152, 1143, 3837, 12 }, { 165, 1146, 3822, 12 }, { 178, 1148, 3807, 12 }, - { 191, 1151, 3791, 12 }, { 202, 1153, 3775, 12 }, { 213, 1154, 3758, 12 }, - { 224, 1156, 3741, 12 }, { 234, 1158, 3724, 12 }, { 244, 1160, 3706, 12 }, - { 253, 1162, 3688, 12 }, { 261, 1164, 3670, 12 }, { 269, 1166, 3652, 12 }, - { 277, 1169, 3633, 12 }, { 284, 1171, 3615, 12 }, { 292, 1174, 3596, 12 }, - { 298, 1176, 3577, 12 }, { 305, 1179, 3558, 12 }, { 311, 1182, 3539, 12 }, - { 317, 1184, 3520, 12 }, { 322, 1187, 3501, 12 }, { 327, 1190, 3481, 12 }, - { 332, 1192, 3462, 12 }, { 336, 1195, 3442, 12 }, { 340, 1198, 3423, 12 }, - { 343, 1200, 3403, 12 }, { 346, 1203, 3383, 12 }, { 349, 1206, 3363, 12 }, - { 351, 1209, 3344, 12 }, { 353, 1211, 3324, 12 }, { 355, 1214, 3304, 12 }, - { 356, 1216, 3284, 12 }, { 358, 1219, 3264, 12 }, { 359, 1221, 3244, 12 }, - { 361, 1224, 3224, 12 }, { 362, 1226, 3204, 12 }, { 363, 1229, 3184, 12 }, - { 364, 1231, 3164, 12 }, { 364, 1234, 3144, 12 }, { 365, 1236, 3124, 12 }, - { 366, 1238, 3104, 12 }, { 367, 1241, 3084, 12 }, { 367, 1243, 3064, 12 }, - { 368, 1245, 3044, 12 }, { 368, 1248, 3024, 12 }, { 368, 1250, 3004, 12 }, - { 369, 1253, 2984, 12 }, { 369, 1255, 2964, 12 }, { 369, 1258, 2944, 12 }, - { 370, 1260, 2924, 12 }, { 370, 1263, 2904, 12 }, { 370, 1265, 2884, 12 }, - { 370, 1268, 2864, 12 }, { 370, 1270, 2844, 12 }, { 370, 1273, 2824, 12 }, - { 370, 1275, 2804, 12 }, { 370, 1277, 2784, 12 }, { 370, 1280, 2764, 12 }, - { 370, 1282, 2744, 12 }, { 370, 1284, 2724, 12 }, { 370, 1287, 2704, 12 }, - { 370, 1289, 2684, 12 }, { 369, 1292, 2664, 12 }, { 369, 1294, 2644, 12 }, - { 369, 1296, 2624, 12 }, { 369, 1299, 2604, 12 }, { 368, 1301, 2584, 12 }, - { 368, 1303, 2564, 12 }, { 368, 1306, 2544, 1 }, { 367, 1308, 2524, 1 }, - { 367, 1310, 2504, 1 }, { 367, 1312, 2484, 1 }, { 366, 1314, 2464, 1 }, - { 366, 1317, 2444, 1 }, { 365, 1319, 2424, 1 }, { 365, 1321, 2404, 1 }, - { 364, 1323, 2384, 1 }, { 364, 1325, 2364, 1 }, { 363, 1327, 2344, 1 }, - { 363, 1329, 2324, 1 }, { 362, 1331, 2304, 1 }, { 361, 1333, 2284, 1 }, - { 361, 1335, 2264, 1 }, { 360, 1337, 2244, 1 }, { 359, 1339, 2224, 1 }, - { 359, 1341, 2204, 1 }, { 358, 1343, 2184, 1 }, { 357, 1345, 2164, 1 }, - { 356, 1347, 2144, 1 }, { 355, 1349, 2124, 1 }, { 354, 1351, 2104, 1 }, - { 353, 1353, 2084, 1 }, { 352, 1355, 2064, 1 }, { 351, 1357, 2044, 1 }, - { 350, 1359, 2024, 1 }, { 349, 1360, 2004, 1 }, { 348, 1362, 1984, 1 }, - { 347, 1364, 1964, 1 }, { 345, 1365, 1944, 1 }, { 344, 1367, 1924, 1 }, - { 342, 1369, 1904, 1 }, { 341, 1371, 1884, 1 }, { 339, 1373, 1864, 1 }, - { 338, 1374, 1844, 1 }, { 336, 1376, 1824, 1 }, { 334, 1378, 1804, 1 }, - { 331, 1379, 1784, 1 }, { 329, 1381, 1764, 1 }, { 326, 1382, 1745, 1 }, - { 323, 1384, 1725, 1 }, { 320, 1386, 1705, 1 }, { 317, 1387, 1685, 1 }, - { 313, 1389, 1666, 1 }, { 310, 1391, 1646, 1 }, { 306, 1393, 1626, 1 }, - { 301, 1395, 1607, 1 }, { 297, 1397, 1587, 1 }, { 292, 1399, 1568, 1 }, - { 287, 1402, 1549, 1 }, { 282, 1404, 1529, 1 }, { 276, 1406, 1510, 1 }, - { 270, 1409, 1491, 1 }, { 264, 1411, 1472, 1 }, { 258, 1414, 1453, 1 }, - { 252, 1416, 1434, 1 }, { 245, 1419, 1415, 1 }, { 239, 1422, 1396, 1 }, - { 233, 1425, 1377, 1 }, { 227, 1428, 1358, 1 }, { 220, 1430, 1339, 1 }, - { 214, 1433, 1320, 1 }, { 208, 1435, 1301, 1 }, { 201, 1438, 1282, 1 }, - { 195, 1440, 1263, 1 }, { 188, 1442, 1244, 1 }, { 182, 1445, 1225, 1 }, - { 175, 1447, 1206, 1 }, { 168, 1449, 1187, 1 }, { 162, 1451, 1168, 1 }, - { 156, 1454, 1149, 1 }, { 149, 1456, 1130, 1 }, { 144, 1459, 1111, 1 }, - { 138, 1461, 1092, 1 }, { 132, 1463, 1073, 1 }, { 127, 1466, 1054, 1 }, - { 122, 1468, 1034, 1 }, { 117, 1470, 1015, 1 }, { 112, 1472, 995, 1 }, - { 107, 1473, 976, 1 }, { 102, 1475, 957, 1 }, { 98, 1477, 937, 1 }, - { 93, 1478, 918, 1 }, { 89, 1480, 898, 1 }, { 85, 1482, 878, 1 }, - { 81, 1483, 859, 1 }, { 77, 1485, 839, 1 }, { 74, 1486, 819, 1 }, - { 70, 1487, 800, 1 }, { 66, 1489, 780, 1 }, { 63, 1490, 760, 1 }, - { 59, 1491, 741, 1 }, { 56, 1492, 721, 1 }, { 53, 1494, 701, 1 }, - { 50, 1495, 681, 1 }, { 47, 1496, 662, 1 }, { 44, 1497, 642, 1 }, - { 41, 1499, 622, 1 }, { 39, 1499, 602, 1 }, { 36, 1500, 582, 1 }, - { 34, 1501, 562, 1 }, { 31, 1501, 543, 1 }, { 29, 1502, 523, 1 }, - { 28, 1503, 503, 1 }, { 26, 1503, 483, 1 }, { 24, 1504, 463, 1 }, - { 23, 1504, 443, 1 }, { 22, 1505, 423, 1 }, { 20, 1505, 403, 1 }, - { 19, 1506, 383, 1 }, { 18, 1506, 363, 1 }, { 17, 1507, 343, 1 }, - { 16, 1508, 323, 1 }, { 15, 1508, 303, 1 }, { 14, 1508, 283, 1 }, - { 13, 1508, 263, 1 }, { 12, 1508, 243, 1 }, { 11, 1508, 223, 1 }, - { 10, 1508, 203, 1 }, { 9, 1508, 183, 1 }, { 9, 1508, 163, 1 }, - { 8, 1509, 143, 1 }, { 7, 1509, 123, 1 }, { 7, 1509, 103, 1 }, - { 6, 1509, 83, 1 }, { 6, 1509, 63, 1 }, { 5, 1509, 43, 1 }, - { 5, 1509, 23, 1 }, { 5, 1509, 3, 1 }, { -32768, -32768, -32768, 0 }, +#include "courses/rainbow_road/d_course_rainbow_road_track_path.inc.c" }; +#endif // some textures 0x5400 u8 d_course_rainbow_road_neon_mushroom_tlut_list[][512] = { @@ -2153,3 +1546,12 @@ Gfx* d_course_rainbow_road_dl_list[] = { d_course_rainbow_road_dl_1678, d_course_rainbow_road_dl_1738, d_course_rainbow_road_dl_17D0, d_course_rainbow_road_dl_18D0, d_course_rainbow_road_dl_1878, d_course_rainbow_road_dl_1948, }; + +#ifdef VERSION_JP /* VERSION_JP path order: JP puts the paths last */ +TrackPathPoint d_course_rainbow_road_unknown_path[] = { +#include "courses/rainbow_road/d_course_rainbow_road_unknown_path.inc.c" +}; +TrackPathPoint d_course_rainbow_road_track_path[] = { +#include "courses/rainbow_road/d_course_rainbow_road_track_path.inc.c" +}; +#endif diff --git a/courses/rainbow_road/d_course_rainbow_road_track_path.inc.c b/courses/rainbow_road/d_course_rainbow_road_track_path.inc.c new file mode 100644 index 0000000000..140a3639c2 --- /dev/null +++ b/courses/rainbow_road/d_course_rainbow_road_track_path.inc.c @@ -0,0 +1,587 @@ + { 6, 1510, -11, 1 }, { 5, 1509, -31, 2 }, { 5, 1509, -51, 2 }, + { 5, 1508, -71, 2 }, { 5, 1507, -91, 2 }, { 4, 1506, -111, 2 }, + { 4, 1505, -131, 2 }, { 4, 1504, -151, 2 }, { 4, 1504, -171, 2 }, + { 3, 1503, -191, 2 }, { 3, 1502, -211, 2 }, { 3, 1501, -231, 2 }, + { 3, 1500, -251, 2 }, { 2, 1500, -271, 2 }, { 2, 1499, -291, 2 }, + { 2, 1498, -311, 2 }, { 2, 1497, -331, 2 }, { 2, 1495, -351, 2 }, + { 1, 1494, -371, 2 }, { 1, 1492, -391, 2 }, { 1, 1490, -411, 2 }, + { 1, 1488, -431, 2 }, { 1, 1486, -451, 2 }, { 1, 1483, -471, 2 }, + { 1, 1481, -491, 2 }, { 1, 1479, -511, 2 }, { 1, 1476, -531, 2 }, + { 0, 1473, -551, 2 }, { 0, 1470, -571, 2 }, { 0, 1467, -591, 2 }, + { 0, 1464, -611, 2 }, { 0, 1460, -631, 2 }, { 0, 1457, -651, 2 }, + { 0, 1454, -671, 2 }, { 0, 1451, -691, 2 }, { 0, 1447, -711, 2 }, + { 0, 1442, -731, 2 }, { 0, 1438, -751, 2 }, { 0, 1434, -771, 2 }, + { 0, 1429, -791, 2 }, { 0, 1423, -811, 2 }, { 0, 1417, -831, 2 }, + { 0, 1411, -851, 2 }, { 0, 1405, -871, 2 }, { 0, 1399, -891, 2 }, + { 0, 1392, -911, 2 }, { 0, 1385, -931, 2 }, { 0, 1377, -951, 2 }, + { 0, 1370, -971, 2 }, { 0, 1362, -991, 2 }, { 0, 1353, -1011, 2 }, + { 0, 1344, -1031, 2 }, { 0, 1336, -1051, 2 }, { 0, 1327, -1071, 2 }, + { 0, 1316, -1091, 2 }, { 0, 1304, -1111, 2 }, { 0, 1293, -1131, 2 }, + { 0, 1281, -1151, 2 }, { 0, 1270, -1171, 2 }, { 0, 1256, -1191, 2 }, + { 0, 1241, -1211, 2 }, { 0, 1227, -1231, 2 }, { 0, 1213, -1251, 2 }, + { 0, 1199, -1271, 2 }, { 0, 1184, -1291, 2 }, { 0, 1169, -1311, 2 }, + { 0, 1154, -1331, 2 }, { 0, 1139, -1351, 2 }, { 0, 1124, -1371, 2 }, + { 0, 1109, -1391, 2 }, { 0, 1094, -1411, 2 }, { 0, 1079, -1431, 2 }, + { 0, 1064, -1451, 2 }, { 0, 1049, -1471, 2 }, { 0, 1034, -1491, 2 }, + { 0, 1019, -1511, 2 }, { 0, 1004, -1531, 2 }, { 0, 989, -1551, 2 }, + { 0, 974, -1571, 2 }, { 0, 959, -1591, 2 }, { 0, 944, -1611, 2 }, + { 0, 929, -1631, 2 }, { 0, 914, -1651, 2 }, { 0, 899, -1671, 2 }, + { 0, 885, -1692, 2 }, { 0, 872, -1712, 2 }, { 0, 858, -1732, 2 }, + { 0, 846, -1752, 2 }, { 0, 834, -1772, 2 }, { 0, 822, -1792, 2 }, + { 0, 810, -1812, 2 }, { 0, 799, -1832, 2 }, { 0, 789, -1852, 2 }, + { 0, 779, -1872, 2 }, { 0, 770, -1892, 2 }, { 0, 760, -1912, 2 }, + { 0, 751, -1932, 2 }, { 0, 743, -1952, 2 }, { 0, 735, -1972, 2 }, + { 0, 727, -1992, 2 }, { 0, 719, -2012, 2 }, { 0, 712, -2032, 2 }, + { 0, 705, -2052, 2 }, { -1, 698, -2072, 2 }, { -1, 691, -2092, 2 }, + { -1, 685, -2112, 2 }, { -1, 680, -2132, 2 }, { -1, 675, -2152, 2 }, + { -1, 670, -2172, 2 }, { -1, 664, -2192, 2 }, { -1, 660, -2212, 2 }, + { -1, 657, -2232, 2 }, { -1, 654, -2252, 2 }, { -1, 650, -2272, 2 }, + { -1, 647, -2292, 2 }, { -1, 645, -2312, 2 }, { -1, 643, -2332, 2 }, + { -1, 642, -2352, 2 }, { -2, 640, -2372, 2 }, { -2, 639, -2392, 2 }, + { -2, 639, -2412, 2 }, { -2, 639, -2432, 2 }, { -2, 639, -2452, 2 }, + { -2, 639, -2472, 2 }, { -2, 639, -2492, 2 }, { -2, 641, -2512, 2 }, + { -2, 643, -2532, 2 }, { -2, 645, -2552, 2 }, { -2, 646, -2572, 2 }, + { -2, 650, -2592, 3 }, { -2, 654, -2612, 3 }, { -2, 658, -2632, 3 }, + { -2, 661, -2652, 3 }, { -2, 665, -2672, 3 }, { -2, 669, -2692, 3 }, + { -2, 673, -2712, 3 }, { -2, 677, -2732, 3 }, { -2, 681, -2752, 3 }, + { -2, 685, -2772, 3 }, { -2, 689, -2792, 3 }, { -2, 694, -2812, 3 }, + { -2, 699, -2832, 3 }, { -2, 704, -2852, 3 }, { -2, 708, -2872, 3 }, + { -2, 713, -2892, 3 }, { -2, 718, -2912, 3 }, { -2, 722, -2932, 3 }, + { -2, 727, -2952, 3 }, { -2, 732, -2972, 3 }, { -2, 737, -2992, 3 }, + { -2, 741, -3012, 3 }, { -2, 746, -3032, 3 }, { -2, 751, -3052, 3 }, + { -2, 755, -3072, 3 }, { -2, 760, -3092, 3 }, { -2, 765, -3112, 3 }, + { -2, 769, -3132, 3 }, { -2, 774, -3152, 3 }, { -2, 779, -3172, 3 }, + { -2, 783, -3193, 3 }, { -2, 788, -3213, 3 }, { -2, 793, -3233, 3 }, + { -2, 798, -3253, 3 }, { -2, 802, -3273, 3 }, { -2, 807, -3293, 3 }, + { -2, 812, -3313, 3 }, { -2, 816, -3333, 3 }, { -2, 820, -3353, 3 }, + { -2, 824, -3373, 3 }, { -2, 828, -3393, 3 }, { -2, 832, -3413, 3 }, + { -2, 836, -3433, 3 }, { -2, 840, -3453, 3 }, { -2, 844, -3473, 3 }, + { -2, 849, -3493, 3 }, { -2, 853, -3513, 3 }, { -2, 856, -3533, 3 }, + { -2, 860, -3553, 3 }, { -2, 863, -3573, 3 }, { -2, 867, -3593, 3 }, + { -2, 871, -3613, 3 }, { -2, 874, -3633, 3 }, { -2, 878, -3653, 3 }, + { -2, 882, -3673, 3 }, { -2, 885, -3693, 3 }, { -2, 889, -3713, 3 }, + { -2, 892, -3733, 3 }, { -2, 895, -3753, 3 }, { -2, 898, -3773, 3 }, + { -2, 901, -3793, 3 }, { -2, 905, -3813, 3 }, { -2, 908, -3833, 3 }, + { -1, 911, -3853, 3 }, { -1, 914, -3873, 3 }, { -1, 917, -3893, 3 }, + { -1, 920, -3913, 3 }, { -1, 923, -3933, 3 }, { -1, 926, -3953, 3 }, + { -1, 928, -3973, 3 }, { -1, 931, -3993, 3 }, { -1, 934, -4013, 3 }, + { -1, 937, -4033, 3 }, { -1, 940, -4053, 3 }, { 0, 942, -4073, 3 }, + { 0, 945, -4093, 3 }, { 0, 947, -4113, 3 }, { 0, 949, -4133, 3 }, + { 0, 952, -4153, 3 }, { 0, 954, -4173, 3 }, { 0, 956, -4193, 3 }, + { 0, 959, -4213, 3 }, { 0, 961, -4233, 3 }, { 0, 963, -4253, 3 }, + { 1, 966, -4273, 3 }, { 1, 967, -4293, 3 }, { 2, 969, -4313, 3 }, + { 2, 971, -4333, 3 }, { 2, 973, -4353, 3 }, { 3, 975, -4373, 3 }, + { 4, 977, -4393, 3 }, { 4, 979, -4413, 3 }, { 5, 981, -4433, 3 }, + { 6, 983, -4453, 3 }, { 6, 984, -4473, 3 }, { 7, 985, -4493, 3 }, + { 8, 987, -4513, 3 }, { 9, 988, -4533, 3 }, { 11, 989, -4553, 3 }, + { 12, 990, -4573, 3 }, { 13, 992, -4593, 3 }, { 15, 993, -4613, 3 }, + { 17, 994, -4633, 3 }, { 19, 994, -4653, 3 }, { 21, 995, -4673, 3 }, + { 23, 996, -4693, 3 }, { 26, 996, -4713, 3 }, { 29, 997, -4732, 3 }, + { 32, 998, -4752, 3 }, { 36, 998, -4772, 3 }, { 39, 999, -4791, 3 }, + { 43, 999, -4811, 3 }, { 47, 999, -4831, 3 }, { 52, 999, -4850, 3 }, + { 57, 999, -4870, 3 }, { 62, 999, -4889, 3 }, { 67, 999, -4908, 3 }, + { 73, 999, -4928, 3 }, { 79, 999, -4947, 3 }, { 85, 999, -4965, 3 }, + { 93, 999, -4984, 3 }, { 101, 999, -5002, 3 }, { 110, 999, -5020, 3 }, + { 119, 999, -5038, 3 }, { 129, 999, -5055, 3 }, { 139, 999, -5073, 3 }, + { 150, 999, -5089, 3 }, { 162, 999, -5106, 3 }, { 174, 999, -5122, 3 }, + { 186, 999, -5137, 3 }, { 199, 999, -5152, 3 }, { 213, 999, -5167, 3 }, + { 227, 999, -5182, 3 }, { 241, 999, -5196, 3 }, { 255, 999, -5209, 3 }, + { 270, 999, -5223, 3 }, { 286, 999, -5235, 3 }, { 301, 999, -5248, 3 }, + { 318, 999, -5260, 3 }, { 334, 999, -5271, 3 }, { 351, 999, -5282, 3 }, + { 368, 999, -5292, 3 }, { 386, 999, -5302, 3 }, { 403, 999, -5311, 3 }, + { 421, 999, -5320, 3 }, { 440, 999, -5328, 3 }, { 458, 999, -5335, 3 }, + { 477, 999, -5342, 3 }, { 496, 999, -5348, 3 }, { 515, 999, -5354, 3 }, + { 535, 999, -5359, 3 }, { 554, 999, -5363, 3 }, { 574, 999, -5366, 3 }, + { 594, 999, -5369, 3 }, { 614, 999, -5371, 3 }, { 634, 999, -5373, 3 }, + { 654, 999, -5374, 3 }, { 674, 999, -5374, 3 }, { 694, 999, -5373, 3 }, + { 714, 999, -5372, 3 }, { 734, 999, -5371, 3 }, { 753, 999, -5368, 3 }, + { 773, 999, -5365, 4 }, { 793, 999, -5362, 4 }, { 812, 999, -5357, 4 }, + { 832, 999, -5352, 4 }, { 851, 999, -5347, 4 }, { 870, 999, -5341, 4 }, + { 889, 999, -5334, 4 }, { 907, 999, -5326, 4 }, { 925, 999, -5318, 4 }, + { 943, 999, -5309, 4 }, { 961, 999, -5299, 4 }, { 978, 999, -5289, 4 }, + { 995, 999, -5278, 4 }, { 1011, 999, -5266, 4 }, { 1027, 999, -5254, 4 }, + { 1043, 999, -5242, 4 }, { 1058, 999, -5229, 4 }, { 1073, 999, -5215, 4 }, + { 1087, 999, -5201, 4 }, { 1101, 999, -5187, 4 }, { 1114, 999, -5172, 4 }, + { 1127, 999, -5156, 4 }, { 1139, 999, -5141, 4 }, { 1151, 999, -5124, 4 }, + { 1162, 999, -5108, 4 }, { 1173, 999, -5091, 4 }, { 1184, 999, -5074, 4 }, + { 1194, 999, -5057, 4 }, { 1203, 999, -5039, 4 }, { 1212, 999, -5021, 4 }, + { 1220, 999, -5003, 4 }, { 1228, 999, -4985, 4 }, { 1236, 999, -4966, 4 }, + { 1243, 999, -4947, 4 }, { 1249, 999, -4928, 4 }, { 1255, 999, -4909, 4 }, + { 1260, 999, -4890, 4 }, { 1264, 999, -4870, 4 }, { 1268, 999, -4851, 4 }, + { 1272, 999, -4831, 4 }, { 1274, 999, -4811, 4 }, { 1276, 999, -4791, 4 }, + { 1278, 999, -4771, 4 }, { 1279, 999, -4751, 4 }, { 1279, 999, -4731, 4 }, + { 1279, 999, -4711, 4 }, { 1278, 999, -4691, 4 }, { 1277, 999, -4671, 4 }, + { 1275, 999, -4651, 4 }, { 1273, 999, -4631, 4 }, { 1270, 999, -4612, 4 }, + { 1267, 999, -4592, 4 }, { 1263, 999, -4572, 4 }, { 1259, 999, -4553, 4 }, + { 1254, 999, -4533, 4 }, { 1249, 999, -4514, 4 }, { 1244, 999, -4495, 4 }, + { 1237, 999, -4476, 4 }, { 1231, 999, -4457, 4 }, { 1224, 999, -4438, 4 }, + { 1216, 999, -4420, 4 }, { 1208, 999, -4401, 4 }, { 1200, 999, -4383, 4 }, + { 1191, 999, -4365, 4 }, { 1182, 999, -4347, 4 }, { 1173, 999, -4330, 4 }, + { 1163, 999, -4312, 4 }, { 1153, 999, -4295, 4 }, { 1142, 999, -4278, 4 }, + { 1132, 999, -4261, 4 }, { 1121, 999, -4244, 4 }, { 1109, 999, -4228, 4 }, + { 1098, 999, -4211, 4 }, { 1086, 999, -4195, 4 }, { 1074, 999, -4179, 4 }, + { 1062, 999, -4163, 4 }, { 1050, 999, -4147, 4 }, { 1037, 999, -4132, 4 }, + { 1024, 999, -4116, 4 }, { 1011, 999, -4101, 4 }, { 998, 999, -4086, 4 }, + { 985, 999, -4071, 4 }, { 972, 1000, -4056, 4 }, { 958, 1000, -4041, 4 }, + { 944, 1001, -4027, 4 }, { 930, 1002, -4013, 4 }, { 915, 1002, -3999, 4 }, + { 900, 1003, -3986, 4 }, { 885, 1003, -3973, 4 }, { 870, 1004, -3960, 4 }, + { 854, 1004, -3947, 4 }, { 839, 1005, -3935, 4 }, { 823, 1006, -3923, 4 }, + { 807, 1006, -3910, 4 }, { 791, 1007, -3899, 4 }, { 775, 1007, -3887, 4 }, + { 759, 1007, -3875, 4 }, { 742, 1007, -3864, 4 }, { 726, 1007, -3852, 4 }, + { 709, 1007, -3841, 4 }, { 693, 1007, -3830, 4 }, { 676, 1007, -3819, 4 }, + { 659, 1007, -3808, 4 }, { 642, 1007, -3797, 4 }, { 626, 1007, -3786, 4 }, + { 609, 1007, -3775, 4 }, { 592, 1007, -3765, 4 }, { 575, 1006, -3754, 4 }, + { 558, 1006, -3744, 4 }, { 541, 1005, -3733, 4 }, { 523, 1004, -3723, 4 }, + { 506, 1004, -3712, 4 }, { 489, 1003, -3702, 4 }, { 472, 1002, -3692, 4 }, + { 455, 1002, -3682, 4 }, { 437, 1001, -3672, 4 }, { 420, 1001, -3662, 4 }, + { 403, 1000, -3652, 4 }, { 385, 999, -3642, 4 }, { 368, 999, -3632, 4 }, + { 350, 998, -3622, 4 }, { 333, 996, -3612, 4 }, { 315, 995, -3603, 4 }, + { 298, 994, -3593, 4 }, { 281, 993, -3583, 4 }, { 263, 991, -3573, 4 }, + { 246, 990, -3564, 4 }, { 228, 989, -3554, 4 }, { 211, 988, -3544, 4 }, + { 193, 986, -3534, 4 }, { 176, 985, -3525, 4 }, { 158, 984, -3515, 4 }, + { 141, 983, -3505, 4 }, { 123, 981, -3495, 4 }, { 106, 980, -3486, 4 }, + { 88, 978, -3476, 4 }, { 71, 976, -3466, 4 }, { 53, 975, -3457, 4 }, + { 36, 973, -3447, 4 }, { 18, 972, -3437, 4 }, { 1, 970, -3428, 4 }, + { -16, 969, -3418, 4 }, { -34, 967, -3408, 4 }, { -51, 966, -3399, 4 }, + { -69, 964, -3389, 4 }, { -86, 962, -3380, 4 }, { -104, 961, -3370, 4 }, + { -121, 959, -3360, 4 }, { -139, 958, -3351, 4 }, { -157, 956, -3341, 4 }, + { -174, 954, -3332, 4 }, { -192, 952, -3322, 4 }, { -209, 950, -3313, 4 }, + { -227, 949, -3303, 4 }, { -245, 947, -3294, 4 }, { -262, 945, -3285, 4 }, + { -280, 943, -3275, 4 }, { -298, 941, -3266, 4 }, { -316, 939, -3257, 4 }, + { -333, 938, -3248, 4 }, { -351, 936, -3238, 4 }, { -369, 934, -3229, 5 }, + { -387, 932, -3220, 5 }, { -404, 930, -3210, 5 }, { -422, 928, -3201, 5 }, + { -439, 926, -3191, 5 }, { -456, 923, -3181, 5 }, { -474, 921, -3171, 5 }, + { -491, 919, -3161, 5 }, { -508, 917, -3150, 5 }, { -525, 915, -3140, 5 }, + { -542, 913, -3129, 5 }, { -559, 911, -3118, 5 }, { -576, 909, -3107, 5 }, + { -592, 907, -3096, 5 }, { -609, 904, -3085, 5 }, { -625, 902, -3073, 5 }, + { -642, 900, -3062, 5 }, { -658, 898, -3050, 5 }, { -674, 896, -3038, 5 }, + { -689, 893, -3026, 5 }, { -705, 891, -3013, 5 }, { -721, 888, -3000, 5 }, + { -736, 886, -2988, 5 }, { -751, 883, -2975, 5 }, { -766, 880, -2961, 5 }, + { -781, 877, -2948, 5 }, { -796, 875, -2934, 5 }, { -810, 872, -2920, 5 }, + { -824, 869, -2906, 5 }, { -838, 866, -2892, 5 }, { -852, 864, -2877, 5 }, + { -865, 861, -2862, 5 }, { -878, 858, -2847, 5 }, { -891, 855, -2832, 5 }, + { -903, 852, -2816, 5 }, { -915, 848, -2800, 5 }, { -927, 845, -2783, 5 }, + { -938, 841, -2767, 5 }, { -949, 837, -2750, 5 }, { -960, 833, -2733, 5 }, + { -970, 829, -2716, 5 }, { -980, 824, -2699, 5 }, { -990, 818, -2681, 5 }, + { -999, 812, -2663, 5 }, { -1007, 807, -2645, 5 }, { -1015, 801, -2627, 5 }, + { -1022, 796, -2608, 5 }, { -1029, 790, -2589, 5 }, { -1035, 784, -2570, 5 }, + { -1042, 777, -2551, 5 }, { -1047, 770, -2532, 5 }, { -1053, 762, -2513, 5 }, + { -1058, 754, -2494, 5 }, { -1063, 746, -2474, 5 }, { -1068, 738, -2455, 5 }, + { -1072, 731, -2435, 5 }, { -1077, 723, -2416, 5 }, { -1081, 715, -2396, 5 }, + { -1085, 707, -2377, 5 }, { -1089, 699, -2357, 5 }, { -1093, 691, -2337, 5 }, + { -1096, 683, -2318, 5 }, { -1100, 674, -2298, 5 }, { -1103, 667, -2278, 5 }, + { -1107, 659, -2259, 5 }, { -1110, 651, -2239, 5 }, { -1114, 644, -2219, 5 }, + { -1117, 637, -2199, 5 }, { -1121, 630, -2180, 5 }, { -1124, 623, -2160, 5 }, + { -1128, 616, -2140, 5 }, { -1132, 609, -2121, 5 }, { -1135, 603, -2101, 5 }, + { -1139, 596, -2081, 5 }, { -1143, 590, -2062, 5 }, { -1147, 583, -2042, 5 }, + { -1150, 577, -2022, 5 }, { -1154, 571, -2003, 5 }, { -1158, 565, -1983, 5 }, + { -1162, 560, -1964, 5 }, { -1166, 554, -1944, 5 }, { -1171, 549, -1924, 5 }, + { -1175, 544, -1905, 5 }, { -1180, 540, -1885, 5 }, { -1184, 536, -1866, 5 }, + { -1189, 532, -1847, 5 }, { -1195, 527, -1827, 5 }, { -1200, 523, -1808, 5 }, + { -1205, 520, -1789, 5 }, { -1211, 516, -1770, 5 }, { -1217, 513, -1750, 5 }, + { -1223, 510, -1731, 5 }, { -1229, 506, -1712, 5 }, { -1235, 504, -1693, 5 }, + { -1241, 502, -1674, 5 }, { -1248, 500, -1655, 5 }, { -1254, 498, -1636, 5 }, + { -1261, 497, -1617, 5 }, { -1268, 495, -1599, 5 }, { -1275, 494, -1580, 5 }, + { -1282, 493, -1561, 5 }, { -1289, 492, -1543, 5 }, { -1297, 491, -1524, 5 }, + { -1304, 490, -1506, 5 }, { -1312, 489, -1487, 5 }, { -1320, 488, -1469, 5 }, + { -1328, 487, -1451, 5 }, { -1337, 486, -1432, 5 }, { -1345, 486, -1414, 5 }, + { -1354, 486, -1396, 5 }, { -1363, 486, -1378, 5 }, { -1372, 486, -1360, 5 }, + { -1381, 486, -1343, 5 }, { -1390, 487, -1325, 5 }, { -1400, 487, -1307, 5 }, + { -1409, 487, -1290, 5 }, { -1419, 487, -1272, 5 }, { -1429, 487, -1255, 5 }, + { -1439, 487, -1238, 5 }, { -1449, 488, -1220, 5 }, { -1459, 489, -1203, 5 }, + { -1469, 489, -1186, 5 }, { -1479, 490, -1168, 5 }, { -1488, 490, -1150, 5 }, + { -1498, 491, -1133, 5 }, { -1507, 491, -1115, 5 }, { -1516, 492, -1097, 5 }, + { -1525, 492, -1079, 5 }, { -1533, 493, -1061, 5 }, { -1542, 494, -1043, 5 }, + { -1550, 495, -1025, 5 }, { -1559, 496, -1007, 5 }, { -1567, 497, -988, 5 }, + { -1575, 498, -970, 5 }, { -1582, 499, -952, 5 }, { -1590, 500, -933, 5 }, + { -1598, 501, -914, 5 }, { -1605, 503, -896, 5 }, { -1612, 503, -877, 5 }, + { -1619, 503, -858, 5 }, { -1625, 503, -839, 5 }, { -1631, 503, -820, 5 }, + { -1637, 504, -801, 5 }, { -1642, 504, -782, 5 }, { -1648, 504, -763, 5 }, + { -1652, 504, -743, 5 }, { -1657, 504, -724, 5 }, { -1661, 505, -704, 6 }, + { -1665, 505, -684, 6 }, { -1668, 505, -665, 6 }, { -1671, 505, -645, 6 }, + { -1673, 505, -625, 6 }, { -1675, 506, -605, 6 }, { -1677, 506, -585, 6 }, + { -1678, 506, -565, 6 }, { -1679, 506, -545, 6 }, { -1680, 506, -525, 6 }, + { -1680, 507, -505, 6 }, { -1680, 507, -485, 6 }, { -1680, 508, -465, 6 }, + { -1680, 508, -445, 6 }, { -1679, 509, -425, 6 }, { -1678, 509, -405, 6 }, + { -1677, 510, -385, 6 }, { -1674, 510, -365, 6 }, { -1672, 512, -345, 6 }, + { -1668, 513, -326, 6 }, { -1662, 514, -307, 6 }, { -1655, 516, -288, 6 }, + { -1646, 517, -270, 6 }, { -1637, 518, -252, 6 }, { -1626, 519, -235, 6 }, + { -1615, 520, -218, 6 }, { -1604, 522, -202, 6 }, { -1592, 523, -186, 6 }, + { -1579, 524, -170, 6 }, { -1567, 526, -155, 6 }, { -1553, 527, -140, 6 }, + { -1539, 528, -126, 6 }, { -1525, 529, -112, 6 }, { -1509, 531, -99, 6 }, + { -1494, 532, -87, 6 }, { -1478, 533, -75, 6 }, { -1461, 534, -64, 6 }, + { -1444, 535, -53, 6 }, { -1427, 537, -43, 6 }, { -1409, 538, -34, 6 }, + { -1390, 539, -26, 6 }, { -1372, 541, -19, 6 }, { -1353, 542, -13, 6 }, + { -1333, 543, -8, 6 }, { -1314, 544, -3, 6 }, { -1294, 545, 0, 6 }, + { -1274, 546, 2, 6 }, { -1254, 547, 5, 6 }, { -1234, 548, 6, 6 }, + { -1214, 549, 7, 6 }, { -1194, 550, 7, 6 }, { -1174, 551, 6, 6 }, + { -1155, 552, 5, 6 }, { -1135, 553, 2, 6 }, { -1115, 554, 0, 6 }, + { -1095, 555, -4, 6 }, { -1076, 556, -9, 6 }, { -1057, 557, -15, 6 }, + { -1038, 558, -22, 6 }, { -1020, 559, -30, 6 }, { -1002, 560, -38, 6 }, + { -984, 562, -48, 6 }, { -966, 563, -58, 6 }, { -950, 564, -68, 6 }, + { -933, 565, -80, 6 }, { -917, 566, -92, 6 }, { -902, 567, -104, 6 }, + { -887, 568, -118, 6 }, { -872, 569, -132, 6 }, { -859, 570, -146, 6 }, + { -846, 572, -161, 6 }, { -833, 573, -177, 6 }, { -821, 574, -193, 6 }, + { -810, 575, -210, 6 }, { -799, 576, -227, 6 }, { -789, 577, -244, 6 }, + { -780, 578, -262, 6 }, { -772, 579, -280, 6 }, { -764, 581, -298, 6 }, + { -757, 582, -317, 6 }, { -750, 582, -336, 6 }, { -745, 584, -355, 6 }, + { -740, 585, -375, 6 }, { -736, 586, -394, 6 }, { -733, 587, -414, 6 }, + { -730, 588, -434, 6 }, { -729, 589, -454, 6 }, { -729, 590, -474, 6 }, + { -729, 591, -494, 6 }, { -731, 592, -514, 6 }, { -733, 593, -534, 6 }, + { -736, 594, -553, 6 }, { -740, 596, -573, 6 }, { -745, 597, -592, 6 }, + { -750, 598, -612, 6 }, { -756, 599, -631, 6 }, { -763, 600, -650, 6 }, + { -770, 601, -668, 6 }, { -778, 602, -687, 6 }, { -787, 604, -705, 6 }, + { -797, 605, -722, 6 }, { -807, 606, -739, 6 }, { -819, 608, -755, 6 }, + { -831, 609, -771, 6 }, { -845, 610, -786, 6 }, { -859, 611, -800, 6 }, + { -873, 613, -814, 6 }, { -888, 614, -827, 6 }, { -904, 615, -839, 6 }, + { -921, 616, -851, 6 }, { -938, 617, -861, 6 }, { -955, 619, -871, 6 }, + { -973, 620, -881, 6 }, { -991, 621, -889, 6 }, { -1009, 623, -897, 6 }, + { -1028, 624, -904, 6 }, { -1047, 625, -910, 6 }, { -1066, 626, -916, 6 }, + { -1086, 627, -921, 6 }, { -1105, 628, -925, 6 }, { -1125, 629, -928, 6 }, + { -1145, 630, -931, 6 }, { -1165, 631, -933, 6 }, { -1185, 632, -935, 6 }, + { -1205, 633, -936, 6 }, { -1225, 634, -936, 6 }, { -1244, 636, -935, 6 }, + { -1264, 637, -934, 6 }, { -1284, 638, -931, 6 }, { -1304, 639, -928, 6 }, + { -1324, 640, -924, 6 }, { -1343, 641, -919, 6 }, { -1362, 642, -913, 6 }, + { -1381, 643, -907, 6 }, { -1399, 644, -899, 6 }, { -1418, 645, -890, 6 }, + { -1435, 647, -881, 6 }, { -1452, 648, -871, 6 }, { -1469, 649, -859, 6 }, + { -1485, 650, -848, 6 }, { -1501, 652, -835, 6 }, { -1516, 653, -822, 6 }, + { -1530, 654, -808, 6 }, { -1544, 655, -794, 6 }, { -1558, 656, -779, 6 }, + { -1571, 657, -764, 6 }, { -1584, 658, -748, 6 }, { -1596, 659, -733, 6 }, + { -1608, 661, -717, 6 }, { -1620, 661, -700, 6 }, { -1631, 662, -684, 6 }, + { -1641, 663, -667, 6 }, { -1651, 663, -649, 6 }, { -1660, 664, -631, 6 }, + { -1667, 665, -613, 6 }, { -1672, 665, -593, 6 }, { -1675, 666, -574, 6 }, + { -1678, 667, -554, 6 }, { -1681, 667, -534, 6 }, { -1683, 667, -514, 6 }, + { -1685, 668, -494, 6 }, { -1687, 668, -474, 6 }, { -1688, 668, -454, 6 }, + { -1690, 669, -434, 6 }, { -1691, 669, -414, 6 }, { -1692, 669, -394, 6 }, + { -1693, 670, -374, 6 }, { -1694, 670, -354, 6 }, { -1695, 671, -334, 7 }, + { -1696, 671, -314, 7 }, { -1697, 671, -294, 7 }, { -1697, 671, -274, 7 }, + { -1698, 671, -254, 7 }, { -1698, 671, -234, 7 }, { -1699, 671, -214, 7 }, + { -1700, 671, -194, 7 }, { -1700, 671, -174, 7 }, { -1700, 671, -154, 7 }, + { -1701, 671, -134, 7 }, { -1701, 671, -114, 7 }, { -1702, 672, -94, 7 }, + { -1702, 672, -74, 7 }, { -1702, 673, -54, 7 }, { -1702, 674, -34, 7 }, + { -1702, 674, -14, 7 }, { -1703, 675, 5, 7 }, { -1703, 675, 25, 7 }, + { -1703, 676, 45, 7 }, { -1703, 676, 65, 7 }, { -1703, 677, 85, 7 }, + { -1703, 677, 105, 7 }, { -1703, 678, 125, 7 }, { -1703, 678, 145, 7 }, + { -1703, 679, 165, 7 }, { -1703, 680, 185, 7 }, { -1703, 681, 205, 7 }, + { -1703, 682, 225, 7 }, { -1703, 683, 245, 7 }, { -1703, 684, 265, 7 }, + { -1703, 685, 285, 7 }, { -1703, 686, 305, 7 }, { -1703, 687, 325, 7 }, + { -1704, 688, 345, 7 }, { -1704, 689, 365, 7 }, { -1704, 690, 385, 7 }, + { -1704, 692, 405, 7 }, { -1705, 693, 425, 7 }, { -1705, 694, 445, 7 }, + { -1706, 695, 465, 7 }, { -1706, 697, 485, 7 }, { -1707, 698, 505, 7 }, + { -1708, 699, 525, 7 }, { -1709, 700, 545, 7 }, { -1710, 701, 565, 7 }, + { -1712, 703, 585, 7 }, { -1714, 704, 605, 7 }, { -1716, 705, 625, 7 }, + { -1719, 707, 644, 7 }, { -1722, 707, 664, 7 }, { -1725, 708, 684, 7 }, + { -1729, 708, 704, 7 }, { -1733, 709, 723, 7 }, { -1737, 709, 743, 7 }, + { -1741, 710, 763, 7 }, { -1746, 710, 782, 7 }, { -1752, 711, 801, 7 }, + { -1758, 711, 820, 7 }, { -1765, 712, 839, 7 }, { -1773, 713, 857, 7 }, + { -1782, 714, 875, 7 }, { -1791, 715, 893, 7 }, { -1800, 716, 911, 7 }, + { -1811, 716, 928, 7 }, { -1822, 717, 944, 7 }, { -1834, 718, 961, 7 }, + { -1846, 719, 976, 7 }, { -1858, 720, 992, 7 }, { -1871, 721, 1007, 7 }, + { -1884, 722, 1022, 7 }, { -1898, 723, 1037, 7 }, { -1911, 724, 1052, 7 }, + { -1925, 725, 1066, 7 }, { -1939, 726, 1081, 7 }, { -1953, 727, 1095, 7 }, + { -1967, 728, 1109, 7 }, { -1981, 729, 1123, 7 }, { -1996, 730, 1137, 7 }, + { -2010, 731, 1151, 7 }, { -2024, 732, 1165, 7 }, { -2039, 733, 1179, 7 }, + { -2054, 733, 1193, 7 }, { -2068, 733, 1206, 7 }, { -2083, 734, 1220, 7 }, + { -2098, 734, 1233, 7 }, { -2113, 735, 1246, 7 }, { -2128, 735, 1259, 7 }, + { -2143, 735, 1272, 7 }, { -2159, 736, 1285, 7 }, { -2174, 736, 1298, 7 }, + { -2189, 737, 1311, 7 }, { -2205, 737, 1323, 7 }, { -2221, 737, 1336, 7 }, + { -2236, 738, 1349, 7 }, { -2252, 738, 1361, 7 }, { -2268, 738, 1373, 7 }, + { -2283, 739, 1386, 7 }, { -2299, 739, 1398, 7 }, { -2315, 739, 1410, 7 }, + { -2331, 740, 1422, 7 }, { -2347, 740, 1434, 7 }, { -2363, 741, 1447, 7 }, + { -2379, 741, 1459, 7 }, { -2395, 741, 1471, 7 }, { -2411, 742, 1483, 7 }, + { -2427, 742, 1494, 7 }, { -2443, 742, 1506, 7 }, { -2459, 743, 1518, 7 }, + { -2475, 743, 1530, 7 }, { -2491, 743, 1542, 7 }, { -2508, 743, 1554, 7 }, + { -2524, 743, 1565, 7 }, { -2540, 743, 1577, 7 }, { -2556, 743, 1589, 7 }, + { -2573, 743, 1600, 7 }, { -2589, 743, 1612, 7 }, { -2605, 743, 1624, 7 }, + { -2621, 743, 1635, 7 }, { -2638, 743, 1647, 7 }, { -2654, 743, 1658, 7 }, + { -2670, 743, 1670, 7 }, { -2687, 743, 1682, 7 }, { -2703, 743, 1693, 7 }, + { -2719, 743, 1705, 7 }, { -2735, 743, 1717, 7 }, { -2752, 743, 1728, 7 }, + { -2768, 743, 1740, 7 }, { -2784, 743, 1752, 7 }, { -2801, 743, 1763, 7 }, + { -2817, 743, 1775, 7 }, { -2833, 743, 1787, 7 }, { -2849, 743, 1798, 7 }, + { -2866, 743, 1810, 7 }, { -2882, 743, 1822, 7 }, { -2898, 743, 1833, 7 }, + { -2914, 743, 1845, 7 }, { -2931, 743, 1857, 7 }, { -2947, 743, 1868, 7 }, + { -2963, 743, 1880, 7 }, { -2979, 743, 1892, 7 }, { -2996, 743, 1903, 7 }, + { -3012, 743, 1915, 7 }, { -3028, 743, 1927, 7 }, { -3044, 743, 1938, 7 }, + { -3061, 743, 1950, 7 }, { -3077, 743, 1962, 7 }, { -3093, 743, 1974, 7 }, + { -3109, 743, 1986, 7 }, { -3125, 743, 1998, 7 }, { -3141, 743, 2010, 7 }, + { -3157, 743, 2022, 8 }, { -3172, 743, 2035, 8 }, { -3188, 743, 2047, 8 }, + { -3203, 743, 2060, 8 }, { -3218, 743, 2074, 8 }, { -3233, 743, 2087, 8 }, + { -3247, 743, 2101, 8 }, { -3261, 743, 2115, 8 }, { -3275, 743, 2130, 8 }, + { -3288, 743, 2145, 8 }, { -3300, 743, 2161, 8 }, { -3312, 743, 2177, 8 }, + { -3323, 743, 2194, 8 }, { -3333, 743, 2211, 8 }, { -3343, 743, 2229, 8 }, + { -3351, 743, 2247, 8 }, { -3359, 743, 2265, 8 }, { -3367, 743, 2284, 8 }, + { -3373, 743, 2303, 8 }, { -3378, 743, 2322, 8 }, { -3383, 743, 2341, 8 }, + { -3386, 743, 2361, 8 }, { -3389, 743, 2381, 8 }, { -3391, 743, 2401, 8 }, + { -3392, 743, 2421, 8 }, { -3392, 743, 2441, 8 }, { -3391, 743, 2461, 8 }, + { -3389, 743, 2481, 8 }, { -3387, 743, 2501, 8 }, { -3384, 743, 2520, 8 }, + { -3380, 743, 2540, 8 }, { -3375, 743, 2559, 8 }, { -3370, 743, 2579, 8 }, + { -3363, 743, 2598, 8 }, { -3356, 743, 2616, 8 }, { -3349, 743, 2635, 8 }, + { -3340, 743, 2653, 8 }, { -3331, 743, 2671, 8 }, { -3321, 743, 2688, 8 }, + { -3310, 743, 2705, 8 }, { -3298, 743, 2721, 8 }, { -3286, 743, 2737, 8 }, + { -3273, 743, 2752, 8 }, { -3259, 743, 2767, 8 }, { -3245, 743, 2780, 8 }, + { -3230, 743, 2794, 8 }, { -3214, 743, 2807, 8 }, { -3199, 743, 2819, 8 }, + { -3182, 743, 2830, 8 }, { -3165, 743, 2841, 8 }, { -3148, 743, 2851, 8 }, + { -3131, 743, 2861, 8 }, { -3113, 743, 2869, 8 }, { -3094, 743, 2877, 8 }, + { -3075, 743, 2884, 8 }, { -3056, 743, 2890, 8 }, { -3037, 743, 2895, 8 }, + { -3017, 743, 2900, 8 }, { -2998, 743, 2903, 8 }, { -2978, 743, 2906, 8 }, + { -2958, 743, 2908, 8 }, { -2938, 743, 2910, 8 }, { -2918, 743, 2910, 8 }, + { -2898, 743, 2910, 8 }, { -2878, 743, 2909, 8 }, { -2858, 743, 2907, 8 }, + { -2838, 743, 2904, 8 }, { -2819, 743, 2900, 8 }, { -2799, 743, 2895, 8 }, + { -2780, 743, 2890, 8 }, { -2761, 743, 2884, 8 }, { -2742, 743, 2877, 8 }, + { -2724, 743, 2869, 8 }, { -2705, 743, 2861, 8 }, { -2687, 743, 2852, 8 }, + { -2669, 743, 2843, 8 }, { -2652, 743, 2834, 8 }, { -2634, 743, 2824, 8 }, + { -2617, 743, 2814, 8 }, { -2600, 743, 2803, 8 }, { -2583, 743, 2793, 8 }, + { -2567, 743, 2782, 8 }, { -2550, 743, 2770, 8 }, { -2533, 743, 2759, 8 }, + { -2517, 743, 2748, 8 }, { -2500, 743, 2737, 8 }, { -2484, 743, 2725, 8 }, + { -2468, 743, 2714, 8 }, { -2451, 743, 2702, 8 }, { -2435, 743, 2691, 8 }, + { -2418, 743, 2679, 8 }, { -2402, 743, 2668, 8 }, { -2386, 743, 2656, 8 }, + { -2370, 743, 2644, 8 }, { -2353, 743, 2633, 8 }, { -2337, 743, 2621, 8 }, + { -2321, 743, 2609, 8 }, { -2305, 743, 2598, 8 }, { -2288, 743, 2586, 8 }, + { -2272, 743, 2574, 8 }, { -2256, 743, 2562, 8 }, { -2240, 743, 2551, 8 }, + { -2224, 743, 2539, 8 }, { -2207, 743, 2527, 8 }, { -2191, 743, 2515, 8 }, + { -2175, 743, 2503, 8 }, { -2159, 743, 2492, 8 }, { -2143, 743, 2480, 8 }, + { -2126, 743, 2468, 8 }, { -2110, 743, 2457, 8 }, { -2094, 743, 2445, 8 }, + { -2077, 743, 2434, 8 }, { -2061, 743, 2422, 8 }, { -2045, 743, 2411, 8 }, + { -2028, 743, 2399, 8 }, { -2012, 743, 2388, 8 }, { -1995, 743, 2376, 8 }, + { -1979, 743, 2365, 8 }, { -1962, 743, 2354, 8 }, { -1946, 743, 2343, 8 }, + { -1929, 743, 2331, 8 }, { -1912, 743, 2320, 8 }, { -1896, 743, 2309, 8 }, + { -1879, 743, 2298, 8 }, { -1862, 743, 2287, 8 }, { -1846, 743, 2276, 8 }, + { -1829, 743, 2265, 8 }, { -1812, 743, 2254, 8 }, { -1795, 743, 2243, 8 }, + { -1778, 743, 2233, 8 }, { -1761, 743, 2222, 8 }, { -1745, 743, 2211, 8 }, + { -1728, 743, 2201, 8 }, { -1711, 743, 2190, 8 }, { -1694, 743, 2180, 8 }, + { -1677, 743, 2169, 8 }, { -1660, 743, 2159, 8 }, { -1642, 743, 2148, 8 }, + { -1625, 743, 2138, 8 }, { -1608, 743, 2128, 8 }, { -1591, 743, 2117, 8 }, + { -1574, 743, 2107, 8 }, { -1556, 743, 2097, 9 }, { -1539, 743, 2087, 9 }, + { -1521, 743, 2078, 9 }, { -1504, 743, 2068, 9 }, { -1486, 743, 2058, 9 }, + { -1469, 743, 2049, 9 }, { -1451, 743, 2040, 9 }, { -1433, 743, 2031, 9 }, + { -1415, 743, 2022, 9 }, { -1397, 743, 2013, 9 }, { -1379, 743, 2005, 9 }, + { -1361, 743, 1997, 9 }, { -1342, 743, 1989, 9 }, { -1324, 743, 1981, 9 }, + { -1305, 743, 1974, 9 }, { -1286, 743, 1968, 9 }, { -1267, 743, 1962, 9 }, + { -1248, 743, 1957, 9 }, { -1228, 743, 1952, 9 }, { -1208, 743, 1948, 9 }, + { -1189, 743, 1944, 9 }, { -1169, 743, 1940, 9 }, { -1149, 743, 1937, 9 }, + { -1130, 743, 1935, 9 }, { -1110, 742, 1933, 9 }, { -1090, 741, 1931, 9 }, + { -1070, 740, 1929, 9 }, { -1050, 739, 1928, 9 }, { -1030, 738, 1928, 9 }, + { -1010, 737, 1927, 9 }, { -990, 736, 1928, 9 }, { -970, 735, 1928, 9 }, + { -950, 734, 1928, 9 }, { -930, 731, 1928, 9 }, { -910, 729, 1928, 9 }, + { -890, 726, 1928, 9 }, { -870, 724, 1928, 9 }, { -850, 720, 1928, 9 }, + { -830, 715, 1928, 9 }, { -810, 711, 1928, 9 }, { -790, 707, 1928, 9 }, + { -770, 702, 1928, 9 }, { -750, 696, 1928, 9 }, { -730, 690, 1928, 9 }, + { -710, 684, 1928, 9 }, { -690, 678, 1928, 9 }, { -669, 671, 1928, 9 }, + { -649, 664, 1928, 9 }, { -629, 657, 1928, 9 }, { -609, 650, 1928, 9 }, + { -589, 643, 1927, 9 }, { -569, 636, 1927, 9 }, { -549, 629, 1927, 9 }, + { -529, 622, 1927, 9 }, { -509, 615, 1927, 9 }, { -489, 608, 1927, 9 }, + { -469, 602, 1927, 9 }, { -449, 596, 1927, 9 }, { -429, 590, 1927, 9 }, + { -409, 584, 1926, 9 }, { -389, 580, 1926, 9 }, { -369, 576, 1926, 9 }, + { -349, 573, 1926, 9 }, { -329, 569, 1926, 9 }, { -309, 567, 1926, 9 }, + { -289, 567, 1926, 9 }, { -269, 567, 1925, 9 }, { -249, 567, 1925, 9 }, + { -229, 567, 1925, 9 }, { -209, 568, 1925, 9 }, { -189, 571, 1925, 9 }, + { -169, 574, 1925, 9 }, { -149, 576, 1925, 9 }, { -129, 579, 1925, 9 }, + { -109, 584, 1925, 9 }, { -89, 589, 1925, 9 }, { -69, 594, 1924, 9 }, + { -49, 600, 1924, 9 }, { -29, 606, 1924, 9 }, { -9, 613, 1924, 9 }, + { 10, 621, 1924, 9 }, { 30, 629, 1924, 9 }, { 50, 636, 1924, 9 }, + { 70, 643, 1924, 9 }, { 90, 650, 1924, 9 }, { 110, 657, 1924, 9 }, + { 130, 664, 1924, 9 }, { 150, 671, 1924, 9 }, { 170, 676, 1924, 9 }, + { 190, 680, 1924, 9 }, { 210, 685, 1924, 9 }, { 230, 690, 1924, 9 }, + { 250, 695, 1924, 9 }, { 270, 699, 1924, 9 }, { 290, 704, 1924, 9 }, + { 310, 709, 1924, 9 }, { 330, 712, 1924, 9 }, { 350, 715, 1924, 9 }, + { 370, 718, 1924, 9 }, { 390, 721, 1924, 9 }, { 410, 724, 1924, 9 }, + { 430, 727, 1924, 9 }, { 450, 730, 1924, 9 }, { 470, 733, 1924, 9 }, + { 490, 735, 1924, 9 }, { 510, 737, 1924, 9 }, { 530, 738, 1924, 9 }, + { 550, 740, 1924, 9 }, { 570, 741, 1924, 9 }, { 590, 743, 1924, 9 }, + { 610, 745, 1924, 9 }, { 630, 746, 1924, 9 }, { 650, 748, 1924, 9 }, + { 670, 749, 1925, 9 }, { 690, 750, 1925, 9 }, { 710, 752, 1925, 9 }, + { 730, 753, 1925, 9 }, { 750, 754, 1925, 9 }, { 770, 755, 1925, 9 }, + { 790, 756, 1925, 9 }, { 811, 757, 1926, 9 }, { 831, 758, 1926, 9 }, + { 851, 759, 1926, 10 }, { 871, 760, 1927, 10 }, { 891, 761, 1927, 10 }, + { 911, 762, 1928, 10 }, { 931, 763, 1928, 10 }, { 951, 764, 1929, 10 }, + { 971, 765, 1929, 10 }, { 991, 766, 1930, 10 }, { 1011, 767, 1930, 10 }, + { 1031, 768, 1931, 10 }, { 1051, 769, 1932, 10 }, { 1071, 770, 1933, 10 }, + { 1091, 770, 1934, 10 }, { 1111, 771, 1935, 10 }, { 1131, 772, 1936, 10 }, + { 1151, 773, 1937, 10 }, { 1171, 774, 1938, 10 }, { 1191, 775, 1939, 10 }, + { 1211, 776, 1941, 10 }, { 1230, 777, 1942, 10 }, { 1250, 777, 1944, 10 }, + { 1270, 778, 1946, 10 }, { 1290, 779, 1948, 10 }, { 1310, 780, 1950, 10 }, + { 1330, 781, 1953, 10 }, { 1350, 781, 1955, 10 }, { 1370, 782, 1958, 10 }, + { 1389, 783, 1962, 10 }, { 1409, 783, 1965, 10 }, { 1429, 784, 1969, 10 }, + { 1448, 784, 1973, 10 }, { 1468, 785, 1978, 10 }, { 1487, 785, 1982, 10 }, + { 1507, 785, 1987, 10 }, { 1526, 786, 1993, 10 }, { 1545, 786, 1999, 10 }, + { 1564, 787, 2005, 10 }, { 1583, 787, 2011, 10 }, { 1602, 788, 2018, 10 }, + { 1620, 788, 2025, 10 }, { 1639, 789, 2033, 10 }, { 1657, 790, 2041, 10 }, + { 1675, 790, 2050, 10 }, { 1693, 791, 2059, 10 }, { 1711, 791, 2068, 10 }, + { 1728, 791, 2079, 10 }, { 1745, 791, 2089, 10 }, { 1762, 791, 2100, 10 }, + { 1778, 791, 2112, 10 }, { 1794, 791, 2124, 10 }, { 1809, 791, 2136, 10 }, + { 1825, 791, 2149, 10 }, { 1840, 791, 2163, 10 }, { 1854, 791, 2176, 10 }, + { 1868, 791, 2191, 10 }, { 1882, 791, 2205, 10 }, { 1895, 791, 2220, 10 }, + { 1908, 791, 2235, 10 }, { 1921, 791, 2251, 10 }, { 1933, 791, 2267, 10 }, + { 1945, 791, 2283, 10 }, { 1956, 791, 2300, 10 }, { 1967, 791, 2316, 10 }, + { 1978, 791, 2333, 10 }, { 1988, 791, 2351, 10 }, { 1998, 791, 2368, 10 }, + { 2007, 791, 2385, 10 }, { 2016, 791, 2403, 10 }, { 2025, 791, 2421, 10 }, + { 2034, 791, 2439, 10 }, { 2042, 791, 2458, 10 }, { 2049, 791, 2476, 10 }, + { 2057, 791, 2495, 10 }, { 2064, 791, 2513, 10 }, { 2071, 791, 2532, 10 }, + { 2077, 791, 2551, 10 }, { 2083, 791, 2570, 10 }, { 2089, 791, 2590, 10 }, + { 2094, 791, 2609, 10 }, { 2098, 791, 2628, 10 }, { 2102, 791, 2648, 10 }, + { 2106, 791, 2668, 10 }, { 2109, 791, 2688, 10 }, { 2111, 791, 2707, 10 }, + { 2113, 791, 2727, 10 }, { 2115, 791, 2747, 10 }, { 2116, 792, 2767, 10 }, + { 2116, 793, 2787, 10 }, { 2116, 794, 2807, 10 }, { 2116, 795, 2827, 10 }, + { 2115, 796, 2847, 10 }, { 2114, 796, 2867, 10 }, { 2112, 797, 2887, 10 }, + { 2110, 798, 2907, 10 }, { 2107, 799, 2927, 10 }, { 2104, 799, 2947, 10 }, + { 2101, 800, 2967, 10 }, { 2097, 801, 2986, 10 }, { 2092, 802, 3006, 10 }, + { 2087, 803, 3025, 10 }, { 2082, 804, 3044, 10 }, { 2075, 804, 3063, 10 }, + { 2069, 805, 3082, 10 }, { 2061, 806, 3101, 10 }, { 2053, 807, 3119, 10 }, + { 2045, 807, 3137, 10 }, { 2036, 808, 3155, 10 }, { 2026, 809, 3172, 10 }, + { 2016, 810, 3190, 10 }, { 2005, 811, 3207, 10 }, { 1994, 811, 3223, 10 }, + { 1983, 812, 3240, 10 }, { 1971, 813, 3256, 10 }, { 1958, 814, 3272, 10 }, + { 1946, 814, 3287, 10 }, { 1932, 815, 3302, 10 }, { 1919, 816, 3317, 10 }, + { 1905, 817, 3331, 10 }, { 1891, 818, 3345, 10 }, { 1877, 819, 3359, 10 }, + { 1862, 820, 3373, 10 }, { 1847, 820, 3386, 10 }, { 1831, 821, 3399, 10 }, + { 1816, 822, 3411, 10 }, { 1799, 823, 3423, 10 }, { 1783, 824, 3434, 10 }, + { 1766, 825, 3445, 10 }, { 1749, 826, 3455, 10 }, { 1732, 827, 3465, 10 }, + { 1714, 828, 3474, 10 }, { 1696, 829, 3483, 10 }, { 1678, 830, 3491, 10 }, + { 1659, 830, 3498, 10 }, { 1640, 831, 3505, 10 }, { 1621, 832, 3512, 10 }, + { 1602, 833, 3518, 10 }, { 1583, 834, 3523, 10 }, { 1563, 835, 3528, 10 }, + { 1544, 836, 3533, 10 }, { 1524, 837, 3538, 10 }, { 1505, 838, 3541, 10 }, + { 1485, 839, 3545, 10 }, { 1465, 840, 3548, 10 }, { 1445, 841, 3550, 10 }, + { 1426, 842, 3552, 10 }, { 1406, 843, 3554, 10 }, { 1386, 844, 3555, 10 }, + { 1366, 845, 3555, 10 }, { 1346, 845, 3555, 10 }, { 1326, 846, 3555, 10 }, + { 1306, 847, 3554, 11 }, { 1286, 849, 3552, 11 }, { 1266, 850, 3550, 11 }, + { 1246, 851, 3548, 11 }, { 1226, 852, 3545, 11 }, { 1206, 853, 3542, 11 }, + { 1187, 854, 3538, 11 }, { 1167, 855, 3534, 11 }, { 1148, 856, 3529, 11 }, + { 1128, 857, 3524, 11 }, { 1109, 858, 3518, 11 }, { 1090, 859, 3512, 11 }, + { 1071, 860, 3505, 11 }, { 1053, 861, 3498, 11 }, { 1034, 862, 3491, 11 }, + { 1016, 863, 3483, 11 }, { 998, 864, 3474, 11 }, { 980, 866, 3465, 11 }, + { 962, 867, 3456, 11 }, { 944, 868, 3446, 11 }, { 927, 869, 3436, 11 }, + { 910, 870, 3426, 11 }, { 893, 871, 3415, 11 }, { 876, 872, 3404, 11 }, + { 860, 873, 3393, 11 }, { 844, 874, 3381, 11 }, { 828, 875, 3369, 11 }, + { 812, 876, 3356, 11 }, { 797, 877, 3344, 11 }, { 781, 878, 3331, 11 }, + { 766, 879, 3318, 11 }, { 751, 880, 3304, 11 }, { 737, 881, 3291, 11 }, + { 722, 882, 3277, 11 }, { 707, 882, 3264, 11 }, { 692, 883, 3250, 11 }, + { 677, 884, 3237, 11 }, { 663, 885, 3223, 11 }, { 648, 886, 3210, 11 }, + { 633, 887, 3196, 11 }, { 619, 887, 3183, 11 }, { 604, 888, 3169, 11 }, + { 589, 889, 3155, 11 }, { 575, 890, 3142, 11 }, { 560, 891, 3128, 11 }, + { 545, 891, 3114, 11 }, { 531, 892, 3101, 11 }, { 516, 893, 3087, 11 }, + { 502, 894, 3073, 11 }, { 487, 895, 3059, 11 }, { 473, 895, 3046, 11 }, + { 458, 896, 3032, 11 }, { 443, 897, 3018, 11 }, { 428, 898, 3005, 11 }, + { 413, 898, 2992, 11 }, { 398, 899, 2979, 11 }, { 383, 900, 2966, 11 }, + { 368, 901, 2953, 11 }, { 352, 901, 2940, 11 }, { 336, 902, 2928, 11 }, + { 321, 903, 2916, 11 }, { 305, 904, 2904, 11 }, { 289, 905, 2892, 11 }, + { 272, 906, 2880, 11 }, { 256, 907, 2869, 11 }, { 239, 908, 2858, 11 }, + { 222, 909, 2847, 11 }, { 205, 910, 2836, 11 }, { 188, 911, 2826, 11 }, + { 170, 912, 2817, 11 }, { 153, 913, 2807, 11 }, { 135, 915, 2798, 11 }, + { 117, 916, 2789, 11 }, { 99, 917, 2781, 11 }, { 81, 918, 2772, 11 }, + { 62, 919, 2764, 11 }, { 44, 920, 2757, 11 }, { 25, 922, 2750, 11 }, + { 6, 923, 2743, 11 }, { -12, 924, 2737, 11 }, { -31, 925, 2731, 11 }, + { -50, 927, 2725, 11 }, { -69, 928, 2720, 11 }, { -89, 929, 2715, 11 }, + { -108, 930, 2711, 11 }, { -128, 931, 2707, 11 }, { -148, 932, 2703, 11 }, + { -167, 934, 2700, 11 }, { -187, 935, 2697, 11 }, { -207, 937, 2695, 11 }, + { -227, 938, 2693, 11 }, { -247, 940, 2691, 11 }, { -267, 942, 2689, 11 }, + { -287, 943, 2688, 11 }, { -307, 945, 2687, 11 }, { -327, 946, 2687, 11 }, + { -347, 948, 2686, 11 }, { -367, 949, 2686, 11 }, { -387, 951, 2687, 11 }, + { -407, 952, 2688, 11 }, { -427, 953, 2689, 11 }, { -447, 955, 2691, 11 }, + { -467, 957, 2694, 11 }, { -486, 958, 2697, 11 }, { -506, 960, 2701, 11 }, + { -526, 961, 2705, 11 }, { -545, 962, 2710, 11 }, { -564, 964, 2716, 11 }, + { -583, 965, 2723, 11 }, { -601, 967, 2730, 12 }, { -620, 968, 2738, 12 }, + { -638, 969, 2747, 12 }, { -656, 971, 2756, 12 }, { -673, 972, 2765, 12 }, + { -691, 974, 2775, 12 }, { -708, 975, 2786, 12 }, { -725, 976, 2796, 12 }, + { -741, 977, 2807, 12 }, { -758, 979, 2819, 12 }, { -774, 980, 2831, 12 }, + { -790, 982, 2843, 12 }, { -805, 983, 2856, 12 }, { -821, 984, 2869, 12 }, + { -835, 985, 2882, 12 }, { -850, 987, 2896, 12 }, { -863, 988, 2911, 12 }, + { -876, 989, 2926, 12 }, { -889, 991, 2941, 12 }, { -901, 992, 2957, 12 }, + { -913, 993, 2974, 12 }, { -924, 995, 2991, 12 }, { -934, 996, 3008, 12 }, + { -944, 998, 3025, 12 }, { -953, 999, 3043, 12 }, { -961, 1000, 3061, 12 }, + { -969, 1001, 3079, 12 }, { -977, 1003, 3098, 12 }, { -984, 1004, 3117, 12 }, + { -990, 1005, 3136, 12 }, { -996, 1006, 3155, 12 }, { -1002, 1008, 3174, 12 }, + { -1007, 1009, 3193, 12 }, { -1011, 1010, 3213, 12 }, { -1015, 1011, 3233, 12 }, + { -1018, 1012, 3252, 12 }, { -1021, 1014, 3272, 12 }, { -1023, 1015, 3292, 12 }, + { -1024, 1016, 3312, 12 }, { -1025, 1017, 3332, 12 }, { -1026, 1018, 3352, 12 }, + { -1026, 1020, 3372, 12 }, { -1025, 1021, 3392, 12 }, { -1024, 1022, 3412, 12 }, + { -1022, 1023, 3432, 12 }, { -1020, 1024, 3452, 12 }, { -1017, 1025, 3472, 12 }, + { -1013, 1027, 3491, 12 }, { -1009, 1028, 3511, 12 }, { -1005, 1029, 3530, 12 }, + { -1000, 1030, 3550, 12 }, { -994, 1032, 3569, 12 }, { -989, 1033, 3588, 12 }, + { -982, 1034, 3607, 12 }, { -975, 1035, 3626, 12 }, { -968, 1036, 3645, 12 }, + { -960, 1038, 3663, 12 }, { -952, 1039, 3681, 12 }, { -943, 1040, 3699, 12 }, + { -934, 1042, 3717, 12 }, { -924, 1043, 3734, 12 }, { -913, 1045, 3751, 12 }, + { -902, 1046, 3768, 12 }, { -890, 1047, 3784, 12 }, { -878, 1048, 3800, 12 }, + { -865, 1049, 3815, 12 }, { -852, 1051, 3830, 12 }, { -838, 1052, 3844, 12 }, + { -823, 1053, 3858, 12 }, { -809, 1055, 3872, 12 }, { -793, 1056, 3885, 12 }, + { -778, 1057, 3897, 12 }, { -762, 1058, 3909, 12 }, { -745, 1059, 3921, 12 }, + { -729, 1061, 3932, 12 }, { -712, 1062, 3943, 12 }, { -695, 1063, 3954, 12 }, + { -678, 1064, 3964, 12 }, { -660, 1065, 3973, 12 }, { -642, 1066, 3982, 12 }, + { -624, 1067, 3990, 12 }, { -606, 1068, 3998, 12 }, { -587, 1069, 4005, 12 }, + { -568, 1071, 4012, 12 }, { -549, 1072, 4018, 12 }, { -530, 1073, 4023, 12 }, + { -510, 1074, 4028, 12 }, { -491, 1075, 4032, 12 }, { -471, 1076, 4035, 12 }, + { -451, 1077, 4039, 12 }, { -431, 1078, 4041, 12 }, { -411, 1080, 4043, 12 }, + { -391, 1081, 4044, 12 }, { -371, 1083, 4045, 12 }, { -351, 1084, 4046, 12 }, + { -331, 1086, 4046, 12 }, { -311, 1088, 4045, 12 }, { -291, 1090, 4044, 12 }, + { -271, 1091, 4042, 12 }, { -252, 1093, 4039, 12 }, { -232, 1095, 4036, 12 }, + { -212, 1096, 4032, 12 }, { -193, 1099, 4028, 12 }, { -173, 1101, 4023, 12 }, + { -154, 1103, 4018, 12 }, { -135, 1105, 4012, 12 }, { -116, 1107, 4005, 12 }, + { -97, 1109, 3998, 12 }, { -79, 1111, 3991, 12 }, { -60, 1113, 3983, 12 }, + { -42, 1115, 3975, 12 }, { -24, 1117, 3966, 12 }, { -6, 1120, 3957, 12 }, + { 10, 1122, 3947, 12 }, { 27, 1124, 3936, 12 }, { 44, 1127, 3926, 12 }, + { 61, 1129, 3914, 12 }, { 77, 1132, 3903, 12 }, { 93, 1135, 3891, 12 }, + { 108, 1137, 3878, 12 }, { 124, 1139, 3865, 12 }, { 138, 1141, 3851, 12 }, + { 152, 1143, 3837, 12 }, { 165, 1146, 3822, 12 }, { 178, 1148, 3807, 12 }, + { 191, 1151, 3791, 12 }, { 202, 1153, 3775, 12 }, { 213, 1154, 3758, 12 }, + { 224, 1156, 3741, 12 }, { 234, 1158, 3724, 12 }, { 244, 1160, 3706, 12 }, + { 253, 1162, 3688, 12 }, { 261, 1164, 3670, 12 }, { 269, 1166, 3652, 12 }, + { 277, 1169, 3633, 12 }, { 284, 1171, 3615, 12 }, { 292, 1174, 3596, 12 }, + { 298, 1176, 3577, 12 }, { 305, 1179, 3558, 12 }, { 311, 1182, 3539, 12 }, + { 317, 1184, 3520, 12 }, { 322, 1187, 3501, 12 }, { 327, 1190, 3481, 12 }, + { 332, 1192, 3462, 12 }, { 336, 1195, 3442, 12 }, { 340, 1198, 3423, 12 }, + { 343, 1200, 3403, 12 }, { 346, 1203, 3383, 12 }, { 349, 1206, 3363, 12 }, + { 351, 1209, 3344, 12 }, { 353, 1211, 3324, 12 }, { 355, 1214, 3304, 12 }, + { 356, 1216, 3284, 12 }, { 358, 1219, 3264, 12 }, { 359, 1221, 3244, 12 }, + { 361, 1224, 3224, 12 }, { 362, 1226, 3204, 12 }, { 363, 1229, 3184, 12 }, + { 364, 1231, 3164, 12 }, { 364, 1234, 3144, 12 }, { 365, 1236, 3124, 12 }, + { 366, 1238, 3104, 12 }, { 367, 1241, 3084, 12 }, { 367, 1243, 3064, 12 }, + { 368, 1245, 3044, 12 }, { 368, 1248, 3024, 12 }, { 368, 1250, 3004, 12 }, + { 369, 1253, 2984, 12 }, { 369, 1255, 2964, 12 }, { 369, 1258, 2944, 12 }, + { 370, 1260, 2924, 12 }, { 370, 1263, 2904, 12 }, { 370, 1265, 2884, 12 }, + { 370, 1268, 2864, 12 }, { 370, 1270, 2844, 12 }, { 370, 1273, 2824, 12 }, + { 370, 1275, 2804, 12 }, { 370, 1277, 2784, 12 }, { 370, 1280, 2764, 12 }, + { 370, 1282, 2744, 12 }, { 370, 1284, 2724, 12 }, { 370, 1287, 2704, 12 }, + { 370, 1289, 2684, 12 }, { 369, 1292, 2664, 12 }, { 369, 1294, 2644, 12 }, + { 369, 1296, 2624, 12 }, { 369, 1299, 2604, 12 }, { 368, 1301, 2584, 12 }, + { 368, 1303, 2564, 12 }, { 368, 1306, 2544, 1 }, { 367, 1308, 2524, 1 }, + { 367, 1310, 2504, 1 }, { 367, 1312, 2484, 1 }, { 366, 1314, 2464, 1 }, + { 366, 1317, 2444, 1 }, { 365, 1319, 2424, 1 }, { 365, 1321, 2404, 1 }, + { 364, 1323, 2384, 1 }, { 364, 1325, 2364, 1 }, { 363, 1327, 2344, 1 }, + { 363, 1329, 2324, 1 }, { 362, 1331, 2304, 1 }, { 361, 1333, 2284, 1 }, + { 361, 1335, 2264, 1 }, { 360, 1337, 2244, 1 }, { 359, 1339, 2224, 1 }, + { 359, 1341, 2204, 1 }, { 358, 1343, 2184, 1 }, { 357, 1345, 2164, 1 }, + { 356, 1347, 2144, 1 }, { 355, 1349, 2124, 1 }, { 354, 1351, 2104, 1 }, + { 353, 1353, 2084, 1 }, { 352, 1355, 2064, 1 }, { 351, 1357, 2044, 1 }, + { 350, 1359, 2024, 1 }, { 349, 1360, 2004, 1 }, { 348, 1362, 1984, 1 }, + { 347, 1364, 1964, 1 }, { 345, 1365, 1944, 1 }, { 344, 1367, 1924, 1 }, + { 342, 1369, 1904, 1 }, { 341, 1371, 1884, 1 }, { 339, 1373, 1864, 1 }, + { 338, 1374, 1844, 1 }, { 336, 1376, 1824, 1 }, { 334, 1378, 1804, 1 }, + { 331, 1379, 1784, 1 }, { 329, 1381, 1764, 1 }, { 326, 1382, 1745, 1 }, + { 323, 1384, 1725, 1 }, { 320, 1386, 1705, 1 }, { 317, 1387, 1685, 1 }, + { 313, 1389, 1666, 1 }, { 310, 1391, 1646, 1 }, { 306, 1393, 1626, 1 }, + { 301, 1395, 1607, 1 }, { 297, 1397, 1587, 1 }, { 292, 1399, 1568, 1 }, + { 287, 1402, 1549, 1 }, { 282, 1404, 1529, 1 }, { 276, 1406, 1510, 1 }, + { 270, 1409, 1491, 1 }, { 264, 1411, 1472, 1 }, { 258, 1414, 1453, 1 }, + { 252, 1416, 1434, 1 }, { 245, 1419, 1415, 1 }, { 239, 1422, 1396, 1 }, + { 233, 1425, 1377, 1 }, { 227, 1428, 1358, 1 }, { 220, 1430, 1339, 1 }, + { 214, 1433, 1320, 1 }, { 208, 1435, 1301, 1 }, { 201, 1438, 1282, 1 }, + { 195, 1440, 1263, 1 }, { 188, 1442, 1244, 1 }, { 182, 1445, 1225, 1 }, + { 175, 1447, 1206, 1 }, { 168, 1449, 1187, 1 }, { 162, 1451, 1168, 1 }, + { 156, 1454, 1149, 1 }, { 149, 1456, 1130, 1 }, { 144, 1459, 1111, 1 }, + { 138, 1461, 1092, 1 }, { 132, 1463, 1073, 1 }, { 127, 1466, 1054, 1 }, + { 122, 1468, 1034, 1 }, { 117, 1470, 1015, 1 }, { 112, 1472, 995, 1 }, + { 107, 1473, 976, 1 }, { 102, 1475, 957, 1 }, { 98, 1477, 937, 1 }, + { 93, 1478, 918, 1 }, { 89, 1480, 898, 1 }, { 85, 1482, 878, 1 }, + { 81, 1483, 859, 1 }, { 77, 1485, 839, 1 }, { 74, 1486, 819, 1 }, + { 70, 1487, 800, 1 }, { 66, 1489, 780, 1 }, { 63, 1490, 760, 1 }, + { 59, 1491, 741, 1 }, { 56, 1492, 721, 1 }, { 53, 1494, 701, 1 }, + { 50, 1495, 681, 1 }, { 47, 1496, 662, 1 }, { 44, 1497, 642, 1 }, + { 41, 1499, 622, 1 }, { 39, 1499, 602, 1 }, { 36, 1500, 582, 1 }, + { 34, 1501, 562, 1 }, { 31, 1501, 543, 1 }, { 29, 1502, 523, 1 }, + { 28, 1503, 503, 1 }, { 26, 1503, 483, 1 }, { 24, 1504, 463, 1 }, + { 23, 1504, 443, 1 }, { 22, 1505, 423, 1 }, { 20, 1505, 403, 1 }, + { 19, 1506, 383, 1 }, { 18, 1506, 363, 1 }, { 17, 1507, 343, 1 }, + { 16, 1508, 323, 1 }, { 15, 1508, 303, 1 }, { 14, 1508, 283, 1 }, + { 13, 1508, 263, 1 }, { 12, 1508, 243, 1 }, { 11, 1508, 223, 1 }, + { 10, 1508, 203, 1 }, { 9, 1508, 183, 1 }, { 9, 1508, 163, 1 }, + { 8, 1509, 143, 1 }, { 7, 1509, 123, 1 }, { 7, 1509, 103, 1 }, + { 6, 1509, 83, 1 }, { 6, 1509, 63, 1 }, { 5, 1509, 43, 1 }, + { 5, 1509, 23, 1 }, { 5, 1509, 3, 1 }, { -32768, -32768, -32768, 0 }, diff --git a/courses/rainbow_road/d_course_rainbow_road_unknown_path.inc.c b/courses/rainbow_road/d_course_rainbow_road_unknown_path.inc.c new file mode 100644 index 0000000000..ab49f0fd1d --- /dev/null +++ b/courses/rainbow_road/d_course_rainbow_road_unknown_path.inc.c @@ -0,0 +1,26 @@ + { 6, 0, 3, 0 }, { 6, 0, -25, 0 }, { 0, 0, -514, 0 }, { 1, 0, -1537, 0 }, + { -3, 0, -2579, 0 }, { -3, 0, -3696, 0 }, { 1, 0, -4448, 0 }, { 30, 0, -4782, 0 }, + { 113, 0, -5064, 0 }, { 331, 0, -5290, 0 }, { 610, 0, -5390, 0 }, { 915, 0, -5345, 0 }, + { 1149, 0, -5158, 0 }, { 1287, 0, -4862, 0 }, { 1271, 0, -4526, 0 }, { 1117, 0, -4214, 0 }, + { 810, 0, -3880, 0 }, { -132, 0, -3352, 0 }, { -544, 0, -3140, 0 }, { -823, 0, -2922, 0 }, + { -980, 0, -2716, 0 }, { -1050, 0, -2539, 0 }, { -1092, 0, -2350, 0 }, { -1127, 0, -2143, 0 }, + { -1194, 0, -1806, 0 }, { -1332, 0, -1421, 0 }, { -1537, 0, -1074, 0 }, { -1675, 0, -715, 0 }, + { -1685, 0, -365, 0 }, { -1637, 0, -240, 0 }, { -1515, 0, -92, 0 }, { -1345, 0, 1, 0 }, + { -1111, 0, 13, 0 }, { -909, 0, -83, 0 }, { -771, 0, -256, 0 }, { -716, 0, -467, 0 }, + { -768, 0, -692, 0 }, { -886, 0, -839, 0 }, { -1072, 0, -929, 0 }, { -1303, 0, -942, 0 }, + { -1492, 0, -859, 0 }, { -1643, 0, -679, 0 }, { -1685, 0, -567, 0 }, { -1704, 0, -147, 0 }, + { -1703, 0, 434, 0 }, { -1715, 0, 643, 0 }, { -1763, 0, 861, 0 }, { -1890, 0, 1040, 0 }, + { -2223, 0, 1351, 0 }, { -2928, 0, 1854, 0 }, { -3246, 0, 2085, 0 }, { -3361, 0, 2245, 0 }, + { -3400, 0, 2415, 0 }, { -3374, 0, 2594, 0 }, { -3284, 0, 2757, 0 }, { -3108, 0, 2886, 0 }, + { -2893, 0, 2921, 0 }, { -2700, 0, 2869, 0 }, { -2466, 0, 2716, 0 }, { -1921, 0, 2318, 0 }, + { -1389, 0, 1994, 0 }, { -1129, 0, 1926, 0 }, { -857, 0, 1930, 0 }, { 154, 0, 1923, 0 }, + { 1180, 0, 1927, 0 }, { 1570, 0, 1992, 0 }, { 1836, 0, 2137, 0 }, { 2029, 0, 2396, 0 }, + { 2135, 0, 2736, 0 }, { 2079, 0, 3132, 0 }, { 1813, 0, 3443, 0 }, { 1495, 0, 3559, 0 }, + { 1181, 0, 3552, 0 }, { 895, 0, 3433, 0 }, { 642, 0, 3206, 0 }, { 334, 0, 2914, 0 }, + { 84, 0, 2764, 0 }, { -176, 0, 2690, 0 }, { -490, 0, 2684, 0 }, { -705, 0, 2774, 0 }, + { -898, 0, 2931, 0 }, { -1010, 0, 3159, 0 }, { -1036, 0, 3422, 0 }, { -962, 0, 3689, 0 }, + { -821, 0, 3878, 0 }, { -577, 0, 4026, 0 }, { -278, 0, 4058, 0 }, { -6, 0, 3971, 0 }, + { 206, 0, 3801, 0 }, { 331, 0, 3510, 0 }, { 366, 0, 3227, 0 }, { 373, 0, 2714, 0 }, + { 357, 0, 2070, 0 }, { 322, 0, 1653, 0 }, { 223, 0, 1342, 0 }, { 114, 0, 1031, 0 }, + { 37, 0, 624, 0 }, { 15, 0, 331, 0 }, { 5, 0, 40, 0 }, { 373, 0, -3598, 0 }, + { -32768, 0, 0, 0 }, diff --git a/courses/royal_raceway/course_data.c b/courses/royal_raceway/course_data.c index 53e2c925c2..985c722bf5 100644 --- a/courses/royal_raceway/course_data.c +++ b/courses/royal_raceway/course_data.c @@ -26,7 +26,9 @@ Gfx d_course_royal_raceway_dl_0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_8D48), gsSPDisplayList(d_course_royal_raceway_packed_dl_8CD8), gsSPDisplayList(d_course_royal_raceway_packed_dl_8C70), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_1860), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_17F8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1FE8), gsSPDisplayList(d_course_royal_raceway_packed_dl_20A0), @@ -60,9 +62,13 @@ Gfx d_course_royal_raceway_dl_0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_6D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_6D98), gsSPDisplayList(d_course_royal_raceway_packed_dl_6E20), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_6EB8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_6F28), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), gsSPDisplayList(d_course_royal_raceway_packed_dl_5298), @@ -79,7 +85,9 @@ Gfx d_course_royal_raceway_dl_0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_56A0), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), @@ -90,7 +98,9 @@ Gfx d_course_royal_raceway_dl_0[] = { Gfx d_course_royal_raceway_dl_258[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_1720), gsSPDisplayList(d_course_royal_raceway_packed_dl_16B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8CD8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8C70), gsSPDisplayList(d_course_royal_raceway_packed_dl_1860), gsSPDisplayList(d_course_royal_raceway_packed_dl_17F8), @@ -111,7 +121,9 @@ Gfx d_course_royal_raceway_dl_258[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), gsSPDisplayList(d_course_royal_raceway_packed_dl_5298), gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8400), gsSPDisplayList(d_course_royal_raceway_packed_dl_56A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), @@ -124,27 +136,53 @@ Gfx d_course_royal_raceway_dl_258[] = { }; Gfx d_course_royal_raceway_dl_360[] = { - gsSPDisplayList(d_course_royal_raceway_packed_dl_930), gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), + gsSPDisplayList(d_course_royal_raceway_packed_dl_930), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_1720), gsSPDisplayList(d_course_royal_raceway_packed_dl_16B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_17F8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1FE8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_20A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2110), - gsSPDisplayList(d_course_royal_raceway_packed_dl_21B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_27E0), + gsSPDisplayList(d_course_royal_raceway_packed_dl_20A0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_2110), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_21B8), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_27E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), - gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), gsSPDisplayList(d_course_royal_raceway_packed_dl_3440), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_3440), gsSPDisplayList(d_course_royal_raceway_packed_dl_33D8), gsSPDisplayList(d_course_royal_raceway_packed_dl_3368), gsSPDisplayList(d_course_royal_raceway_packed_dl_4078), gsSPDisplayList(d_course_royal_raceway_packed_dl_4118), - gsSPDisplayList(d_course_royal_raceway_packed_dl_41A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4298), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_41A8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_4298), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), gsSPDisplayList(d_course_royal_raceway_packed_dl_5298), gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), - gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5A10), + gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_5A10), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), gsSPDisplayList(d_course_royal_raceway_packed_dl_37E8), gsSPEndDisplayList(), }; Gfx d_course_royal_raceway_dl_470[] = { - gsSPDisplayList(d_course_royal_raceway_packed_dl_930), gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_930), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_AB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_B78), gsSPDisplayList(d_course_royal_raceway_packed_dl_1720), gsSPDisplayList(d_course_royal_raceway_packed_dl_16B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_89F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_8900), @@ -159,7 +197,10 @@ Gfx d_course_royal_raceway_dl_470[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_9630), gsSPDisplayList(d_course_royal_raceway_packed_dl_96A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_9E18), gsSPDisplayList(d_course_royal_raceway_packed_dl_9E98), gsSPDisplayList(d_course_royal_raceway_packed_dl_2758), gsSPDisplayList(d_course_royal_raceway_packed_dl_27E0), - gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), + gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_2F70), gsSPDisplayList(d_course_royal_raceway_packed_dl_3190), gsSPDisplayList(d_course_royal_raceway_packed_dl_3440), gsSPDisplayList(d_course_royal_raceway_packed_dl_33D8), @@ -173,8 +214,16 @@ Gfx d_course_royal_raceway_dl_470[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_6F28), gsSPDisplayList(d_course_royal_raceway_packed_dl_7500), gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), gsSPDisplayList(d_course_royal_raceway_packed_dl_5298), - gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), - gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), @@ -192,7 +241,10 @@ Gfx d_course_royal_raceway_dl_6D0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_8900), gsSPDisplayList(d_course_royal_raceway_packed_dl_8888), gsSPDisplayList(d_course_royal_raceway_packed_dl_8810), gsSPDisplayList(d_course_royal_raceway_packed_dl_8B28), gsSPDisplayList(d_course_royal_raceway_packed_dl_8E30), gsSPDisplayList(d_course_royal_raceway_packed_dl_8D48), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8CD8), gsSPDisplayList(d_course_royal_raceway_packed_dl_8C70), + gsSPDisplayList(d_course_royal_raceway_packed_dl_8CD8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8C70), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_1FE8), gsSPDisplayList(d_course_royal_raceway_packed_dl_20A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2110), gsSPDisplayList(d_course_royal_raceway_packed_dl_21B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_2230), gsSPDisplayList(d_course_royal_raceway_packed_dl_22C0), @@ -215,7 +267,10 @@ Gfx d_course_royal_raceway_dl_6D0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), + gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), gsSPDisplayList(d_course_royal_raceway_packed_dl_37E8), gsSPEndDisplayList(), }; @@ -270,7 +325,9 @@ Gfx d_course_royal_raceway_dl_8E0[] = { Gfx d_course_royal_raceway_dl_A48[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_930), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_1720), gsSPDisplayList(d_course_royal_raceway_packed_dl_16B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1640), @@ -286,7 +343,9 @@ Gfx d_course_royal_raceway_dl_A48[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4078), gsSPDisplayList(d_course_royal_raceway_packed_dl_4118), gsSPDisplayList(d_course_royal_raceway_packed_dl_41A8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4298), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), gsSPDisplayList(d_course_royal_raceway_packed_dl_5298), gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), @@ -294,7 +353,9 @@ Gfx d_course_royal_raceway_dl_A48[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5A10), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), @@ -319,7 +380,10 @@ Gfx d_course_royal_raceway_dl_B40[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_96A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_9E18), gsSPDisplayList(d_course_royal_raceway_packed_dl_9E98), gsSPDisplayList(d_course_royal_raceway_packed_dl_9F10), gsSPDisplayList(d_course_royal_raceway_packed_dl_27E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), - gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_2F70), gsSPDisplayList(d_course_royal_raceway_packed_dl_3190), gsSPDisplayList(d_course_royal_raceway_packed_dl_3440), gsSPDisplayList(d_course_royal_raceway_packed_dl_33D8), gsSPDisplayList(d_course_royal_raceway_packed_dl_3368), @@ -332,7 +396,12 @@ Gfx d_course_royal_raceway_dl_B40[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_6E20), gsSPDisplayList(d_course_royal_raceway_packed_dl_6F28), gsSPDisplayList(d_course_royal_raceway_packed_dl_7500), gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), - gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), @@ -349,7 +418,10 @@ Gfx d_course_royal_raceway_dl_DA0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_16B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1640), gsSPDisplayList(d_course_royal_raceway_packed_dl_15D8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1548), gsSPDisplayList(d_course_royal_raceway_packed_dl_14C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_8810), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8E30), gsSPDisplayList(d_course_royal_raceway_packed_dl_8D48), + gsSPDisplayList(d_course_royal_raceway_packed_dl_8E30), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8D48), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_20A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2110), gsSPDisplayList(d_course_royal_raceway_packed_dl_21B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_2230), gsSPDisplayList(d_course_royal_raceway_packed_dl_22C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_9918), @@ -377,12 +449,18 @@ Gfx d_course_royal_raceway_dl_F40[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_AB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_B78), gsSPDisplayList(d_course_royal_raceway_packed_dl_1720), gsSPDisplayList(d_course_royal_raceway_packed_dl_16B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1640), gsSPDisplayList(d_course_royal_raceway_packed_dl_15D8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_14C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_8810), + gsSPDisplayList(d_course_royal_raceway_packed_dl_14C8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8810), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8D48), gsSPDisplayList(d_course_royal_raceway_packed_dl_8CD8), gsSPDisplayList(d_course_royal_raceway_packed_dl_8C70), gsSPDisplayList(d_course_royal_raceway_packed_dl_8C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_8B98), gsSPDisplayList(d_course_royal_raceway_packed_dl_1FE8), gsSPDisplayList(d_course_royal_raceway_packed_dl_20A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2110), - gsSPDisplayList(d_course_royal_raceway_packed_dl_21B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_9918), + gsSPDisplayList(d_course_royal_raceway_packed_dl_21B8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_9918), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_9630), gsSPDisplayList(d_course_royal_raceway_packed_dl_96A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_9FF0), gsSPDisplayList(d_course_royal_raceway_packed_dl_9E18), gsSPDisplayList(d_course_royal_raceway_packed_dl_9E98), gsSPDisplayList(d_course_royal_raceway_packed_dl_9F10), @@ -393,17 +471,29 @@ Gfx d_course_royal_raceway_dl_F40[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_3268), gsSPDisplayList(d_course_royal_raceway_packed_dl_6A10), gsSPDisplayList(d_course_royal_raceway_packed_dl_70B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4118), gsSPDisplayList(d_course_royal_raceway_packed_dl_41A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4298), - gsSPDisplayList(d_course_royal_raceway_packed_dl_3B70), gsSPDisplayList(d_course_royal_raceway_packed_dl_6D98), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_3B70), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_6D98), gsSPDisplayList(d_course_royal_raceway_packed_dl_6E20), gsSPDisplayList(d_course_royal_raceway_packed_dl_7500), gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), - gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), - gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), + gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_8618), gsSPDisplayList(d_course_royal_raceway_packed_dl_8400), gsSPDisplayList(d_course_royal_raceway_packed_dl_80C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), - gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), + gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), gsSPDisplayList(d_course_royal_raceway_packed_dl_37E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_6328), @@ -413,23 +503,51 @@ Gfx d_course_royal_raceway_dl_F40[] = { Gfx d_course_royal_raceway_dl_1180[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_930), gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_1720), gsSPDisplayList(d_course_royal_raceway_packed_dl_16B8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_1720), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_16B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1640), gsSPDisplayList(d_course_royal_raceway_packed_dl_15D8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8B98), gsSPDisplayList(d_course_royal_raceway_packed_dl_1FE8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8B98), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_1FE8), gsSPDisplayList(d_course_royal_raceway_packed_dl_20A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2110), - gsSPDisplayList(d_course_royal_raceway_packed_dl_21B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_9F10), - gsSPDisplayList(d_course_royal_raceway_packed_dl_9F80), gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), + gsSPDisplayList(d_course_royal_raceway_packed_dl_21B8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_9F10), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_9F80), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), - gsSPDisplayList(d_course_royal_raceway_packed_dl_33D8), gsSPDisplayList(d_course_royal_raceway_packed_dl_3368), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_33D8), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_3368), gsSPDisplayList(d_course_royal_raceway_packed_dl_32F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_3268), gsSPDisplayList(d_course_royal_raceway_packed_dl_70B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4118), gsSPDisplayList(d_course_royal_raceway_packed_dl_41A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4298), - gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), - gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), gsSPDisplayList(d_course_royal_raceway_packed_dl_37E8), gsSPEndDisplayList(), }; @@ -489,9 +607,15 @@ Gfx d_course_royal_raceway_dl_12C0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), @@ -505,10 +629,14 @@ Gfx d_course_royal_raceway_dl_12C0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_80C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_6328), gsSPDisplayList(d_course_royal_raceway_packed_dl_1438), gsSPDisplayList(d_course_royal_raceway_packed_dl_9438), @@ -562,24 +690,39 @@ Gfx d_course_royal_raceway_dl_1610[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_9E98), gsSPDisplayList(d_course_royal_raceway_packed_dl_9F10), gsSPDisplayList(d_course_royal_raceway_packed_dl_9F80), gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), - gsSPDisplayList(d_course_royal_raceway_packed_dl_2F70), gsSPDisplayList(d_course_royal_raceway_packed_dl_3190), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_2F70), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_3190), gsSPDisplayList(d_course_royal_raceway_packed_dl_69B0), gsSPDisplayList(d_course_royal_raceway_packed_dl_6950), gsSPDisplayList(d_course_royal_raceway_packed_dl_68E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_32F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_3268), gsSPDisplayList(d_course_royal_raceway_packed_dl_6A10), gsSPDisplayList(d_course_royal_raceway_packed_dl_70B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4118), gsSPDisplayList(d_course_royal_raceway_packed_dl_41A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4298), - gsSPDisplayList(d_course_royal_raceway_packed_dl_4350), gsSPDisplayList(d_course_royal_raceway_packed_dl_3FA8), + gsSPDisplayList(d_course_royal_raceway_packed_dl_4350), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_3FA8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_3B70), gsSPDisplayList(d_course_royal_raceway_packed_dl_3C18), gsSPDisplayList(d_course_royal_raceway_packed_dl_6E20), gsSPDisplayList(d_course_royal_raceway_packed_dl_7500), gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), - gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), - gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), + gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_8618), gsSPDisplayList(d_course_royal_raceway_packed_dl_80C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), gsSPDisplayList(d_course_royal_raceway_packed_dl_37E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_94B0), gsSPEndDisplayList(), @@ -587,16 +730,28 @@ Gfx d_course_royal_raceway_dl_1610[] = { Gfx d_course_royal_raceway_dl_1850[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_930), gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_B78), gsSPDisplayList(d_course_royal_raceway_packed_dl_8AC0), + gsSPDisplayList(d_course_royal_raceway_packed_dl_B78), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8AC0), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_16B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1640), gsSPDisplayList(d_course_royal_raceway_packed_dl_15D8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1548), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_8B98), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8C00), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_8B98), gsSPDisplayList(d_course_royal_raceway_packed_dl_9988), gsSPDisplayList(d_course_royal_raceway_packed_dl_20A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2110), gsSPDisplayList(d_course_royal_raceway_packed_dl_21B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_2230), gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), - gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_69B0), - gsSPDisplayList(d_course_royal_raceway_packed_dl_6950), gsSPDisplayList(d_course_royal_raceway_packed_dl_68E8), + gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_69B0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_6950), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_68E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_32F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_3268), gsSPDisplayList(d_course_royal_raceway_packed_dl_70B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4118), gsSPDisplayList(d_course_royal_raceway_packed_dl_41A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4298), @@ -615,8 +770,12 @@ Gfx d_course_royal_raceway_dl_19B0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_AB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_B78), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8AC0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_16B8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_1640), gsSPDisplayList(d_course_royal_raceway_packed_dl_15D8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1548), @@ -648,7 +807,9 @@ Gfx d_course_royal_raceway_dl_19B0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_32F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_3268), gsSPDisplayList(d_course_royal_raceway_packed_dl_6A10), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_70B8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_41A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4298), gsSPDisplayList(d_course_royal_raceway_packed_dl_4350), @@ -659,8 +820,12 @@ Gfx d_course_royal_raceway_dl_19B0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_7500), gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), @@ -671,7 +836,9 @@ Gfx d_course_royal_raceway_dl_19B0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_80C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_94B0), @@ -765,7 +932,9 @@ Gfx d_course_royal_raceway_dl_1C40[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_8618), gsSPDisplayList(d_course_royal_raceway_packed_dl_80C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), @@ -779,7 +948,10 @@ Gfx d_course_royal_raceway_dl_1E88[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_B78), gsSPDisplayList(d_course_royal_raceway_packed_dl_8AC0), gsSPDisplayList(d_course_royal_raceway_packed_dl_8A60), gsSPDisplayList(d_course_royal_raceway_packed_dl_89F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_15D8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1548), - gsSPDisplayList(d_course_royal_raceway_packed_dl_14C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_8C00), + gsSPDisplayList(d_course_royal_raceway_packed_dl_14C8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8C00), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8B98), gsSPDisplayList(d_course_royal_raceway_packed_dl_9988), gsSPDisplayList(d_course_royal_raceway_packed_dl_9A38), gsSPDisplayList(d_course_royal_raceway_packed_dl_2110), gsSPDisplayList(d_course_royal_raceway_packed_dl_21B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_2230), @@ -792,12 +964,21 @@ Gfx d_course_royal_raceway_dl_1E88[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_3268), gsSPDisplayList(d_course_royal_raceway_packed_dl_70B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_7138), gsSPDisplayList(d_course_royal_raceway_packed_dl_41A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4298), gsSPDisplayList(d_course_royal_raceway_packed_dl_4350), - gsSPDisplayList(d_course_royal_raceway_packed_dl_3FA8), gsSPDisplayList(d_course_royal_raceway_packed_dl_3C18), - gsSPDisplayList(d_course_royal_raceway_packed_dl_73E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), + gsSPDisplayList(d_course_royal_raceway_packed_dl_3FA8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_3C18), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_73E0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), gsSPDisplayList(d_course_royal_raceway_packed_dl_37E8), gsSPEndDisplayList(), }; @@ -807,7 +988,10 @@ Gfx d_course_royal_raceway_dl_2018[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_15D8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1548), gsSPDisplayList(d_course_royal_raceway_packed_dl_14C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_8D48), gsSPDisplayList(d_course_royal_raceway_packed_dl_8CD8), gsSPDisplayList(d_course_royal_raceway_packed_dl_8C70), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_8B98), + gsSPDisplayList(d_course_royal_raceway_packed_dl_8C00), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8B98), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_21B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_2230), gsSPDisplayList(d_course_royal_raceway_packed_dl_22C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_1F58), gsSPDisplayList(d_course_royal_raceway_packed_dl_1B98), gsSPDisplayList(d_course_royal_raceway_packed_dl_96A8), @@ -821,13 +1005,22 @@ Gfx d_course_royal_raceway_dl_2018[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_3FA8), gsSPDisplayList(d_course_royal_raceway_packed_dl_3B70), gsSPDisplayList(d_course_royal_raceway_packed_dl_3C18), gsSPDisplayList(d_course_royal_raceway_packed_dl_6E20), gsSPDisplayList(d_course_royal_raceway_packed_dl_7500), gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), - gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_8618), gsSPDisplayList(d_course_royal_raceway_packed_dl_80C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), +#endif + gsSPEndDisplayList(), }; Gfx d_course_royal_raceway_dl_21A8[] = { @@ -835,7 +1028,9 @@ Gfx d_course_royal_raceway_dl_21A8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_2230), gsSPDisplayList(d_course_royal_raceway_packed_dl_22C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_1F58), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_2F70), gsSPDisplayList(d_course_royal_raceway_packed_dl_3268), @@ -901,13 +1096,17 @@ Gfx d_course_royal_raceway_dl_2210[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_8618), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), @@ -967,8 +1166,12 @@ Gfx d_course_royal_raceway_dl_2428[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_7FD0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), @@ -977,35 +1180,71 @@ Gfx d_course_royal_raceway_dl_2428[] = { }; Gfx d_course_royal_raceway_dl_25F0[] = { - gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_AB8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_AB8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_1548), gsSPDisplayList(d_course_royal_raceway_packed_dl_14C8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8CD8), gsSPDisplayList(d_course_royal_raceway_packed_dl_8C00), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8B98), gsSPDisplayList(d_course_royal_raceway_packed_dl_2230), + gsSPDisplayList(d_course_royal_raceway_packed_dl_8CD8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8C00), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8B98), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_2230), gsSPDisplayList(d_course_royal_raceway_packed_dl_22C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_1F58), gsSPDisplayList(d_course_royal_raceway_packed_dl_1B98), gsSPDisplayList(d_course_royal_raceway_packed_dl_2F70), - gsSPDisplayList(d_course_royal_raceway_packed_dl_3190), gsSPDisplayList(d_course_royal_raceway_packed_dl_69B0), - gsSPDisplayList(d_course_royal_raceway_packed_dl_6950), gsSPDisplayList(d_course_royal_raceway_packed_dl_3268), + gsSPDisplayList(d_course_royal_raceway_packed_dl_3190), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_69B0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_6950), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_3268), gsSPDisplayList(d_course_royal_raceway_packed_dl_4350), gsSPDisplayList(d_course_royal_raceway_packed_dl_3FA8), gsSPDisplayList(d_course_royal_raceway_packed_dl_3B70), gsSPDisplayList(d_course_royal_raceway_packed_dl_3C18), - gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_8618), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), +#endif + gsSPEndDisplayList(), }; Gfx d_course_royal_raceway_dl_26F0[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_930), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_15D8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1548), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_9A98), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_9B08), gsSPDisplayList(d_course_royal_raceway_packed_dl_2230), gsSPDisplayList(d_course_royal_raceway_packed_dl_22C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_1F58), gsSPDisplayList(d_course_royal_raceway_packed_dl_1B98), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_2F70), @@ -1016,9 +1255,15 @@ Gfx d_course_royal_raceway_dl_26F0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_3FA8), gsSPDisplayList(d_course_royal_raceway_packed_dl_3B70), gsSPDisplayList(d_course_royal_raceway_packed_dl_3C18), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7FD0), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), gsSPEndDisplayList(), }; @@ -1042,7 +1287,9 @@ Gfx d_course_royal_raceway_dl_27B8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_9A38), gsSPDisplayList(d_course_royal_raceway_packed_dl_9A98), gsSPDisplayList(d_course_royal_raceway_packed_dl_9B08), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_9B68), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_22C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_1F58), gsSPDisplayList(d_course_royal_raceway_packed_dl_1B98), @@ -1075,7 +1322,9 @@ Gfx d_course_royal_raceway_dl_27B8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7FD0), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), @@ -1141,7 +1390,9 @@ Gfx d_course_royal_raceway_dl_29A0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_7FD0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), @@ -1153,23 +1404,33 @@ Gfx d_course_royal_raceway_dl_2B78[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_1548), gsSPDisplayList(d_course_royal_raceway_packed_dl_14C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_8CD8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8C00), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_22C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_1F58), gsSPDisplayList(d_course_royal_raceway_packed_dl_1B98), gsSPDisplayList(d_course_royal_raceway_packed_dl_2F70), gsSPDisplayList(d_course_royal_raceway_packed_dl_3190), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_69B0), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_3268), gsSPDisplayList(d_course_royal_raceway_packed_dl_3FA8), gsSPDisplayList(d_course_royal_raceway_packed_dl_3B70), gsSPDisplayList(d_course_royal_raceway_packed_dl_3C18), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), +#endif gsSPEndDisplayList(), }; @@ -1252,7 +1513,9 @@ Gfx d_course_royal_raceway_dl_2FE0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_1548), gsSPDisplayList(d_course_royal_raceway_packed_dl_14C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1450), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_1940), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_8B98), gsSPDisplayList(d_course_royal_raceway_packed_dl_9988), @@ -1300,7 +1563,9 @@ Gfx d_course_royal_raceway_dl_2FE0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), @@ -1321,7 +1586,9 @@ Gfx d_course_royal_raceway_dl_31F8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_1940), gsSPDisplayList(d_course_royal_raceway_packed_dl_8C70), gsSPDisplayList(d_course_royal_raceway_packed_dl_8C00), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8B98), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_9B68), gsSPDisplayList(d_course_royal_raceway_packed_dl_22C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_1F58), @@ -1329,7 +1596,9 @@ Gfx d_course_royal_raceway_dl_31F8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_1C48), gsSPDisplayList(d_course_royal_raceway_packed_dl_9FF0), gsSPDisplayList(d_course_royal_raceway_packed_dl_9E98), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_9F10), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_2F70), @@ -1350,7 +1619,9 @@ Gfx d_course_royal_raceway_dl_31F8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_6F28), gsSPDisplayList(d_course_royal_raceway_packed_dl_7500), gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), @@ -1362,7 +1633,9 @@ Gfx d_course_royal_raceway_dl_31F8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_9520), gsSPEndDisplayList(), }; @@ -1402,7 +1675,9 @@ Gfx d_course_royal_raceway_dl_33B0[] = { Gfx d_course_royal_raceway_dl_3580[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_AB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_B78), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8AC0), gsSPDisplayList(d_course_royal_raceway_packed_dl_8A60), gsSPDisplayList(d_course_royal_raceway_packed_dl_89F0), @@ -1424,7 +1699,9 @@ Gfx d_course_royal_raceway_dl_3580[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_9F10), gsSPDisplayList(d_course_royal_raceway_packed_dl_9F80), gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_3190), gsSPDisplayList(d_course_royal_raceway_packed_dl_69B0), gsSPDisplayList(d_course_royal_raceway_packed_dl_6950), @@ -1490,7 +1767,9 @@ Gfx d_course_royal_raceway_dl_3748[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2F70), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_3190), gsSPDisplayList(d_course_royal_raceway_packed_dl_69B0), gsSPDisplayList(d_course_royal_raceway_packed_dl_6950), @@ -1503,7 +1782,9 @@ Gfx d_course_royal_raceway_dl_3748[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_41A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4298), gsSPDisplayList(d_course_royal_raceway_packed_dl_4350), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7020), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_3C18), gsSPDisplayList(d_course_royal_raceway_packed_dl_3CF0), gsSPDisplayList(d_course_royal_raceway_packed_dl_3DC0), @@ -1574,7 +1855,9 @@ Gfx d_course_royal_raceway_dl_3960[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_9520), gsSPEndDisplayList(), }; @@ -1780,7 +2063,9 @@ Gfx d_course_royal_raceway_dl_41D8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5DC8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), @@ -1824,7 +2109,9 @@ Gfx d_course_royal_raceway_dl_4438[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_3F18), gsSPDisplayList(d_course_royal_raceway_packed_dl_4400), gsSPDisplayList(d_course_royal_raceway_packed_dl_7780), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5520), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_7AE8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), @@ -1843,7 +2130,10 @@ Gfx d_course_royal_raceway_dl_44C0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_3E50), gsSPDisplayList(d_course_royal_raceway_packed_dl_3F18), gsSPDisplayList(d_course_royal_raceway_packed_dl_4400), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5520), - gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), @@ -1866,8 +2156,16 @@ Gfx d_course_royal_raceway_dl_45A0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_7AE8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_8580), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8618), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8580), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8618), +#endif + gsSPEndDisplayList(), }; Gfx d_course_royal_raceway_dl_46A0[] = { @@ -1910,10 +2208,16 @@ Gfx d_course_royal_raceway_dl_4800[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_3018), gsSPDisplayList(d_course_royal_raceway_packed_dl_6EB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_3E50), gsSPDisplayList(d_course_royal_raceway_packed_dl_3F18), gsSPDisplayList(d_course_royal_raceway_packed_dl_4400), gsSPDisplayList(d_course_royal_raceway_packed_dl_4A08), - gsSPDisplayList(d_course_royal_raceway_packed_dl_77E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_7868), + gsSPDisplayList(d_course_royal_raceway_packed_dl_77E8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7868), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5520), - gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), @@ -2004,7 +2308,9 @@ Gfx d_course_royal_raceway_dl_4AE0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#endif gsSPEndDisplayList(), }; @@ -2029,26 +2335,42 @@ Gfx d_course_royal_raceway_dl_4BA8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4400), gsSPDisplayList(d_course_royal_raceway_packed_dl_4A08), gsSPDisplayList(d_course_royal_raceway_packed_dl_4A80), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4B30), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_78E0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5520), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_4F20), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), gsSPDisplayList(d_course_royal_raceway_packed_dl_37E8), gsSPEndDisplayList(), @@ -2104,15 +2426,29 @@ Gfx d_course_royal_raceway_dl_4DF8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4F20), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), +#endif gsSPEndDisplayList(), }; @@ -2144,14 +2480,32 @@ Gfx d_course_royal_raceway_dl_4F80[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4400), gsSPDisplayList(d_course_royal_raceway_packed_dl_4A08), gsSPDisplayList(d_course_royal_raceway_packed_dl_4A80), gsSPDisplayList(d_course_royal_raceway_packed_dl_4B30), gsSPDisplayList(d_course_royal_raceway_packed_dl_78E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_7980), - gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5520), gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F20), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), - gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), + gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), gsSPDisplayList(d_course_royal_raceway_packed_dl_37E8), gsSPEndDisplayList(), @@ -2184,15 +2538,41 @@ Gfx d_course_royal_raceway_dl_51D0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_6F28), gsSPDisplayList(d_course_royal_raceway_packed_dl_6FB0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4400), gsSPDisplayList(d_course_royal_raceway_packed_dl_4A08), gsSPDisplayList(d_course_royal_raceway_packed_dl_4A80), gsSPDisplayList(d_course_royal_raceway_packed_dl_4B30), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F20), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), + gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), - gsSPDisplayList(d_course_royal_raceway_packed_dl_37E8), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), + gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_37E8), +#endif + gsSPEndDisplayList(), }; Gfx d_course_royal_raceway_dl_52F0[] = { @@ -2234,14 +2614,32 @@ Gfx d_course_royal_raceway_dl_53B8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_7360), gsSPDisplayList(d_course_royal_raceway_packed_dl_4A08), gsSPDisplayList(d_course_royal_raceway_packed_dl_4A80), gsSPDisplayList(d_course_royal_raceway_packed_dl_4B30), gsSPDisplayList(d_course_royal_raceway_packed_dl_4BC8), gsSPDisplayList(d_course_royal_raceway_packed_dl_7980), - gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5520), gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F20), - gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), + gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_37E8), gsSPEndDisplayList(), }; @@ -2285,14 +2683,28 @@ Gfx d_course_royal_raceway_dl_5598[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4F20), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_37E8), @@ -2351,10 +2763,22 @@ Gfx d_course_royal_raceway_dl_5758[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5520), gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_4F20), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), @@ -2389,8 +2813,18 @@ Gfx d_course_royal_raceway_dl_5900[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5520), gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F20), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), - gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), + gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_80C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), gsSPEndDisplayList(), @@ -2422,9 +2856,17 @@ Gfx d_course_royal_raceway_dl_5A40[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), +#endif gsSPEndDisplayList(), }; @@ -2465,10 +2907,18 @@ Gfx d_course_royal_raceway_dl_5B28[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5520), gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), @@ -2517,8 +2967,18 @@ Gfx d_course_royal_raceway_dl_5D08[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5520), gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), - gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_80C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), gsSPDisplayList(d_course_royal_raceway_packed_dl_A6A8), gsSPEndDisplayList(), @@ -2541,8 +3001,22 @@ Gfx d_course_royal_raceway_dl_5EB8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5520), gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), - gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), gsSPEndDisplayList(), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), +#endif + gsSPEndDisplayList(), }; Gfx d_course_royal_raceway_dl_5FD8[] = { @@ -2558,14 +3032,26 @@ Gfx d_course_royal_raceway_dl_5FD8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4CC8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4968), gsSPDisplayList(d_course_royal_raceway_packed_dl_44B0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5520), gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), - gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), + gsSPDisplayList(d_course_royal_raceway_packed_dl_5520), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_8618), gsSPDisplayList(d_course_royal_raceway_packed_dl_80C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_A6A8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_94B0), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_A6A8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_94B0), +#endif + gsSPEndDisplayList(), }; Gfx d_course_royal_raceway_dl_6118[] = { @@ -2632,9 +3118,21 @@ Gfx d_course_royal_raceway_dl_61B0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), @@ -2644,9 +3142,13 @@ Gfx d_course_royal_raceway_dl_61B0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_A6A8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_94B0), +#endif gsSPEndDisplayList(), }; @@ -2668,7 +3170,11 @@ Gfx d_course_royal_raceway_dl_6378[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_6808), gsSPDisplayList(d_course_royal_raceway_packed_dl_71A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_7278), gsSPDisplayList(d_course_royal_raceway_packed_dl_72E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_7020), gsSPDisplayList(d_course_royal_raceway_packed_dl_6D18), - gsSPDisplayList(d_course_royal_raceway_packed_dl_6D98), gsSPDisplayList(d_course_royal_raceway_packed_dl_7360), + gsSPDisplayList(d_course_royal_raceway_packed_dl_6D98), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_6F28), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_7360), gsSPDisplayList(d_course_royal_raceway_packed_dl_7780), gsSPDisplayList(d_course_royal_raceway_packed_dl_77E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_7868), gsSPDisplayList(d_course_royal_raceway_packed_dl_78E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4CC8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4968), @@ -2676,9 +3182,26 @@ Gfx d_course_royal_raceway_dl_6378[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5520), gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPEndDisplayList(), + gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), +#endif + gsSPEndDisplayList(), }; Gfx d_course_royal_raceway_dl_6538[] = { @@ -2689,7 +3212,9 @@ Gfx d_course_royal_raceway_dl_6538[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_B78), gsSPDisplayList(d_course_royal_raceway_packed_dl_8AC0), gsSPDisplayList(d_course_royal_raceway_packed_dl_8A60), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8900), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8888), gsSPDisplayList(d_course_royal_raceway_packed_dl_8810), gsSPDisplayList(d_course_royal_raceway_packed_dl_8D48), @@ -2700,7 +3225,9 @@ Gfx d_course_royal_raceway_dl_6538[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_9988), gsSPDisplayList(d_course_royal_raceway_packed_dl_9A38), gsSPDisplayList(d_course_royal_raceway_packed_dl_9A98), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_9918), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_9630), gsSPDisplayList(d_course_royal_raceway_packed_dl_96A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_2AC8), @@ -2725,7 +3252,9 @@ Gfx d_course_royal_raceway_dl_6538[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_7138), gsSPDisplayList(d_course_royal_raceway_packed_dl_71A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_7278), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_6D18), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_6D98), gsSPDisplayList(d_course_royal_raceway_packed_dl_6E20), gsSPDisplayList(d_course_royal_raceway_packed_dl_44B0), @@ -2737,8 +3266,12 @@ Gfx d_course_royal_raceway_dl_6538[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), @@ -2793,7 +3326,9 @@ Gfx d_course_royal_raceway_dl_6780[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), @@ -2861,6 +3396,9 @@ Gfx d_course_royal_raceway_dl_68C8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_6D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_6D98), gsSPDisplayList(d_course_royal_raceway_packed_dl_6E20), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_6F28), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_6FB0), gsSPDisplayList(d_course_royal_raceway_packed_dl_7360), gsSPDisplayList(d_course_royal_raceway_packed_dl_7780), @@ -2871,16 +3409,32 @@ Gfx d_course_royal_raceway_dl_68C8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), gsSPDisplayList(d_course_royal_raceway_packed_dl_75F8), gsSPDisplayList(d_course_royal_raceway_packed_dl_7680), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), @@ -2930,12 +3484,29 @@ Gfx d_course_royal_raceway_dl_6BC0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_77E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_7868), gsSPDisplayList(d_course_royal_raceway_packed_dl_78E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_7980), gsSPDisplayList(d_course_royal_raceway_packed_dl_4968), gsSPDisplayList(d_course_royal_raceway_packed_dl_44B0), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5520), gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), + gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_A6A8), gsSPEndDisplayList(), }; @@ -2967,11 +3538,21 @@ Gfx d_course_royal_raceway_dl_6E20[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_75F8), gsSPDisplayList(d_course_royal_raceway_packed_dl_7680), gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_5DC8), gsSPDisplayList(d_course_royal_raceway_packed_dl_80C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), - gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), + gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), gsSPDisplayList(d_course_royal_raceway_packed_dl_37E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_A6A8), @@ -3018,7 +3599,11 @@ Gfx d_course_royal_raceway_dl_70C0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_69B0), gsSPDisplayList(d_course_royal_raceway_packed_dl_6950), gsSPDisplayList(d_course_royal_raceway_packed_dl_68E8), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_6880), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_32F0), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_6808), gsSPDisplayList(d_course_royal_raceway_packed_dl_70B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_7138), @@ -3042,7 +3627,9 @@ Gfx d_course_royal_raceway_dl_70C0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), @@ -3056,7 +3643,9 @@ Gfx d_course_royal_raceway_dl_72B8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_AB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_B78), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8AC0), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8A60), gsSPDisplayList(d_course_royal_raceway_packed_dl_89F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_8900), @@ -3085,7 +3674,9 @@ Gfx d_course_royal_raceway_dl_72B8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_9E18), gsSPDisplayList(d_course_royal_raceway_packed_dl_9E98), gsSPDisplayList(d_course_royal_raceway_packed_dl_9F10), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_9F80), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), @@ -3101,7 +3692,9 @@ Gfx d_course_royal_raceway_dl_72B8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_6C58), gsSPDisplayList(d_course_royal_raceway_packed_dl_6BE8), gsSPDisplayList(d_course_royal_raceway_packed_dl_6A80), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_70B8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_7138), gsSPDisplayList(d_course_royal_raceway_packed_dl_71A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_7278), @@ -3115,13 +3708,29 @@ Gfx d_course_royal_raceway_dl_72B8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_7500), gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), gsSPDisplayList(d_course_royal_raceway_packed_dl_75F8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7680), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), @@ -3129,7 +3738,11 @@ Gfx d_course_royal_raceway_dl_72B8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_80C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_A6A8), @@ -3157,7 +3770,9 @@ Gfx d_course_royal_raceway_dl_75C0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_AB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_B78), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8A60), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_89F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_8988), gsSPDisplayList(d_course_royal_raceway_packed_dl_1450), @@ -3182,7 +3797,9 @@ Gfx d_course_royal_raceway_dl_75C0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_3268), gsSPDisplayList(d_course_royal_raceway_packed_dl_34C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_6C58), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7138), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_71A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_7278), gsSPDisplayList(d_course_royal_raceway_packed_dl_72E8), @@ -3212,22 +3829,40 @@ Gfx d_course_royal_raceway_dl_75C0[] = { Gfx d_course_royal_raceway_dl_7778[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_AB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_8AC0), gsSPDisplayList(d_course_royal_raceway_packed_dl_8A60), - gsSPDisplayList(d_course_royal_raceway_packed_dl_89F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_1450), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_89F0), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_1450), gsSPDisplayList(d_course_royal_raceway_packed_dl_1788), gsSPDisplayList(d_course_royal_raceway_packed_dl_19B0), gsSPDisplayList(d_course_royal_raceway_packed_dl_1940), gsSPDisplayList(d_course_royal_raceway_packed_dl_9988), gsSPDisplayList(d_course_royal_raceway_packed_dl_2870), gsSPDisplayList(d_course_royal_raceway_packed_dl_23F8), gsSPDisplayList(d_course_royal_raceway_packed_dl_2478), gsSPDisplayList(d_course_royal_raceway_packed_dl_9F80), - gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), + gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_6950), gsSPDisplayList(d_course_royal_raceway_packed_dl_3368), - gsSPDisplayList(d_course_royal_raceway_packed_dl_32F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_34C0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_32F0), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_34C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_70B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_7138), - gsSPDisplayList(d_course_royal_raceway_packed_dl_71A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_6D98), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_71A0), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_6D98), gsSPDisplayList(d_course_royal_raceway_packed_dl_6E20), gsSPDisplayList(d_course_royal_raceway_packed_dl_7680), gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_5DC8), gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), - gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5990), + gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_5990), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), gsSPDisplayList(d_course_royal_raceway_packed_dl_37E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_6328), gsSPDisplayList(d_course_royal_raceway_packed_dl_9310), gsSPDisplayList(d_course_royal_raceway_packed_dl_9008), @@ -3288,7 +3923,9 @@ Gfx d_course_royal_raceway_dl_78E8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), @@ -3310,10 +3947,14 @@ Gfx d_course_royal_raceway_dl_7AD0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_2870), gsSPDisplayList(d_course_royal_raceway_packed_dl_23F8), gsSPDisplayList(d_course_royal_raceway_packed_dl_2478), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_3190), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_34C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_6C58), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_6E20), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_6EB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_6F28), gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), @@ -3324,7 +3965,9 @@ Gfx d_course_royal_raceway_dl_7AD0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5DC8), gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5990), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_6328), gsSPDisplayList(d_course_royal_raceway_packed_dl_1438), gsSPDisplayList(d_course_royal_raceway_packed_dl_9310), @@ -3460,7 +4103,10 @@ Gfx d_course_royal_raceway_dl_7ED8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_5DC8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5EF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_8400), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), - gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), + gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5990), gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_AE00), gsSPEndDisplayList(), }; @@ -3583,7 +4229,9 @@ Gfx d_course_royal_raceway_dl_8398[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_45E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5DC8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5EF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_8400), @@ -3625,7 +4273,10 @@ Gfx d_course_royal_raceway_dl_84A0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_7FD0), gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), - gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_5DC8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5EF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_8400), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), @@ -3637,7 +4288,10 @@ Gfx d_course_royal_raceway_dl_84A0[] = { }; Gfx d_course_royal_raceway_dl_8620[] = { - gsSPDisplayList(d_course_royal_raceway_packed_dl_1AA0), gsSPDisplayList(d_course_royal_raceway_packed_dl_1A30), + gsSPDisplayList(d_course_royal_raceway_packed_dl_1AA0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_1A30), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_23F8), gsSPDisplayList(d_course_royal_raceway_packed_dl_2478), gsSPDisplayList(d_course_royal_raceway_packed_dl_2530), gsSPDisplayList(d_course_royal_raceway_packed_dl_36B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_3628), gsSPDisplayList(d_course_royal_raceway_packed_dl_6A80), @@ -3816,8 +4470,14 @@ Gfx d_course_royal_raceway_dl_8C58[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_2530), gsSPDisplayList(d_course_royal_raceway_packed_dl_25E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_26B0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4538), gsSPDisplayList(d_course_royal_raceway_packed_dl_45E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_46E0), - gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5298), gsSPDisplayList(d_course_royal_raceway_packed_dl_5EF8), + gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_5298), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_5EF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5AA8), gsSPDisplayList(d_course_royal_raceway_packed_dl_56A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5990), gsSPDisplayList(d_course_royal_raceway_packed_dl_5A10), gsSPEndDisplayList(), @@ -3936,7 +4596,9 @@ Gfx d_course_royal_raceway_dl_9218[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5AA8), gsSPDisplayList(d_course_royal_raceway_packed_dl_56A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5990), gsSPDisplayList(d_course_royal_raceway_packed_dl_5A10), gsSPEndDisplayList(), @@ -3970,8 +4632,12 @@ Gfx d_course_royal_raceway_dl_92D0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2F70), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_3190), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_3440), gsSPDisplayList(d_course_royal_raceway_packed_dl_33D8), gsSPDisplayList(d_course_royal_raceway_packed_dl_68E8), @@ -3983,8 +4649,12 @@ Gfx d_course_royal_raceway_dl_92D0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_71A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_7278), gsSPDisplayList(d_course_royal_raceway_packed_dl_72E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7020), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_6D18), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_6D98), gsSPDisplayList(d_course_royal_raceway_packed_dl_6E20), gsSPDisplayList(d_course_royal_raceway_packed_dl_45E0), @@ -3998,8 +4668,12 @@ Gfx d_course_royal_raceway_dl_92D0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_5AA8), gsSPDisplayList(d_course_royal_raceway_packed_dl_56A0), @@ -4013,19 +4687,48 @@ Gfx d_course_royal_raceway_dl_92D0[] = { }; Gfx d_course_royal_raceway_dl_94E8[] = { - gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_AB8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8988), gsSPDisplayList(d_course_royal_raceway_packed_dl_8900), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_AB8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8988), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8900), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8888), gsSPDisplayList(d_course_royal_raceway_packed_dl_8810), gsSPDisplayList(d_course_royal_raceway_packed_dl_1940), gsSPDisplayList(d_course_royal_raceway_packed_dl_18D8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1860), gsSPDisplayList(d_course_royal_raceway_packed_dl_17F8), gsSPDisplayList(d_course_royal_raceway_packed_dl_25E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_26B0), - gsSPDisplayList(d_course_royal_raceway_packed_dl_2758), gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), + gsSPDisplayList(d_course_royal_raceway_packed_dl_2758), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_2F70), gsSPDisplayList(d_course_royal_raceway_packed_dl_3190), gsSPDisplayList(d_course_royal_raceway_packed_dl_3440), gsSPDisplayList(d_course_royal_raceway_packed_dl_33D8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_68E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_6880), - gsSPDisplayList(d_course_royal_raceway_packed_dl_6808), gsSPDisplayList(d_course_royal_raceway_packed_dl_6A10), - gsSPDisplayList(d_course_royal_raceway_packed_dl_7278), gsSPDisplayList(d_course_royal_raceway_packed_dl_72E8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_7020), gsSPDisplayList(d_course_royal_raceway_packed_dl_6D18), + gsSPDisplayList(d_course_royal_raceway_packed_dl_68E8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_6880), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_6808), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_6A10), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7278), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_72E8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7020), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_6D18), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_6D98), gsSPDisplayList(d_course_royal_raceway_packed_dl_6E20), gsSPDisplayList(d_course_royal_raceway_packed_dl_6EB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_45E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_46E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), @@ -4113,7 +4816,9 @@ Gfx d_course_royal_raceway_dl_9678[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_56A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5990), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5A10), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), @@ -4132,48 +4837,92 @@ Gfx d_course_royal_raceway_dl_9900[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_33D8), gsSPDisplayList(d_course_royal_raceway_packed_dl_45E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_46E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), gsSPDisplayList(d_course_royal_raceway_packed_dl_5298), - gsSPDisplayList(d_course_royal_raceway_packed_dl_56A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), - gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5990), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_56A0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_5990), gsSPDisplayList(d_course_royal_raceway_packed_dl_5A10), gsSPEndDisplayList(), }; Gfx d_course_royal_raceway_dl_99A0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_930), gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_AB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_B78), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_AB8), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_B78), gsSPDisplayList(d_course_royal_raceway_packed_dl_1720), gsSPDisplayList(d_course_royal_raceway_packed_dl_16B8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_89F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_8988), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8900), gsSPDisplayList(d_course_royal_raceway_packed_dl_1860), + gsSPDisplayList(d_course_royal_raceway_packed_dl_89F0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8988), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8900), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_1860), gsSPDisplayList(d_course_royal_raceway_packed_dl_17F8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1FE8), gsSPDisplayList(d_course_royal_raceway_packed_dl_9A38), gsSPDisplayList(d_course_royal_raceway_packed_dl_9A98), gsSPDisplayList(d_course_royal_raceway_packed_dl_9B08), gsSPDisplayList(d_course_royal_raceway_packed_dl_26B0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2758), gsSPDisplayList(d_course_royal_raceway_packed_dl_27E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), - gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_2F70), gsSPDisplayList(d_course_royal_raceway_packed_dl_3440), + gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_2F70), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_3440), gsSPDisplayList(d_course_royal_raceway_packed_dl_33D8), gsSPDisplayList(d_course_royal_raceway_packed_dl_68E8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_6880), gsSPDisplayList(d_course_royal_raceway_packed_dl_6808), + gsSPDisplayList(d_course_royal_raceway_packed_dl_6880), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_6808), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_4078), gsSPDisplayList(d_course_royal_raceway_packed_dl_4118), gsSPDisplayList(d_course_royal_raceway_packed_dl_71A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_7278), - gsSPDisplayList(d_course_royal_raceway_packed_dl_72E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_7020), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_72E8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_7020), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_46E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), gsSPDisplayList(d_course_royal_raceway_packed_dl_5298), gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), gsSPDisplayList(d_course_royal_raceway_packed_dl_5A10), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_5A10), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), gsSPDisplayList(d_course_royal_raceway_packed_dl_37E8), gsSPEndDisplayList(), }; Gfx d_course_royal_raceway_dl_9B30[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_930), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_AB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_B78), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_1720), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_16B8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_89F0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8988), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8900), gsSPDisplayList(d_course_royal_raceway_packed_dl_8888), gsSPDisplayList(d_course_royal_raceway_packed_dl_8810), @@ -4193,7 +4942,9 @@ Gfx d_course_royal_raceway_dl_9B30[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_2758), gsSPDisplayList(d_course_royal_raceway_packed_dl_27E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_2F70), gsSPDisplayList(d_course_royal_raceway_packed_dl_3190), @@ -4204,9 +4955,15 @@ Gfx d_course_royal_raceway_dl_9B30[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_6808), gsSPDisplayList(d_course_royal_raceway_packed_dl_6A10), gsSPDisplayList(d_course_royal_raceway_packed_dl_6C58), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4078), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4118), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_71A0), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_7278), gsSPDisplayList(d_course_royal_raceway_packed_dl_72E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_7020), @@ -4219,8 +4976,12 @@ Gfx d_course_royal_raceway_dl_9B30[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_46E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), @@ -4275,7 +5036,12 @@ Gfx d_course_royal_raceway_dl_9D58[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_56A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5A10), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), gsSPDisplayList(d_course_royal_raceway_packed_dl_37E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1438), gsSPEndDisplayList(), @@ -4291,41 +5057,75 @@ Gfx d_course_royal_raceway_dl_9FE8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_7500), gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), gsSPDisplayList(d_course_royal_raceway_packed_dl_5298), gsSPDisplayList(d_course_royal_raceway_packed_dl_8400), - gsSPDisplayList(d_course_royal_raceway_packed_dl_56A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), + gsSPDisplayList(d_course_royal_raceway_packed_dl_56A0), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), gsSPDisplayList(d_course_royal_raceway_packed_dl_5A10), gsSPEndDisplayList(), }; Gfx d_course_royal_raceway_dl_A0A8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_930), gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_B78), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_1720), gsSPDisplayList(d_course_royal_raceway_packed_dl_16B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_89F0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8988), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8900), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_17F8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1FE8), gsSPDisplayList(d_course_royal_raceway_packed_dl_20A0), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2110), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_9B08), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_9B68), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_2758), gsSPDisplayList(d_course_royal_raceway_packed_dl_27E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_3440), gsSPDisplayList(d_course_royal_raceway_packed_dl_33D8), gsSPDisplayList(d_course_royal_raceway_packed_dl_3368), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_6880), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_4078), gsSPDisplayList(d_course_royal_raceway_packed_dl_4118), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_41A8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7278), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_72E8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), gsSPDisplayList(d_course_royal_raceway_packed_dl_5298), @@ -4333,8 +5133,12 @@ Gfx d_course_royal_raceway_dl_A0A8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5A10), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), @@ -4348,7 +5152,9 @@ Gfx d_course_royal_raceway_dl_A200[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_AB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_B78), gsSPDisplayList(d_course_royal_raceway_packed_dl_1720), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_16B8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_89F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_8988), gsSPDisplayList(d_course_royal_raceway_packed_dl_8900), @@ -4363,7 +5169,9 @@ Gfx d_course_royal_raceway_dl_A200[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_17F8), gsSPDisplayList(d_course_royal_raceway_packed_dl_1FE8), gsSPDisplayList(d_course_royal_raceway_packed_dl_20A0), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_9A98), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_9B08), gsSPDisplayList(d_course_royal_raceway_packed_dl_9B68), gsSPDisplayList(d_course_royal_raceway_packed_dl_22C0), @@ -4376,8 +5184,12 @@ Gfx d_course_royal_raceway_dl_A200[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_2758), gsSPDisplayList(d_course_royal_raceway_packed_dl_27E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_2F70), gsSPDisplayList(d_course_royal_raceway_packed_dl_3190), @@ -4404,7 +5216,9 @@ Gfx d_course_royal_raceway_dl_A200[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), gsSPDisplayList(d_course_royal_raceway_packed_dl_5298), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), @@ -4416,7 +5230,11 @@ Gfx d_course_royal_raceway_dl_A200[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_8400), gsSPDisplayList(d_course_royal_raceway_packed_dl_56A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), gsSPDisplayList(d_course_royal_raceway_packed_dl_5A10), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), @@ -4451,7 +5269,9 @@ Gfx d_course_royal_raceway_dl_A478[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5EF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_A3C8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_A5A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_6328), gsSPDisplayList(d_course_royal_raceway_packed_dl_6228), @@ -4487,7 +5307,9 @@ Gfx d_course_royal_raceway_dl_A600[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_45E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5DC8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5EF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_8400), @@ -4499,7 +5321,9 @@ Gfx d_course_royal_raceway_dl_A600[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_A3C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_A438), gsSPDisplayList(d_course_royal_raceway_packed_dl_6328), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_6228), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_1438), gsSPDisplayList(d_course_royal_raceway_packed_dl_E88), gsSPDisplayList(d_course_royal_raceway_packed_dl_AC60), @@ -4556,7 +5380,9 @@ Gfx d_course_royal_raceway_dl_A8A8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5DC8), gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5990), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_A3C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_A438), gsSPDisplayList(d_course_royal_raceway_packed_dl_A5A0), @@ -4603,10 +5429,14 @@ Gfx d_course_royal_raceway_dl_A9D0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_5DC8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5EF8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_A3C8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_A4B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_A538), gsSPDisplayList(d_course_royal_raceway_packed_dl_A5A0), @@ -4622,7 +5452,9 @@ Gfx d_course_royal_raceway_dl_A9D0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_AA90), gsSPDisplayList(d_course_royal_raceway_packed_dl_AB28), gsSPDisplayList(d_course_royal_raceway_packed_dl_ABA8), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_A730), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_A870), gsSPDisplayList(d_course_royal_raceway_packed_dl_A8F8), gsSPDisplayList(d_course_royal_raceway_packed_dl_CE0), @@ -4632,10 +5464,23 @@ Gfx d_course_royal_raceway_dl_A9D0[] = { Gfx d_course_royal_raceway_dl_AB28[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_9CB8), gsSPDisplayList(d_course_royal_raceway_packed_dl_3628), gsSPDisplayList(d_course_royal_raceway_packed_dl_3540), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_5DC8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_5DC8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5EF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), - gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), - gsSPDisplayList(d_course_royal_raceway_packed_dl_5990), gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), + gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), +#else + gsSPDisplayList(d_course_royal_raceway_packed_dl_5990), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_A3C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_A438), gsSPDisplayList(d_course_royal_raceway_packed_dl_A4B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_A538), gsSPDisplayList(d_course_royal_raceway_packed_dl_6328), gsSPDisplayList(d_course_royal_raceway_packed_dl_6228), @@ -4671,8 +5516,16 @@ Gfx d_course_royal_raceway_dl_AC28[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5EF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), +#else gsSPDisplayList(d_course_royal_raceway_packed_dl_5990), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), gsSPDisplayList(d_course_royal_raceway_packed_dl_A438), gsSPDisplayList(d_course_royal_raceway_packed_dl_A4B8), @@ -4697,9 +5550,15 @@ Gfx d_course_royal_raceway_dl_AC28[] = { }; Gfx d_course_royal_raceway_dl_AD90[] = { - gsSPDisplayList(d_course_royal_raceway_packed_dl_1AA0), gsSPDisplayList(d_course_royal_raceway_packed_dl_3628), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_1AA0), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_3628), gsSPDisplayList(d_course_royal_raceway_packed_dl_3540), gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), - gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_A3C8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_A3C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_A438), gsSPDisplayList(d_course_royal_raceway_packed_dl_A538), gsSPDisplayList(d_course_royal_raceway_packed_dl_A5A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_6328), gsSPDisplayList(d_course_royal_raceway_packed_dl_6228), gsSPDisplayList(d_course_royal_raceway_packed_dl_60D8), @@ -4737,7 +5596,10 @@ Gfx d_course_royal_raceway_dl_AE70[] = { }; Gfx d_course_royal_raceway_dl_AFB0[] = { - gsSPDisplayList(d_course_royal_raceway_packed_dl_3540), gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), + gsSPDisplayList(d_course_royal_raceway_packed_dl_3540), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5DC8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5EF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_A3C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_A438), @@ -4794,8 +5656,12 @@ Gfx d_course_royal_raceway_dl_B040[] = { Gfx d_course_royal_raceway_dl_B188[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_3540), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_A3C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_A438), gsSPDisplayList(d_course_royal_raceway_packed_dl_A5A0), @@ -4812,7 +5678,9 @@ Gfx d_course_royal_raceway_dl_B188[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_A730), gsSPDisplayList(d_course_royal_raceway_packed_dl_A7D8), gsSPDisplayList(d_course_royal_raceway_packed_dl_A870), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_A8F8), +#endif gsSPEndDisplayList(), }; @@ -4836,14 +5704,20 @@ Gfx d_course_royal_raceway_dl_B2E0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_3540), gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5DC8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5EF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_A438), gsSPDisplayList(d_course_royal_raceway_packed_dl_A4B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_A538), @@ -4867,7 +5741,10 @@ Gfx d_course_royal_raceway_dl_B2E0[] = { }; Gfx d_course_royal_raceway_dl_B3E8[] = { - gsSPDisplayList(d_course_royal_raceway_packed_dl_8E30), gsSPDisplayList(d_course_royal_raceway_packed_dl_1A30), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8E30), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_1A30), gsSPDisplayList(d_course_royal_raceway_packed_dl_36B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_3628), gsSPDisplayList(d_course_royal_raceway_packed_dl_3540), gsSPDisplayList(d_course_royal_raceway_packed_dl_6F28), gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), @@ -4875,22 +5752,39 @@ Gfx d_course_royal_raceway_dl_B3E8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_5DC8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5EF8), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), - gsSPDisplayList(d_course_royal_raceway_packed_dl_A438), gsSPDisplayList(d_course_royal_raceway_packed_dl_A4B8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_A438), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_A4B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_A538), gsSPDisplayList(d_course_royal_raceway_packed_dl_A5A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_6328), gsSPDisplayList(d_course_royal_raceway_packed_dl_60D8), gsSPDisplayList(d_course_royal_raceway_packed_dl_E88), gsSPDisplayList(d_course_royal_raceway_packed_dl_AD78), gsSPDisplayList(d_course_royal_raceway_packed_dl_9310), gsSPDisplayList(d_course_royal_raceway_packed_dl_AE70), gsSPDisplayList(d_course_royal_raceway_packed_dl_AA90), gsSPDisplayList(d_course_royal_raceway_packed_dl_AB28), - gsSPDisplayList(d_course_royal_raceway_packed_dl_ABA8), gsSPDisplayList(d_course_royal_raceway_packed_dl_A7D8), + gsSPDisplayList(d_course_royal_raceway_packed_dl_ABA8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_A7D8), +#endif gsSPDisplayList(d_course_royal_raceway_packed_dl_A870), gsSPDisplayList(d_course_royal_raceway_packed_dl_A8F8), gsSPDisplayList(d_course_royal_raceway_packed_dl_CE0), gsSPEndDisplayList(), }; Gfx d_course_royal_raceway_dl_B508[] = { - gsSPDisplayList(d_course_royal_raceway_packed_dl_8E30), gsSPDisplayList(d_course_royal_raceway_packed_dl_3628), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8E30), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_3628), gsSPDisplayList(d_course_royal_raceway_packed_dl_3540), gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), - gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), gsSPDisplayList(d_course_royal_raceway_packed_dl_A438), +#ifndef VERSION_JP + gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), +#endif + gsSPDisplayList(d_course_royal_raceway_packed_dl_A438), gsSPDisplayList(d_course_royal_raceway_packed_dl_A4B8), gsSPDisplayList(d_course_royal_raceway_packed_dl_A538), gsSPDisplayList(d_course_royal_raceway_packed_dl_A5A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_6328), gsSPDisplayList(d_course_royal_raceway_packed_dl_60D8), gsSPDisplayList(d_course_royal_raceway_packed_dl_E88), @@ -4902,332 +5796,17 @@ Gfx d_course_royal_raceway_dl_B508[] = { }; // 0xB5B8 +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_royal_raceway_unknown_path[] = { - { -63, 0, -321, 0 }, { -61, 0, -341, 0 }, { -60, 0, -591, 0 }, { -64, 0, -1334, 0 }, - { -64, 0, -1761, 0 }, { -80, 0, -1851, 0 }, { -155, 0, -1949, 0 }, { -339, 0, -2075, 0 }, - { -694, 0, -2315, 0 }, { -874, 0, -2417, 0 }, { -998, 0, -2434, 0 }, { -1134, 0, -2399, 0 }, - { -1224, 0, -2306, 0 }, { -1271, 0, -2179, 0 }, { -1272, 0, -2102, 0 }, { -1236, 0, -1986, 0 }, - { -1141, 0, -1793, 0 }, { -1049, 0, -1637, 0 }, { -1014, 0, -1529, 0 }, { -1022, 0, -1453, 0 }, - { -1092, 0, -1361, 0 }, { -1206, 0, -1333, 0 }, { -1316, 0, -1373, 0 }, { -1394, 0, -1475, 0 }, - { -1631, 0, -1829, 0 }, { -1835, 0, -2090, 0 }, { -1871, 0, -2244, 0 }, { -1830, 0, -2389, 0 }, - { -1706, 0, -2531, 0 }, { -1226, 0, -2879, 0 }, { -1077, 0, -2942, 0 }, { -921, 0, -2955, 0 }, - { -765, 0, -2924, 0 }, { -480, 0, -2741, 0 }, { -233, 0, -2542, 0 }, { -91, 0, -2476, 0 }, - { 42, 0, -2464, 0 }, { 352, 0, -2579, 0 }, { 1074, 0, -2917, 0 }, { 1256, 0, -2992, 0 }, - { 1376, 0, -2998, 0 }, { 1495, 0, -2961, 0 }, { 1573, 0, -2905, 0 }, { 1639, 0, -2791, 0 }, - { 1651, 0, -2652, 0 }, { 1598, 0, -2523, 0 }, { 1502, 0, -2428, 0 }, { 1210, 0, -2284, 0 }, - { 147, 0, -1726, 0 }, { -899, 0, -1175, 0 }, { -1683, 0, -768, 0 }, { -2298, 0, -450, 0 }, - { -2390, 0, -363, 0 }, { -2436, 0, -237, 0 }, { -2421, 0, -94, 0 }, { -2346, 0, 27, 0 }, - { -2277, 0, 68, 0 }, { -2011, 0, 151, 0 }, { -1910, 0, 200, 0 }, { -1823, 0, 286, 0 }, - { -1766, 0, 408, 0 }, { -1725, 0, 582, 0 }, { -1667, 0, 671, 0 }, { -1578, 0, 709, 0 }, - { -1459, 0, 686, 0 }, { -1385, 0, 597, 0 }, { -1327, 0, 418, 0 }, { -1279, 0, 351, 0 }, - { -1195, 0, 309, 0 }, { -1136, 0, 317, 0 }, { -741, 0, 424, 0 }, { -449, 0, 485, 0 }, - { -299, 0, 467, 0 }, { -163, 0, 386, 0 }, { -74, 0, 243, 0 }, { -55, 0, 134, 0 }, - { -62, 0, -296, 0 }, { -32768, 0, 0, 0 }, +#include "courses/royal_raceway/d_course_royal_raceway_unknown_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_royal_raceway_track_path[] = { - { -62, 0, -331, 1 }, { -61, 0, -350, 2 }, { -61, 0, -371, 2 }, - { -60, 0, -391, 2 }, { -60, 0, -411, 2 }, { -60, 0, -431, 2 }, - { -60, 0, -451, 2 }, { -60, 0, -471, 2 }, { -60, 0, -491, 2 }, - { -60, 0, -511, 2 }, { -60, 0, -531, 2 }, { -60, 0, -551, 2 }, - { -60, 0, -571, 2 }, { -60, 0, -591, 2 }, { -60, 0, -611, 2 }, - { -60, 0, -631, 2 }, { -60, 0, -651, 2 }, { -60, 0, -671, 2 }, - { -60, 0, -691, 2 }, { -60, 0, -711, 2 }, { -60, 0, -731, 2 }, - { -60, 0, -751, 2 }, { -61, 0, -771, 2 }, { -61, 0, -791, 2 }, - { -61, 0, -811, 2 }, { -61, 0, -831, 2 }, { -61, 0, -851, 2 }, - { -61, 0, -871, 2 }, { -61, 0, -891, 2 }, { -61, 0, -911, 2 }, - { -61, 0, -931, 2 }, { -61, 0, -951, 2 }, { -62, 0, -971, 2 }, - { -62, 0, -991, 2 }, { -62, 0, -1011, 2 }, { -62, 0, -1031, 2 }, - { -62, 0, -1051, 2 }, { -62, 0, -1071, 2 }, { -62, 0, -1091, 3 }, - { -62, 0, -1111, 3 }, { -62, 0, -1131, 3 }, { -62, 0, -1151, 3 }, - { -63, 0, -1171, 3 }, { -63, 0, -1191, 3 }, { -63, 0, -1211, 3 }, - { -63, 0, -1231, 3 }, { -63, 0, -1251, 3 }, { -63, 0, -1271, 3 }, - { -63, 0, -1291, 3 }, { -63, 0, -1311, 3 }, { -63, 0, -1331, 3 }, - { -63, 0, -1351, 3 }, { -63, 0, -1371, 3 }, { -63, 0, -1391, 3 }, - { -63, 0, -1411, 3 }, { -63, 0, -1431, 3 }, { -63, 0, -1451, 3 }, - { -63, 0, -1471, 3 }, { -63, 0, -1491, 3 }, { -63, 0, -1511, 3 }, - { -63, 0, -1531, 3 }, { -64, 0, -1551, 3 }, { -64, 0, -1571, 3 }, - { -64, 0, -1591, 3 }, { -64, 0, -1611, 3 }, { -64, 0, -1631, 3 }, - { -64, 0, -1651, 3 }, { -64, 0, -1671, 3 }, { -65, 0, -1691, 3 }, - { -65, 0, -1711, 3 }, { -66, 0, -1731, 3 }, { -67, 0, -1751, 3 }, - { -68, 0, -1771, 3 }, { -70, 0, -1791, 3 }, { -73, 0, -1811, 3 }, - { -78, 0, -1830, 3 }, { -86, 0, -1849, 3 }, { -95, 0, -1867, 3 }, - { -105, 0, -1883, 3 }, { -117, 0, -1900, 3 }, { -130, 0, -1915, 4 }, - { -144, 0, -1930, 4 }, { -158, 0, -1943, 4 }, { -173, 0, -1957, 4 }, - { -189, 0, -1969, 4 }, { -205, 1, -1981, 4 }, { -221, 1, -1993, 4 }, - { -237, 2, -2005, 4 }, { -254, 2, -2016, 4 }, { -270, 3, -2028, 4 }, - { -287, 4, -2039, 4 }, { -303, 4, -2050, 4 }, { -320, 5, -2061, 4 }, - { -336, 5, -2073, 4 }, { -353, 6, -2084, 4 }, { -369, 6, -2095, 4 }, - { -386, 7, -2106, 4 }, { -402, 7, -2118, 4 }, { -419, 8, -2129, 4 }, - { -436, 8, -2140, 4 }, { -452, 9, -2151, 4 }, { -469, 9, -2163, 5 }, - { -485, 10, -2174, 5 }, { -502, 10, -2185, 5 }, { -518, 10, -2196, 5 }, - { -535, 11, -2207, 5 }, { -552, 11, -2218, 5 }, { -568, 11, -2230, 5 }, - { -585, 12, -2241, 5 }, { -602, 12, -2252, 5 }, { -618, 13, -2263, 5 }, - { -635, 14, -2274, 5 }, { -652, 15, -2285, 5 }, { -669, 15, -2295, 5 }, - { -686, 16, -2306, 5 }, { -703, 17, -2317, 5 }, { -720, 18, -2327, 5 }, - { -737, 19, -2338, 5 }, { -754, 20, -2348, 5 }, { -771, 21, -2358, 5 }, - { -788, 21, -2368, 5 }, { -806, 23, -2378, 5 }, { -824, 25, -2387, 5 }, - { -842, 28, -2395, 5 }, { -860, 30, -2403, 5 }, { -879, 32, -2411, 5 }, - { -898, 34, -2417, 5 }, { -917, 35, -2422, 5 }, { -937, 36, -2425, 5 }, - { -957, 37, -2427, 5 }, { -977, 38, -2428, 6 }, { -997, 38, -2427, 6 }, - { -1017, 39, -2425, 6 }, { -1037, 40, -2422, 6 }, { -1056, 41, -2418, 6 }, - { -1076, 41, -2413, 6 }, { -1095, 42, -2407, 6 }, { -1113, 42, -2399, 6 }, - { -1131, 42, -2390, 6 }, { -1147, 43, -2379, 6 }, { -1163, 43, -2366, 6 }, - { -1178, 43, -2353, 6 }, { -1191, 43, -2338, 6 }, { -1204, 43, -2322, 6 }, - { -1215, 42, -2306, 6 }, { -1226, 42, -2289, 6 }, { -1235, 41, -2271, 6 }, - { -1243, 41, -2253, 6 }, { -1250, 41, -2234, 6 }, { -1256, 40, -2215, 6 }, - { -1262, 39, -2196, 6 }, { -1267, 39, -2176, 7 }, { -1270, 38, -2157, 7 }, - { -1271, 37, -2137, 7 }, { -1270, 36, -2117, 7 }, { -1267, 35, -2097, 7 }, - { -1263, 33, -2077, 7 }, { -1258, 31, -2058, 7 }, { -1252, 30, -2039, 7 }, - { -1246, 28, -2020, 7 }, { -1238, 25, -2001, 7 }, { -1231, 24, -1983, 7 }, - { -1223, 22, -1964, 7 }, { -1215, 20, -1946, 7 }, { -1207, 18, -1928, 7 }, - { -1198, 16, -1910, 7 }, { -1189, 15, -1892, 7 }, { -1180, 14, -1874, 7 }, - { -1171, 12, -1856, 7 }, { -1162, 11, -1838, 7 }, { -1153, 10, -1820, 7 }, - { -1144, 9, -1802, 7 }, { -1134, 8, -1785, 8 }, { -1125, 8, -1767, 8 }, - { -1115, 7, -1750, 8 }, { -1105, 6, -1732, 8 }, { -1095, 6, -1715, 8 }, - { -1085, 5, -1698, 8 }, { -1075, 4, -1680, 8 }, { -1066, 3, -1663, 8 }, - { -1057, 2, -1645, 8 }, { -1048, 1, -1627, 8 }, { -1040, 0, -1608, 8 }, - { -1033, 0, -1590, 8 }, { -1027, 0, -1571, 8 }, { -1022, 0, -1551, 8 }, - { -1019, 0, -1531, 8 }, { -1017, 0, -1512, 8 }, { -1017, 0, -1492, 8 }, - { -1021, 0, -1472, 8 }, { -1028, 0, -1453, 8 }, { -1037, 0, -1435, 8 }, - { -1048, 0, -1418, 8 }, { -1060, 0, -1402, 8 }, { -1073, 0, -1388, 8 }, - { -1088, 0, -1375, 8 }, { -1105, 0, -1364, 9 }, { -1123, 0, -1355, 9 }, - { -1142, 0, -1348, 9 }, { -1161, 0, -1344, 9 }, { -1181, 0, -1341, 9 }, - { -1201, 0, -1341, 9 }, { -1221, 0, -1343, 9 }, { -1241, 0, -1346, 9 }, - { -1260, 0, -1352, 9 }, { -1278, 0, -1360, 9 }, { -1296, 0, -1370, 9 }, - { -1313, 0, -1381, 9 }, { -1328, 0, -1394, 9 }, { -1342, 0, -1408, 9 }, - { -1355, 0, -1424, 9 }, { -1367, 0, -1440, 9 }, { -1378, 0, -1456, 9 }, - { -1390, 0, -1472, 9 }, { -1401, 0, -1489, 9 }, { -1413, 0, -1505, 9 }, - { -1424, 0, -1521, 9 }, { -1435, 0, -1538, 9 }, { -1447, 0, -1555, 9 }, - { -1458, 0, -1571, 10 }, { -1469, 0, -1588, 10 }, { -1480, 0, -1604, 10 }, - { -1491, 0, -1621, 10 }, { -1503, 0, -1637, 10 }, { -1514, 0, -1654, 10 }, - { -1525, 0, -1671, 10 }, { -1536, 0, -1687, 10 }, { -1547, 0, -1704, 10 }, - { -1559, 0, -1720, 10 }, { -1570, 0, -1737, 10 }, { -1581, 0, -1753, 10 }, - { -1593, 0, -1770, 10 }, { -1604, 0, -1786, 10 }, { -1616, 0, -1802, 10 }, - { -1628, 0, -1819, 10 }, { -1639, 0, -1835, 10 }, { -1651, 0, -1851, 10 }, - { -1663, 0, -1867, 10 }, { -1675, 0, -1883, 10 }, { -1687, 0, -1899, 10 }, - { -1699, 0, -1915, 10 }, { -1711, 0, -1931, 10 }, { -1723, 0, -1947, 10 }, - { -1736, 0, -1963, 10 }, { -1748, 0, -1979, 10 }, { -1760, 0, -1995, 10 }, - { -1771, 0, -2011, 10 }, { -1783, 0, -2027, 10 }, { -1794, 0, -2044, 10 }, - { -1805, 0, -2061, 10 }, { -1815, 0, -2078, 10 }, { -1824, 0, -2096, 10 }, - { -1833, 0, -2114, 11 }, { -1841, 0, -2132, 11 }, { -1848, 0, -2151, 11 }, - { -1853, 0, -2170, 11 }, { -1857, 0, -2190, 11 }, { -1860, 0, -2210, 11 }, - { -1861, 0, -2230, 11 }, { -1861, 0, -2250, 11 }, { -1859, 0, -2270, 11 }, - { -1856, 0, -2289, 11 }, { -1852, 0, -2309, 11 }, { -1846, 0, -2328, 11 }, - { -1839, 0, -2347, 11 }, { -1831, 0, -2365, 11 }, { -1822, 0, -2383, 11 }, - { -1812, 0, -2400, 11 }, { -1801, 0, -2417, 11 }, { -1789, 0, -2433, 11 }, - { -1777, 0, -2449, 11 }, { -1764, 0, -2464, 11 }, { -1750, 0, -2478, 11 }, - { -1735, 0, -2492, 11 }, { -1721, 0, -2506, 11 }, { -1706, 0, -2519, 11 }, - { -1690, 0, -2532, 12 }, { -1675, 0, -2545, 12 }, { -1660, 0, -2557, 12 }, - { -1644, 0, -2570, 12 }, { -1628, 0, -2582, 12 }, { -1612, 0, -2595, 12 }, - { -1597, 0, -2607, 12 }, { -1581, 1, -2619, 12 }, { -1565, 2, -2631, 12 }, - { -1549, 3, -2643, 12 }, { -1533, 4, -2655, 12 }, { -1517, 5, -2667, 12 }, - { -1500, 6, -2679, 12 }, { -1484, 6, -2691, 12 }, { -1468, 7, -2703, 12 }, - { -1452, 8, -2714, 12 }, { -1436, 9, -2726, 12 }, { -1419, 10, -2738, 12 }, - { -1403, 11, -2749, 12 }, { -1387, 12, -2761, 12 }, { -1370, 12, -2772, 12 }, - { -1354, 13, -2784, 12 }, { -1338, 14, -2795, 12 }, { -1321, 15, -2807, 12 }, - { -1305, 15, -2818, 12 }, { -1288, 16, -2829, 12 }, { -1271, 17, -2840, 12 }, - { -1254, 18, -2851, 12 }, { -1238, 19, -2862, 12 }, { -1221, 19, -2872, 12 }, - { -1203, 20, -2883, 13 }, { -1186, 20, -2892, 13 }, { -1168, 21, -2902, 13 }, - { -1150, 21, -2910, 13 }, { -1132, 22, -2918, 13 }, { -1113, 22, -2924, 13 }, - { -1094, 23, -2930, 13 }, { -1074, 24, -2936, 13 }, { -1055, 24, -2940, 13 }, - { -1035, 25, -2944, 13 }, { -1015, 25, -2946, 13 }, { -995, 26, -2948, 13 }, - { -976, 26, -2949, 13 }, { -956, 27, -2950, 13 }, { -936, 27, -2950, 13 }, - { -916, 28, -2949, 13 }, { -896, 28, -2947, 13 }, { -876, 29, -2945, 13 }, - { -856, 29, -2942, 13 }, { -836, 30, -2938, 13 }, { -817, 30, -2932, 13 }, - { -798, 31, -2926, 13 }, { -779, 31, -2919, 13 }, { -761, 32, -2911, 13 }, - { -743, 32, -2902, 13 }, { -725, 33, -2893, 13 }, { -708, 33, -2883, 13 }, - { -690, 33, -2874, 13 }, { -673, 34, -2863, 14 }, { -656, 34, -2853, 14 }, - { -639, 34, -2843, 14 }, { -622, 34, -2832, 14 }, { -605, 34, -2821, 14 }, - { -588, 34, -2810, 14 }, { -572, 34, -2799, 14 }, { -555, 34, -2788, 14 }, - { -538, 34, -2777, 14 }, { -522, 34, -2765, 14 }, { -506, 34, -2754, 14 }, - { -489, 34, -2742, 14 }, { -473, 34, -2730, 14 }, { -457, 34, -2719, 14 }, - { -441, 34, -2707, 14 }, { -425, 34, -2695, 14 }, { -409, 34, -2683, 14 }, - { -393, 34, -2670, 14 }, { -377, 34, -2658, 14 }, { -362, 34, -2646, 14 }, - { -346, 34, -2633, 14 }, { -330, 34, -2621, 14 }, { -314, 34, -2608, 14 }, - { -299, 34, -2596, 14 }, { -282, 34, -2584, 14 }, { -266, 34, -2573, 14 }, - { -250, 34, -2561, 14 }, { -233, 34, -2550, 14 }, { -216, 33, -2539, 15 }, - { -199, 33, -2529, 15 }, { -182, 32, -2519, 15 }, { -164, 32, -2510, 15 }, - { -146, 31, -2502, 15 }, { -127, 31, -2494, 15 }, { -108, 30, -2487, 15 }, - { -89, 29, -2482, 15 }, { -70, 29, -2477, 15 }, { -50, 28, -2473, 15 }, - { -30, 28, -2470, 15 }, { -10, 27, -2469, 15 }, { 9, 26, -2470, 15 }, - { 28, 26, -2472, 15 }, { 48, 25, -2476, 15 }, { 68, 25, -2480, 15 }, - { 87, 24, -2485, 15 }, { 106, 24, -2491, 15 }, { 125, 23, -2496, 15 }, - { 144, 22, -2503, 15 }, { 163, 21, -2509, 15 }, { 182, 20, -2516, 15 }, - { 201, 20, -2523, 15 }, { 220, 19, -2530, 15 }, { 238, 18, -2537, 15 }, - { 257, 17, -2545, 15 }, { 275, 17, -2552, 15 }, { 294, 16, -2560, 15 }, - { 312, 15, -2567, 15 }, { 331, 14, -2575, 15 }, { 349, 14, -2583, 15 }, - { 368, 13, -2591, 16 }, { 386, 12, -2599, 16 }, { 404, 12, -2607, 16 }, - { 423, 11, -2615, 16 }, { 441, 11, -2623, 16 }, { 459, 10, -2631, 16 }, - { 478, 10, -2639, 16 }, { 496, 9, -2648, 16 }, { 514, 9, -2656, 16 }, - { 532, 8, -2664, 16 }, { 550, 8, -2673, 16 }, { 569, 7, -2681, 16 }, - { 587, 7, -2689, 16 }, { 605, 6, -2698, 16 }, { 623, 5, -2706, 16 }, - { 641, 5, -2714, 16 }, { 660, 4, -2723, 16 }, { 678, 4, -2731, 16 }, - { 696, 3, -2740, 16 }, { 714, 3, -2748, 16 }, { 732, 2, -2757, 16 }, - { 750, 2, -2765, 16 }, { 768, 1, -2774, 16 }, { 787, 1, -2782, 16 }, - { 805, 1, -2791, 16 }, { 823, 1, -2799, 16 }, { 841, 1, -2807, 16 }, - { 859, 0, -2816, 16 }, { 877, 0, -2824, 16 }, { 895, 0, -2833, 16 }, - { 914, 0, -2841, 16 }, { 932, 0, -2850, 16 }, { 950, 0, -2858, 16 }, - { 968, 0, -2866, 16 }, { 986, 0, -2875, 16 }, { 1004, 0, -2883, 16 }, - { 1023, 0, -2891, 16 }, { 1041, 0, -2900, 16 }, { 1059, 0, -2908, 16 }, - { 1077, 0, -2916, 17 }, { 1096, 0, -2924, 17 }, { 1114, 0, -2932, 17 }, - { 1132, 0, -2940, 17 }, { 1151, 0, -2948, 17 }, { 1169, 0, -2956, 17 }, - { 1188, 0, -2963, 17 }, { 1207, 0, -2970, 17 }, { 1226, 0, -2976, 17 }, - { 1245, 0, -2982, 17 }, { 1264, 0, -2987, 17 }, { 1284, 0, -2991, 17 }, - { 1304, 0, -2994, 17 }, { 1324, 0, -2995, 17 }, { 1344, 0, -2995, 17 }, - { 1363, 0, -2993, 17 }, { 1383, 0, -2991, 17 }, { 1403, 0, -2987, 17 }, - { 1422, 0, -2983, 17 }, { 1442, 0, -2977, 17 }, { 1461, 0, -2970, 17 }, - { 1479, 0, -2963, 17 }, { 1497, 0, -2954, 17 }, { 1515, 0, -2945, 17 }, - { 1532, 0, -2934, 17 }, { 1547, 0, -2922, 17 }, { 1562, 0, -2908, 17 }, - { 1575, 0, -2893, 17 }, { 1587, 0, -2877, 17 }, { 1598, 0, -2860, 17 }, - { 1608, 0, -2843, 17 }, { 1617, 0, -2825, 18 }, { 1625, 0, -2807, 18 }, - { 1632, 0, -2788, 18 }, { 1637, 0, -2768, 18 }, { 1641, 0, -2749, 18 }, - { 1644, 0, -2729, 18 }, { 1645, 0, -2709, 18 }, { 1646, 0, -2689, 18 }, - { 1644, 0, -2669, 18 }, { 1642, 0, -2649, 18 }, { 1638, 0, -2630, 18 }, - { 1632, 0, -2610, 18 }, { 1626, 0, -2591, 18 }, { 1618, 0, -2573, 18 }, - { 1609, 0, -2555, 18 }, { 1599, 0, -2538, 18 }, { 1588, 0, -2521, 18 }, - { 1576, 0, -2505, 18 }, { 1563, 0, -2490, 18 }, { 1550, 0, -2475, 18 }, - { 1535, 0, -2462, 18 }, { 1519, 0, -2449, 18 }, { 1503, 0, -2438, 18 }, - { 1486, 0, -2427, 18 }, { 1469, 0, -2416, 18 }, { 1452, 0, -2406, 18 }, - { 1434, 0, -2396, 18 }, { 1417, 0, -2387, 18 }, { 1399, 0, -2377, 18 }, - { 1381, 0, -2368, 18 }, { 1363, 0, -2359, 18 }, { 1345, 0, -2350, 19 }, - { 1327, 1, -2342, 19 }, { 1310, 2, -2333, 19 }, { 1292, 3, -2323, 19 }, - { 1274, 3, -2314, 19 }, { 1256, 4, -2305, 19 }, { 1238, 5, -2296, 19 }, - { 1220, 6, -2287, 19 }, { 1203, 7, -2278, 19 }, { 1185, 8, -2269, 19 }, - { 1167, 9, -2260, 19 }, { 1149, 9, -2250, 19 }, { 1131, 10, -2241, 19 }, - { 1114, 11, -2232, 19 }, { 1096, 12, -2223, 19 }, { 1078, 13, -2214, 19 }, - { 1060, 14, -2204, 19 }, { 1043, 15, -2195, 19 }, { 1025, 16, -2186, 19 }, - { 1007, 16, -2177, 19 }, { 989, 17, -2167, 19 }, { 972, 18, -2158, 19 }, - { 954, 19, -2149, 19 }, { 936, 20, -2140, 19 }, { 918, 21, -2130, 19 }, - { 901, 23, -2121, 19 }, { 883, 24, -2112, 19 }, { 865, 25, -2103, 19 }, - { 847, 27, -2093, 19 }, { 830, 28, -2084, 19 }, { 812, 29, -2075, 19 }, - { 794, 31, -2065, 19 }, { 776, 32, -2056, 19 }, { 759, 33, -2047, 19 }, - { 741, 35, -2038, 19 }, { 723, 36, -2028, 19 }, { 706, 37, -2019, 19 }, - { 688, 39, -2010, 19 }, { 670, 40, -2000, 20 }, { 652, 41, -1991, 20 }, - { 635, 43, -1982, 20 }, { 617, 44, -1972, 20 }, { 599, 45, -1963, 20 }, - { 581, 47, -1954, 20 }, { 564, 48, -1945, 20 }, { 546, 49, -1935, 20 }, - { 528, 51, -1926, 20 }, { 511, 52, -1917, 20 }, { 493, 53, -1907, 20 }, - { 475, 55, -1898, 20 }, { 457, 56, -1889, 20 }, { 440, 57, -1879, 20 }, - { 422, 59, -1870, 20 }, { 404, 60, -1861, 20 }, { 387, 61, -1851, 20 }, - { 369, 63, -1842, 20 }, { 351, 64, -1833, 20 }, { 333, 65, -1824, 20 }, - { 316, 67, -1814, 20 }, { 298, 68, -1805, 20 }, { 280, 69, -1796, 20 }, - { 263, 71, -1786, 20 }, { 245, 72, -1777, 20 }, { 227, 73, -1768, 20 }, - { 209, 75, -1758, 20 }, { 192, 76, -1749, 20 }, { 174, 77, -1740, 20 }, - { 156, 79, -1730, 20 }, { 139, 80, -1721, 20 }, { 121, 81, -1712, 20 }, - { 103, 82, -1702, 20 }, { 85, 83, -1693, 20 }, { 68, 84, -1684, 20 }, - { 50, 85, -1675, 20 }, { 32, 86, -1665, 20 }, { 15, 87, -1656, 20 }, - { -2, 88, -1647, 20 }, { -20, 89, -1637, 20 }, { -38, 90, -1628, 20 }, - { -55, 91, -1619, 20 }, { -73, 92, -1609, 20 }, { -91, 93, -1600, 20 }, - { -108, 94, -1591, 20 }, { -126, 95, -1581, 21 }, { -144, 95, -1572, 21 }, - { -162, 96, -1563, 21 }, { -179, 97, -1553, 21 }, { -197, 97, -1544, 21 }, - { -215, 98, -1535, 21 }, { -232, 99, -1525, 21 }, { -250, 99, -1516, 21 }, - { -268, 100, -1507, 21 }, { -285, 101, -1497, 21 }, { -303, 101, -1488, 21 }, - { -321, 102, -1479, 21 }, { -339, 103, -1469, 21 }, { -356, 103, -1460, 21 }, - { -374, 104, -1451, 21 }, { -392, 105, -1441, 21 }, { -409, 106, -1432, 21 }, - { -427, 107, -1423, 21 }, { -445, 108, -1413, 21 }, { -463, 109, -1404, 21 }, - { -480, 110, -1395, 21 }, { -498, 111, -1386, 21 }, { -516, 112, -1376, 21 }, - { -533, 113, -1367, 21 }, { -551, 114, -1358, 21 }, { -569, 115, -1348, 21 }, - { -587, 116, -1339, 21 }, { -604, 117, -1330, 21 }, { -622, 118, -1320, 21 }, - { -640, 119, -1311, 21 }, { -657, 120, -1302, 21 }, { -675, 121, -1292, 21 }, - { -693, 122, -1283, 21 }, { -711, 123, -1274, 21 }, { -728, 124, -1265, 21 }, - { -746, 125, -1255, 21 }, { -764, 126, -1246, 21 }, { -781, 127, -1237, 21 }, - { -799, 130, -1227, 21 }, { -817, 133, -1218, 21 }, { -835, 136, -1209, 21 }, - { -852, 140, -1199, 21 }, { -870, 146, -1190, 21 }, { -888, 151, -1181, 21 }, - { -906, 157, -1172, 21 }, { -923, 157, -1162, 21 }, { -941, 157, -1153, 21 }, - { -959, 157, -1144, 21 }, { -977, 157, -1135, 21 }, { -994, 157, -1125, 21 }, - { -1012, 157, -1116, 21 }, { -1030, 157, -1107, 21 }, { -1048, 157, -1097, 21 }, - { -1065, 157, -1088, 21 }, { -1083, 157, -1079, 21 }, { -1101, 157, -1070, 21 }, - { -1118, 157, -1060, 21 }, { -1136, 157, -1051, 21 }, { -1154, 157, -1042, 21 }, - { -1172, 157, -1033, 21 }, { -1189, 157, -1024, 21 }, { -1207, 157, -1014, 21 }, - { -1225, 157, -1005, 21 }, { -1243, 157, -996, 21 }, { -1260, 157, -987, 21 }, - { -1278, 157, -977, 21 }, { -1296, 157, -968, 21 }, { -1314, 157, -959, 21 }, - { -1332, 157, -950, 21 }, { -1349, 157, -940, 21 }, { -1367, 157, -931, 21 }, - { -1385, 157, -922, 21 }, { -1403, 157, -913, 21 }, { -1420, 157, -904, 21 }, - { -1438, 157, -894, 21 }, { -1456, 157, -885, 21 }, { -1474, 157, -876, 21 }, - { -1491, 157, -867, 21 }, { -1509, 147, -858, 22 }, { -1527, 137, -848, 22 }, - { -1545, 127, -839, 22 }, { -1562, 117, -830, 22 }, { -1580, 107, -821, 22 }, - { -1598, 97, -811, 22 }, { -1616, 87, -802, 22 }, { -1633, 77, -793, 22 }, - { -1651, 67, -784, 22 }, { -1669, 57, -775, 22 }, { -1687, 47, -765, 22 }, - { -1705, 37, -756, 22 }, { -1722, 27, -747, 22 }, { -1740, 17, -738, 22 }, - { -1758, 7, -729, 22 }, { -1776, 0, -719, 22 }, { -1793, 0, -710, 22 }, - { -1811, 0, -701, 22 }, { -1829, 0, -692, 22 }, { -1847, 0, -683, 22 }, - { -1865, 0, -673, 22 }, { -1882, 0, -664, 22 }, { -1900, 0, -655, 23 }, - { -1918, 0, -646, 23 }, { -1936, 0, -637, 23 }, { -1953, 0, -627, 23 }, - { -1971, 0, -618, 23 }, { -1989, 0, -609, 23 }, { -2007, 0, -600, 23 }, - { -2024, 0, -591, 23 }, { -2042, 0, -581, 23 }, { -2060, 0, -572, 23 }, - { -2078, 0, -563, 23 }, { -2095, 0, -553, 23 }, { -2113, 0, -544, 23 }, - { -2131, 0, -534, 23 }, { -2148, 0, -525, 23 }, { -2166, 0, -515, 23 }, - { -2183, 0, -506, 23 }, { -2201, 0, -496, 23 }, { -2218, 0, -486, 23 }, - { -2236, 0, -476, 23 }, { -2253, 0, -466, 23 }, { -2270, 0, -456, 23 }, - { -2287, 0, -446, 23 }, { -2304, 0, -435, 23 }, { -2321, 0, -424, 23 }, - { -2337, 0, -412, 23 }, { -2351, 0, -398, 23 }, { -2365, 0, -383, 23 }, - { -2377, 0, -367, 23 }, { -2388, 0, -351, 24 }, { -2398, 0, -333, 24 }, - { -2406, 0, -315, 24 }, { -2414, 0, -297, 24 }, { -2420, 0, -277, 24 }, - { -2424, 0, -258, 24 }, { -2427, 0, -238, 24 }, { -2429, 0, -218, 24 }, - { -2430, 0, -198, 24 }, { -2429, 0, -178, 24 }, { -2427, 0, -158, 24 }, - { -2424, 0, -139, 24 }, { -2420, 0, -119, 24 }, { -2414, 0, -100, 24 }, - { -2407, 0, -81, 24 }, { -2399, 0, -63, 24 }, { -2390, 0, -45, 24 }, - { -2380, 0, -28, 24 }, { -2369, 0, -11, 24 }, { -2357, 0, 4, 24 }, - { -2344, 0, 19, 24 }, { -2330, 0, 33, 24 }, { -2314, 0, 45, 24 }, - { -2296, 0, 55, 24 }, { -2278, 0, 63, 24 }, { -2259, 0, 70, 25 }, - { -2240, 1, 77, 25 }, { -2221, 2, 84, 25 }, { -2203, 3, 90, 25 }, - { -2184, 3, 96, 25 }, { -2164, 4, 102, 25 }, { -2145, 5, 108, 25 }, - { -2126, 6, 114, 25 }, { -2107, 6, 121, 25 }, { -2088, 7, 127, 25 }, - { -2069, 8, 133, 25 }, { -2050, 9, 140, 25 }, { -2031, 10, 146, 25 }, - { -2013, 11, 153, 25 }, { -1994, 12, 160, 25 }, { -1975, 13, 168, 25 }, - { -1957, 13, 176, 25 }, { -1940, 14, 186, 25 }, { -1923, 14, 196, 25 }, - { -1906, 15, 208, 25 }, { -1890, 15, 220, 25 }, { -1875, 16, 233, 25 }, - { -1861, 17, 247, 25 }, { -1848, 17, 262, 25 }, { -1835, 18, 278, 25 }, - { -1823, 18, 294, 25 }, { -1813, 19, 311, 25 }, { -1803, 19, 328, 25 }, - { -1794, 20, 346, 25 }, { -1786, 21, 365, 25 }, { -1778, 21, 383, 25 }, - { -1772, 22, 402, 25 }, { -1765, 22, 421, 25 }, { -1759, 23, 440, 25 }, - { -1754, 23, 459, 25 }, { -1749, 24, 479, 25 }, { -1744, 24, 498, 25 }, - { -1739, 25, 518, 25 }, { -1734, 25, 537, 25 }, { -1728, 26, 556, 26 }, - { -1721, 26, 575, 26 }, { -1713, 27, 593, 26 }, { -1704, 28, 611, 26 }, - { -1694, 28, 628, 26 }, { -1682, 29, 644, 26 }, { -1668, 29, 659, 26 }, - { -1653, 30, 672, 26 }, { -1636, 31, 683, 26 }, { -1618, 32, 691, 26 }, - { -1599, 33, 697, 26 }, { -1579, 34, 700, 26 }, { -1559, 35, 701, 26 }, - { -1539, 36, 700, 26 }, { -1520, 36, 697, 26 }, { -1500, 37, 693, 26 }, - { -1481, 38, 686, 26 }, { -1464, 38, 677, 26 }, { -1447, 39, 666, 26 }, - { -1432, 39, 652, 26 }, { -1419, 38, 638, 26 }, { -1407, 38, 621, 26 }, - { -1397, 37, 604, 26 }, { -1387, 36, 587, 26 }, { -1379, 33, 568, 26 }, - { -1371, 31, 550, 26 }, { -1364, 28, 531, 26 }, { -1357, 25, 512, 27 }, - { -1351, 22, 493, 27 }, { -1344, 19, 474, 27 }, { -1338, 16, 456, 27 }, - { -1330, 13, 437, 27 }, { -1322, 10, 419, 27 }, { -1313, 8, 401, 27 }, - { -1302, 6, 384, 27 }, { -1290, 5, 368, 27 }, { -1275, 4, 355, 27 }, - { -1259, 3, 343, 27 }, { -1242, 2, 332, 27 }, { -1224, 1, 324, 27 }, - { -1205, 0, 317, 27 }, { -1186, 0, 313, 27 }, { -1166, 0, 312, 27 }, - { -1146, 0, 316, 27 }, { -1127, 0, 321, 27 }, { -1107, 0, 325, 27 }, - { -1088, 0, 330, 27 }, { -1068, 0, 335, 27 }, { -1049, 0, 340, 27 }, - { -1030, 0, 345, 27 }, { -1010, 0, 351, 27 }, { -991, 0, 356, 27 }, - { -972, 0, 361, 27 }, { -952, 0, 366, 27 }, { -933, 0, 371, 27 }, - { -914, 0, 377, 27 }, { -894, 1, 382, 27 }, { -875, 1, 387, 27 }, - { -856, 2, 392, 27 }, { -836, 3, 397, 27 }, { -817, 3, 402, 27 }, - { -797, 3, 407, 27 }, { -778, 3, 412, 27 }, { -759, 3, 416, 27 }, - { -739, 3, 421, 28 }, { -720, 3, 426, 28 }, { -700, 3, 430, 28 }, - { -681, 3, 435, 28 }, { -661, 3, 439, 28 }, { -642, 3, 444, 28 }, - { -622, 4, 448, 28 }, { -603, 5, 452, 28 }, { -583, 6, 456, 28 }, - { -563, 7, 460, 28 }, { -544, 8, 464, 28 }, { -524, 9, 467, 28 }, - { -504, 10, 470, 28 }, { -484, 10, 473, 28 }, { -464, 11, 475, 28 }, - { -444, 11, 476, 28 }, { -424, 12, 477, 28 }, { -404, 12, 477, 28 }, - { -384, 13, 477, 28 }, { -365, 13, 474, 28 }, { -345, 14, 471, 28 }, - { -325, 14, 466, 28 }, { -306, 14, 461, 28 }, { -287, 14, 454, 28 }, - { -269, 13, 446, 28 }, { -251, 13, 437, 29 }, { -233, 14, 428, 29 }, - { -216, 13, 417, 29 }, { -200, 12, 405, 29 }, { -185, 12, 393, 29 }, - { -170, 11, 379, 29 }, { -156, 11, 365, 29 }, { -143, 10, 350, 29 }, - { -131, 10, 334, 29 }, { -120, 10, 317, 29 }, { -109, 9, 300, 29 }, - { -100, 9, 282, 29 }, { -90, 9, 265, 29 }, { -82, 8, 246, 29 }, - { -75, 8, 228, 29 }, { -69, 8, 209, 29 }, { -64, 7, 189, 29 }, - { -62, 7, 170, 29 }, { -60, 6, 150, 29 }, { -59, 4, 130, 1 }, - { -58, 4, 110, 1 }, { -58, 4, 90, 1 }, { -58, 4, 70, 1 }, - { -57, 4, 50, 1 }, { -57, 4, 30, 1 }, { -57, 4, 9, 1 }, - { -57, 3, -10, 1 }, { -58, 2, -30, 1 }, { -58, 1, -50, 1 }, - { -58, 0, -70, 1 }, { -58, 0, -90, 1 }, { -59, 0, -110, 1 }, - { -59, 0, -130, 1 }, { -59, 0, -150, 1 }, { -60, 0, -170, 1 }, - { -60, 0, -190, 1 }, { -60, 0, -210, 1 }, { -61, 0, -230, 1 }, - { -61, 0, -250, 1 }, { -61, 0, -270, 1 }, { -62, 0, -290, 1 }, - { -62, 0, -310, 1 }, { -62, 0, -330, 1 }, { -32768, -32768, -32768, 0 }, +#include "courses/royal_raceway/d_course_royal_raceway_track_path.inc.c" }; +#endif // 0xD460 Vtx d_course_royal_raceway_tree_model[] = { @@ -5504,3 +6083,12 @@ TrackSections d_course_royal_raceway_addr[] = { { d_course_royal_raceway_packed_dl_A618, RAMP, 255, 0x0000 }, { 0x00000000, 0, 0, 0x0000 }, }; + +#ifdef VERSION_JP /* VERSION_JP path order: JP puts the paths last */ +TrackPathPoint d_course_royal_raceway_unknown_path[] = { +#include "courses/royal_raceway/d_course_royal_raceway_unknown_path.inc.c" +}; +TrackPathPoint d_course_royal_raceway_track_path[] = { +#include "courses/royal_raceway/d_course_royal_raceway_track_path.inc.c" +}; +#endif diff --git a/courses/royal_raceway/course_offsets.c b/courses/royal_raceway/course_offsets.c index 60c52f8c71..cea2ce9b33 100644 --- a/courses/royal_raceway/course_offsets.c +++ b/courses/royal_raceway/course_offsets.c @@ -46,6 +46,54 @@ extern u8 gTexture648508[]; extern u8 gTexture6449D4[]; extern u8 gTexture67FE0C[]; +#ifdef VERSION_JP /* JP ships different sign textures, so their compressed sizes differ */ +const course_texture royal_raceway_textures[] = { + { gTexture64619C, 0x0124, 0x0800, 0x0 }, + { gTexture645134, 0x052C, 0x0800, 0x0 }, + { gTextureWoodDoor1, 0x0903, 0x1000, 0x0 }, + { gTexture64BB60, 0x0169, 0x0800, 0x0 }, + { gTextureGrass3, 0x0372, 0x0800, 0x0 }, + { gTexture64F9E8, 0x020B, 0x1000, 0x0 }, + { gTextureFlagRed, 0x019E, 0x0800, 0x0 }, + { gTextureCrownJewelBlue, 0x0301, 0x0800, 0x0 }, + { gTextureCrown, 0x0106, 0x0800, 0x0 }, + { gTextureCrownJewelPink, 0x0313, 0x0800, 0x0 }, + { gTextureSignKoopaAir0, 0x03C2, 0x1000, 0x0 }, + { gTextureSignKoopaAir1, 0x0319, 0x1000, 0x0 }, + { gTexture6684F8, 0x010D, 0x0800, 0x0 }, + { gTextureSignLuigis0, 0x026A, 0x1000, 0x0 }, + { gTextureSignLuigis1, 0x02CC, 0x1000, 0x0 }, + { gTextureSignMarioStar0, 0x0349, 0x1000, 0x0 }, + { gTextureSignMarioStar1, 0x02D7, 0x1000, 0x0 }, + { gTexture66CA98, 0x02C9, 0x0800, 0x0 }, + { gTextureCheckerboardPink, 0x0157, 0x0800, 0x0 }, + { gTexture670AC8, 0x0FBF, 0x1000, 0x0 }, + { gTextureRoad0, 0x0300, 0x1000, 0x0 }, + { gTextureRoadFinish0, 0x0338, 0x1000, 0x0 }, + { gTextureSignYoshi, 0x0342, 0x1000, 0x0 }, + { gTextureCheckerboardBlueGray, 0x027F, 0x1000, 0x0 }, + { gTextureCastleBricks, 0x0B33, 0x1000, 0x0 }, + { gTextureCastleBridge, 0x0428, 0x0800, 0x0 }, + { gTextureGrass8, 0x02CB, 0x0800, 0x0 }, + { gTextureGrass9, 0x0421, 0x0800, 0x0 }, + { gTexture6646B8, 0x0298, 0x1000, 0x0 }, + { gTexture664408, 0x02AE, 0x1000, 0x0 }, + { gTextureBricksRed, 0x0C55, 0x1000, 0x0 }, + { gTexture665C0C, 0x059D, 0x0800, 0x0 }, + { gTexture6661AC, 0x01F7, 0x0800, 0x0 }, + { gTexture6663A4, 0x05F6, 0x0800, 0x0 }, + { gTexture667BAC, 0x067A, 0x0800, 0x0 }, + { gTextureFlagRed2, 0x0186, 0x0800, 0x0 }, + { gTexture66DB60, 0x01D6, 0x0800, 0x0 }, + { gTextureStainglassPeach0, 0x0ED1, 0x1000, 0x0 }, + { gTextureStainglassPeach1, 0x0DA9, 0x1000, 0x0 }, + { gTextureFencePostWooden, 0x083D, 0x1000, 0x0 }, + { gTexture648508, 0x01FE, 0x1000, 0x0 }, + { gTexture6449D4, 0x075D, 0x0800, 0x0 }, + { gTexture67FE0C, 0x02DE, 0x0800, 0x0 }, + { 0x00000000, 0x0000, 0x0000, 0x0 }, +}; +#else const course_texture royal_raceway_textures[] = { { gTexture64619C, 0x0124, 0x0800, 0x0 }, { gTexture645134, 0x052C, 0x0800, 0x0 }, @@ -92,6 +140,7 @@ const course_texture royal_raceway_textures[] = { { gTexture67FE0C, 0x02DE, 0x0800, 0x0 }, { 0x00000000, 0x0000, 0x0000, 0x0 }, }; +#endif const Gfx* royal_raceway_dls[] = { d_course_royal_raceway_dl_0, d_course_royal_raceway_dl_360, d_course_royal_raceway_dl_258, diff --git a/courses/royal_raceway/d_course_royal_raceway_track_path.inc.c b/courses/royal_raceway/d_course_royal_raceway_track_path.inc.c new file mode 100644 index 0000000000..e0997d3570 --- /dev/null +++ b/courses/royal_raceway/d_course_royal_raceway_track_path.inc.c @@ -0,0 +1,301 @@ + { -62, 0, -331, 1 }, { -61, 0, -350, 2 }, { -61, 0, -371, 2 }, + { -60, 0, -391, 2 }, { -60, 0, -411, 2 }, { -60, 0, -431, 2 }, + { -60, 0, -451, 2 }, { -60, 0, -471, 2 }, { -60, 0, -491, 2 }, + { -60, 0, -511, 2 }, { -60, 0, -531, 2 }, { -60, 0, -551, 2 }, + { -60, 0, -571, 2 }, { -60, 0, -591, 2 }, { -60, 0, -611, 2 }, + { -60, 0, -631, 2 }, { -60, 0, -651, 2 }, { -60, 0, -671, 2 }, + { -60, 0, -691, 2 }, { -60, 0, -711, 2 }, { -60, 0, -731, 2 }, + { -60, 0, -751, 2 }, { -61, 0, -771, 2 }, { -61, 0, -791, 2 }, + { -61, 0, -811, 2 }, { -61, 0, -831, 2 }, { -61, 0, -851, 2 }, + { -61, 0, -871, 2 }, { -61, 0, -891, 2 }, { -61, 0, -911, 2 }, + { -61, 0, -931, 2 }, { -61, 0, -951, 2 }, { -62, 0, -971, 2 }, + { -62, 0, -991, 2 }, { -62, 0, -1011, 2 }, { -62, 0, -1031, 2 }, + { -62, 0, -1051, 2 }, { -62, 0, -1071, 2 }, { -62, 0, -1091, 3 }, + { -62, 0, -1111, 3 }, { -62, 0, -1131, 3 }, { -62, 0, -1151, 3 }, + { -63, 0, -1171, 3 }, { -63, 0, -1191, 3 }, { -63, 0, -1211, 3 }, + { -63, 0, -1231, 3 }, { -63, 0, -1251, 3 }, { -63, 0, -1271, 3 }, + { -63, 0, -1291, 3 }, { -63, 0, -1311, 3 }, { -63, 0, -1331, 3 }, + { -63, 0, -1351, 3 }, { -63, 0, -1371, 3 }, { -63, 0, -1391, 3 }, + { -63, 0, -1411, 3 }, { -63, 0, -1431, 3 }, { -63, 0, -1451, 3 }, + { -63, 0, -1471, 3 }, { -63, 0, -1491, 3 }, { -63, 0, -1511, 3 }, + { -63, 0, -1531, 3 }, { -64, 0, -1551, 3 }, { -64, 0, -1571, 3 }, + { -64, 0, -1591, 3 }, { -64, 0, -1611, 3 }, { -64, 0, -1631, 3 }, + { -64, 0, -1651, 3 }, { -64, 0, -1671, 3 }, { -65, 0, -1691, 3 }, + { -65, 0, -1711, 3 }, { -66, 0, -1731, 3 }, { -67, 0, -1751, 3 }, + { -68, 0, -1771, 3 }, { -70, 0, -1791, 3 }, { -73, 0, -1811, 3 }, + { -78, 0, -1830, 3 }, { -86, 0, -1849, 3 }, { -95, 0, -1867, 3 }, + { -105, 0, -1883, 3 }, { -117, 0, -1900, 3 }, { -130, 0, -1915, 4 }, + { -144, 0, -1930, 4 }, { -158, 0, -1943, 4 }, { -173, 0, -1957, 4 }, + { -189, 0, -1969, 4 }, { -205, 1, -1981, 4 }, { -221, 1, -1993, 4 }, + { -237, 2, -2005, 4 }, { -254, 2, -2016, 4 }, { -270, 3, -2028, 4 }, + { -287, 4, -2039, 4 }, { -303, 4, -2050, 4 }, { -320, 5, -2061, 4 }, + { -336, 5, -2073, 4 }, { -353, 6, -2084, 4 }, { -369, 6, -2095, 4 }, + { -386, 7, -2106, 4 }, { -402, 7, -2118, 4 }, { -419, 8, -2129, 4 }, + { -436, 8, -2140, 4 }, { -452, 9, -2151, 4 }, { -469, 9, -2163, 5 }, + { -485, 10, -2174, 5 }, { -502, 10, -2185, 5 }, { -518, 10, -2196, 5 }, + { -535, 11, -2207, 5 }, { -552, 11, -2218, 5 }, { -568, 11, -2230, 5 }, + { -585, 12, -2241, 5 }, { -602, 12, -2252, 5 }, { -618, 13, -2263, 5 }, + { -635, 14, -2274, 5 }, { -652, 15, -2285, 5 }, { -669, 15, -2295, 5 }, + { -686, 16, -2306, 5 }, { -703, 17, -2317, 5 }, { -720, 18, -2327, 5 }, + { -737, 19, -2338, 5 }, { -754, 20, -2348, 5 }, { -771, 21, -2358, 5 }, + { -788, 21, -2368, 5 }, { -806, 23, -2378, 5 }, { -824, 25, -2387, 5 }, + { -842, 28, -2395, 5 }, { -860, 30, -2403, 5 }, { -879, 32, -2411, 5 }, + { -898, 34, -2417, 5 }, { -917, 35, -2422, 5 }, { -937, 36, -2425, 5 }, + { -957, 37, -2427, 5 }, { -977, 38, -2428, 6 }, { -997, 38, -2427, 6 }, + { -1017, 39, -2425, 6 }, { -1037, 40, -2422, 6 }, { -1056, 41, -2418, 6 }, + { -1076, 41, -2413, 6 }, { -1095, 42, -2407, 6 }, { -1113, 42, -2399, 6 }, + { -1131, 42, -2390, 6 }, { -1147, 43, -2379, 6 }, { -1163, 43, -2366, 6 }, + { -1178, 43, -2353, 6 }, { -1191, 43, -2338, 6 }, { -1204, 43, -2322, 6 }, + { -1215, 42, -2306, 6 }, { -1226, 42, -2289, 6 }, { -1235, 41, -2271, 6 }, + { -1243, 41, -2253, 6 }, { -1250, 41, -2234, 6 }, { -1256, 40, -2215, 6 }, + { -1262, 39, -2196, 6 }, { -1267, 39, -2176, 7 }, { -1270, 38, -2157, 7 }, + { -1271, 37, -2137, 7 }, { -1270, 36, -2117, 7 }, { -1267, 35, -2097, 7 }, + { -1263, 33, -2077, 7 }, { -1258, 31, -2058, 7 }, { -1252, 30, -2039, 7 }, + { -1246, 28, -2020, 7 }, { -1238, 25, -2001, 7 }, { -1231, 24, -1983, 7 }, + { -1223, 22, -1964, 7 }, { -1215, 20, -1946, 7 }, { -1207, 18, -1928, 7 }, + { -1198, 16, -1910, 7 }, { -1189, 15, -1892, 7 }, { -1180, 14, -1874, 7 }, + { -1171, 12, -1856, 7 }, { -1162, 11, -1838, 7 }, { -1153, 10, -1820, 7 }, + { -1144, 9, -1802, 7 }, { -1134, 8, -1785, 8 }, { -1125, 8, -1767, 8 }, + { -1115, 7, -1750, 8 }, { -1105, 6, -1732, 8 }, { -1095, 6, -1715, 8 }, + { -1085, 5, -1698, 8 }, { -1075, 4, -1680, 8 }, { -1066, 3, -1663, 8 }, + { -1057, 2, -1645, 8 }, { -1048, 1, -1627, 8 }, { -1040, 0, -1608, 8 }, + { -1033, 0, -1590, 8 }, { -1027, 0, -1571, 8 }, { -1022, 0, -1551, 8 }, + { -1019, 0, -1531, 8 }, { -1017, 0, -1512, 8 }, { -1017, 0, -1492, 8 }, + { -1021, 0, -1472, 8 }, { -1028, 0, -1453, 8 }, { -1037, 0, -1435, 8 }, + { -1048, 0, -1418, 8 }, { -1060, 0, -1402, 8 }, { -1073, 0, -1388, 8 }, + { -1088, 0, -1375, 8 }, { -1105, 0, -1364, 9 }, { -1123, 0, -1355, 9 }, + { -1142, 0, -1348, 9 }, { -1161, 0, -1344, 9 }, { -1181, 0, -1341, 9 }, + { -1201, 0, -1341, 9 }, { -1221, 0, -1343, 9 }, { -1241, 0, -1346, 9 }, + { -1260, 0, -1352, 9 }, { -1278, 0, -1360, 9 }, { -1296, 0, -1370, 9 }, + { -1313, 0, -1381, 9 }, { -1328, 0, -1394, 9 }, { -1342, 0, -1408, 9 }, + { -1355, 0, -1424, 9 }, { -1367, 0, -1440, 9 }, { -1378, 0, -1456, 9 }, + { -1390, 0, -1472, 9 }, { -1401, 0, -1489, 9 }, { -1413, 0, -1505, 9 }, + { -1424, 0, -1521, 9 }, { -1435, 0, -1538, 9 }, { -1447, 0, -1555, 9 }, + { -1458, 0, -1571, 10 }, { -1469, 0, -1588, 10 }, { -1480, 0, -1604, 10 }, + { -1491, 0, -1621, 10 }, { -1503, 0, -1637, 10 }, { -1514, 0, -1654, 10 }, + { -1525, 0, -1671, 10 }, { -1536, 0, -1687, 10 }, { -1547, 0, -1704, 10 }, + { -1559, 0, -1720, 10 }, { -1570, 0, -1737, 10 }, { -1581, 0, -1753, 10 }, + { -1593, 0, -1770, 10 }, { -1604, 0, -1786, 10 }, { -1616, 0, -1802, 10 }, + { -1628, 0, -1819, 10 }, { -1639, 0, -1835, 10 }, { -1651, 0, -1851, 10 }, + { -1663, 0, -1867, 10 }, { -1675, 0, -1883, 10 }, { -1687, 0, -1899, 10 }, + { -1699, 0, -1915, 10 }, { -1711, 0, -1931, 10 }, { -1723, 0, -1947, 10 }, + { -1736, 0, -1963, 10 }, { -1748, 0, -1979, 10 }, { -1760, 0, -1995, 10 }, + { -1771, 0, -2011, 10 }, { -1783, 0, -2027, 10 }, { -1794, 0, -2044, 10 }, + { -1805, 0, -2061, 10 }, { -1815, 0, -2078, 10 }, { -1824, 0, -2096, 10 }, + { -1833, 0, -2114, 11 }, { -1841, 0, -2132, 11 }, { -1848, 0, -2151, 11 }, + { -1853, 0, -2170, 11 }, { -1857, 0, -2190, 11 }, { -1860, 0, -2210, 11 }, + { -1861, 0, -2230, 11 }, { -1861, 0, -2250, 11 }, { -1859, 0, -2270, 11 }, + { -1856, 0, -2289, 11 }, { -1852, 0, -2309, 11 }, { -1846, 0, -2328, 11 }, + { -1839, 0, -2347, 11 }, { -1831, 0, -2365, 11 }, { -1822, 0, -2383, 11 }, + { -1812, 0, -2400, 11 }, { -1801, 0, -2417, 11 }, { -1789, 0, -2433, 11 }, + { -1777, 0, -2449, 11 }, { -1764, 0, -2464, 11 }, { -1750, 0, -2478, 11 }, + { -1735, 0, -2492, 11 }, { -1721, 0, -2506, 11 }, { -1706, 0, -2519, 11 }, + { -1690, 0, -2532, 12 }, { -1675, 0, -2545, 12 }, { -1660, 0, -2557, 12 }, + { -1644, 0, -2570, 12 }, { -1628, 0, -2582, 12 }, { -1612, 0, -2595, 12 }, + { -1597, 0, -2607, 12 }, { -1581, 1, -2619, 12 }, { -1565, 2, -2631, 12 }, + { -1549, 3, -2643, 12 }, { -1533, 4, -2655, 12 }, { -1517, 5, -2667, 12 }, + { -1500, 6, -2679, 12 }, { -1484, 6, -2691, 12 }, { -1468, 7, -2703, 12 }, + { -1452, 8, -2714, 12 }, { -1436, 9, -2726, 12 }, { -1419, 10, -2738, 12 }, + { -1403, 11, -2749, 12 }, { -1387, 12, -2761, 12 }, { -1370, 12, -2772, 12 }, + { -1354, 13, -2784, 12 }, { -1338, 14, -2795, 12 }, { -1321, 15, -2807, 12 }, + { -1305, 15, -2818, 12 }, { -1288, 16, -2829, 12 }, { -1271, 17, -2840, 12 }, + { -1254, 18, -2851, 12 }, { -1238, 19, -2862, 12 }, { -1221, 19, -2872, 12 }, + { -1203, 20, -2883, 13 }, { -1186, 20, -2892, 13 }, { -1168, 21, -2902, 13 }, + { -1150, 21, -2910, 13 }, { -1132, 22, -2918, 13 }, { -1113, 22, -2924, 13 }, + { -1094, 23, -2930, 13 }, { -1074, 24, -2936, 13 }, { -1055, 24, -2940, 13 }, + { -1035, 25, -2944, 13 }, { -1015, 25, -2946, 13 }, { -995, 26, -2948, 13 }, + { -976, 26, -2949, 13 }, { -956, 27, -2950, 13 }, { -936, 27, -2950, 13 }, + { -916, 28, -2949, 13 }, { -896, 28, -2947, 13 }, { -876, 29, -2945, 13 }, + { -856, 29, -2942, 13 }, { -836, 30, -2938, 13 }, { -817, 30, -2932, 13 }, + { -798, 31, -2926, 13 }, { -779, 31, -2919, 13 }, { -761, 32, -2911, 13 }, + { -743, 32, -2902, 13 }, { -725, 33, -2893, 13 }, { -708, 33, -2883, 13 }, + { -690, 33, -2874, 13 }, { -673, 34, -2863, 14 }, { -656, 34, -2853, 14 }, + { -639, 34, -2843, 14 }, { -622, 34, -2832, 14 }, { -605, 34, -2821, 14 }, + { -588, 34, -2810, 14 }, { -572, 34, -2799, 14 }, { -555, 34, -2788, 14 }, + { -538, 34, -2777, 14 }, { -522, 34, -2765, 14 }, { -506, 34, -2754, 14 }, + { -489, 34, -2742, 14 }, { -473, 34, -2730, 14 }, { -457, 34, -2719, 14 }, + { -441, 34, -2707, 14 }, { -425, 34, -2695, 14 }, { -409, 34, -2683, 14 }, + { -393, 34, -2670, 14 }, { -377, 34, -2658, 14 }, { -362, 34, -2646, 14 }, + { -346, 34, -2633, 14 }, { -330, 34, -2621, 14 }, { -314, 34, -2608, 14 }, + { -299, 34, -2596, 14 }, { -282, 34, -2584, 14 }, { -266, 34, -2573, 14 }, + { -250, 34, -2561, 14 }, { -233, 34, -2550, 14 }, { -216, 33, -2539, 15 }, + { -199, 33, -2529, 15 }, { -182, 32, -2519, 15 }, { -164, 32, -2510, 15 }, + { -146, 31, -2502, 15 }, { -127, 31, -2494, 15 }, { -108, 30, -2487, 15 }, + { -89, 29, -2482, 15 }, { -70, 29, -2477, 15 }, { -50, 28, -2473, 15 }, + { -30, 28, -2470, 15 }, { -10, 27, -2469, 15 }, { 9, 26, -2470, 15 }, + { 28, 26, -2472, 15 }, { 48, 25, -2476, 15 }, { 68, 25, -2480, 15 }, + { 87, 24, -2485, 15 }, { 106, 24, -2491, 15 }, { 125, 23, -2496, 15 }, + { 144, 22, -2503, 15 }, { 163, 21, -2509, 15 }, { 182, 20, -2516, 15 }, + { 201, 20, -2523, 15 }, { 220, 19, -2530, 15 }, { 238, 18, -2537, 15 }, + { 257, 17, -2545, 15 }, { 275, 17, -2552, 15 }, { 294, 16, -2560, 15 }, + { 312, 15, -2567, 15 }, { 331, 14, -2575, 15 }, { 349, 14, -2583, 15 }, + { 368, 13, -2591, 16 }, { 386, 12, -2599, 16 }, { 404, 12, -2607, 16 }, + { 423, 11, -2615, 16 }, { 441, 11, -2623, 16 }, { 459, 10, -2631, 16 }, + { 478, 10, -2639, 16 }, { 496, 9, -2648, 16 }, { 514, 9, -2656, 16 }, + { 532, 8, -2664, 16 }, { 550, 8, -2673, 16 }, { 569, 7, -2681, 16 }, + { 587, 7, -2689, 16 }, { 605, 6, -2698, 16 }, { 623, 5, -2706, 16 }, + { 641, 5, -2714, 16 }, { 660, 4, -2723, 16 }, { 678, 4, -2731, 16 }, + { 696, 3, -2740, 16 }, { 714, 3, -2748, 16 }, { 732, 2, -2757, 16 }, + { 750, 2, -2765, 16 }, { 768, 1, -2774, 16 }, { 787, 1, -2782, 16 }, + { 805, 1, -2791, 16 }, { 823, 1, -2799, 16 }, { 841, 1, -2807, 16 }, + { 859, 0, -2816, 16 }, { 877, 0, -2824, 16 }, { 895, 0, -2833, 16 }, + { 914, 0, -2841, 16 }, { 932, 0, -2850, 16 }, { 950, 0, -2858, 16 }, + { 968, 0, -2866, 16 }, { 986, 0, -2875, 16 }, { 1004, 0, -2883, 16 }, + { 1023, 0, -2891, 16 }, { 1041, 0, -2900, 16 }, { 1059, 0, -2908, 16 }, + { 1077, 0, -2916, 17 }, { 1096, 0, -2924, 17 }, { 1114, 0, -2932, 17 }, + { 1132, 0, -2940, 17 }, { 1151, 0, -2948, 17 }, { 1169, 0, -2956, 17 }, + { 1188, 0, -2963, 17 }, { 1207, 0, -2970, 17 }, { 1226, 0, -2976, 17 }, + { 1245, 0, -2982, 17 }, { 1264, 0, -2987, 17 }, { 1284, 0, -2991, 17 }, + { 1304, 0, -2994, 17 }, { 1324, 0, -2995, 17 }, { 1344, 0, -2995, 17 }, + { 1363, 0, -2993, 17 }, { 1383, 0, -2991, 17 }, { 1403, 0, -2987, 17 }, + { 1422, 0, -2983, 17 }, { 1442, 0, -2977, 17 }, { 1461, 0, -2970, 17 }, + { 1479, 0, -2963, 17 }, { 1497, 0, -2954, 17 }, { 1515, 0, -2945, 17 }, + { 1532, 0, -2934, 17 }, { 1547, 0, -2922, 17 }, { 1562, 0, -2908, 17 }, + { 1575, 0, -2893, 17 }, { 1587, 0, -2877, 17 }, { 1598, 0, -2860, 17 }, + { 1608, 0, -2843, 17 }, { 1617, 0, -2825, 18 }, { 1625, 0, -2807, 18 }, + { 1632, 0, -2788, 18 }, { 1637, 0, -2768, 18 }, { 1641, 0, -2749, 18 }, + { 1644, 0, -2729, 18 }, { 1645, 0, -2709, 18 }, { 1646, 0, -2689, 18 }, + { 1644, 0, -2669, 18 }, { 1642, 0, -2649, 18 }, { 1638, 0, -2630, 18 }, + { 1632, 0, -2610, 18 }, { 1626, 0, -2591, 18 }, { 1618, 0, -2573, 18 }, + { 1609, 0, -2555, 18 }, { 1599, 0, -2538, 18 }, { 1588, 0, -2521, 18 }, + { 1576, 0, -2505, 18 }, { 1563, 0, -2490, 18 }, { 1550, 0, -2475, 18 }, + { 1535, 0, -2462, 18 }, { 1519, 0, -2449, 18 }, { 1503, 0, -2438, 18 }, + { 1486, 0, -2427, 18 }, { 1469, 0, -2416, 18 }, { 1452, 0, -2406, 18 }, + { 1434, 0, -2396, 18 }, { 1417, 0, -2387, 18 }, { 1399, 0, -2377, 18 }, + { 1381, 0, -2368, 18 }, { 1363, 0, -2359, 18 }, { 1345, 0, -2350, 19 }, + { 1327, 1, -2342, 19 }, { 1310, 2, -2333, 19 }, { 1292, 3, -2323, 19 }, + { 1274, 3, -2314, 19 }, { 1256, 4, -2305, 19 }, { 1238, 5, -2296, 19 }, + { 1220, 6, -2287, 19 }, { 1203, 7, -2278, 19 }, { 1185, 8, -2269, 19 }, + { 1167, 9, -2260, 19 }, { 1149, 9, -2250, 19 }, { 1131, 10, -2241, 19 }, + { 1114, 11, -2232, 19 }, { 1096, 12, -2223, 19 }, { 1078, 13, -2214, 19 }, + { 1060, 14, -2204, 19 }, { 1043, 15, -2195, 19 }, { 1025, 16, -2186, 19 }, + { 1007, 16, -2177, 19 }, { 989, 17, -2167, 19 }, { 972, 18, -2158, 19 }, + { 954, 19, -2149, 19 }, { 936, 20, -2140, 19 }, { 918, 21, -2130, 19 }, + { 901, 23, -2121, 19 }, { 883, 24, -2112, 19 }, { 865, 25, -2103, 19 }, + { 847, 27, -2093, 19 }, { 830, 28, -2084, 19 }, { 812, 29, -2075, 19 }, + { 794, 31, -2065, 19 }, { 776, 32, -2056, 19 }, { 759, 33, -2047, 19 }, + { 741, 35, -2038, 19 }, { 723, 36, -2028, 19 }, { 706, 37, -2019, 19 }, + { 688, 39, -2010, 19 }, { 670, 40, -2000, 20 }, { 652, 41, -1991, 20 }, + { 635, 43, -1982, 20 }, { 617, 44, -1972, 20 }, { 599, 45, -1963, 20 }, + { 581, 47, -1954, 20 }, { 564, 48, -1945, 20 }, { 546, 49, -1935, 20 }, + { 528, 51, -1926, 20 }, { 511, 52, -1917, 20 }, { 493, 53, -1907, 20 }, + { 475, 55, -1898, 20 }, { 457, 56, -1889, 20 }, { 440, 57, -1879, 20 }, + { 422, 59, -1870, 20 }, { 404, 60, -1861, 20 }, { 387, 61, -1851, 20 }, + { 369, 63, -1842, 20 }, { 351, 64, -1833, 20 }, { 333, 65, -1824, 20 }, + { 316, 67, -1814, 20 }, { 298, 68, -1805, 20 }, { 280, 69, -1796, 20 }, + { 263, 71, -1786, 20 }, { 245, 72, -1777, 20 }, { 227, 73, -1768, 20 }, + { 209, 75, -1758, 20 }, { 192, 76, -1749, 20 }, { 174, 77, -1740, 20 }, + { 156, 79, -1730, 20 }, { 139, 80, -1721, 20 }, { 121, 81, -1712, 20 }, + { 103, 82, -1702, 20 }, { 85, 83, -1693, 20 }, { 68, 84, -1684, 20 }, + { 50, 85, -1675, 20 }, { 32, 86, -1665, 20 }, { 15, 87, -1656, 20 }, + { -2, 88, -1647, 20 }, { -20, 89, -1637, 20 }, { -38, 90, -1628, 20 }, + { -55, 91, -1619, 20 }, { -73, 92, -1609, 20 }, { -91, 93, -1600, 20 }, + { -108, 94, -1591, 20 }, { -126, 95, -1581, 21 }, { -144, 95, -1572, 21 }, + { -162, 96, -1563, 21 }, { -179, 97, -1553, 21 }, { -197, 97, -1544, 21 }, + { -215, 98, -1535, 21 }, { -232, 99, -1525, 21 }, { -250, 99, -1516, 21 }, + { -268, 100, -1507, 21 }, { -285, 101, -1497, 21 }, { -303, 101, -1488, 21 }, + { -321, 102, -1479, 21 }, { -339, 103, -1469, 21 }, { -356, 103, -1460, 21 }, + { -374, 104, -1451, 21 }, { -392, 105, -1441, 21 }, { -409, 106, -1432, 21 }, + { -427, 107, -1423, 21 }, { -445, 108, -1413, 21 }, { -463, 109, -1404, 21 }, + { -480, 110, -1395, 21 }, { -498, 111, -1386, 21 }, { -516, 112, -1376, 21 }, + { -533, 113, -1367, 21 }, { -551, 114, -1358, 21 }, { -569, 115, -1348, 21 }, + { -587, 116, -1339, 21 }, { -604, 117, -1330, 21 }, { -622, 118, -1320, 21 }, + { -640, 119, -1311, 21 }, { -657, 120, -1302, 21 }, { -675, 121, -1292, 21 }, + { -693, 122, -1283, 21 }, { -711, 123, -1274, 21 }, { -728, 124, -1265, 21 }, + { -746, 125, -1255, 21 }, { -764, 126, -1246, 21 }, { -781, 127, -1237, 21 }, + { -799, 130, -1227, 21 }, { -817, 133, -1218, 21 }, { -835, 136, -1209, 21 }, + { -852, 140, -1199, 21 }, { -870, 146, -1190, 21 }, { -888, 151, -1181, 21 }, + { -906, 157, -1172, 21 }, { -923, 157, -1162, 21 }, { -941, 157, -1153, 21 }, + { -959, 157, -1144, 21 }, { -977, 157, -1135, 21 }, { -994, 157, -1125, 21 }, + { -1012, 157, -1116, 21 }, { -1030, 157, -1107, 21 }, { -1048, 157, -1097, 21 }, + { -1065, 157, -1088, 21 }, { -1083, 157, -1079, 21 }, { -1101, 157, -1070, 21 }, + { -1118, 157, -1060, 21 }, { -1136, 157, -1051, 21 }, { -1154, 157, -1042, 21 }, + { -1172, 157, -1033, 21 }, { -1189, 157, -1024, 21 }, { -1207, 157, -1014, 21 }, + { -1225, 157, -1005, 21 }, { -1243, 157, -996, 21 }, { -1260, 157, -987, 21 }, + { -1278, 157, -977, 21 }, { -1296, 157, -968, 21 }, { -1314, 157, -959, 21 }, + { -1332, 157, -950, 21 }, { -1349, 157, -940, 21 }, { -1367, 157, -931, 21 }, + { -1385, 157, -922, 21 }, { -1403, 157, -913, 21 }, { -1420, 157, -904, 21 }, + { -1438, 157, -894, 21 }, { -1456, 157, -885, 21 }, { -1474, 157, -876, 21 }, + { -1491, 157, -867, 21 }, { -1509, 147, -858, 22 }, { -1527, 137, -848, 22 }, + { -1545, 127, -839, 22 }, { -1562, 117, -830, 22 }, { -1580, 107, -821, 22 }, + { -1598, 97, -811, 22 }, { -1616, 87, -802, 22 }, { -1633, 77, -793, 22 }, + { -1651, 67, -784, 22 }, { -1669, 57, -775, 22 }, { -1687, 47, -765, 22 }, + { -1705, 37, -756, 22 }, { -1722, 27, -747, 22 }, { -1740, 17, -738, 22 }, + { -1758, 7, -729, 22 }, { -1776, 0, -719, 22 }, { -1793, 0, -710, 22 }, + { -1811, 0, -701, 22 }, { -1829, 0, -692, 22 }, { -1847, 0, -683, 22 }, + { -1865, 0, -673, 22 }, { -1882, 0, -664, 22 }, { -1900, 0, -655, 23 }, + { -1918, 0, -646, 23 }, { -1936, 0, -637, 23 }, { -1953, 0, -627, 23 }, + { -1971, 0, -618, 23 }, { -1989, 0, -609, 23 }, { -2007, 0, -600, 23 }, + { -2024, 0, -591, 23 }, { -2042, 0, -581, 23 }, { -2060, 0, -572, 23 }, + { -2078, 0, -563, 23 }, { -2095, 0, -553, 23 }, { -2113, 0, -544, 23 }, + { -2131, 0, -534, 23 }, { -2148, 0, -525, 23 }, { -2166, 0, -515, 23 }, + { -2183, 0, -506, 23 }, { -2201, 0, -496, 23 }, { -2218, 0, -486, 23 }, + { -2236, 0, -476, 23 }, { -2253, 0, -466, 23 }, { -2270, 0, -456, 23 }, + { -2287, 0, -446, 23 }, { -2304, 0, -435, 23 }, { -2321, 0, -424, 23 }, + { -2337, 0, -412, 23 }, { -2351, 0, -398, 23 }, { -2365, 0, -383, 23 }, + { -2377, 0, -367, 23 }, { -2388, 0, -351, 24 }, { -2398, 0, -333, 24 }, + { -2406, 0, -315, 24 }, { -2414, 0, -297, 24 }, { -2420, 0, -277, 24 }, + { -2424, 0, -258, 24 }, { -2427, 0, -238, 24 }, { -2429, 0, -218, 24 }, + { -2430, 0, -198, 24 }, { -2429, 0, -178, 24 }, { -2427, 0, -158, 24 }, + { -2424, 0, -139, 24 }, { -2420, 0, -119, 24 }, { -2414, 0, -100, 24 }, + { -2407, 0, -81, 24 }, { -2399, 0, -63, 24 }, { -2390, 0, -45, 24 }, + { -2380, 0, -28, 24 }, { -2369, 0, -11, 24 }, { -2357, 0, 4, 24 }, + { -2344, 0, 19, 24 }, { -2330, 0, 33, 24 }, { -2314, 0, 45, 24 }, + { -2296, 0, 55, 24 }, { -2278, 0, 63, 24 }, { -2259, 0, 70, 25 }, + { -2240, 1, 77, 25 }, { -2221, 2, 84, 25 }, { -2203, 3, 90, 25 }, + { -2184, 3, 96, 25 }, { -2164, 4, 102, 25 }, { -2145, 5, 108, 25 }, + { -2126, 6, 114, 25 }, { -2107, 6, 121, 25 }, { -2088, 7, 127, 25 }, + { -2069, 8, 133, 25 }, { -2050, 9, 140, 25 }, { -2031, 10, 146, 25 }, + { -2013, 11, 153, 25 }, { -1994, 12, 160, 25 }, { -1975, 13, 168, 25 }, + { -1957, 13, 176, 25 }, { -1940, 14, 186, 25 }, { -1923, 14, 196, 25 }, + { -1906, 15, 208, 25 }, { -1890, 15, 220, 25 }, { -1875, 16, 233, 25 }, + { -1861, 17, 247, 25 }, { -1848, 17, 262, 25 }, { -1835, 18, 278, 25 }, + { -1823, 18, 294, 25 }, { -1813, 19, 311, 25 }, { -1803, 19, 328, 25 }, + { -1794, 20, 346, 25 }, { -1786, 21, 365, 25 }, { -1778, 21, 383, 25 }, + { -1772, 22, 402, 25 }, { -1765, 22, 421, 25 }, { -1759, 23, 440, 25 }, + { -1754, 23, 459, 25 }, { -1749, 24, 479, 25 }, { -1744, 24, 498, 25 }, + { -1739, 25, 518, 25 }, { -1734, 25, 537, 25 }, { -1728, 26, 556, 26 }, + { -1721, 26, 575, 26 }, { -1713, 27, 593, 26 }, { -1704, 28, 611, 26 }, + { -1694, 28, 628, 26 }, { -1682, 29, 644, 26 }, { -1668, 29, 659, 26 }, + { -1653, 30, 672, 26 }, { -1636, 31, 683, 26 }, { -1618, 32, 691, 26 }, + { -1599, 33, 697, 26 }, { -1579, 34, 700, 26 }, { -1559, 35, 701, 26 }, + { -1539, 36, 700, 26 }, { -1520, 36, 697, 26 }, { -1500, 37, 693, 26 }, + { -1481, 38, 686, 26 }, { -1464, 38, 677, 26 }, { -1447, 39, 666, 26 }, + { -1432, 39, 652, 26 }, { -1419, 38, 638, 26 }, { -1407, 38, 621, 26 }, + { -1397, 37, 604, 26 }, { -1387, 36, 587, 26 }, { -1379, 33, 568, 26 }, + { -1371, 31, 550, 26 }, { -1364, 28, 531, 26 }, { -1357, 25, 512, 27 }, + { -1351, 22, 493, 27 }, { -1344, 19, 474, 27 }, { -1338, 16, 456, 27 }, + { -1330, 13, 437, 27 }, { -1322, 10, 419, 27 }, { -1313, 8, 401, 27 }, + { -1302, 6, 384, 27 }, { -1290, 5, 368, 27 }, { -1275, 4, 355, 27 }, + { -1259, 3, 343, 27 }, { -1242, 2, 332, 27 }, { -1224, 1, 324, 27 }, + { -1205, 0, 317, 27 }, { -1186, 0, 313, 27 }, { -1166, 0, 312, 27 }, + { -1146, 0, 316, 27 }, { -1127, 0, 321, 27 }, { -1107, 0, 325, 27 }, + { -1088, 0, 330, 27 }, { -1068, 0, 335, 27 }, { -1049, 0, 340, 27 }, + { -1030, 0, 345, 27 }, { -1010, 0, 351, 27 }, { -991, 0, 356, 27 }, + { -972, 0, 361, 27 }, { -952, 0, 366, 27 }, { -933, 0, 371, 27 }, + { -914, 0, 377, 27 }, { -894, 1, 382, 27 }, { -875, 1, 387, 27 }, + { -856, 2, 392, 27 }, { -836, 3, 397, 27 }, { -817, 3, 402, 27 }, + { -797, 3, 407, 27 }, { -778, 3, 412, 27 }, { -759, 3, 416, 27 }, + { -739, 3, 421, 28 }, { -720, 3, 426, 28 }, { -700, 3, 430, 28 }, + { -681, 3, 435, 28 }, { -661, 3, 439, 28 }, { -642, 3, 444, 28 }, + { -622, 4, 448, 28 }, { -603, 5, 452, 28 }, { -583, 6, 456, 28 }, + { -563, 7, 460, 28 }, { -544, 8, 464, 28 }, { -524, 9, 467, 28 }, + { -504, 10, 470, 28 }, { -484, 10, 473, 28 }, { -464, 11, 475, 28 }, + { -444, 11, 476, 28 }, { -424, 12, 477, 28 }, { -404, 12, 477, 28 }, + { -384, 13, 477, 28 }, { -365, 13, 474, 28 }, { -345, 14, 471, 28 }, + { -325, 14, 466, 28 }, { -306, 14, 461, 28 }, { -287, 14, 454, 28 }, + { -269, 13, 446, 28 }, { -251, 13, 437, 29 }, { -233, 14, 428, 29 }, + { -216, 13, 417, 29 }, { -200, 12, 405, 29 }, { -185, 12, 393, 29 }, + { -170, 11, 379, 29 }, { -156, 11, 365, 29 }, { -143, 10, 350, 29 }, + { -131, 10, 334, 29 }, { -120, 10, 317, 29 }, { -109, 9, 300, 29 }, + { -100, 9, 282, 29 }, { -90, 9, 265, 29 }, { -82, 8, 246, 29 }, + { -75, 8, 228, 29 }, { -69, 8, 209, 29 }, { -64, 7, 189, 29 }, + { -62, 7, 170, 29 }, { -60, 6, 150, 29 }, { -59, 4, 130, 1 }, + { -58, 4, 110, 1 }, { -58, 4, 90, 1 }, { -58, 4, 70, 1 }, + { -57, 4, 50, 1 }, { -57, 4, 30, 1 }, { -57, 4, 9, 1 }, + { -57, 3, -10, 1 }, { -58, 2, -30, 1 }, { -58, 1, -50, 1 }, + { -58, 0, -70, 1 }, { -58, 0, -90, 1 }, { -59, 0, -110, 1 }, + { -59, 0, -130, 1 }, { -59, 0, -150, 1 }, { -60, 0, -170, 1 }, + { -60, 0, -190, 1 }, { -60, 0, -210, 1 }, { -61, 0, -230, 1 }, + { -61, 0, -250, 1 }, { -61, 0, -270, 1 }, { -62, 0, -290, 1 }, + { -62, 0, -310, 1 }, { -62, 0, -330, 1 }, { -32768, -32768, -32768, 0 }, diff --git a/courses/royal_raceway/d_course_royal_raceway_unknown_path.inc.c b/courses/royal_raceway/d_course_royal_raceway_unknown_path.inc.c new file mode 100644 index 0000000000..ec96acf05f --- /dev/null +++ b/courses/royal_raceway/d_course_royal_raceway_unknown_path.inc.c @@ -0,0 +1,20 @@ + { -63, 0, -321, 0 }, { -61, 0, -341, 0 }, { -60, 0, -591, 0 }, { -64, 0, -1334, 0 }, + { -64, 0, -1761, 0 }, { -80, 0, -1851, 0 }, { -155, 0, -1949, 0 }, { -339, 0, -2075, 0 }, + { -694, 0, -2315, 0 }, { -874, 0, -2417, 0 }, { -998, 0, -2434, 0 }, { -1134, 0, -2399, 0 }, + { -1224, 0, -2306, 0 }, { -1271, 0, -2179, 0 }, { -1272, 0, -2102, 0 }, { -1236, 0, -1986, 0 }, + { -1141, 0, -1793, 0 }, { -1049, 0, -1637, 0 }, { -1014, 0, -1529, 0 }, { -1022, 0, -1453, 0 }, + { -1092, 0, -1361, 0 }, { -1206, 0, -1333, 0 }, { -1316, 0, -1373, 0 }, { -1394, 0, -1475, 0 }, + { -1631, 0, -1829, 0 }, { -1835, 0, -2090, 0 }, { -1871, 0, -2244, 0 }, { -1830, 0, -2389, 0 }, + { -1706, 0, -2531, 0 }, { -1226, 0, -2879, 0 }, { -1077, 0, -2942, 0 }, { -921, 0, -2955, 0 }, + { -765, 0, -2924, 0 }, { -480, 0, -2741, 0 }, { -233, 0, -2542, 0 }, { -91, 0, -2476, 0 }, + { 42, 0, -2464, 0 }, { 352, 0, -2579, 0 }, { 1074, 0, -2917, 0 }, { 1256, 0, -2992, 0 }, + { 1376, 0, -2998, 0 }, { 1495, 0, -2961, 0 }, { 1573, 0, -2905, 0 }, { 1639, 0, -2791, 0 }, + { 1651, 0, -2652, 0 }, { 1598, 0, -2523, 0 }, { 1502, 0, -2428, 0 }, { 1210, 0, -2284, 0 }, + { 147, 0, -1726, 0 }, { -899, 0, -1175, 0 }, { -1683, 0, -768, 0 }, { -2298, 0, -450, 0 }, + { -2390, 0, -363, 0 }, { -2436, 0, -237, 0 }, { -2421, 0, -94, 0 }, { -2346, 0, 27, 0 }, + { -2277, 0, 68, 0 }, { -2011, 0, 151, 0 }, { -1910, 0, 200, 0 }, { -1823, 0, 286, 0 }, + { -1766, 0, 408, 0 }, { -1725, 0, 582, 0 }, { -1667, 0, 671, 0 }, { -1578, 0, 709, 0 }, + { -1459, 0, 686, 0 }, { -1385, 0, 597, 0 }, { -1327, 0, 418, 0 }, { -1279, 0, 351, 0 }, + { -1195, 0, 309, 0 }, { -1136, 0, 317, 0 }, { -741, 0, 424, 0 }, { -449, 0, 485, 0 }, + { -299, 0, 467, 0 }, { -163, 0, 386, 0 }, { -74, 0, 243, 0 }, { -55, 0, 134, 0 }, + { -62, 0, -296, 0 }, { -32768, 0, 0, 0 }, diff --git a/courses/sherbet_land/course_data.c b/courses/sherbet_land/course_data.c index bfba0c64c6..ecd3caf1f2 100644 --- a/courses/sherbet_land/course_data.c +++ b/courses/sherbet_land/course_data.c @@ -16,20 +16,28 @@ Gfx d_course_sherbet_land_dl_0[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_F48), gsSPDisplayList(d_course_sherbet_land_packed_dl_EB8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1148), gsSPDisplayList(d_course_sherbet_land_packed_dl_13E8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1370), gsSPDisplayList(d_course_sherbet_land_packed_dl_12C8), - gsSPDisplayList(d_course_sherbet_land_packed_dl_730), gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), + gsSPDisplayList(d_course_sherbet_land_packed_dl_730), +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2BC8), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E08), gsSPDisplayList(d_course_sherbet_land_packed_dl_2D80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2CF0), gsSPDisplayList(d_course_sherbet_land_packed_dl_2C80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F80), gsSPDisplayList(d_course_sherbet_land_packed_dl_3218), gsSPDisplayList(d_course_sherbet_land_packed_dl_3170), - gsSPDisplayList(d_course_sherbet_land_packed_dl_2FE8), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_2FE8), +#endif + gsSPEndDisplayList(), }; Gfx d_course_sherbet_land_dl_C0[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_10C8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1050), gsSPDisplayList(d_course_sherbet_land_packed_dl_FD0), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1370), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_12C8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1220), gsSPDisplayList(d_course_sherbet_land_packed_dl_11B8), @@ -39,7 +47,9 @@ Gfx d_course_sherbet_land_dl_C0[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E08), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_3218), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_3170), gsSPDisplayList(d_course_sherbet_land_packed_dl_30C0), gsSPDisplayList(d_course_sherbet_land_packed_dl_3058), @@ -89,16 +99,27 @@ Gfx d_course_sherbet_land_dl_280[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_E00), gsSPDisplayList(d_course_sherbet_land_packed_dl_FD0), gsSPDisplayList(d_course_sherbet_land_packed_dl_F48), gsSPDisplayList(d_course_sherbet_land_packed_dl_EB8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1148), gsSPDisplayList(d_course_sherbet_land_packed_dl_13E8), - gsSPDisplayList(d_course_sherbet_land_packed_dl_1370), gsSPDisplayList(d_course_sherbet_land_packed_dl_12C8), - gsSPDisplayList(d_course_sherbet_land_packed_dl_730), gsSPDisplayList(d_course_sherbet_land_packed_dl_2BC8), + gsSPDisplayList(d_course_sherbet_land_packed_dl_1370), +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_12C8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_730), +#endif + gsSPDisplayList(d_course_sherbet_land_packed_dl_2BC8), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E08), gsSPDisplayList(d_course_sherbet_land_packed_dl_2D80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2CF0), gsSPDisplayList(d_course_sherbet_land_packed_dl_2C80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F80), gsSPDisplayList(d_course_sherbet_land_packed_dl_3218), - gsSPDisplayList(d_course_sherbet_land_packed_dl_3170), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_3170), +#endif + gsSPEndDisplayList(), }; Gfx d_course_sherbet_land_dl_310[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_E00), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_10C8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1050), gsSPDisplayList(d_course_sherbet_land_packed_dl_FD0), @@ -109,7 +130,9 @@ Gfx d_course_sherbet_land_dl_310[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_730), gsSPDisplayList(d_course_sherbet_land_packed_dl_B00), gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2BC8), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E08), @@ -172,14 +195,18 @@ Gfx d_course_sherbet_land_dl_4E8[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_EB8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1148), gsSPDisplayList(d_course_sherbet_land_packed_dl_13E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1370), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2BC8), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E08), gsSPDisplayList(d_course_sherbet_land_packed_dl_2D80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2CF0), gsSPDisplayList(d_course_sherbet_land_packed_dl_2C80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F80), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_3218), +#endif gsSPEndDisplayList(), }; @@ -219,13 +246,17 @@ Gfx d_course_sherbet_land_dl_638[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_FD0), gsSPDisplayList(d_course_sherbet_land_packed_dl_F48), gsSPDisplayList(d_course_sherbet_land_packed_dl_EB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_11B8), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E08), gsSPDisplayList(d_course_sherbet_land_packed_dl_2D80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2CF0), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_3058), +#endif gsSPEndDisplayList(), }; @@ -302,8 +333,12 @@ Gfx d_course_sherbet_land_dl_880[] = { Gfx d_course_sherbet_land_dl_8E8[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_E00), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_10C8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1050), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_EB8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1148), gsSPDisplayList(d_course_sherbet_land_packed_dl_13E8), @@ -314,7 +349,9 @@ Gfx d_course_sherbet_land_dl_8E8[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_730), gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), gsSPDisplayList(d_course_sherbet_land_packed_dl_2BC8), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2CF0), gsSPDisplayList(d_course_sherbet_land_packed_dl_2C80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F80), @@ -329,7 +366,9 @@ Gfx d_course_sherbet_land_dl_8E8[] = { Gfx d_course_sherbet_land_dl_9A0[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_E00), gsSPDisplayList(d_course_sherbet_land_packed_dl_D90), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_FD0), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_F48), gsSPDisplayList(d_course_sherbet_land_packed_dl_EB8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1148), @@ -337,7 +376,9 @@ Gfx d_course_sherbet_land_dl_9A0[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_1370), gsSPDisplayList(d_course_sherbet_land_packed_dl_2BC8), gsSPDisplayList(d_course_sherbet_land_packed_dl_2B58), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2E08), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2D80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2CF0), gsSPDisplayList(d_course_sherbet_land_packed_dl_2C80), @@ -392,27 +433,37 @@ Gfx d_course_sherbet_land_dl_B08[] = { Gfx d_course_sherbet_land_dl_BC0[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_E00), gsSPDisplayList(d_course_sherbet_land_packed_dl_D90), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_10C8), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_EB8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1148), gsSPDisplayList(d_course_sherbet_land_packed_dl_13E8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1370), gsSPDisplayList(d_course_sherbet_land_packed_dl_12C8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1220), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_11B8), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_730), gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), gsSPDisplayList(d_course_sherbet_land_packed_dl_2BC8), gsSPDisplayList(d_course_sherbet_land_packed_dl_2B58), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2CF0), gsSPDisplayList(d_course_sherbet_land_packed_dl_2C80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F80), gsSPDisplayList(d_course_sherbet_land_packed_dl_3218), gsSPDisplayList(d_course_sherbet_land_packed_dl_3170), gsSPDisplayList(d_course_sherbet_land_packed_dl_30C0), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_3058), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2FE8), gsSPEndDisplayList(), }; @@ -420,7 +471,9 @@ Gfx d_course_sherbet_land_dl_BC0[] = { Gfx d_course_sherbet_land_dl_C88[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_E00), gsSPDisplayList(d_course_sherbet_land_packed_dl_D90), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_FD0), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_F48), gsSPDisplayList(d_course_sherbet_land_packed_dl_EB8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1148), @@ -428,7 +481,9 @@ Gfx d_course_sherbet_land_dl_C88[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_1370), gsSPDisplayList(d_course_sherbet_land_packed_dl_2BC8), gsSPDisplayList(d_course_sherbet_land_packed_dl_2B58), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2E08), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2D80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2CF0), gsSPDisplayList(d_course_sherbet_land_packed_dl_2C80), @@ -499,13 +554,19 @@ Gfx d_course_sherbet_land_dl_EC8[] = { Gfx d_course_sherbet_land_dl_F68[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_E00), gsSPDisplayList(d_course_sherbet_land_packed_dl_D90), - gsSPDisplayList(d_course_sherbet_land_packed_dl_1050), gsSPDisplayList(d_course_sherbet_land_packed_dl_FD0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_1050), +#endif + gsSPDisplayList(d_course_sherbet_land_packed_dl_FD0), gsSPDisplayList(d_course_sherbet_land_packed_dl_F48), gsSPDisplayList(d_course_sherbet_land_packed_dl_EB8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1148), gsSPDisplayList(d_course_sherbet_land_packed_dl_13E8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1370), gsSPDisplayList(d_course_sherbet_land_packed_dl_12C8), gsSPDisplayList(d_course_sherbet_land_packed_dl_730), gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), gsSPDisplayList(d_course_sherbet_land_packed_dl_2BC8), gsSPDisplayList(d_course_sherbet_land_packed_dl_2B58), - gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E08), +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), +#endif + gsSPDisplayList(d_course_sherbet_land_packed_dl_2E08), gsSPDisplayList(d_course_sherbet_land_packed_dl_2D80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2CF0), gsSPDisplayList(d_course_sherbet_land_packed_dl_2C80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F80), gsSPDisplayList(d_course_sherbet_land_packed_dl_3218), gsSPDisplayList(d_course_sherbet_land_packed_dl_3170), @@ -546,18 +607,29 @@ Gfx d_course_sherbet_land_dl_10D8[] = { Gfx d_course_sherbet_land_dl_11C8[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_13E8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1370), - gsSPDisplayList(d_course_sherbet_land_packed_dl_12C8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1220), + gsSPDisplayList(d_course_sherbet_land_packed_dl_12C8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_1220), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_730), gsSPDisplayList(d_course_sherbet_land_packed_dl_5D0), - gsSPDisplayList(d_course_sherbet_land_packed_dl_470), gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), + gsSPDisplayList(d_course_sherbet_land_packed_dl_470), +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2F80), gsSPDisplayList(d_course_sherbet_land_packed_dl_3218), - gsSPDisplayList(d_course_sherbet_land_packed_dl_3170), gsSPDisplayList(d_course_sherbet_land_packed_dl_30C0), + gsSPDisplayList(d_course_sherbet_land_packed_dl_3170), +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_30C0), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2FE8), gsSPEndDisplayList(), }; Gfx d_course_sherbet_land_dl_1238[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_E00), gsSPDisplayList(d_course_sherbet_land_packed_dl_D90), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1050), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_FD0), gsSPDisplayList(d_course_sherbet_land_packed_dl_F48), gsSPDisplayList(d_course_sherbet_land_packed_dl_EB8), @@ -569,7 +641,9 @@ Gfx d_course_sherbet_land_dl_1238[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_5D0), gsSPDisplayList(d_course_sherbet_land_packed_dl_2BC8), gsSPDisplayList(d_course_sherbet_land_packed_dl_2B58), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2E08), gsSPDisplayList(d_course_sherbet_land_packed_dl_2D80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2CF0), @@ -582,16 +656,24 @@ Gfx d_course_sherbet_land_dl_1238[] = { Gfx d_course_sherbet_land_dl_12F0[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_10C8), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1050), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_FD0), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_12C8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1220), gsSPDisplayList(d_course_sherbet_land_packed_dl_730), gsSPDisplayList(d_course_sherbet_land_packed_dl_5D0), gsSPDisplayList(d_course_sherbet_land_packed_dl_470), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2E08), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_3170), gsSPDisplayList(d_course_sherbet_land_packed_dl_30C0), gsSPDisplayList(d_course_sherbet_land_packed_dl_2358), @@ -788,7 +870,9 @@ Gfx d_course_sherbet_land_dl_18A0[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_348), gsSPDisplayList(d_course_sherbet_land_packed_dl_858), gsSPDisplayList(d_course_sherbet_land_packed_dl_9A0), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2358), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2450), gsSPDisplayList(d_course_sherbet_land_packed_dl_2548), gsSPDisplayList(d_course_sherbet_land_packed_dl_180), @@ -903,7 +987,9 @@ Gfx d_course_sherbet_land_dl_1B50[] = { }; Gfx d_course_sherbet_land_dl_1BA8[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1050), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_FD0), gsSPDisplayList(d_course_sherbet_land_packed_dl_F48), gsSPDisplayList(d_course_sherbet_land_packed_dl_858), @@ -929,13 +1015,19 @@ Gfx d_course_sherbet_land_dl_1C20[] = { }; Gfx d_course_sherbet_land_dl_1C48[] = { - gsSPDisplayList(d_course_sherbet_land_packed_dl_E00), gsSPDisplayList(d_course_sherbet_land_packed_dl_10C8), + gsSPDisplayList(d_course_sherbet_land_packed_dl_E00), +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_10C8), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1050), gsSPDisplayList(d_course_sherbet_land_packed_dl_FD0), gsSPDisplayList(d_course_sherbet_land_packed_dl_F48), gsSPDisplayList(d_course_sherbet_land_packed_dl_EB8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1148), gsSPDisplayList(d_course_sherbet_land_packed_dl_13E8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1370), gsSPDisplayList(d_course_sherbet_land_packed_dl_1220), gsSPDisplayList(d_course_sherbet_land_packed_dl_B00), gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), - gsSPDisplayList(d_course_sherbet_land_packed_dl_2BC8), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), + gsSPDisplayList(d_course_sherbet_land_packed_dl_2BC8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E08), gsSPDisplayList(d_course_sherbet_land_packed_dl_2D80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2CF0), gsSPDisplayList(d_course_sherbet_land_packed_dl_2C80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F80), @@ -945,13 +1037,17 @@ Gfx d_course_sherbet_land_dl_1C48[] = { Gfx d_course_sherbet_land_dl_1D08[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_10C8), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1050), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1220), gsSPDisplayList(d_course_sherbet_land_packed_dl_9A0), gsSPDisplayList(d_course_sherbet_land_packed_dl_B00), gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_30C0), gsSPDisplayList(d_course_sherbet_land_packed_dl_C0), gsSPEndDisplayList(), @@ -961,25 +1057,37 @@ Gfx d_course_sherbet_land_dl_1D60[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_E00), gsSPDisplayList(d_course_sherbet_land_packed_dl_10C8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1050), gsSPDisplayList(d_course_sherbet_land_packed_dl_FD0), gsSPDisplayList(d_course_sherbet_land_packed_dl_F48), gsSPDisplayList(d_course_sherbet_land_packed_dl_EB8), - gsSPDisplayList(d_course_sherbet_land_packed_dl_1148), gsSPDisplayList(d_course_sherbet_land_packed_dl_13E8), + gsSPDisplayList(d_course_sherbet_land_packed_dl_1148), +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_13E8), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1220), gsSPDisplayList(d_course_sherbet_land_packed_dl_B00), gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), gsSPDisplayList(d_course_sherbet_land_packed_dl_2BC8), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E08), gsSPDisplayList(d_course_sherbet_land_packed_dl_2D80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2CF0), gsSPDisplayList(d_course_sherbet_land_packed_dl_2C80), - gsSPDisplayList(d_course_sherbet_land_packed_dl_2F80), gsSPDisplayList(d_course_sherbet_land_packed_dl_30C0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_2F80), +#endif + gsSPDisplayList(d_course_sherbet_land_packed_dl_30C0), gsSPDisplayList(d_course_sherbet_land_packed_dl_240), gsSPEndDisplayList(), }; Gfx d_course_sherbet_land_dl_1E10[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_E00), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1148), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_13E8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1370), gsSPDisplayList(d_course_sherbet_land_packed_dl_1220), gsSPDisplayList(d_course_sherbet_land_packed_dl_B00), gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2BC8), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2C80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F80), gsSPDisplayList(d_course_sherbet_land_packed_dl_3218), @@ -1024,16 +1132,22 @@ Gfx d_course_sherbet_land_dl_1E88[] = { Gfx d_course_sherbet_land_dl_1F70[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_10C8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1050), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1370), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_12C8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1220), gsSPDisplayList(d_course_sherbet_land_packed_dl_11B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_730), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_B00), gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_3218), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_3170), gsSPDisplayList(d_course_sherbet_land_packed_dl_30C0), gsSPDisplayList(d_course_sherbet_land_packed_dl_3058), @@ -1073,7 +1187,9 @@ Gfx d_course_sherbet_land_dl_2010[] = { Gfx d_course_sherbet_land_dl_20D0[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_E00), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_EB8), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1148), gsSPDisplayList(d_course_sherbet_land_packed_dl_13E8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1370), @@ -1084,7 +1200,9 @@ Gfx d_course_sherbet_land_dl_20D0[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_B00), gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), gsSPDisplayList(d_course_sherbet_land_packed_dl_2BC8), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2CF0), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2C80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F80), gsSPDisplayList(d_course_sherbet_land_packed_dl_3218), @@ -1135,8 +1253,14 @@ Gfx d_course_sherbet_land_dl_2190[] = { Gfx d_course_sherbet_land_dl_2288[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_10C8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1050), gsSPDisplayList(d_course_sherbet_land_packed_dl_12C8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1220), - gsSPDisplayList(d_course_sherbet_land_packed_dl_11B8), gsSPDisplayList(d_course_sherbet_land_packed_dl_730), - gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), + gsSPDisplayList(d_course_sherbet_land_packed_dl_11B8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_730), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), +#endif + gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), gsSPDisplayList(d_course_sherbet_land_packed_dl_3170), gsSPDisplayList(d_course_sherbet_land_packed_dl_30C0), gsSPDisplayList(d_course_sherbet_land_packed_dl_3058), gsSPDisplayList(d_course_sherbet_land_packed_dl_2FE8), gsSPEndDisplayList(), @@ -1148,14 +1272,18 @@ Gfx d_course_sherbet_land_dl_22F8[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_FD0), gsSPDisplayList(d_course_sherbet_land_packed_dl_F48), gsSPDisplayList(d_course_sherbet_land_packed_dl_EB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1148), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_11B8), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E08), gsSPDisplayList(d_course_sherbet_land_packed_dl_2D80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2CF0), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2C80), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_3058), gsSPEndDisplayList(), }; @@ -1224,12 +1352,27 @@ Gfx d_course_sherbet_land_dl_2438[] = { Gfx d_course_sherbet_land_dl_2530[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_10C8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1050), - gsSPDisplayList(d_course_sherbet_land_packed_dl_12C8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1220), - gsSPDisplayList(d_course_sherbet_land_packed_dl_11B8), gsSPDisplayList(d_course_sherbet_land_packed_dl_730), - gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), - gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), gsSPDisplayList(d_course_sherbet_land_packed_dl_3170), +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_12C8), +#endif + gsSPDisplayList(d_course_sherbet_land_packed_dl_1220), + gsSPDisplayList(d_course_sherbet_land_packed_dl_11B8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_730), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), +#endif + gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), + gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_3170), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_30C0), gsSPDisplayList(d_course_sherbet_land_packed_dl_3058), - gsSPDisplayList(d_course_sherbet_land_packed_dl_2FE8), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_sherbet_land_packed_dl_2FE8), +#endif + gsSPEndDisplayList(), }; Gfx d_course_sherbet_land_dl_25A0[] = { @@ -1237,19 +1380,25 @@ Gfx d_course_sherbet_land_dl_25A0[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_1050), gsSPDisplayList(d_course_sherbet_land_packed_dl_FD0), gsSPDisplayList(d_course_sherbet_land_packed_dl_F48), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_EB8), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), gsSPDisplayList(d_course_sherbet_land_packed_dl_2E08), gsSPDisplayList(d_course_sherbet_land_packed_dl_2D80), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2CF0), +#endif gsSPEndDisplayList(), }; Gfx d_course_sherbet_land_dl_25F8[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_E00), gsSPDisplayList(d_course_sherbet_land_packed_dl_10C8), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_F48), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_EB8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1148), gsSPDisplayList(d_course_sherbet_land_packed_dl_13E8), @@ -1261,7 +1410,9 @@ Gfx d_course_sherbet_land_dl_25F8[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), gsSPDisplayList(d_course_sherbet_land_packed_dl_2BC8), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2D80), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2CF0), gsSPDisplayList(d_course_sherbet_land_packed_dl_2C80), gsSPDisplayList(d_course_sherbet_land_packed_dl_2F80), @@ -1431,7 +1582,9 @@ Gfx d_course_sherbet_land_dl_2A38[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_14B0), gsSPDisplayList(d_course_sherbet_land_packed_dl_1720), gsSPDisplayList(d_course_sherbet_land_packed_dl_18E0), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1870), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1FF0), gsSPDisplayList(d_course_sherbet_land_packed_dl_1F78), gsSPDisplayList(d_course_sherbet_land_packed_dl_1F10), @@ -1551,13 +1704,19 @@ Gfx d_course_sherbet_land_dl_2D78[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_3368), gsSPDisplayList(d_course_sherbet_land_packed_dl_32F8), gsSPDisplayList(d_course_sherbet_land_packed_dl_3568), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_3728), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1598), gsSPDisplayList(d_course_sherbet_land_packed_dl_1520), gsSPDisplayList(d_course_sherbet_land_packed_dl_14B0), gsSPDisplayList(d_course_sherbet_land_packed_dl_1720), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_18E0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1870), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1F78), gsSPDisplayList(d_course_sherbet_land_packed_dl_1F10), gsSPDisplayList(d_course_sherbet_land_packed_dl_20D0), @@ -1800,17 +1959,23 @@ Gfx d_course_sherbet_land_dl_33E0[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_1C50), gsSPDisplayList(d_course_sherbet_land_packed_dl_1E40), gsDPSetRenderMode(G_RM_AA_ZB_XLU_INTER, G_RM_NOOP2), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_33E0), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_3368), gsSPDisplayList(d_course_sherbet_land_packed_dl_32F8), gsSPDisplayList(d_course_sherbet_land_packed_dl_3568), gsSPDisplayList(d_course_sherbet_land_packed_dl_3728), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1598), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1520), gsSPDisplayList(d_course_sherbet_land_packed_dl_14B0), gsSPDisplayList(d_course_sherbet_land_packed_dl_1720), gsSPDisplayList(d_course_sherbet_land_packed_dl_18E0), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1F78), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1F10), gsSPDisplayList(d_course_sherbet_land_packed_dl_20D0), gsSPDisplayList(d_course_sherbet_land_packed_dl_2290), @@ -1913,13 +2078,17 @@ Gfx d_course_sherbet_land_dl_36A8[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_3728), gsSPDisplayList(d_course_sherbet_land_packed_dl_36B8), gsSPDisplayList(d_course_sherbet_land_packed_dl_3648), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_35E0), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_14B0), gsSPDisplayList(d_course_sherbet_land_packed_dl_1720), gsSPDisplayList(d_course_sherbet_land_packed_dl_18E0), gsSPDisplayList(d_course_sherbet_land_packed_dl_1870), gsSPDisplayList(d_course_sherbet_land_packed_dl_1800), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1798), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_20D0), gsSPDisplayList(d_course_sherbet_land_packed_dl_2290), gsSPDisplayList(d_course_sherbet_land_packed_dl_2220), @@ -1933,26 +2102,36 @@ Gfx d_course_sherbet_land_dl_3770[] = { GBL_c1(G_BL_CLR_IN, G_BL_A_IN, G_BL_CLR_MEM, G_BL_1MA), AA_EN | Z_CMP | Z_UPD | IM_RD | CLR_ON_CVG | CVG_DST_WRAP | ZMODE_XLU | FORCE_BL | GBL_c2(G_BL_CLR_IN, G_BL_A_IN, G_BL_CLR_MEM, G_BL_1MA)), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1A98), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1998), gsSPDisplayList(d_course_sherbet_land_packed_dl_1C50), gsSPDisplayList(d_course_sherbet_land_packed_dl_1E40), gsSPDisplayList(d_course_sherbet_land_packed_dl_1DC0), gsDPSetRenderMode(G_RM_AA_ZB_XLU_INTER, G_RM_NOOP2), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_33E0), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_3368), gsSPDisplayList(d_course_sherbet_land_packed_dl_32F8), gsSPDisplayList(d_course_sherbet_land_packed_dl_3568), gsSPDisplayList(d_course_sherbet_land_packed_dl_3728), gsSPDisplayList(d_course_sherbet_land_packed_dl_36B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1598), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1520), gsSPDisplayList(d_course_sherbet_land_packed_dl_14B0), gsSPDisplayList(d_course_sherbet_land_packed_dl_1720), gsSPDisplayList(d_course_sherbet_land_packed_dl_18E0), gsSPDisplayList(d_course_sherbet_land_packed_dl_1870), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1F78), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1F10), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2290), gsSPDisplayList(d_course_sherbet_land_packed_dl_2220), gsSPDisplayList(d_course_sherbet_land_packed_dl_21B0), @@ -1987,10 +2166,16 @@ Gfx d_course_sherbet_land_dl_3840[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_1870), gsSPDisplayList(d_course_sherbet_land_packed_dl_1800), gsSPDisplayList(d_course_sherbet_land_packed_dl_1798), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2068), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1FF0), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1F78), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1F10), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2290), gsSPDisplayList(d_course_sherbet_land_packed_dl_2220), gsSPDisplayList(d_course_sherbet_land_packed_dl_21B0), @@ -2027,7 +2212,9 @@ Gfx d_course_sherbet_land_dl_3940[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_18E0), gsSPDisplayList(d_course_sherbet_land_packed_dl_1800), gsSPDisplayList(d_course_sherbet_land_packed_dl_1798), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2068), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1FF0), gsSPDisplayList(d_course_sherbet_land_packed_dl_1F78), gsSPDisplayList(d_course_sherbet_land_packed_dl_1F10), @@ -2084,7 +2271,9 @@ Gfx d_course_sherbet_land_dl_3AE0[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_1720), gsSPDisplayList(d_course_sherbet_land_packed_dl_18E0), gsSPDisplayList(d_course_sherbet_land_packed_dl_1870), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1FF0), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1F10), gsSPDisplayList(d_course_sherbet_land_packed_dl_2290), gsSPDisplayList(d_course_sherbet_land_packed_dl_2220), @@ -2188,7 +2377,9 @@ Gfx d_course_sherbet_land_dl_3D98[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_3568), gsSPDisplayList(d_course_sherbet_land_packed_dl_3728), gsSPDisplayList(d_course_sherbet_land_packed_dl_36B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1640), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1598), gsSPDisplayList(d_course_sherbet_land_packed_dl_1520), gsSPDisplayList(d_course_sherbet_land_packed_dl_14B0), @@ -2213,11 +2404,17 @@ Gfx d_course_sherbet_land_dl_3E58[] = { gsDPSetRenderMode(G_RM_AA_ZB_XLU_INTER, G_RM_NOOP2), gsSPDisplayList(d_course_sherbet_land_packed_dl_3648), gsSPDisplayList(d_course_sherbet_land_packed_dl_16B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1640), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1800), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2220), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_21B0), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2138), +#endif gsSPEndDisplayList(), }; @@ -2395,7 +2592,9 @@ Gfx d_course_sherbet_land_dl_40B0[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_3568), gsSPDisplayList(d_course_sherbet_land_packed_dl_3728), gsSPDisplayList(d_course_sherbet_land_packed_dl_36B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_16B8), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1640), gsSPDisplayList(d_course_sherbet_land_packed_dl_1598), gsSPDisplayList(d_course_sherbet_land_packed_dl_1520), @@ -2421,7 +2620,9 @@ Gfx d_course_sherbet_land_dl_4180[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_1CD8), gsDPSetRenderMode(G_RM_AA_ZB_XLU_INTER, G_RM_NOOP2), gsSPDisplayList(d_course_sherbet_land_packed_dl_16B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1640), +#endif gsSPEndDisplayList(), }; @@ -2438,7 +2639,9 @@ Gfx d_course_sherbet_land_dl_41B8[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_33E0), gsSPDisplayList(d_course_sherbet_land_packed_dl_3568), gsSPDisplayList(d_course_sherbet_land_packed_dl_3728), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_36B8), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_16B8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1640), gsSPDisplayList(d_course_sherbet_land_packed_dl_1598), @@ -2446,12 +2649,16 @@ Gfx d_course_sherbet_land_dl_41B8[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_14B0), gsSPDisplayList(d_course_sherbet_land_packed_dl_1720), gsSPDisplayList(d_course_sherbet_land_packed_dl_18E0), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1870), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1F10), gsSPDisplayList(d_course_sherbet_land_packed_dl_20D0), gsSPDisplayList(d_course_sherbet_land_packed_dl_2290), gsSPDisplayList(d_course_sherbet_land_packed_dl_2220), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_21B0), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2138), gsSPEndDisplayList(), }; @@ -2520,12 +2727,16 @@ Gfx d_course_sherbet_land_dl_43C8[] = { gsDPSetRenderMode(G_RM_AA_ZB_XLU_INTER, G_RM_NOOP2), gsSPDisplayList(d_course_sherbet_land_packed_dl_3500), gsSPDisplayList(d_course_sherbet_land_packed_dl_3488), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_36B8), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_3648), gsSPDisplayList(d_course_sherbet_land_packed_dl_35E0), gsSPDisplayList(d_course_sherbet_land_packed_dl_16B8), gsSPDisplayList(d_course_sherbet_land_packed_dl_1640), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1870), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1800), gsSPDisplayList(d_course_sherbet_land_packed_dl_1798), gsSPDisplayList(d_course_sherbet_land_packed_dl_2068), @@ -2594,7 +2805,9 @@ Gfx d_course_sherbet_land_dl_4570[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_1870), gsSPDisplayList(d_course_sherbet_land_packed_dl_1800), gsSPDisplayList(d_course_sherbet_land_packed_dl_1798), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2290), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2220), gsSPDisplayList(d_course_sherbet_land_packed_dl_21B0), gsSPDisplayList(d_course_sherbet_land_packed_dl_2138), @@ -2675,7 +2888,9 @@ Gfx d_course_sherbet_land_dl_4798[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_3500), gsSPDisplayList(d_course_sherbet_land_packed_dl_3488), gsSPDisplayList(d_course_sherbet_land_packed_dl_33E0), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_3568), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_3648), gsSPDisplayList(d_course_sherbet_land_packed_dl_35E0), gsSPDisplayList(d_course_sherbet_land_packed_dl_16B8), @@ -2683,12 +2898,16 @@ Gfx d_course_sherbet_land_dl_4798[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_1598), gsSPDisplayList(d_course_sherbet_land_packed_dl_1520), gsSPDisplayList(d_course_sherbet_land_packed_dl_14B0), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1720), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1800), gsSPDisplayList(d_course_sherbet_land_packed_dl_1798), gsSPDisplayList(d_course_sherbet_land_packed_dl_2068), gsSPDisplayList(d_course_sherbet_land_packed_dl_1FF0), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2290), +#endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2138), gsSPEndDisplayList(), }; @@ -2777,7 +2996,9 @@ Gfx d_course_sherbet_land_dl_4A20[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_1798), gsSPDisplayList(d_course_sherbet_land_packed_dl_2068), gsSPDisplayList(d_course_sherbet_land_packed_dl_1FF0), +#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2138), +#endif gsSPEndDisplayList(), }; @@ -2838,249 +3059,17 @@ Gfx d_course_sherbet_land_dl_4B20[] = { }; // unk 0x4BF8 +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_sherbet_land_unknown_path[] = { - { -10, 0, 10, 0 }, { -10, 0, -8, 0 }, { -18, 0, -213, 0 }, { 52, 0, -308, 0 }, - { 217, 0, -455, 0 }, { 436, 0, -587, 0 }, { 487, 0, -649, 0 }, { 465, 0, -722, 0 }, - { 308, 0, -890, 0 }, { 132, 0, -1099, 0 }, { 37, 0, -1319, 0 }, { 31, 0, -1396, 0 }, - { -75, 0, -1469, 0 }, { -302, 0, -1612, 0 }, { -372, 0, -1743, 0 }, { -432, 0, -1953, 0 }, - { -484, 0, -2151, 0 }, { -586, 0, -2180, 0 }, { -667, 0, -2110, 0 }, { -777, 0, -1902, 0 }, - { -1230, 0, -1506, 0 }, { -1318, 0, -1360, 0 }, { -1479, 0, -1078, 0 }, { -1776, 0, -888, 0 }, - { -1966, 0, -833, 0 }, { -2253, 0, -527, 0 }, { -2374, 0, -271, 0 }, { -2421, 0, -91, 0 }, - { -2482, 0, 123, 0 }, { -2573, 0, 365, 0 }, { -2713, 0, 599, 0 }, { -2870, 0, 760, 0 }, - { -3002, 0, 937, 0 }, { -3021, 0, 1145, 0 }, { -2922, 0, 1343, 0 }, { -2717, 0, 1621, 0 }, - { -2585, 0, 1764, 0 }, { -2446, 0, 1779, 0 }, { -2299, 0, 1676, 0 }, { -2171, 0, 1523, 0 }, - { -1984, 0, 1332, 0 }, { -1951, 0, 1197, 0 }, { -1970, 0, 1109, 0 }, { -2281, 0, 1032, 0 }, - { -2427, 0, 970, 0 }, { -2475, 0, 886, 0 }, { -2460, 0, 717, 0 }, { -2303, 0, 527, 0 }, - { -2105, 0, 413, 0 }, { -1937, 0, 281, 0 }, { -1635, 0, 170, 0 }, { -1295, 0, 185, 0 }, - { -1057, 0, 339, 0 }, { -793, 0, 657, 0 }, { -581, 0, 932, 0 }, { -409, 0, 1045, 0 }, - { -262, 0, 1001, 0 }, { -120, 0, 771, 0 }, { -6, 0, 452, 0 }, { 1, 0, 49, 0 }, - { -2058, 0, 1043, 0 }, { -32768, 0, 0, 0 }, +#include "courses/sherbet_land/d_course_sherbet_land_unknown_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_sherbet_land_track_path[] = { - { -10, 0, 1, 1 }, { -10, 0, -19, 1 }, { -11, 0, -38, 1 }, - { -12, 0, -58, 1 }, { -12, 0, -78, 1 }, { -13, 0, -98, 1 }, - { -14, 0, -118, 1 }, { -14, 0, -139, 1 }, { -13, 0, -159, 1 }, - { -11, 0, -178, 1 }, { -8, 0, -198, 1 }, { -3, 0, -218, 1 }, - { 3, 0, -236, 1 }, { 12, 0, -254, 1 }, { 24, 0, -270, 1 }, - { 37, 0, -285, 1 }, { 50, 0, -300, 1 }, { 64, 0, -315, 1 }, - { 78, 0, -329, 1 }, { 93, 0, -343, 1 }, { 107, 0, -357, 1 }, - { 122, 0, -370, 1 }, { 137, 0, -384, 1 }, { 152, 0, -397, 1 }, - { 167, 0, -409, 1 }, { 183, 0, -422, 1 }, { 199, 0, -434, 1 }, - { 215, 0, -446, 2 }, { 231, 0, -458, 2 }, { 247, 0, -470, 2 }, - { 264, 0, -481, 2 }, { 280, 0, -492, 2 }, { 297, 0, -503, 2 }, - { 314, 0, -513, 2 }, { 331, 0, -524, 2 }, { 348, 0, -534, 2 }, - { 365, 0, -545, 2 }, { 382, 0, -556, 2 }, { 399, 0, -567, 2 }, - { 415, 0, -578, 2 }, { 431, 0, -590, 2 }, { 447, 0, -603, 2 }, - { 461, 0, -617, 2 }, { 472, 0, -634, 2 }, { 478, 0, -653, 2 }, - { 478, 0, -673, 2 }, { 473, 0, -692, 2 }, { 464, 0, -710, 2 }, - { 453, 0, -726, 2 }, { 441, 0, -742, 2 }, { 428, 0, -758, 2 }, - { 415, 0, -773, 2 }, { 402, 0, -788, 2 }, { 388, 0, -803, 2 }, - { 375, 0, -818, 2 }, { 361, 0, -832, 2 }, { 348, 0, -847, 2 }, - { 334, 0, -862, 2 }, { 321, 0, -877, 2 }, { 308, 0, -892, 2 }, - { 294, 0, -907, 2 }, { 281, 0, -922, 2 }, { 268, 0, -937, 2 }, - { 255, 0, -952, 2 }, { 242, 0, -967, 2 }, { 229, 0, -983, 2 }, - { 216, 0, -998, 2 }, { 203, 0, -1014, 2 }, { 191, 0, -1029, 2 }, - { 179, 0, -1045, 2 }, { 167, 0, -1061, 2 }, { 156, 0, -1078, 2 }, - { 145, 0, -1095, 2 }, { 134, 0, -1112, 2 }, { 124, 0, -1129, 2 }, - { 114, 0, -1146, 3 }, { 105, 0, -1164, 3 }, { 96, 0, -1182, 3 }, - { 88, 0, -1200, 3 }, { 80, 0, -1218, 3 }, { 72, 0, -1237, 3 }, - { 64, 0, -1255, 3 }, { 57, 0, -1274, 3 }, { 50, 0, -1293, 3 }, - { 44, 0, -1312, 3 }, { 38, 0, -1331, 3 }, { 34, 0, -1351, 3 }, - { 31, 0, -1370, 3 }, { 23, 0, -1388, 3 }, { 10, 0, -1404, 3 }, - { -3, 0, -1418, 3 }, { -19, 0, -1430, 3 }, { -35, 0, -1442, 3 }, - { -52, 0, -1453, 3 }, { -69, 0, -1464, 3 }, { -86, 0, -1475, 3 }, - { -102, 0, -1485, 3 }, { -119, 0, -1496, 3 }, { -136, 0, -1507, 3 }, - { -153, 0, -1518, 3 }, { -170, 0, -1529, 3 }, { -187, 0, -1539, 3 }, - { -204, 0, -1550, 3 }, { -220, 0, -1561, 3 }, { -236, 0, -1573, 3 }, - { -252, 0, -1585, 3 }, { -268, 0, -1598, 3 }, { -283, 0, -1611, 3 }, - { -297, 0, -1625, 3 }, { -311, 0, -1640, 3 }, { -323, 0, -1655, 3 }, - { -334, 0, -1672, 3 }, { -343, 0, -1690, 3 }, { -352, 0, -1708, 3 }, - { -360, 0, -1726, 3 }, { -367, 0, -1745, 3 }, { -374, 0, -1764, 4 }, - { -381, 0, -1782, 4 }, { -387, 0, -1801, 4 }, { -394, 0, -1821, 4 }, - { -399, 0, -1840, 4 }, { -405, 0, -1859, 4 }, { -410, 0, -1878, 4 }, - { -416, 0, -1897, 4 }, { -421, 0, -1917, 4 }, { -426, 0, -1936, 4 }, - { -432, 0, -1955, 4 }, { -437, 0, -1975, 4 }, { -442, 0, -1994, 4 }, - { -447, 0, -2013, 4 }, { -453, 0, -2033, 4 }, { -458, 0, -2052, 4 }, - { -463, 0, -2071, 4 }, { -470, 0, -2090, 4 }, { -478, 0, -2108, 4 }, - { -487, 0, -2126, 4 }, { -499, 0, -2142, 4 }, { -514, 0, -2155, 4 }, - { -532, 0, -2164, 4 }, { -552, 0, -2169, 4 }, { -572, 0, -2169, 4 }, - { -591, 0, -2165, 4 }, { -609, 0, -2157, 4 }, { -626, 0, -2145, 4 }, - { -640, 0, -2131, 4 }, { -653, 0, -2116, 4 }, { -665, 0, -2100, 4 }, - { -676, 0, -2083, 4 }, { -687, 0, -2066, 4 }, { -697, 0, -2049, 4 }, - { -707, 0, -2032, 4 }, { -717, 0, -2014, 4 }, { -726, 0, -1997, 4 }, - { -737, 0, -1980, 4 }, { -748, 0, -1963, 4 }, { -760, 0, -1947, 4 }, - { -773, 0, -1931, 4 }, { -785, 0, -1916, 4 }, { -798, 0, -1901, 4 }, - { -812, 0, -1886, 4 }, { -825, 0, -1871, 4 }, { -839, 0, -1857, 4 }, - { -853, 0, -1843, 4 }, { -867, 0, -1829, 4 }, { -882, 0, -1815, 4 }, - { -896, 0, -1801, 4 }, { -911, 0, -1787, 4 }, { -925, 0, -1773, 4 }, - { -940, 0, -1760, 4 }, { -955, 0, -1746, 4 }, { -970, 0, -1733, 5 }, - { -985, 0, -1720, 5 }, { -1000, 0, -1706, 5 }, { -1015, 0, -1693, 5 }, - { -1030, 0, -1680, 5 }, { -1045, 0, -1667, 5 }, { -1060, 0, -1653, 5 }, - { -1075, 0, -1640, 5 }, { -1089, 0, -1626, 5 }, { -1104, 0, -1613, 5 }, - { -1119, 0, -1599, 5 }, { -1134, 0, -1586, 5 }, { -1148, 0, -1572, 5 }, - { -1162, 0, -1558, 5 }, { -1177, 0, -1544, 5 }, { -1191, 0, -1530, 5 }, - { -1205, 0, -1515, 5 }, { -1219, 0, -1501, 5 }, { -1232, 0, -1486, 5 }, - { -1245, 0, -1471, 5 }, { -1258, 0, -1455, 5 }, { -1269, 0, -1439, 5 }, - { -1280, 0, -1422, 5 }, { -1290, 0, -1405, 5 }, { -1300, 0, -1388, 5 }, - { -1310, 0, -1370, 5 }, { -1320, 0, -1353, 5 }, { -1331, 0, -1336, 5 }, - { -1341, 0, -1318, 5 }, { -1351, 0, -1301, 5 }, { -1361, 0, -1284, 5 }, - { -1371, 0, -1266, 5 }, { -1381, 0, -1249, 5 }, { -1390, 0, -1232, 5 }, - { -1400, 0, -1214, 5 }, { -1411, 0, -1197, 5 }, { -1422, 0, -1180, 5 }, - { -1433, 0, -1164, 5 }, { -1445, 0, -1148, 5 }, { -1457, 0, -1132, 5 }, - { -1470, 0, -1117, 5 }, { -1483, 0, -1102, 5 }, { -1497, 0, -1087, 6 }, - { -1511, 0, -1073, 6 }, { -1526, 0, -1060, 6 }, { -1541, 0, -1046, 6 }, - { -1556, 0, -1033, 6 }, { -1572, 0, -1021, 6 }, { -1588, 0, -1009, 6 }, - { -1604, 0, -998, 6 }, { -1621, 0, -986, 6 }, { -1638, 0, -976, 6 }, - { -1655, 0, -965, 6 }, { -1672, 0, -955, 6 }, { -1689, 0, -944, 6 }, - { -1706, 0, -934, 6 }, { -1724, 0, -925, 6 }, { -1742, 0, -915, 6 }, - { -1759, 0, -906, 6 }, { -1777, 0, -897, 6 }, { -1795, 0, -888, 6 }, - { -1814, 0, -880, 6 }, { -1832, 0, -873, 6 }, { -1851, 0, -866, 6 }, - { -1870, 0, -860, 6 }, { -1889, 0, -854, 6 }, { -1907, 0, -846, 6 }, - { -1925, 0, -836, 6 }, { -1942, 0, -826, 6 }, { -1959, 0, -815, 7 }, - { -1975, 0, -803, 7 }, { -1991, 0, -791, 7 }, { -2006, 0, -778, 7 }, - { -2022, 0, -765, 7 }, { -2036, 0, -752, 7 }, { -2051, 0, -738, 7 }, - { -2065, 0, -724, 7 }, { -2080, 0, -710, 7 }, { -2094, 0, -696, 7 }, - { -2107, 0, -681, 7 }, { -2121, 0, -667, 7 }, { -2135, 0, -652, 7 }, - { -2148, 0, -637, 7 }, { -2161, 0, -622, 7 }, { -2174, 0, -606, 7 }, - { -2187, 0, -591, 7 }, { -2199, 0, -575, 7 }, { -2212, 0, -560, 7 }, - { -2224, 0, -544, 7 }, { -2235, 0, -528, 7 }, { -2247, 0, -511, 7 }, - { -2258, 0, -495, 7 }, { -2269, 0, -478, 7 }, { -2280, 0, -461, 7 }, - { -2290, 0, -444, 7 }, { -2299, 0, -426, 7 }, { -2308, 0, -408, 7 }, - { -2317, 0, -390, 7 }, { -2325, 0, -372, 7 }, { -2334, 0, -354, 7 }, - { -2342, 0, -335, 7 }, { -2349, 0, -317, 7 }, { -2357, 0, -298, 7 }, - { -2364, 0, -280, 7 }, { -2371, 0, -261, 7 }, { -2378, 0, -242, 7 }, - { -2384, 0, -223, 7 }, { -2390, 0, -204, 7 }, { -2396, 0, -185, 7 }, - { -2401, 0, -166, 7 }, { -2406, 0, -146, 7 }, { -2411, 0, -127, 7 }, - { -2416, 0, -108, 7 }, { -2422, 0, -88, 8 }, { -2427, -1, -69, 8 }, - { -2432, -2, -50, 8 }, { -2438, -3, -30, 8 }, { -2443, -4, -11, 8 }, - { -2449, -5, 7, 8 }, { -2454, -6, 26, 8 }, { -2460, -6, 45, 8 }, - { -2466, -7, 65, 8 }, { -2472, -8, 84, 8 }, { -2478, -9, 103, 8 }, - { -2484, -10, 122, 8 }, { -2490, -11, 141, 8 }, { -2497, -11, 160, 8 }, - { -2503, -12, 179, 8 }, { -2510, -13, 197, 8 }, { -2517, -14, 216, 8 }, - { -2524, -14, 235, 8 }, { -2531, -15, 254, 8 }, { -2538, -16, 272, 8 }, - { -2546, -17, 291, 8 }, { -2554, -17, 309, 8 }, { -2562, -18, 328, 8 }, - { -2570, -19, 346, 8 }, { -2579, -20, 364, 8 }, { -2588, -21, 382, 8 }, - { -2597, -23, 400, 8 }, { -2606, -24, 417, 8 }, { -2616, -26, 435, 8 }, - { -2625, -27, 452, 8 }, { -2635, -29, 470, 8 }, { -2646, -30, 487, 8 }, - { -2656, -32, 504, 8 }, { -2667, -33, 521, 8 }, { -2678, -35, 538, 8 }, - { -2689, -36, 554, 8 }, { -2701, -38, 570, 8 }, { -2713, -40, 587, 9 }, - { -2725, -41, 602, 9 }, { -2737, -43, 618, 9 }, { -2750, -45, 634, 9 }, - { -2763, -46, 649, 9 }, { -2776, -48, 664, 9 }, { -2790, -50, 678, 9 }, - { -2804, -52, 692, 9 }, { -2818, -53, 707, 9 }, { -2831, -55, 722, 9 }, - { -2845, -57, 737, 9 }, { -2858, -59, 752, 9 }, { -2871, -61, 767, 9 }, - { -2884, -63, 782, 9 }, { -2896, -64, 798, 9 }, { -2909, -66, 813, 9 }, - { -2921, -67, 829, 9 }, { -2933, -68, 845, 9 }, { -2945, -69, 861, 9 }, - { -2956, -71, 878, 9 }, { -2966, -72, 895, 9 }, { -2975, -74, 913, 9 }, - { -2984, -75, 931, 9 }, { -2991, -76, 950, 9 }, { -2997, -77, 969, 9 }, - { -3002, -78, 988, 9 }, { -3007, -79, 1008, 9 }, { -3010, -80, 1028, 9 }, - { -3012, -80, 1048, 9 }, { -3012, -80, 1067, 9 }, { -3012, -80, 1087, 9 }, - { -3011, -80, 1107, 9 }, { -3009, -80, 1127, 9 }, { -3005, -80, 1147, 9 }, - { -3000, -80, 1166, 9 }, { -2995, -80, 1186, 9 }, { -2988, -80, 1205, 10 }, - { -2981, -80, 1223, 10 }, { -2972, -80, 1241, 10 }, { -2963, -80, 1259, 10 }, - { -2954, -80, 1277, 10 }, { -2944, -80, 1294, 10 }, { -2934, -80, 1311, 10 }, - { -2923, -80, 1328, 10 }, { -2913, -80, 1345, 10 }, { -2902, -80, 1362, 10 }, - { -2891, -80, 1379, 10 }, { -2880, -80, 1396, 10 }, { -2869, -80, 1412, 10 }, - { -2857, -80, 1429, 10 }, { -2846, -80, 1445, 10 }, { -2834, -80, 1461, 10 }, - { -2822, -80, 1477, 10 }, { -2810, -80, 1493, 10 }, { -2798, -80, 1510, 10 }, - { -2786, -80, 1526, 10 }, { -2774, -80, 1541, 10 }, { -2762, -80, 1557, 10 }, - { -2750, -80, 1573, 10 }, { -2737, -80, 1589, 10 }, { -2725, -80, 1605, 11 }, - { -2712, -80, 1620, 11 }, { -2700, -80, 1636, 11 }, { -2687, -80, 1651, 11 }, - { -2674, -80, 1666, 11 }, { -2660, -80, 1681, 11 }, { -2647, -80, 1696, 11 }, - { -2633, -80, 1710, 11 }, { -2618, -80, 1723, 11 }, { -2602, -80, 1736, 11 }, - { -2585, -80, 1747, 11 }, { -2568, -80, 1756, 11 }, { -2549, -80, 1763, 11 }, - { -2530, -80, 1769, 11 }, { -2510, -80, 1771, 11 }, { -2490, -80, 1772, 11 }, - { -2470, -80, 1770, 11 }, { -2450, -80, 1765, 11 }, { -2431, -80, 1759, 11 }, - { -2413, -80, 1751, 11 }, { -2395, -80, 1742, 11 }, { -2378, -80, 1731, 11 }, - { -2362, -80, 1720, 11 }, { -2346, -80, 1708, 11 }, { -2330, -80, 1695, 11 }, - { -2315, -80, 1682, 11 }, { -2300, -80, 1669, 11 }, { -2286, -80, 1655, 12 }, - { -2272, -80, 1641, 12 }, { -2258, -80, 1626, 12 }, { -2245, -80, 1611, 12 }, - { -2232, -80, 1596, 12 }, { -2219, -80, 1581, 12 }, { -2206, -80, 1566, 12 }, - { -2193, -80, 1551, 12 }, { -2179, -80, 1536, 12 }, { -2166, -80, 1521, 12 }, - { -2152, -80, 1506, 12 }, { -2139, -80, 1491, 12 }, { -2125, -80, 1477, 12 }, - { -2111, -80, 1462, 12 }, { -2097, -80, 1448, 12 }, { -2083, -80, 1434, 12 }, - { -2069, -80, 1419, 12 }, { -2056, -80, 1405, 12 }, { -2042, -80, 1390, 12 }, - { -2030, -80, 1374, 12 }, { -2017, -80, 1359, 12 }, { -2005, -80, 1342, 12 }, - { -1994, -80, 1326, 12 }, { -1985, -80, 1308, 12 }, { -1976, -80, 1290, 13 }, - { -1969, -80, 1272, 13 }, { -1964, -80, 1252, 13 }, { -1960, -80, 1232, 13 }, - { -1958, -80, 1213, 13 }, { -1957, -80, 1193, 13 }, { -1957, -80, 1173, 13 }, - { -1960, -80, 1153, 13 }, { -1969, -80, 1135, 13 }, { -1984, -80, 1122, 13 }, - { -2002, -80, 1112, 13 }, { -2020, -80, 1104, 13 }, { -2038, -80, 1096, 13 }, - { -2057, -80, 1089, 13 }, { -2076, -80, 1083, 13 }, { -2095, -80, 1078, 13 }, - { -2115, -80, 1073, 13 }, { -2134, -80, 1068, 13 }, { -2154, -80, 1063, 13 }, - { -2173, -80, 1058, 13 }, { -2192, -80, 1053, 13 }, { -2212, -80, 1047, 13 }, - { -2231, -80, 1042, 13 }, { -2250, -80, 1036, 13 }, { -2269, -80, 1031, 13 }, - { -2288, -80, 1024, 13 }, { -2307, -80, 1018, 14 }, { -2326, -80, 1011, 14 }, - { -2345, -80, 1004, 14 }, { -2363, -80, 996, 14 }, { -2381, -79, 987, 14 }, - { -2398, -78, 978, 14 }, { -2415, -76, 966, 14 }, { -2430, -74, 953, 14 }, - { -2443, -73, 938, 14 }, { -2454, -72, 921, 14 }, { -2461, -71, 903, 14 }, - { -2465, -69, 883, 14 }, { -2468, -68, 863, 14 }, { -2469, -67, 843, 14 }, - { -2468, -67, 823, 14 }, { -2467, -66, 803, 14 }, { -2465, -65, 783, 14 }, - { -2460, -64, 764, 14 }, { -2455, -63, 745, 14 }, { -2447, -61, 726, 14 }, - { -2439, -60, 708, 14 }, { -2429, -58, 690, 14 }, { -2419, -56, 673, 14 }, - { -2408, -55, 657, 14 }, { -2396, -53, 640, 14 }, { -2384, -51, 625, 14 }, - { -2371, -50, 609, 14 }, { -2358, -48, 594, 14 }, { -2344, -46, 580, 14 }, - { -2330, -44, 566, 14 }, { -2315, -43, 552, 14 }, { -2300, -41, 539, 14 }, - { -2285, -39, 526, 15 }, { -2269, -37, 513, 15 }, { -2253, -35, 501, 15 }, - { -2237, -34, 490, 15 }, { -2220, -32, 479, 15 }, { -2203, -30, 469, 15 }, - { -2185, -28, 459, 15 }, { -2168, -26, 449, 15 }, { -2151, -24, 438, 15 }, - { -2134, -22, 427, 15 }, { -2118, -20, 416, 15 }, { -2101, -19, 405, 15 }, - { -2084, -18, 394, 15 }, { -2068, -17, 382, 15 }, { -2052, -16, 371, 15 }, - { -2036, -14, 358, 15 }, { -2020, -13, 346, 15 }, { -2004, -12, 334, 15 }, - { -1988, -11, 323, 15 }, { -1971, -10, 312, 15 }, { -1954, -9, 302, 15 }, - { -1936, -8, 292, 15 }, { -1919, -7, 283, 15 }, { -1901, -6, 274, 15 }, - { -1883, -5, 265, 15 }, { -1864, -5, 257, 15 }, { -1846, -4, 249, 15 }, - { -1827, -3, 241, 15 }, { -1809, -2, 234, 15 }, { -1790, -1, 227, 15 }, - { -1771, 0, 220, 15 }, { -1752, 0, 214, 15 }, { -1733, 0, 208, 16 }, - { -1714, 0, 203, 16 }, { -1694, 0, 198, 16 }, { -1675, 0, 193, 16 }, - { -1655, 0, 189, 16 }, { -1636, 0, 186, 16 }, { -1616, 0, 183, 16 }, - { -1596, 0, 181, 16 }, { -1576, 0, 179, 16 }, { -1556, 0, 178, 16 }, - { -1536, 0, 177, 16 }, { -1516, 0, 176, 16 }, { -1496, 0, 176, 16 }, - { -1476, 0, 177, 16 }, { -1456, 0, 177, 16 }, { -1436, 0, 179, 16 }, - { -1416, 0, 181, 16 }, { -1396, 0, 183, 16 }, { -1376, 0, 186, 16 }, - { -1357, 0, 190, 16 }, { -1337, 0, 194, 16 }, { -1318, 0, 199, 16 }, - { -1299, 0, 204, 16 }, { -1280, 0, 211, 16 }, { -1261, 0, 218, 16 }, - { -1242, 0, 225, 16 }, { -1224, 0, 234, 16 }, { -1206, 0, 243, 16 }, - { -1189, 0, 253, 16 }, { -1172, 0, 264, 16 }, { -1156, 0, 275, 16 }, - { -1139, 0, 287, 16 }, { -1123, 0, 299, 16 }, { -1108, 0, 311, 16 }, - { -1092, 0, 324, 16 }, { -1077, 0, 337, 16 }, { -1062, 0, 350, 16 }, - { -1048, 0, 364, 16 }, { -1033, 0, 378, 16 }, { -1019, 0, 392, 16 }, - { -1005, 0, 407, 16 }, { -992, 0, 421, 17 }, { -978, 0, 436, 17 }, - { -965, 0, 451, 17 }, { -951, 0, 466, 17 }, { -938, 0, 481, 17 }, - { -926, 0, 496, 17 }, { -913, 0, 512, 17 }, { -900, 0, 527, 17 }, - { -887, 0, 543, 17 }, { -875, 0, 558, 17 }, { -862, 0, 574, 17 }, - { -849, 0, 589, 17 }, { -837, 0, 605, 17 }, { -824, 0, 620, 17 }, - { -811, 0, 636, 17 }, { -799, 0, 651, 17 }, { -786, 0, 667, 17 }, - { -774, 0, 683, 17 }, { -761, 0, 698, 17 }, { -749, 0, 714, 17 }, - { -737, 0, 730, 17 }, { -724, 0, 745, 17 }, { -712, 0, 761, 17 }, - { -700, 0, 777, 17 }, { -687, 0, 793, 17 }, { -675, 0, 809, 17 }, - { -663, 0, 824, 17 }, { -650, 0, 840, 17 }, { -637, 0, 855, 17 }, - { -624, 0, 870, 17 }, { -611, 0, 885, 17 }, { -597, 0, 900, 17 }, - { -583, 0, 914, 17 }, { -569, 0, 928, 17 }, { -554, 0, 941, 17 }, - { -539, 0, 955, 17 }, { -523, 0, 967, 17 }, { -507, 0, 979, 17 }, - { -491, 0, 990, 17 }, { -474, 0, 1001, 17 }, { -456, 0, 1010, 17 }, - { -437, 0, 1017, 17 }, { -418, 0, 1023, 17 }, { -399, 0, 1027, 18 }, - { -379, 0, 1029, 18 }, { -359, 0, 1027, 18 }, { -339, 0, 1024, 18 }, - { -320, 0, 1017, 18 }, { -302, 0, 1008, 18 }, { -286, 0, 997, 18 }, - { -270, 0, 984, 18 }, { -255, 0, 971, 18 }, { -242, 0, 956, 18 }, - { -229, 0, 941, 18 }, { -217, 0, 925, 18 }, { -205, 0, 908, 18 }, - { -194, 0, 892, 18 }, { -184, 0, 875, 18 }, { -174, 0, 857, 18 }, - { -164, 0, 840, 18 }, { -154, 0, 822, 18 }, { -145, 0, 805, 18 }, - { -136, 0, 787, 18 }, { -127, 0, 769, 18 }, { -119, 0, 751, 18 }, - { -111, 0, 732, 18 }, { -103, 0, 714, 18 }, { -95, 0, 696, 18 }, - { -87, 0, 677, 18 }, { -80, 0, 658, 18 }, { -73, 0, 640, 18 }, - { -66, 0, 621, 18 }, { -59, 0, 602, 18 }, { -53, 0, 583, 18 }, - { -47, 0, 564, 18 }, { -42, 0, 545, 18 }, { -37, 0, 525, 18 }, - { -32, 0, 506, 18 }, { -27, 0, 486, 18 }, { -24, 0, 467, 18 }, - { -20, 0, 447, 18 }, { -17, 0, 427, 18 }, { -14, 0, 408, 18 }, - { -11, 0, 388, 18 }, { -9, 0, 368, 18 }, { -7, 0, 348, 18 }, - { -5, 0, 328, 18 }, { -4, 0, 308, 18 }, { -3, 0, 288, 1 }, - { -2, 0, 268, 1 }, { -2, 0, 248, 1 }, { -2, 0, 228, 1 }, - { -1, 0, 208, 1 }, { -1, 0, 188, 1 }, { -1, 0, 168, 1 }, - { -1, 0, 148, 1 }, { -1, 0, 128, 1 }, { -1, 0, 108, 1 }, - { -1, 0, 88, 1 }, { -1, 0, 68, 1 }, { -2, 0, 48, 1 }, - { -4, 0, 28, 1 }, { -9, 0, 8, 1 }, { -32768, -32768, -32768, 0 }, +#include "courses/sherbet_land/d_course_sherbet_land_track_path.inc.c" }; +#endif Vtx d_course_sherbet_land_model1[] = { { { { -97, -56, 398 }, 0, { 11, 1360 }, { 0xF8, 0xF8, 0x76, 0xFF } } }, @@ -4028,3 +4017,12 @@ TrackSections d_course_sherbet_land_addr[] = { { d_course_sherbet_land_packed_dl_2798, RAMP, 255, 0x0000 }, { 0x00000000, 0, 0, 0x0000 }, }; + +#ifdef VERSION_JP /* VERSION_JP path order: JP puts the paths last */ +TrackPathPoint d_course_sherbet_land_unknown_path[] = { +#include "courses/sherbet_land/d_course_sherbet_land_unknown_path.inc.c" +}; +TrackPathPoint d_course_sherbet_land_track_path[] = { +#include "courses/sherbet_land/d_course_sherbet_land_track_path.inc.c" +}; +#endif diff --git a/courses/sherbet_land/d_course_sherbet_land_track_path.inc.c b/courses/sherbet_land/d_course_sherbet_land_track_path.inc.c new file mode 100644 index 0000000000..9b3ee3f8f4 --- /dev/null +++ b/courses/sherbet_land/d_course_sherbet_land_track_path.inc.c @@ -0,0 +1,222 @@ + { -10, 0, 1, 1 }, { -10, 0, -19, 1 }, { -11, 0, -38, 1 }, + { -12, 0, -58, 1 }, { -12, 0, -78, 1 }, { -13, 0, -98, 1 }, + { -14, 0, -118, 1 }, { -14, 0, -139, 1 }, { -13, 0, -159, 1 }, + { -11, 0, -178, 1 }, { -8, 0, -198, 1 }, { -3, 0, -218, 1 }, + { 3, 0, -236, 1 }, { 12, 0, -254, 1 }, { 24, 0, -270, 1 }, + { 37, 0, -285, 1 }, { 50, 0, -300, 1 }, { 64, 0, -315, 1 }, + { 78, 0, -329, 1 }, { 93, 0, -343, 1 }, { 107, 0, -357, 1 }, + { 122, 0, -370, 1 }, { 137, 0, -384, 1 }, { 152, 0, -397, 1 }, + { 167, 0, -409, 1 }, { 183, 0, -422, 1 }, { 199, 0, -434, 1 }, + { 215, 0, -446, 2 }, { 231, 0, -458, 2 }, { 247, 0, -470, 2 }, + { 264, 0, -481, 2 }, { 280, 0, -492, 2 }, { 297, 0, -503, 2 }, + { 314, 0, -513, 2 }, { 331, 0, -524, 2 }, { 348, 0, -534, 2 }, + { 365, 0, -545, 2 }, { 382, 0, -556, 2 }, { 399, 0, -567, 2 }, + { 415, 0, -578, 2 }, { 431, 0, -590, 2 }, { 447, 0, -603, 2 }, + { 461, 0, -617, 2 }, { 472, 0, -634, 2 }, { 478, 0, -653, 2 }, + { 478, 0, -673, 2 }, { 473, 0, -692, 2 }, { 464, 0, -710, 2 }, + { 453, 0, -726, 2 }, { 441, 0, -742, 2 }, { 428, 0, -758, 2 }, + { 415, 0, -773, 2 }, { 402, 0, -788, 2 }, { 388, 0, -803, 2 }, + { 375, 0, -818, 2 }, { 361, 0, -832, 2 }, { 348, 0, -847, 2 }, + { 334, 0, -862, 2 }, { 321, 0, -877, 2 }, { 308, 0, -892, 2 }, + { 294, 0, -907, 2 }, { 281, 0, -922, 2 }, { 268, 0, -937, 2 }, + { 255, 0, -952, 2 }, { 242, 0, -967, 2 }, { 229, 0, -983, 2 }, + { 216, 0, -998, 2 }, { 203, 0, -1014, 2 }, { 191, 0, -1029, 2 }, + { 179, 0, -1045, 2 }, { 167, 0, -1061, 2 }, { 156, 0, -1078, 2 }, + { 145, 0, -1095, 2 }, { 134, 0, -1112, 2 }, { 124, 0, -1129, 2 }, + { 114, 0, -1146, 3 }, { 105, 0, -1164, 3 }, { 96, 0, -1182, 3 }, + { 88, 0, -1200, 3 }, { 80, 0, -1218, 3 }, { 72, 0, -1237, 3 }, + { 64, 0, -1255, 3 }, { 57, 0, -1274, 3 }, { 50, 0, -1293, 3 }, + { 44, 0, -1312, 3 }, { 38, 0, -1331, 3 }, { 34, 0, -1351, 3 }, + { 31, 0, -1370, 3 }, { 23, 0, -1388, 3 }, { 10, 0, -1404, 3 }, + { -3, 0, -1418, 3 }, { -19, 0, -1430, 3 }, { -35, 0, -1442, 3 }, + { -52, 0, -1453, 3 }, { -69, 0, -1464, 3 }, { -86, 0, -1475, 3 }, + { -102, 0, -1485, 3 }, { -119, 0, -1496, 3 }, { -136, 0, -1507, 3 }, + { -153, 0, -1518, 3 }, { -170, 0, -1529, 3 }, { -187, 0, -1539, 3 }, + { -204, 0, -1550, 3 }, { -220, 0, -1561, 3 }, { -236, 0, -1573, 3 }, + { -252, 0, -1585, 3 }, { -268, 0, -1598, 3 }, { -283, 0, -1611, 3 }, + { -297, 0, -1625, 3 }, { -311, 0, -1640, 3 }, { -323, 0, -1655, 3 }, + { -334, 0, -1672, 3 }, { -343, 0, -1690, 3 }, { -352, 0, -1708, 3 }, + { -360, 0, -1726, 3 }, { -367, 0, -1745, 3 }, { -374, 0, -1764, 4 }, + { -381, 0, -1782, 4 }, { -387, 0, -1801, 4 }, { -394, 0, -1821, 4 }, + { -399, 0, -1840, 4 }, { -405, 0, -1859, 4 }, { -410, 0, -1878, 4 }, + { -416, 0, -1897, 4 }, { -421, 0, -1917, 4 }, { -426, 0, -1936, 4 }, + { -432, 0, -1955, 4 }, { -437, 0, -1975, 4 }, { -442, 0, -1994, 4 }, + { -447, 0, -2013, 4 }, { -453, 0, -2033, 4 }, { -458, 0, -2052, 4 }, + { -463, 0, -2071, 4 }, { -470, 0, -2090, 4 }, { -478, 0, -2108, 4 }, + { -487, 0, -2126, 4 }, { -499, 0, -2142, 4 }, { -514, 0, -2155, 4 }, + { -532, 0, -2164, 4 }, { -552, 0, -2169, 4 }, { -572, 0, -2169, 4 }, + { -591, 0, -2165, 4 }, { -609, 0, -2157, 4 }, { -626, 0, -2145, 4 }, + { -640, 0, -2131, 4 }, { -653, 0, -2116, 4 }, { -665, 0, -2100, 4 }, + { -676, 0, -2083, 4 }, { -687, 0, -2066, 4 }, { -697, 0, -2049, 4 }, + { -707, 0, -2032, 4 }, { -717, 0, -2014, 4 }, { -726, 0, -1997, 4 }, + { -737, 0, -1980, 4 }, { -748, 0, -1963, 4 }, { -760, 0, -1947, 4 }, + { -773, 0, -1931, 4 }, { -785, 0, -1916, 4 }, { -798, 0, -1901, 4 }, + { -812, 0, -1886, 4 }, { -825, 0, -1871, 4 }, { -839, 0, -1857, 4 }, + { -853, 0, -1843, 4 }, { -867, 0, -1829, 4 }, { -882, 0, -1815, 4 }, + { -896, 0, -1801, 4 }, { -911, 0, -1787, 4 }, { -925, 0, -1773, 4 }, + { -940, 0, -1760, 4 }, { -955, 0, -1746, 4 }, { -970, 0, -1733, 5 }, + { -985, 0, -1720, 5 }, { -1000, 0, -1706, 5 }, { -1015, 0, -1693, 5 }, + { -1030, 0, -1680, 5 }, { -1045, 0, -1667, 5 }, { -1060, 0, -1653, 5 }, + { -1075, 0, -1640, 5 }, { -1089, 0, -1626, 5 }, { -1104, 0, -1613, 5 }, + { -1119, 0, -1599, 5 }, { -1134, 0, -1586, 5 }, { -1148, 0, -1572, 5 }, + { -1162, 0, -1558, 5 }, { -1177, 0, -1544, 5 }, { -1191, 0, -1530, 5 }, + { -1205, 0, -1515, 5 }, { -1219, 0, -1501, 5 }, { -1232, 0, -1486, 5 }, + { -1245, 0, -1471, 5 }, { -1258, 0, -1455, 5 }, { -1269, 0, -1439, 5 }, + { -1280, 0, -1422, 5 }, { -1290, 0, -1405, 5 }, { -1300, 0, -1388, 5 }, + { -1310, 0, -1370, 5 }, { -1320, 0, -1353, 5 }, { -1331, 0, -1336, 5 }, + { -1341, 0, -1318, 5 }, { -1351, 0, -1301, 5 }, { -1361, 0, -1284, 5 }, + { -1371, 0, -1266, 5 }, { -1381, 0, -1249, 5 }, { -1390, 0, -1232, 5 }, + { -1400, 0, -1214, 5 }, { -1411, 0, -1197, 5 }, { -1422, 0, -1180, 5 }, + { -1433, 0, -1164, 5 }, { -1445, 0, -1148, 5 }, { -1457, 0, -1132, 5 }, + { -1470, 0, -1117, 5 }, { -1483, 0, -1102, 5 }, { -1497, 0, -1087, 6 }, + { -1511, 0, -1073, 6 }, { -1526, 0, -1060, 6 }, { -1541, 0, -1046, 6 }, + { -1556, 0, -1033, 6 }, { -1572, 0, -1021, 6 }, { -1588, 0, -1009, 6 }, + { -1604, 0, -998, 6 }, { -1621, 0, -986, 6 }, { -1638, 0, -976, 6 }, + { -1655, 0, -965, 6 }, { -1672, 0, -955, 6 }, { -1689, 0, -944, 6 }, + { -1706, 0, -934, 6 }, { -1724, 0, -925, 6 }, { -1742, 0, -915, 6 }, + { -1759, 0, -906, 6 }, { -1777, 0, -897, 6 }, { -1795, 0, -888, 6 }, + { -1814, 0, -880, 6 }, { -1832, 0, -873, 6 }, { -1851, 0, -866, 6 }, + { -1870, 0, -860, 6 }, { -1889, 0, -854, 6 }, { -1907, 0, -846, 6 }, + { -1925, 0, -836, 6 }, { -1942, 0, -826, 6 }, { -1959, 0, -815, 7 }, + { -1975, 0, -803, 7 }, { -1991, 0, -791, 7 }, { -2006, 0, -778, 7 }, + { -2022, 0, -765, 7 }, { -2036, 0, -752, 7 }, { -2051, 0, -738, 7 }, + { -2065, 0, -724, 7 }, { -2080, 0, -710, 7 }, { -2094, 0, -696, 7 }, + { -2107, 0, -681, 7 }, { -2121, 0, -667, 7 }, { -2135, 0, -652, 7 }, + { -2148, 0, -637, 7 }, { -2161, 0, -622, 7 }, { -2174, 0, -606, 7 }, + { -2187, 0, -591, 7 }, { -2199, 0, -575, 7 }, { -2212, 0, -560, 7 }, + { -2224, 0, -544, 7 }, { -2235, 0, -528, 7 }, { -2247, 0, -511, 7 }, + { -2258, 0, -495, 7 }, { -2269, 0, -478, 7 }, { -2280, 0, -461, 7 }, + { -2290, 0, -444, 7 }, { -2299, 0, -426, 7 }, { -2308, 0, -408, 7 }, + { -2317, 0, -390, 7 }, { -2325, 0, -372, 7 }, { -2334, 0, -354, 7 }, + { -2342, 0, -335, 7 }, { -2349, 0, -317, 7 }, { -2357, 0, -298, 7 }, + { -2364, 0, -280, 7 }, { -2371, 0, -261, 7 }, { -2378, 0, -242, 7 }, + { -2384, 0, -223, 7 }, { -2390, 0, -204, 7 }, { -2396, 0, -185, 7 }, + { -2401, 0, -166, 7 }, { -2406, 0, -146, 7 }, { -2411, 0, -127, 7 }, + { -2416, 0, -108, 7 }, { -2422, 0, -88, 8 }, { -2427, -1, -69, 8 }, + { -2432, -2, -50, 8 }, { -2438, -3, -30, 8 }, { -2443, -4, -11, 8 }, + { -2449, -5, 7, 8 }, { -2454, -6, 26, 8 }, { -2460, -6, 45, 8 }, + { -2466, -7, 65, 8 }, { -2472, -8, 84, 8 }, { -2478, -9, 103, 8 }, + { -2484, -10, 122, 8 }, { -2490, -11, 141, 8 }, { -2497, -11, 160, 8 }, + { -2503, -12, 179, 8 }, { -2510, -13, 197, 8 }, { -2517, -14, 216, 8 }, + { -2524, -14, 235, 8 }, { -2531, -15, 254, 8 }, { -2538, -16, 272, 8 }, + { -2546, -17, 291, 8 }, { -2554, -17, 309, 8 }, { -2562, -18, 328, 8 }, + { -2570, -19, 346, 8 }, { -2579, -20, 364, 8 }, { -2588, -21, 382, 8 }, + { -2597, -23, 400, 8 }, { -2606, -24, 417, 8 }, { -2616, -26, 435, 8 }, + { -2625, -27, 452, 8 }, { -2635, -29, 470, 8 }, { -2646, -30, 487, 8 }, + { -2656, -32, 504, 8 }, { -2667, -33, 521, 8 }, { -2678, -35, 538, 8 }, + { -2689, -36, 554, 8 }, { -2701, -38, 570, 8 }, { -2713, -40, 587, 9 }, + { -2725, -41, 602, 9 }, { -2737, -43, 618, 9 }, { -2750, -45, 634, 9 }, + { -2763, -46, 649, 9 }, { -2776, -48, 664, 9 }, { -2790, -50, 678, 9 }, + { -2804, -52, 692, 9 }, { -2818, -53, 707, 9 }, { -2831, -55, 722, 9 }, + { -2845, -57, 737, 9 }, { -2858, -59, 752, 9 }, { -2871, -61, 767, 9 }, + { -2884, -63, 782, 9 }, { -2896, -64, 798, 9 }, { -2909, -66, 813, 9 }, + { -2921, -67, 829, 9 }, { -2933, -68, 845, 9 }, { -2945, -69, 861, 9 }, + { -2956, -71, 878, 9 }, { -2966, -72, 895, 9 }, { -2975, -74, 913, 9 }, + { -2984, -75, 931, 9 }, { -2991, -76, 950, 9 }, { -2997, -77, 969, 9 }, + { -3002, -78, 988, 9 }, { -3007, -79, 1008, 9 }, { -3010, -80, 1028, 9 }, + { -3012, -80, 1048, 9 }, { -3012, -80, 1067, 9 }, { -3012, -80, 1087, 9 }, + { -3011, -80, 1107, 9 }, { -3009, -80, 1127, 9 }, { -3005, -80, 1147, 9 }, + { -3000, -80, 1166, 9 }, { -2995, -80, 1186, 9 }, { -2988, -80, 1205, 10 }, + { -2981, -80, 1223, 10 }, { -2972, -80, 1241, 10 }, { -2963, -80, 1259, 10 }, + { -2954, -80, 1277, 10 }, { -2944, -80, 1294, 10 }, { -2934, -80, 1311, 10 }, + { -2923, -80, 1328, 10 }, { -2913, -80, 1345, 10 }, { -2902, -80, 1362, 10 }, + { -2891, -80, 1379, 10 }, { -2880, -80, 1396, 10 }, { -2869, -80, 1412, 10 }, + { -2857, -80, 1429, 10 }, { -2846, -80, 1445, 10 }, { -2834, -80, 1461, 10 }, + { -2822, -80, 1477, 10 }, { -2810, -80, 1493, 10 }, { -2798, -80, 1510, 10 }, + { -2786, -80, 1526, 10 }, { -2774, -80, 1541, 10 }, { -2762, -80, 1557, 10 }, + { -2750, -80, 1573, 10 }, { -2737, -80, 1589, 10 }, { -2725, -80, 1605, 11 }, + { -2712, -80, 1620, 11 }, { -2700, -80, 1636, 11 }, { -2687, -80, 1651, 11 }, + { -2674, -80, 1666, 11 }, { -2660, -80, 1681, 11 }, { -2647, -80, 1696, 11 }, + { -2633, -80, 1710, 11 }, { -2618, -80, 1723, 11 }, { -2602, -80, 1736, 11 }, + { -2585, -80, 1747, 11 }, { -2568, -80, 1756, 11 }, { -2549, -80, 1763, 11 }, + { -2530, -80, 1769, 11 }, { -2510, -80, 1771, 11 }, { -2490, -80, 1772, 11 }, + { -2470, -80, 1770, 11 }, { -2450, -80, 1765, 11 }, { -2431, -80, 1759, 11 }, + { -2413, -80, 1751, 11 }, { -2395, -80, 1742, 11 }, { -2378, -80, 1731, 11 }, + { -2362, -80, 1720, 11 }, { -2346, -80, 1708, 11 }, { -2330, -80, 1695, 11 }, + { -2315, -80, 1682, 11 }, { -2300, -80, 1669, 11 }, { -2286, -80, 1655, 12 }, + { -2272, -80, 1641, 12 }, { -2258, -80, 1626, 12 }, { -2245, -80, 1611, 12 }, + { -2232, -80, 1596, 12 }, { -2219, -80, 1581, 12 }, { -2206, -80, 1566, 12 }, + { -2193, -80, 1551, 12 }, { -2179, -80, 1536, 12 }, { -2166, -80, 1521, 12 }, + { -2152, -80, 1506, 12 }, { -2139, -80, 1491, 12 }, { -2125, -80, 1477, 12 }, + { -2111, -80, 1462, 12 }, { -2097, -80, 1448, 12 }, { -2083, -80, 1434, 12 }, + { -2069, -80, 1419, 12 }, { -2056, -80, 1405, 12 }, { -2042, -80, 1390, 12 }, + { -2030, -80, 1374, 12 }, { -2017, -80, 1359, 12 }, { -2005, -80, 1342, 12 }, + { -1994, -80, 1326, 12 }, { -1985, -80, 1308, 12 }, { -1976, -80, 1290, 13 }, + { -1969, -80, 1272, 13 }, { -1964, -80, 1252, 13 }, { -1960, -80, 1232, 13 }, + { -1958, -80, 1213, 13 }, { -1957, -80, 1193, 13 }, { -1957, -80, 1173, 13 }, + { -1960, -80, 1153, 13 }, { -1969, -80, 1135, 13 }, { -1984, -80, 1122, 13 }, + { -2002, -80, 1112, 13 }, { -2020, -80, 1104, 13 }, { -2038, -80, 1096, 13 }, + { -2057, -80, 1089, 13 }, { -2076, -80, 1083, 13 }, { -2095, -80, 1078, 13 }, + { -2115, -80, 1073, 13 }, { -2134, -80, 1068, 13 }, { -2154, -80, 1063, 13 }, + { -2173, -80, 1058, 13 }, { -2192, -80, 1053, 13 }, { -2212, -80, 1047, 13 }, + { -2231, -80, 1042, 13 }, { -2250, -80, 1036, 13 }, { -2269, -80, 1031, 13 }, + { -2288, -80, 1024, 13 }, { -2307, -80, 1018, 14 }, { -2326, -80, 1011, 14 }, + { -2345, -80, 1004, 14 }, { -2363, -80, 996, 14 }, { -2381, -79, 987, 14 }, + { -2398, -78, 978, 14 }, { -2415, -76, 966, 14 }, { -2430, -74, 953, 14 }, + { -2443, -73, 938, 14 }, { -2454, -72, 921, 14 }, { -2461, -71, 903, 14 }, + { -2465, -69, 883, 14 }, { -2468, -68, 863, 14 }, { -2469, -67, 843, 14 }, + { -2468, -67, 823, 14 }, { -2467, -66, 803, 14 }, { -2465, -65, 783, 14 }, + { -2460, -64, 764, 14 }, { -2455, -63, 745, 14 }, { -2447, -61, 726, 14 }, + { -2439, -60, 708, 14 }, { -2429, -58, 690, 14 }, { -2419, -56, 673, 14 }, + { -2408, -55, 657, 14 }, { -2396, -53, 640, 14 }, { -2384, -51, 625, 14 }, + { -2371, -50, 609, 14 }, { -2358, -48, 594, 14 }, { -2344, -46, 580, 14 }, + { -2330, -44, 566, 14 }, { -2315, -43, 552, 14 }, { -2300, -41, 539, 14 }, + { -2285, -39, 526, 15 }, { -2269, -37, 513, 15 }, { -2253, -35, 501, 15 }, + { -2237, -34, 490, 15 }, { -2220, -32, 479, 15 }, { -2203, -30, 469, 15 }, + { -2185, -28, 459, 15 }, { -2168, -26, 449, 15 }, { -2151, -24, 438, 15 }, + { -2134, -22, 427, 15 }, { -2118, -20, 416, 15 }, { -2101, -19, 405, 15 }, + { -2084, -18, 394, 15 }, { -2068, -17, 382, 15 }, { -2052, -16, 371, 15 }, + { -2036, -14, 358, 15 }, { -2020, -13, 346, 15 }, { -2004, -12, 334, 15 }, + { -1988, -11, 323, 15 }, { -1971, -10, 312, 15 }, { -1954, -9, 302, 15 }, + { -1936, -8, 292, 15 }, { -1919, -7, 283, 15 }, { -1901, -6, 274, 15 }, + { -1883, -5, 265, 15 }, { -1864, -5, 257, 15 }, { -1846, -4, 249, 15 }, + { -1827, -3, 241, 15 }, { -1809, -2, 234, 15 }, { -1790, -1, 227, 15 }, + { -1771, 0, 220, 15 }, { -1752, 0, 214, 15 }, { -1733, 0, 208, 16 }, + { -1714, 0, 203, 16 }, { -1694, 0, 198, 16 }, { -1675, 0, 193, 16 }, + { -1655, 0, 189, 16 }, { -1636, 0, 186, 16 }, { -1616, 0, 183, 16 }, + { -1596, 0, 181, 16 }, { -1576, 0, 179, 16 }, { -1556, 0, 178, 16 }, + { -1536, 0, 177, 16 }, { -1516, 0, 176, 16 }, { -1496, 0, 176, 16 }, + { -1476, 0, 177, 16 }, { -1456, 0, 177, 16 }, { -1436, 0, 179, 16 }, + { -1416, 0, 181, 16 }, { -1396, 0, 183, 16 }, { -1376, 0, 186, 16 }, + { -1357, 0, 190, 16 }, { -1337, 0, 194, 16 }, { -1318, 0, 199, 16 }, + { -1299, 0, 204, 16 }, { -1280, 0, 211, 16 }, { -1261, 0, 218, 16 }, + { -1242, 0, 225, 16 }, { -1224, 0, 234, 16 }, { -1206, 0, 243, 16 }, + { -1189, 0, 253, 16 }, { -1172, 0, 264, 16 }, { -1156, 0, 275, 16 }, + { -1139, 0, 287, 16 }, { -1123, 0, 299, 16 }, { -1108, 0, 311, 16 }, + { -1092, 0, 324, 16 }, { -1077, 0, 337, 16 }, { -1062, 0, 350, 16 }, + { -1048, 0, 364, 16 }, { -1033, 0, 378, 16 }, { -1019, 0, 392, 16 }, + { -1005, 0, 407, 16 }, { -992, 0, 421, 17 }, { -978, 0, 436, 17 }, + { -965, 0, 451, 17 }, { -951, 0, 466, 17 }, { -938, 0, 481, 17 }, + { -926, 0, 496, 17 }, { -913, 0, 512, 17 }, { -900, 0, 527, 17 }, + { -887, 0, 543, 17 }, { -875, 0, 558, 17 }, { -862, 0, 574, 17 }, + { -849, 0, 589, 17 }, { -837, 0, 605, 17 }, { -824, 0, 620, 17 }, + { -811, 0, 636, 17 }, { -799, 0, 651, 17 }, { -786, 0, 667, 17 }, + { -774, 0, 683, 17 }, { -761, 0, 698, 17 }, { -749, 0, 714, 17 }, + { -737, 0, 730, 17 }, { -724, 0, 745, 17 }, { -712, 0, 761, 17 }, + { -700, 0, 777, 17 }, { -687, 0, 793, 17 }, { -675, 0, 809, 17 }, + { -663, 0, 824, 17 }, { -650, 0, 840, 17 }, { -637, 0, 855, 17 }, + { -624, 0, 870, 17 }, { -611, 0, 885, 17 }, { -597, 0, 900, 17 }, + { -583, 0, 914, 17 }, { -569, 0, 928, 17 }, { -554, 0, 941, 17 }, + { -539, 0, 955, 17 }, { -523, 0, 967, 17 }, { -507, 0, 979, 17 }, + { -491, 0, 990, 17 }, { -474, 0, 1001, 17 }, { -456, 0, 1010, 17 }, + { -437, 0, 1017, 17 }, { -418, 0, 1023, 17 }, { -399, 0, 1027, 18 }, + { -379, 0, 1029, 18 }, { -359, 0, 1027, 18 }, { -339, 0, 1024, 18 }, + { -320, 0, 1017, 18 }, { -302, 0, 1008, 18 }, { -286, 0, 997, 18 }, + { -270, 0, 984, 18 }, { -255, 0, 971, 18 }, { -242, 0, 956, 18 }, + { -229, 0, 941, 18 }, { -217, 0, 925, 18 }, { -205, 0, 908, 18 }, + { -194, 0, 892, 18 }, { -184, 0, 875, 18 }, { -174, 0, 857, 18 }, + { -164, 0, 840, 18 }, { -154, 0, 822, 18 }, { -145, 0, 805, 18 }, + { -136, 0, 787, 18 }, { -127, 0, 769, 18 }, { -119, 0, 751, 18 }, + { -111, 0, 732, 18 }, { -103, 0, 714, 18 }, { -95, 0, 696, 18 }, + { -87, 0, 677, 18 }, { -80, 0, 658, 18 }, { -73, 0, 640, 18 }, + { -66, 0, 621, 18 }, { -59, 0, 602, 18 }, { -53, 0, 583, 18 }, + { -47, 0, 564, 18 }, { -42, 0, 545, 18 }, { -37, 0, 525, 18 }, + { -32, 0, 506, 18 }, { -27, 0, 486, 18 }, { -24, 0, 467, 18 }, + { -20, 0, 447, 18 }, { -17, 0, 427, 18 }, { -14, 0, 408, 18 }, + { -11, 0, 388, 18 }, { -9, 0, 368, 18 }, { -7, 0, 348, 18 }, + { -5, 0, 328, 18 }, { -4, 0, 308, 18 }, { -3, 0, 288, 1 }, + { -2, 0, 268, 1 }, { -2, 0, 248, 1 }, { -2, 0, 228, 1 }, + { -1, 0, 208, 1 }, { -1, 0, 188, 1 }, { -1, 0, 168, 1 }, + { -1, 0, 148, 1 }, { -1, 0, 128, 1 }, { -1, 0, 108, 1 }, + { -1, 0, 88, 1 }, { -1, 0, 68, 1 }, { -2, 0, 48, 1 }, + { -4, 0, 28, 1 }, { -9, 0, 8, 1 }, { -32768, -32768, -32768, 0 }, diff --git a/courses/sherbet_land/d_course_sherbet_land_unknown_path.inc.c b/courses/sherbet_land/d_course_sherbet_land_unknown_path.inc.c new file mode 100644 index 0000000000..7246d57d55 --- /dev/null +++ b/courses/sherbet_land/d_course_sherbet_land_unknown_path.inc.c @@ -0,0 +1,16 @@ + { -10, 0, 10, 0 }, { -10, 0, -8, 0 }, { -18, 0, -213, 0 }, { 52, 0, -308, 0 }, + { 217, 0, -455, 0 }, { 436, 0, -587, 0 }, { 487, 0, -649, 0 }, { 465, 0, -722, 0 }, + { 308, 0, -890, 0 }, { 132, 0, -1099, 0 }, { 37, 0, -1319, 0 }, { 31, 0, -1396, 0 }, + { -75, 0, -1469, 0 }, { -302, 0, -1612, 0 }, { -372, 0, -1743, 0 }, { -432, 0, -1953, 0 }, + { -484, 0, -2151, 0 }, { -586, 0, -2180, 0 }, { -667, 0, -2110, 0 }, { -777, 0, -1902, 0 }, + { -1230, 0, -1506, 0 }, { -1318, 0, -1360, 0 }, { -1479, 0, -1078, 0 }, { -1776, 0, -888, 0 }, + { -1966, 0, -833, 0 }, { -2253, 0, -527, 0 }, { -2374, 0, -271, 0 }, { -2421, 0, -91, 0 }, + { -2482, 0, 123, 0 }, { -2573, 0, 365, 0 }, { -2713, 0, 599, 0 }, { -2870, 0, 760, 0 }, + { -3002, 0, 937, 0 }, { -3021, 0, 1145, 0 }, { -2922, 0, 1343, 0 }, { -2717, 0, 1621, 0 }, + { -2585, 0, 1764, 0 }, { -2446, 0, 1779, 0 }, { -2299, 0, 1676, 0 }, { -2171, 0, 1523, 0 }, + { -1984, 0, 1332, 0 }, { -1951, 0, 1197, 0 }, { -1970, 0, 1109, 0 }, { -2281, 0, 1032, 0 }, + { -2427, 0, 970, 0 }, { -2475, 0, 886, 0 }, { -2460, 0, 717, 0 }, { -2303, 0, 527, 0 }, + { -2105, 0, 413, 0 }, { -1937, 0, 281, 0 }, { -1635, 0, 170, 0 }, { -1295, 0, 185, 0 }, + { -1057, 0, 339, 0 }, { -793, 0, 657, 0 }, { -581, 0, 932, 0 }, { -409, 0, 1045, 0 }, + { -262, 0, 1001, 0 }, { -120, 0, 771, 0 }, { -6, 0, 452, 0 }, { 1, 0, 49, 0 }, + { -2058, 0, 1043, 0 }, { -32768, 0, 0, 0 }, diff --git a/courses/toads_turnpike/course_data.c b/courses/toads_turnpike/course_data.c index e371c4bb24..0caaf4dc1e 100644 --- a/courses/toads_turnpike/course_data.c +++ b/courses/toads_turnpike/course_data.c @@ -67,7 +67,13 @@ Gfx d_course_toads_turnpike_dl_80[] = { Gfx d_course_toads_turnpike_dl_158[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_618), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_AA8), gsSPDisplayList(d_course_toads_turnpike_dl_60), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_AA8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_32A0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_38E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_44C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_45B8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4BE0), @@ -83,12 +89,21 @@ Gfx d_course_toads_turnpike_dl_1F8[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_6E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_AA8), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_32A0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_3548), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_38E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_44C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_45B8), @@ -96,12 +111,16 @@ Gfx d_course_toads_turnpike_dl_1F8[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_5880), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_5C80), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_6030), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1A58), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1BB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_1CB8), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_2328), gsSPDisplayList(d_course_toads_turnpike_packed_dl_24C0), gsSPEndDisplayList(), @@ -110,14 +129,26 @@ Gfx d_course_toads_turnpike_dl_1F8[] = { Gfx d_course_toads_turnpike_dl_2D0[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_618), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), gsSPDisplayList(d_course_toads_turnpike_packed_dl_AA8), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_AA8), +#endif gsSPDisplayList(d_course_toads_turnpike_dl_60), gsSPDisplayList(d_course_toads_turnpike_packed_dl_32A0), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_38E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_44C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_45B8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4BE0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5880), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5C80), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_6030), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5C80), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_6030), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1A58), gsSPEndDisplayList(), }; @@ -126,8 +157,13 @@ Gfx d_course_toads_turnpike_dl_380[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_618), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_32A0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), @@ -164,10 +200,20 @@ Gfx d_course_toads_turnpike_dl_438[] = { Gfx d_course_toads_turnpike_dl_4E8[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_618), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), - gsSPDisplayList(d_course_toads_turnpike_dl_60), gsSPDisplayList(d_course_toads_turnpike_packed_dl_32A0), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_32A0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_3548), gsSPDisplayList(d_course_toads_turnpike_packed_dl_38E8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_3548), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_38E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_44C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_45B8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4678), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4BE0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5880), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), @@ -180,13 +226,24 @@ Gfx d_course_toads_turnpike_dl_4E8[] = { Gfx d_course_toads_turnpike_dl_5B8[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_618), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), - gsSPDisplayList(d_course_toads_turnpike_dl_60), gsSPDisplayList(d_course_toads_turnpike_packed_dl_32A0), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#else + gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_32A0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), gsSPDisplayList(d_course_toads_turnpike_packed_dl_44C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_45B8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4678), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5880), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_5C80), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5C80), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_1A58), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1BB8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1CB8), gsSPEndDisplayList(), }; @@ -194,7 +251,13 @@ Gfx d_course_toads_turnpike_dl_5B8[] = { Gfx d_course_toads_turnpike_dl_668[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_540), gsSPDisplayList(d_course_toads_turnpike_dl_60), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_540), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3548), gsSPDisplayList(d_course_toads_turnpike_packed_dl_31E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_45B8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4678), @@ -208,8 +271,15 @@ Gfx d_course_toads_turnpike_dl_668[] = { Gfx d_course_toads_turnpike_dl_718[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_618), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), - gsSPDisplayList(d_course_toads_turnpike_dl_60), gsSPDisplayList(d_course_toads_turnpike_packed_dl_32A0), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_32A0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3548), gsSPDisplayList(d_course_toads_turnpike_packed_dl_44C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_45B8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4678), @@ -229,22 +299,35 @@ Gfx d_course_toads_turnpike_dl_7D8[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_4678), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4738), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5880), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5C80), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1BB8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_1BB8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1CB8), gsSPEndDisplayList(), }; Gfx d_course_toads_turnpike_dl_878[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_618), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_540), - gsSPDisplayList(d_course_toads_turnpike_dl_60), gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_540), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3548), gsSPDisplayList(d_course_toads_turnpike_packed_dl_31E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_45B8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4678), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4738), gsSPDisplayList(d_course_toads_turnpike_packed_dl_43A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5880), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5C80), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5770), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1BB8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_1BB8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1CB8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1E30), gsSPDisplayList(d_course_toads_turnpike_packed_dl_18C0), gsSPEndDisplayList(), }; @@ -254,8 +337,13 @@ Gfx d_course_toads_turnpike_dl_948[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_540), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_160), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3548), gsSPDisplayList(d_course_toads_turnpike_packed_dl_31E8), @@ -279,9 +367,14 @@ Gfx d_course_toads_turnpike_dl_9F0[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_540), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_618), gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3548), @@ -307,13 +400,25 @@ Gfx d_course_toads_turnpike_dl_AC8[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_540), gsSPDisplayList(d_course_toads_turnpike_dl_60), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3548), gsSPDisplayList(d_course_toads_turnpike_packed_dl_31E8), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_45B8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4678), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_45B8), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_4678), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4738), gsSPDisplayList(d_course_toads_turnpike_packed_dl_43A8), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_5880), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5880), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5C80), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_5770), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5770), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_1BB8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1CB8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1E30), gsSPEndDisplayList(), }; @@ -324,25 +429,40 @@ Gfx d_course_toads_turnpike_dl_B88[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_540), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_160), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3548), gsSPDisplayList(d_course_toads_turnpike_packed_dl_31E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2E40), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_45B8), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_4678), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4738), gsSPDisplayList(d_course_toads_turnpike_packed_dl_43A8), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_5880), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5C80), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5770), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5270), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_1BB8), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_1CB8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1E30), gsSPDisplayList(d_course_toads_turnpike_packed_dl_18C0), @@ -358,15 +478,25 @@ Gfx d_course_toads_turnpike_dl_C70[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_4738), gsSPDisplayList(d_course_toads_turnpike_packed_dl_43A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E90), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5C80), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5770), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5270), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_5360), gsSPDisplayList(d_course_toads_turnpike_packed_dl_18C0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5360), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_18C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1078), gsSPEndDisplayList(), }; Gfx d_course_toads_turnpike_dl_D00[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_540), gsSPDisplayList(d_course_toads_turnpike_packed_dl_160), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), gsSPDisplayList(d_course_toads_turnpike_packed_dl_218), - gsSPDisplayList(d_course_toads_turnpike_dl_60), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_218), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3548), gsSPDisplayList(d_course_toads_turnpike_packed_dl_31E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2E40), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4738), gsSPDisplayList(d_course_toads_turnpike_packed_dl_43A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E90), @@ -381,7 +511,13 @@ Gfx d_course_toads_turnpike_dl_D00[] = { Gfx d_course_toads_turnpike_dl_DD0[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_540), gsSPDisplayList(d_course_toads_turnpike_packed_dl_160), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), gsSPDisplayList(d_course_toads_turnpike_dl_60), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3548), gsSPDisplayList(d_course_toads_turnpike_packed_dl_31E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2E40), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4738), gsSPDisplayList(d_course_toads_turnpike_packed_dl_43A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E90), @@ -396,8 +532,13 @@ Gfx d_course_toads_turnpike_dl_E70[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_540), gsSPDisplayList(d_course_toads_turnpike_packed_dl_160), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_218), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3548), gsSPDisplayList(d_course_toads_turnpike_packed_dl_31E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2E40), @@ -423,7 +564,10 @@ Gfx d_course_toads_turnpike_dl_F18[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_43A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E90), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3F80), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5770), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5270), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5360), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_18C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1078), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_18C0), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_1078), gsSPDisplayList(d_course_toads_turnpike_packed_dl_11B8), gsSPEndDisplayList(), }; @@ -432,9 +576,14 @@ Gfx d_course_toads_turnpike_dl_FA8[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_540), gsSPDisplayList(d_course_toads_turnpike_packed_dl_160), gsSPDisplayList(d_course_toads_turnpike_packed_dl_218), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_300), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3548), gsSPDisplayList(d_course_toads_turnpike_packed_dl_31E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2E40), @@ -460,8 +609,13 @@ Gfx d_course_toads_turnpike_dl_1070[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_540), gsSPDisplayList(d_course_toads_turnpike_packed_dl_160), gsSPDisplayList(d_course_toads_turnpike_packed_dl_218), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3548), gsSPDisplayList(d_course_toads_turnpike_packed_dl_31E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2E40), @@ -484,8 +638,13 @@ Gfx d_course_toads_turnpike_dl_1118[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_540), gsSPDisplayList(d_course_toads_turnpike_packed_dl_160), gsSPDisplayList(d_course_toads_turnpike_packed_dl_218), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_300), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_31E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2E40), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2EE0), @@ -518,14 +677,26 @@ Gfx d_course_toads_turnpike_dl_11C0[] = { Gfx d_course_toads_turnpike_dl_1250[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_160), gsSPDisplayList(d_course_toads_turnpike_packed_dl_218), gsSPDisplayList(d_course_toads_turnpike_packed_dl_300), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E8), gsSPDisplayList(d_course_toads_turnpike_dl_60), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_2E40), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2EE0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2FA0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3060), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E90), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3F80), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_40A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5770), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_40A8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5770), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_5270), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5360), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5480), gsSPDisplayList(d_course_toads_turnpike_packed_dl_55A0), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_18C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1078), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_18C0), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_1078), gsSPDisplayList(d_course_toads_turnpike_packed_dl_11B8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_13B0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_15E8), gsSPEndDisplayList(), }; @@ -533,8 +704,15 @@ Gfx d_course_toads_turnpike_dl_1250[] = { Gfx d_course_toads_turnpike_dl_1310[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_540), gsSPDisplayList(d_course_toads_turnpike_packed_dl_160), gsSPDisplayList(d_course_toads_turnpike_packed_dl_218), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_300), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E8), - gsSPDisplayList(d_course_toads_turnpike_dl_60), gsSPDisplayList(d_course_toads_turnpike_packed_dl_31E8), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_300), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_31E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2E40), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2EE0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2FA0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_43A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E90), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3F80), @@ -571,8 +749,13 @@ Gfx d_course_toads_turnpike_dl_1468[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_218), gsSPDisplayList(d_course_toads_turnpike_packed_dl_300), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E8), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_160), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_2E40), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2EE0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2FA0), @@ -595,8 +778,13 @@ Gfx d_course_toads_turnpike_dl_1510[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_218), gsSPDisplayList(d_course_toads_turnpike_packed_dl_300), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E8), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_4C0), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_2EE0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2FA0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3060), @@ -615,8 +803,15 @@ Gfx d_course_toads_turnpike_dl_1510[] = { Gfx d_course_toads_turnpike_dl_15A8[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_218), gsSPDisplayList(d_course_toads_turnpike_packed_dl_300), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E8), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_160), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4C0), - gsSPDisplayList(d_course_toads_turnpike_dl_60), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2E40), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_160), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_4C0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_2E40), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2EE0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2FA0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3060), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3F80), gsSPDisplayList(d_course_toads_turnpike_packed_dl_40A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_41D0), @@ -643,16 +838,33 @@ Gfx d_course_toads_turnpike_dl_1678[] = { Gfx d_course_toads_turnpike_dl_1708[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_300), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4C0), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_218), gsSPDisplayList(d_course_toads_turnpike_dl_60), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_218), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_2EE0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2FA0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3060), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3118), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_3AD0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_40A8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_3AD0), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_40A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_41D0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_42E8), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_4E30), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_4E30), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5360), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5480), gsSPDisplayList(d_course_toads_turnpike_packed_dl_55A0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_56B0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5D90), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_6348), gsSPDisplayList(d_course_toads_turnpike_packed_dl_11B8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_6348), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_11B8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_13B0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_15E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1780), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6908), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6848), gsSPEndDisplayList(), @@ -667,18 +879,26 @@ Gfx d_course_toads_turnpike_dl_17F8[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_2FA0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3060), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3118), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_3AD0), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_40A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_41D0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_42E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_4E30), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_5480), gsSPDisplayList(d_course_toads_turnpike_packed_dl_55A0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_56B0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5D90), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_6348), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_15E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1780), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6908), @@ -689,8 +909,15 @@ Gfx d_course_toads_turnpike_dl_17F8[] = { Gfx d_course_toads_turnpike_dl_18C0[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_300), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4C0), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_8C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_D08), - gsSPDisplayList(d_course_toads_turnpike_dl_60), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2FA0), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_8C0), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_D08), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_2FA0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3060), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3118), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3638), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3AD0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_40A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_41D0), @@ -708,7 +935,13 @@ Gfx d_course_toads_turnpike_dl_18C0[] = { Gfx d_course_toads_turnpike_dl_19C0[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_300), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4C0), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_218), gsSPDisplayList(d_course_toads_turnpike_dl_60), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_218), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_2FA0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3060), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3118), gsSPDisplayList(d_course_toads_turnpike_packed_dl_40A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_41D0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_42E8), @@ -721,19 +954,37 @@ Gfx d_course_toads_turnpike_dl_19C0[] = { Gfx d_course_toads_turnpike_dl_1A60[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_8C0), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_300), gsSPDisplayList(d_course_toads_turnpike_packed_dl_D08), - gsSPDisplayList(d_course_toads_turnpike_dl_60), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2FA0), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_300), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_D08), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_2FA0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3060), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3118), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3638), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3AD0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_41D0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_42E8), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_4850), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4E30), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_4850), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_4E30), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5480), gsSPDisplayList(d_course_toads_turnpike_packed_dl_55A0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_56B0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5D90), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6348), gsSPDisplayList(d_course_toads_turnpike_packed_dl_13B0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_15E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1780), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1F70), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6908), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_6788), gsSPEndDisplayList(), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_6848), +#else + gsSPDisplayList(d_course_toads_turnpike_packed_dl_6788), +#endif + gsSPEndDisplayList(), }; Gfx d_course_toads_turnpike_dl_1B50[] = { @@ -756,8 +1007,13 @@ Gfx d_course_toads_turnpike_dl_1C10[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_8C0), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_D08), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3060), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3118), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3638), @@ -792,8 +1048,13 @@ Gfx d_course_toads_turnpike_dl_1D18[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_8C0), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_300), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_2FA0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3060), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3118), @@ -844,7 +1105,13 @@ Gfx d_course_toads_turnpike_dl_1E80[] = { Gfx d_course_toads_turnpike_dl_1F40[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_8C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_D08), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_D88), gsSPDisplayList(d_course_toads_turnpike_dl_60), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_D88), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3118), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3638), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3AD0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3B58), gsSPDisplayList(d_course_toads_turnpike_packed_dl_42E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4850), @@ -864,8 +1131,13 @@ Gfx d_course_toads_turnpike_dl_2030[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_4C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_8C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_D08), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3118), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3638), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3AD0), @@ -923,7 +1195,13 @@ Gfx d_course_toads_turnpike_dl_21C8[] = { Gfx d_course_toads_turnpike_dl_22A8[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_8C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_D08), gsSPDisplayList(d_course_toads_turnpike_packed_dl_D88), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_E08), gsSPDisplayList(d_course_toads_turnpike_dl_60), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_E08), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3638), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3AD0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3B58), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4850), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4E30), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4EF0), @@ -969,18 +1247,41 @@ Gfx d_course_toads_turnpike_dl_2358[] = { Gfx d_course_toads_turnpike_dl_2440[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_D08), gsSPDisplayList(d_course_toads_turnpike_packed_dl_D88), gsSPDisplayList(d_course_toads_turnpike_packed_dl_E08), - gsSPDisplayList(d_course_toads_turnpike_dl_60), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3118), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_3638), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3AD0), + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_3118), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_3638), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_3AD0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3B58), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3C28), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_42E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4850), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_42E8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_4850), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_4E30), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4EF0), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_4FB0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_56B0), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_4FB0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_56B0), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_5D90), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6348), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6408), gsSPDisplayList(d_course_toads_turnpike_packed_dl_64C8), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_65B8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2798), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_65B8), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_2798), gsSPDisplayList(d_course_toads_turnpike_packed_dl_28D8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_29B8), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_2AF8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6908), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_2AF8), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_6908), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6848), gsSPEndDisplayList(), }; @@ -989,28 +1290,45 @@ Gfx d_course_toads_turnpike_dl_2530[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_D08), gsSPDisplayList(d_course_toads_turnpike_packed_dl_D88), gsSPDisplayList(d_course_toads_turnpike_packed_dl_E08), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_EC0), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_3118), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3638), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3AD0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3B58), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3C28), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3D00), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_42E8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_4850), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_4E30), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4EF0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4FB0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_56B0), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_5D90), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6348), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6408), gsSPDisplayList(d_course_toads_turnpike_packed_dl_64C8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_65B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_2798), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_28D8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_29B8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6908), @@ -1021,7 +1339,13 @@ Gfx d_course_toads_turnpike_dl_2530[] = { Gfx d_course_toads_turnpike_dl_2628[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_D08), gsSPDisplayList(d_course_toads_turnpike_packed_dl_D88), gsSPDisplayList(d_course_toads_turnpike_packed_dl_E08), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_EC0), gsSPDisplayList(d_course_toads_turnpike_dl_60), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_EC0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3AD0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3B58), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3C28), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3D00), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4E30), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4EF0), @@ -1037,9 +1361,14 @@ Gfx d_course_toads_turnpike_dl_26D8[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_D08), gsSPDisplayList(d_course_toads_turnpike_packed_dl_D88), gsSPDisplayList(d_course_toads_turnpike_packed_dl_E08), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_4C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_8C0), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3118), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3638), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3AD0), @@ -1072,17 +1401,25 @@ Gfx d_course_toads_turnpike_dl_27D0[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_E08), gsSPDisplayList(d_course_toads_turnpike_packed_dl_EC0), gsSPDisplayList(d_course_toads_turnpike_dl_60), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_3118), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3B58), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3C28), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3D00), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_42E8), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_4EF0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4FB0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_50A0), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_56B0), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_6348), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6408), gsSPDisplayList(d_course_toads_turnpike_packed_dl_64C8), @@ -1099,8 +1436,13 @@ Gfx d_course_toads_turnpike_dl_2898[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_D88), gsSPDisplayList(d_course_toads_turnpike_packed_dl_E08), gsSPDisplayList(d_course_toads_turnpike_packed_dl_EC0), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_C30), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3B58), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3C28), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3D00), @@ -1109,7 +1451,9 @@ Gfx d_course_toads_turnpike_dl_2898[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_4FB0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_50A0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_6348), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6408), gsSPDisplayList(d_course_toads_turnpike_packed_dl_64C8), @@ -1125,7 +1469,13 @@ Gfx d_course_toads_turnpike_dl_2898[] = { Gfx d_course_toads_turnpike_dl_2960[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_D88), gsSPDisplayList(d_course_toads_turnpike_packed_dl_E08), gsSPDisplayList(d_course_toads_turnpike_packed_dl_EC0), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_C30), gsSPDisplayList(d_course_toads_turnpike_dl_60), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_C30), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3B58), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3C28), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3D00), gsSPDisplayList(d_course_toads_turnpike_packed_dl_39A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4EF0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4FB0), @@ -1138,7 +1488,13 @@ Gfx d_course_toads_turnpike_dl_2960[] = { Gfx d_course_toads_turnpike_dl_2A00[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_D88), gsSPDisplayList(d_course_toads_turnpike_packed_dl_E08), gsSPDisplayList(d_course_toads_turnpike_packed_dl_EC0), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_D08), gsSPDisplayList(d_course_toads_turnpike_dl_60), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_D08), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3118), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3AD0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3B58), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3C28), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3D00), gsSPDisplayList(d_course_toads_turnpike_packed_dl_42E8), @@ -1158,8 +1514,13 @@ Gfx d_course_toads_turnpike_dl_2AF0[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_E08), gsSPDisplayList(d_course_toads_turnpike_packed_dl_EC0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_C30), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_D88), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3C28), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3D00), gsSPDisplayList(d_course_toads_turnpike_packed_dl_39A8), @@ -1178,7 +1539,13 @@ Gfx d_course_toads_turnpike_dl_2AF0[] = { Gfx d_course_toads_turnpike_dl_2B88[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_E08), gsSPDisplayList(d_course_toads_turnpike_packed_dl_EC0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_C30), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_940), gsSPDisplayList(d_course_toads_turnpike_dl_60), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_940), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3C28), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3D00), gsSPDisplayList(d_course_toads_turnpike_packed_dl_39A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_36C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4FB0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_50A0), @@ -1211,12 +1578,22 @@ Gfx d_course_toads_turnpike_dl_2C38[] = { Gfx d_course_toads_turnpike_dl_2CC0[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_D88), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_E08), gsSPDisplayList(d_course_toads_turnpike_packed_dl_EC0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_C30), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_D88), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_940), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3B58), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3C28), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3D00), @@ -1248,8 +1625,13 @@ Gfx d_course_toads_turnpike_dl_2DB8[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_EC0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_C30), gsSPDisplayList(d_course_toads_turnpike_packed_dl_940), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_E08), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3D00), gsSPDisplayList(d_course_toads_turnpike_packed_dl_39A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_36C0), @@ -1268,7 +1650,13 @@ Gfx d_course_toads_turnpike_dl_2DB8[] = { Gfx d_course_toads_turnpike_dl_2E50[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_EC0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_C30), gsSPDisplayList(d_course_toads_turnpike_packed_dl_940), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_A28), gsSPDisplayList(d_course_toads_turnpike_dl_60), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_A28), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3D00), gsSPDisplayList(d_course_toads_turnpike_packed_dl_39A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_36C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3780), gsSPDisplayList(d_course_toads_turnpike_packed_dl_50A0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4D10), @@ -1303,9 +1691,14 @@ Gfx d_course_toads_turnpike_dl_2F78[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_EC0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_C30), gsSPDisplayList(d_course_toads_turnpike_packed_dl_940), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_E08), gsSPDisplayList(d_course_toads_turnpike_packed_dl_A28), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3D00), gsSPDisplayList(d_course_toads_turnpike_packed_dl_39A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_36C0), @@ -1329,13 +1722,22 @@ Gfx d_course_toads_turnpike_dl_3030[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_C30), gsSPDisplayList(d_course_toads_turnpike_packed_dl_940), gsSPDisplayList(d_course_toads_turnpike_packed_dl_A28), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_EC0), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_AA8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_39A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_36C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3780), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_3850), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_4D10), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4910), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4A40), @@ -1343,8 +1745,12 @@ Gfx d_course_toads_turnpike_dl_3030[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_6230), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5E50), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5F78), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_6030), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_2AF8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2600), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2050), @@ -1357,8 +1763,13 @@ Gfx d_course_toads_turnpike_dl_30F8[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_C30), gsSPDisplayList(d_course_toads_turnpike_packed_dl_940), gsSPDisplayList(d_course_toads_turnpike_packed_dl_A28), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_AA8), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_39A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_36C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3780), @@ -1379,8 +1790,13 @@ Gfx d_course_toads_turnpike_dl_3190[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_C30), gsSPDisplayList(d_course_toads_turnpike_packed_dl_940), gsSPDisplayList(d_course_toads_turnpike_packed_dl_A28), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_EC0), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_39A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_36C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3780), @@ -1401,9 +1817,14 @@ Gfx d_course_toads_turnpike_dl_3228[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_C30), gsSPDisplayList(d_course_toads_turnpike_packed_dl_940), gsSPDisplayList(d_course_toads_turnpike_packed_dl_A28), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_AA8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_39A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_36C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3780), @@ -1427,8 +1848,15 @@ Gfx d_course_toads_turnpike_dl_3228[] = { Gfx d_course_toads_turnpike_dl_32F0[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_940), gsSPDisplayList(d_course_toads_turnpike_packed_dl_A28), gsSPDisplayList(d_course_toads_turnpike_packed_dl_AA8), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_C30), gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), - gsSPDisplayList(d_course_toads_turnpike_dl_60), gsSPDisplayList(d_course_toads_turnpike_packed_dl_36C0), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_C30), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_36C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3780), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3850), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4910), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4A40), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4B00), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6230), @@ -1453,7 +1881,9 @@ Gfx d_course_toads_turnpike_dl_33A0[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_5E50), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5F78), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6030), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_2050), gsSPDisplayList(d_course_toads_turnpike_packed_dl_21E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2328), @@ -1465,8 +1895,13 @@ Gfx d_course_toads_turnpike_dl_3438[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_940), gsSPDisplayList(d_course_toads_turnpike_packed_dl_A28), gsSPDisplayList(d_course_toads_turnpike_packed_dl_AA8), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_C30), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_36C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3780), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3850), @@ -1485,7 +1920,13 @@ Gfx d_course_toads_turnpike_dl_3438[] = { Gfx d_course_toads_turnpike_dl_34D0[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_940), gsSPDisplayList(d_course_toads_turnpike_packed_dl_A28), gsSPDisplayList(d_course_toads_turnpike_packed_dl_AA8), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), gsSPDisplayList(d_course_toads_turnpike_dl_60), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_36C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3780), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3850), gsSPDisplayList(d_course_toads_turnpike_packed_dl_38E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4910), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4A40), @@ -1500,8 +1941,13 @@ Gfx d_course_toads_turnpike_dl_3570[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_A28), gsSPDisplayList(d_course_toads_turnpike_packed_dl_AA8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_618), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3780), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3850), gsSPDisplayList(d_course_toads_turnpike_packed_dl_38E8), @@ -1509,7 +1955,9 @@ Gfx d_course_toads_turnpike_dl_3570[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_4B00), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4BE0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5880), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_5E50), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_5F78), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6030), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), @@ -1525,7 +1973,10 @@ Gfx d_course_toads_turnpike_dl_3618[] = { gsSPDisplayList(d_course_toads_turnpike_dl_60), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3780), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3850), gsSPDisplayList(d_course_toads_turnpike_packed_dl_38E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4A40), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4B00), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_4BE0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5E50), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_4BE0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5E50), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_5F78), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6030), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), gsSPDisplayList(d_course_toads_turnpike_packed_dl_21E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2328), gsSPEndDisplayList(), @@ -1550,8 +2001,13 @@ Gfx d_course_toads_turnpike_dl_3758[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_A28), gsSPDisplayList(d_course_toads_turnpike_packed_dl_AA8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_618), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3780), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3850), gsSPDisplayList(d_course_toads_turnpike_packed_dl_38E8), @@ -1570,21 +2026,42 @@ Gfx d_course_toads_turnpike_dl_3758[] = { Gfx d_course_toads_turnpike_dl_37F0[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_618), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_AA8), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_A28), - gsSPDisplayList(d_course_toads_turnpike_dl_60), gsSPDisplayList(d_course_toads_turnpike_packed_dl_32A0), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_A28), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_32A0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_3780), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3850), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_3780), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_3850), gsSPDisplayList(d_course_toads_turnpike_packed_dl_38E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_44C0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_45B8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4678), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4B00), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4BE0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5880), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5C80), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_5E50), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5F78), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5E50), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5F78), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_6030), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1A58), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1BB8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1CB8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1E30), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_21E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2328), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_21E8), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_2328), gsSPDisplayList(d_course_toads_turnpike_packed_dl_24C0), gsSPEndDisplayList(), }; @@ -1593,18 +2070,29 @@ Gfx d_course_toads_turnpike_dl_3910[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_618), gsSPDisplayList(d_course_toads_turnpike_packed_dl_AA8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_A28), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_32A0), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_3780), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3850), gsSPDisplayList(d_course_toads_turnpike_packed_dl_38E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_44C0), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_4A40), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_4B00), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4BE0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5880), +#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_5E50), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_5F78), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6030), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), @@ -1616,17 +2104,44 @@ Gfx d_course_toads_turnpike_dl_3910[] = { Gfx d_course_toads_turnpike_dl_39C8[] = { gsSPDisplayList(d_course_toads_turnpike_dl_0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_618), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_6E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_AA8), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_6E8), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_AA8), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_B48), +#ifdef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#else + gsSPDisplayList(d_course_toads_turnpike_packed_dl_768), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_940), gsSPDisplayList(d_course_toads_turnpike_packed_dl_A28), - gsSPDisplayList(d_course_toads_turnpike_dl_60), gsSPDisplayList(d_course_toads_turnpike_packed_dl_32A0), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_dl_60), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_32A0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3780), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3850), gsSPDisplayList(d_course_toads_turnpike_packed_dl_38E8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_44C0), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_45B8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4A40), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_45B8), +#endif + gsSPDisplayList(d_course_toads_turnpike_packed_dl_4A40), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4B00), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4BE0), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_5880), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), - gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5C80), + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5880), +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_toads_turnpike_packed_dl_5C80), +#endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_5E50), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5F78), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6030), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), gsSPDisplayList(d_course_toads_turnpike_packed_dl_1A58), gsSPDisplayList(d_course_toads_turnpike_packed_dl_2050), @@ -1659,938 +2174,17 @@ Gfx d_course_toads_turnpike_dl_3AD8[] = { }; // 0x3B80 +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_toads_turnpike_unknown_path[] = { - { 100, 0, 26, 0 }, { 100, 0, 7, 0 }, { 102, 0, -299, 0 }, { 88, 0, -601, 0 }, - { 76, 0, -897, 0 }, { 78, 0, -1946, 0 }, { 64, 0, -2260, 0 }, { 5, 0, -2490, 0 }, - { -116, 0, -2706, 0 }, { -279, 0, -2886, 0 }, { -481, 0, -3017, 0 }, { -706, 0, -3099, 0 }, - { -952, 0, -3124, 0 }, { -1250, 0, -3119, 0 }, { -1629, 0, -3116, 0 }, { -1867, 0, -3075, 0 }, - { -2155, 0, -2924, 0 }, { -2330, 0, -2764, 0 }, { -2465, 0, -2561, 0 }, { -2548, 0, -2335, 0 }, - { -2579, 0, -2093, 0 }, { -2553, 0, -1856, 0 }, { -2470, 0, -1630, 0 }, { -2333, 0, -1423, 0 }, - { -2156, 0, -1261, 0 }, { -1945, 0, -1144, 0 }, { -1717, 0, -1072, 0 }, { -1401, 0, -1062, 0 }, - { -202, 0, -1070, 0 }, { 2201, 0, -1072, 0 }, { 2652, 0, -1068, 0 }, { 2919, 0, -1021, 0 }, - { 3203, 0, -881, 0 }, { 3380, 0, -715, 0 }, { 3516, 0, -512, 0 }, { 3589, 0, -283, 0 }, - { 3600, 0, -45, 0 }, { 3598, 0, 166, 0 }, { 3580, 0, 389, 0 }, { 3495, 0, 612, 0 }, - { 3366, 0, 807, 0 }, { 3191, 0, 967, 0 }, { 2987, 0, 1081, 0 }, { 2754, 0, 1146, 0 }, - { 2450, 0, 1161, 0 }, { 1254, 0, 1152, 0 }, { 936, 0, 1141, 0 }, { 718, 0, 1083, 0 }, - { 507, 0, 964, 0 }, { 337, 0, 807, 0 }, { 206, 0, 610, 0 }, { 123, 0, 389, 0 }, - { 98, 0, 50, 0 }, { -32768, 0, 0, 0 }, +#include "courses/toads_turnpike/d_course_toads_turnpike_unknown_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_toads_turnpike_track_path[] = { - { 100, 0, 16, 1 }, - { 100, 0, -3, 1 }, - { 100, 0, -23, 1 }, - { 100, 0, -43, 1 }, - { 100, 0, -63, 1 }, - { 100, 0, -83, 1 }, - { 100, 0, -103, 1 }, - { 100, 0, -123, 1 }, - { 100, 0, -143, 1 }, - { 101, 0, -163, 2 }, - { 101, 0, -183, 2 }, - { 101, 0, -203, 2 }, - { 100, 0, -223, 2 }, - { 100, 0, -243, 2 }, - { 100, 0, -263, 2 }, - { 100, 0, -283, 2 }, - { 99, 0, -303, 2 }, - { 99, 0, -323, 2 }, - { 98, 0, -343, 2 }, - { 98, 0, -363, 2 }, - { 97, 0, -383, 2 }, - { 96, 0, -403, 2 }, - { 96, 0, -423, 2 }, - { 95, 0, -443, 2 }, - { 94, 0, -463, 2 }, - { 93, 0, -483, 2 }, - { 92, 0, -503, 2 }, - { 91, 0, -523, 2 }, - { 90, 0, -543, 2 }, - { 89, 0, -563, 2 }, - { 88, 0, -583, 2 }, - { 88, 0, -603, 2 }, - { 87, 0, -623, 2 }, - { 86, 0, -643, 2 }, - { 85, 0, -663, 2 }, - { 84, 0, -683, 2 }, - { 83, 0, -703, 2 }, - { 83, 0, -723, 2 }, - { 82, 0, -743, 2 }, - { 81, 0, -763, 2 }, - { 80, 0, -783, 2 }, - { 80, 0, -803, 2 }, - { 79, 0, -823, 2 }, - { 79, 0, -843, 2 }, - { 79, 0, -863, 2 }, - { 78, 0, -883, 2 }, - { 78, 0, -903, 2 }, - { 78, 0, -923, 2 }, - { 78, 0, -943, 2 }, - { 77, 0, -963, 2 }, - { 77, 0, -983, 2 }, - { 77, 0, -1003, 2 }, - { 77, 0, -1023, 2 }, - { 77, 0, -1043, 2 }, - { 77, 0, -1063, 3 }, - { 77, 0, -1083, 3 }, - { 77, 0, -1103, 3 }, - { 77, 0, -1123, 3 }, - { 77, 0, -1143, 3 }, - { 76, 0, -1163, 3 }, - { 76, 0, -1183, 3 }, - { 76, 0, -1203, 3 }, - { 76, 0, -1223, 3 }, - { 76, 0, -1243, 3 }, - { 76, 0, -1263, 3 }, - { 76, 0, -1283, 3 }, - { 76, 0, -1303, 3 }, - { 76, 0, -1323, 3 }, - { 76, 0, -1343, 3 }, - { 76, 0, -1364, 3 }, - { 76, 0, -1384, 3 }, - { 76, 0, -1404, 3 }, - { 77, 0, -1424, 3 }, - { 77, 0, -1444, 3 }, - { 77, 0, -1464, 3 }, - { 77, 0, -1484, 3 }, - { 77, 0, -1504, 3 }, - { 77, 0, -1524, 3 }, - { 77, 0, -1544, 3 }, - { 77, 0, -1564, 3 }, - { 77, 0, -1584, 3 }, - { 77, 0, -1604, 3 }, - { 77, 0, -1624, 3 }, - { 77, 0, -1644, 3 }, - { 76, 0, -1664, 3 }, - { 76, 0, -1684, 3 }, - { 76, 0, -1704, 3 }, - { 76, 0, -1724, 3 }, - { 76, 0, -1744, 3 }, - { 76, 0, -1764, 3 }, - { 76, 0, -1784, 3 }, - { 76, 0, -1804, 3 }, - { 76, 0, -1824, 3 }, - { 76, 0, -1844, 3 }, - { 75, 0, -1864, 3 }, - { 75, 0, -1884, 3 }, - { 75, 0, -1904, 3 }, - { 75, 0, -1924, 3 }, - { 74, 0, -1944, 3 }, - { 74, 0, -1964, 4 }, - { 74, 0, -1984, 4 }, - { 73, 0, -2004, 4 }, - { 73, 0, -2024, 4 }, - { 73, 0, -2044, 4 }, - { 72, 0, -2064, 4 }, - { 71, 0, -2084, 4 }, - { 70, 0, -2104, 4 }, - { 69, 0, -2124, 4 }, - { 68, 0, -2144, 4 }, - { 67, 0, -2164, 4 }, - { 65, 0, -2184, 4 }, - { 63, 0, -2204, 4 }, - { 61, 0, -2224, 4 }, - { 59, 0, -2244, 4 }, - { 56, 0, -2263, 4 }, - { 53, 0, -2283, 4 }, - { 49, 0, -2303, 4 }, - { 46, 0, -2323, 4 }, - { 42, 0, -2342, 4 }, - { 37, 0, -2362, 4 }, - { 32, 0, -2381, 4 }, - { 27, 0, -2400, 4 }, - { 21, 0, -2420, 4 }, - { 15, 0, -2439, 4 }, - { 8, 0, -2458, 4 }, - { 1, 0, -2476, 4 }, - { -5, 0, -2495, 4 }, - { -13, 0, -2513, 4 }, - { -21, 0, -2531, 4 }, - { -30, 0, -2550, 4 }, - { -39, 0, -2567, 4 }, - { -48, 0, -2585, 4 }, - { -58, 0, -2603, 4 }, - { -68, 0, -2620, 4 }, - { -78, 0, -2637, 4 }, - { -89, 0, -2654, 4 }, - { -100, 0, -2671, 4 }, - { -111, 0, -2687, 4 }, - { -123, 0, -2704, 4 }, - { -135, 0, -2720, 4 }, - { -147, 0, -2736, 4 }, - { -159, 0, -2751, 4 }, - { -172, 0, -2767, 4 }, - { -185, 0, -2782, 4 }, - { -198, 0, -2797, 4 }, - { -212, 0, -2812, 4 }, - { -226, 0, -2826, 5 }, - { -240, 0, -2840, 5 }, - { -255, 0, -2854, 5 }, - { -269, 0, -2867, 5 }, - { -284, 0, -2880, 5 }, - { -300, 0, -2893, 5 }, - { -316, 0, -2906, 5 }, - { -331, 0, -2918, 5 }, - { -348, 0, -2929, 5 }, - { -364, 0, -2941, 5 }, - { -381, 0, -2952, 5 }, - { -398, 0, -2963, 5 }, - { -415, 0, -2973, 5 }, - { -432, 0, -2983, 5 }, - { -450, 0, -2993, 5 }, - { -467, 0, -3002, 5 }, - { -485, 0, -3011, 5 }, - { -503, 0, -3020, 5 }, - { -521, 0, -3028, 5 }, - { -540, 0, -3036, 5 }, - { -558, 0, -3044, 5 }, - { -577, 0, -3051, 5 }, - { -595, 0, -3058, 5 }, - { -614, 0, -3065, 5 }, - { -633, 0, -3071, 5 }, - { -652, 0, -3077, 5 }, - { -672, 0, -3082, 5 }, - { -691, 0, -3087, 5 }, - { -711, 0, -3092, 5 }, - { -730, 0, -3096, 5 }, - { -750, 0, -3100, 5 }, - { -770, 0, -3103, 5 }, - { -789, 0, -3106, 5 }, - { -809, 0, -3109, 5 }, - { -829, 0, -3111, 5 }, - { -849, 0, -3113, 5 }, - { -869, 0, -3115, 5 }, - { -889, 0, -3116, 5 }, - { -909, 0, -3117, 5 }, - { -929, 0, -3118, 5 }, - { -949, 0, -3119, 5 }, - { -969, 0, -3120, 5 }, - { -989, 0, -3121, 5 }, - { -1009, 0, -3121, 5 }, - { -1029, 0, -3121, 5 }, - { -1049, 0, -3121, 5 }, - { -1069, 0, -3121, 5 }, - { -1089, 0, -3121, 5 }, - { -1109, 0, -3121, 6 }, - { -1129, 0, -3121, 6 }, - { -1149, 0, -3120, 6 }, - { -1169, 0, -3120, 6 }, - { -1189, 0, -3120, 6 }, - { -1209, 0, -3119, 6 }, - { -1229, 0, -3119, 6 }, - { -1249, 0, -3119, 6 }, - { -1269, 0, -3119, 6 }, - { -1289, 0, -3118, 6 }, - { -1309, 0, -3118, 6 }, - { -1329, 0, -3118, 6 }, - { -1349, 0, -3118, 6 }, - { -1369, 0, -3118, 6 }, - { -1389, 0, -3117, 6 }, - { -1409, 0, -3117, 6 }, - { -1429, 0, -3117, 6 }, - { -1449, 0, -3117, 6 }, - { -1469, 0, -3117, 6 }, - { -1489, 0, -3116, 6 }, - { -1509, 0, -3116, 6 }, - { -1529, 0, -3115, 6 }, - { -1549, 0, -3114, 6 }, - { -1569, 0, -3113, 6 }, - { -1589, 0, -3112, 6 }, - { -1609, 0, -3111, 6 }, - { -1629, 0, -3109, 6 }, - { -1649, 0, -3108, 6 }, - { -1669, 0, -3106, 6 }, - { -1689, 0, -3103, 6 }, - { -1709, 0, -3101, 6 }, - { -1728, 0, -3098, 6 }, - { -1748, 0, -3095, 6 }, - { -1768, 0, -3091, 6 }, - { -1787, 0, -3087, 6 }, - { -1807, 0, -3082, 6 }, - { -1826, 0, -3076, 6 }, - { -1845, 0, -3070, 6 }, - { -1864, 0, -3064, 6 }, - { -1883, 0, -3057, 6 }, - { -1901, 0, -3050, 6 }, - { -1920, 0, -3042, 6 }, - { -1938, 0, -3034, 6 }, - { -1957, 0, -3026, 6 }, - { -1975, 0, -3017, 6 }, - { -1992, 0, -3008, 6 }, - { -2010, 0, -2999, 7 }, - { -2028, 0, -2990, 7 }, - { -2046, 0, -2980, 7 }, - { -2063, 0, -2970, 7 }, - { -2080, 0, -2960, 7 }, - { -2097, 0, -2950, 7 }, - { -2114, 0, -2939, 7 }, - { -2131, 0, -2928, 7 }, - { -2148, 0, -2917, 7 }, - { -2164, 0, -2906, 7 }, - { -2180, 0, -2894, 7 }, - { -2196, 0, -2882, 7 }, - { -2212, 0, -2869, 7 }, - { -2227, 0, -2857, 7 }, - { -2242, 0, -2843, 7 }, - { -2257, 0, -2830, 7 }, - { -2271, 0, -2816, 7 }, - { -2285, 0, -2801, 7 }, - { -2299, 0, -2787, 7 }, - { -2312, 0, -2772, 7 }, - { -2326, 0, -2757, 7 }, - { -2338, 0, -2742, 7 }, - { -2351, 0, -2726, 7 }, - { -2363, 0, -2710, 7 }, - { -2375, 0, -2694, 7 }, - { -2386, 0, -2678, 7 }, - { -2398, 0, -2661, 7 }, - { -2409, 0, -2644, 7 }, - { -2419, 0, -2627, 7 }, - { -2429, 0, -2610, 7 }, - { -2439, 0, -2593, 7 }, - { -2449, 0, -2575, 7 }, - { -2458, 0, -2557, 7 }, - { -2467, 0, -2539, 7 }, - { -2476, 0, -2521, 7 }, - { -2484, 0, -2503, 7 }, - { -2492, 0, -2485, 7 }, - { -2499, 0, -2466, 7 }, - { -2506, 0, -2447, 7 }, - { -2513, 0, -2428, 7 }, - { -2519, 0, -2409, 7 }, - { -2525, 0, -2390, 7 }, - { -2531, 0, -2371, 7 }, - { -2536, 0, -2352, 7 }, - { -2541, 0, -2332, 7 }, - { -2546, 0, -2313, 7 }, - { -2550, 0, -2293, 7 }, - { -2554, 0, -2274, 7 }, - { -2557, 0, -2254, 8 }, - { -2560, 0, -2234, 8 }, - { -2563, 0, -2214, 8 }, - { -2565, 0, -2195, 8 }, - { -2567, 0, -2175, 8 }, - { -2569, 0, -2155, 8 }, - { -2570, 0, -2135, 8 }, - { -2571, 0, -2115, 8 }, - { -2571, 0, -2095, 8 }, - { -2571, 0, -2075, 8 }, - { -2571, 0, -2055, 8 }, - { -2570, 0, -2035, 8 }, - { -2569, 0, -2015, 8 }, - { -2568, 0, -1995, 8 }, - { -2566, 0, -1975, 8 }, - { -2563, 0, -1955, 8 }, - { -2560, 0, -1935, 8 }, - { -2557, 0, -1915, 8 }, - { -2554, 0, -1896, 8 }, - { -2550, 0, -1876, 8 }, - { -2545, 0, -1857, 8 }, - { -2541, 0, -1837, 8 }, - { -2535, 0, -1818, 8 }, - { -2530, 0, -1799, 8 }, - { -2524, 0, -1780, 8 }, - { -2517, 0, -1761, 8 }, - { -2511, 0, -1742, 8 }, - { -2504, 0, -1723, 8 }, - { -2496, 0, -1704, 8 }, - { -2488, 0, -1686, 8 }, - { -2480, 0, -1668, 8 }, - { -2472, 0, -1650, 8 }, - { -2463, 0, -1632, 8 }, - { -2453, 0, -1614, 8 }, - { -2444, 0, -1596, 8 }, - { -2434, 0, -1579, 8 }, - { -2424, 0, -1562, 8 }, - { -2413, 0, -1545, 8 }, - { -2402, 0, -1528, 8 }, - { -2391, 0, -1511, 8 }, - { -2380, 0, -1495, 8 }, - { -2368, 0, -1479, 8 }, - { -2356, 0, -1463, 8 }, - { -2343, 0, -1447, 8 }, - { -2331, 0, -1432, 8 }, - { -2318, 0, -1417, 8 }, - { -2304, 0, -1402, 8 }, - { -2291, 0, -1387, 8 }, - { -2277, 0, -1373, 8 }, - { -2262, 0, -1359, 9 }, - { -2248, 0, -1345, 9 }, - { -2233, 0, -1332, 9 }, - { -2218, 0, -1318, 9 }, - { -2203, 0, -1306, 9 }, - { -2187, 0, -1293, 9 }, - { -2171, 0, -1281, 9 }, - { -2155, 0, -1269, 9 }, - { -2139, 0, -1257, 9 }, - { -2122, 0, -1246, 9 }, - { -2105, 0, -1235, 9 }, - { -2089, 0, -1224, 9 }, - { -2071, 0, -1214, 9 }, - { -2054, 0, -1204, 9 }, - { -2036, 0, -1195, 9 }, - { -2019, 0, -1185, 9 }, - { -2001, 0, -1176, 9 }, - { -1983, 0, -1167, 9 }, - { -1965, 0, -1159, 9 }, - { -1946, 0, -1151, 9 }, - { -1928, 0, -1143, 9 }, - { -1909, 0, -1136, 9 }, - { -1891, 0, -1128, 9 }, - { -1872, 0, -1121, 9 }, - { -1853, 0, -1115, 9 }, - { -1834, 0, -1109, 9 }, - { -1815, 0, -1103, 9 }, - { -1796, 0, -1097, 9 }, - { -1776, 0, -1093, 9 }, - { -1757, 0, -1088, 9 }, - { -1737, 0, -1085, 9 }, - { -1717, 0, -1081, 9 }, - { -1698, 0, -1078, 9 }, - { -1678, 0, -1075, 9 }, - { -1658, 0, -1073, 9 }, - { -1638, 0, -1071, 9 }, - { -1618, 0, -1070, 9 }, - { -1598, 0, -1068, 9 }, - { -1578, 0, -1067, 9 }, - { -1558, 0, -1066, 9 }, - { -1538, 0, -1066, 9 }, - { -1518, 0, -1066, 9 }, - { -1498, 0, -1065, 9 }, - { -1478, 0, -1065, 9 }, - { -1458, 0, -1065, 9 }, - { -1438, 0, -1064, 9 }, - { -1418, 0, -1064, 9 }, - { -1398, 0, -1064, 10 }, - { -1378, 0, -1064, 10 }, - { -1358, -1, -1064, 10 }, - { -1338, -2, -1064, 10 }, - { -1318, -2, -1064, 10 }, - { -1298, -3, -1064, 10 }, - { -1278, -4, -1064, 10 }, - { -1258, -4, -1064, 10 }, - { -1238, -5, -1064, 10 }, - { -1218, -6, -1064, 10 }, - { -1198, -6, -1064, 10 }, - { -1178, -7, -1064, 10 }, - { -1158, -8, -1064, 10 }, - { -1138, -8, -1064, 10 }, - { -1118, -9, -1064, 10 }, - { -1098, -10, -1064, 10 }, - { -1078, -11, -1064, 10 }, - { -1058, -12, -1064, 10 }, - { -1038, -14, -1064, 10 }, - { -1018, -15, -1064, 10 }, - { -998, -16, -1064, 10 }, - { -978, -18, -1064, 10 }, - { -958, -19, -1065, 10 }, - { -938, -21, -1065, 10 }, - { -918, -23, -1065, 10 }, - { -898, -25, -1065, 10 }, - { -878, -27, -1065, 10 }, - { -858, -29, -1065, 10 }, - { -838, -31, -1065, 10 }, - { -818, -33, -1065, 10 }, - { -798, -35, -1066, 10 }, - { -778, -37, -1066, 10 }, - { -758, -40, -1066, 10 }, - { -738, -43, -1066, 10 }, - { -718, -45, -1066, 10 }, - { -698, -48, -1066, 10 }, - { -678, -51, -1066, 10 }, - { -658, -53, -1066, 10 }, - { -638, -56, -1066, 10 }, - { -618, -59, -1067, 10 }, - { -598, -61, -1067, 10 }, - { -578, -64, -1067, 10 }, - { -558, -67, -1067, 10 }, - { -537, -69, -1067, 10 }, - { -517, -72, -1067, 10 }, - { -497, -75, -1067, 11 }, - { -477, -77, -1067, 11 }, - { -457, -79, -1067, 11 }, - { -437, -81, -1067, 11 }, - { -417, -83, -1068, 11 }, - { -397, -85, -1068, 11 }, - { -377, -87, -1068, 11 }, - { -357, -89, -1068, 11 }, - { -337, -90, -1068, 11 }, - { -317, -91, -1068, 11 }, - { -297, -91, -1068, 11 }, - { -277, -92, -1068, 11 }, - { -257, -93, -1068, 11 }, - { -237, -93, -1068, 11 }, - { -217, -94, -1068, 11 }, - { -197, -95, -1068, 11 }, - { -177, -95, -1068, 11 }, - { -157, -96, -1068, 11 }, - { -137, -97, -1068, 11 }, - { -117, -97, -1069, 11 }, - { -97, -98, -1069, 11 }, - { -77, -99, -1069, 11 }, - { -57, -99, -1069, 11 }, - { -37, -100, -1069, 11 }, - { -17, -100, -1069, 11 }, - { 2, -100, -1069, 11 }, - { 22, -100, -1069, 11 }, - { 42, -100, -1069, 11 }, - { 62, -100, -1069, 11 }, - { 82, -100, -1069, 11 }, - { 102, -100, -1069, 11 }, - { 122, -100, -1069, 11 }, - { 142, -100, -1069, 11 }, - { 162, -100, -1069, 11 }, - { 182, -100, -1069, 11 }, - { 202, -100, -1069, 11 }, - { 222, -100, -1069, 11 }, - { 242, -100, -1069, 11 }, - { 262, -99, -1069, 11 }, - { 282, -98, -1070, 11 }, - { 302, -98, -1070, 11 }, - { 322, -97, -1070, 11 }, - { 342, -96, -1070, 11 }, - { 362, -96, -1070, 11 }, - { 382, -95, -1070, 11 }, - { 402, -94, -1070, 12 }, - { 422, -93, -1070, 12 }, - { 442, -92, -1070, 12 }, - { 462, -90, -1070, 12 }, - { 482, -89, -1070, 12 }, - { 502, -88, -1070, 12 }, - { 522, -86, -1070, 12 }, - { 542, -85, -1070, 12 }, - { 562, -84, -1070, 12 }, - { 582, -82, -1070, 12 }, - { 602, -81, -1070, 12 }, - { 622, -80, -1070, 12 }, - { 642, -78, -1070, 12 }, - { 662, -77, -1070, 12 }, - { 682, -76, -1070, 12 }, - { 702, -74, -1070, 12 }, - { 722, -72, -1070, 12 }, - { 742, -70, -1070, 12 }, - { 762, -68, -1070, 12 }, - { 782, -66, -1070, 12 }, - { 802, -64, -1070, 12 }, - { 822, -62, -1070, 12 }, - { 842, -60, -1070, 12 }, - { 862, -58, -1070, 12 }, - { 882, -56, -1070, 12 }, - { 902, -54, -1070, 12 }, - { 922, -52, -1070, 12 }, - { 942, -50, -1070, 12 }, - { 962, -48, -1070, 12 }, - { 983, -46, -1070, 12 }, - { 1003, -44, -1071, 12 }, - { 1023, -42, -1071, 12 }, - { 1043, -40, -1071, 12 }, - { 1063, -38, -1071, 12 }, - { 1083, -36, -1071, 12 }, - { 1103, -34, -1071, 12 }, - { 1123, -32, -1071, 12 }, - { 1143, -30, -1071, 12 }, - { 1163, -29, -1071, 12 }, - { 1183, -27, -1071, 12 }, - { 1203, -26, -1071, 12 }, - { 1223, -25, -1071, 12 }, - { 1243, -23, -1071, 12 }, - { 1263, -22, -1071, 12 }, - { 1283, -21, -1071, 12 }, - { 1303, -19, -1071, 13 }, - { 1323, -18, -1071, 13 }, - { 1343, -17, -1071, 13 }, - { 1363, -15, -1071, 13 }, - { 1383, -14, -1071, 13 }, - { 1403, -13, -1071, 13 }, - { 1423, -11, -1071, 13 }, - { 1443, -10, -1071, 13 }, - { 1463, -9, -1071, 13 }, - { 1483, -8, -1071, 13 }, - { 1503, -8, -1071, 13 }, - { 1523, -7, -1071, 13 }, - { 1543, -6, -1071, 13 }, - { 1563, -6, -1071, 13 }, - { 1583, -5, -1071, 13 }, - { 1603, -4, -1071, 13 }, - { 1623, -4, -1071, 13 }, - { 1643, -3, -1071, 13 }, - { 1663, -2, -1071, 13 }, - { 1683, -2, -1071, 13 }, - { 1703, -1, -1071, 13 }, - { 1723, 0, -1071, 13 }, - { 1743, 0, -1071, 13 }, - { 1763, 0, -1071, 13 }, - { 1783, 0, -1071, 13 }, - { 1803, 0, -1071, 13 }, - { 1823, 0, -1071, 13 }, - { 1843, 0, -1071, 13 }, - { 1863, 0, -1071, 13 }, - { 1883, 0, -1071, 13 }, - { 1903, 0, -1071, 13 }, - { 1923, 0, -1071, 13 }, - { 1943, 0, -1071, 13 }, - { 1963, 0, -1071, 13 }, - { 1983, 0, -1071, 13 }, - { 2003, 0, -1071, 13 }, - { 2023, 0, -1071, 13 }, - { 2043, 0, -1071, 13 }, - { 2063, 0, -1071, 13 }, - { 2083, 0, -1071, 13 }, - { 2103, 0, -1071, 13 }, - { 2123, 0, -1071, 13 }, - { 2143, 0, -1071, 13 }, - { 2163, 0, -1071, 13 }, - { 2183, 0, -1070, 13 }, - { 2203, 0, -1070, 14 }, - { 2224, 0, -1070, 14 }, - { 2244, 0, -1070, 14 }, - { 2264, 0, -1070, 14 }, - { 2284, 0, -1070, 14 }, - { 2304, 0, -1070, 14 }, - { 2324, 0, -1070, 14 }, - { 2344, 0, -1070, 14 }, - { 2364, 0, -1070, 14 }, - { 2384, 0, -1070, 14 }, - { 2404, 0, -1070, 14 }, - { 2424, 0, -1070, 14 }, - { 2444, 0, -1069, 14 }, - { 2464, 0, -1069, 14 }, - { 2484, 0, -1069, 14 }, - { 2504, 0, -1068, 14 }, - { 2524, 0, -1067, 14 }, - { 2544, 0, -1067, 14 }, - { 2564, 0, -1066, 14 }, - { 2584, 0, -1065, 14 }, - { 2604, 0, -1064, 14 }, - { 2624, 0, -1062, 14 }, - { 2644, 0, -1061, 14 }, - { 2663, 0, -1059, 14 }, - { 2683, 0, -1058, 14 }, - { 2703, 0, -1055, 14 }, - { 2723, 0, -1053, 14 }, - { 2743, 0, -1051, 14 }, - { 2763, 0, -1048, 14 }, - { 2783, 0, -1044, 14 }, - { 2802, 0, -1041, 14 }, - { 2822, 0, -1037, 14 }, - { 2841, 0, -1032, 14 }, - { 2861, 0, -1027, 14 }, - { 2880, 0, -1022, 14 }, - { 2899, 0, -1016, 14 }, - { 2918, 0, -1010, 14 }, - { 2937, 0, -1003, 14 }, - { 2956, 0, -996, 14 }, - { 2974, 0, -989, 14 }, - { 2993, 0, -981, 14 }, - { 3011, 0, -973, 14 }, - { 3030, 0, -965, 14 }, - { 3048, 0, -957, 14 }, - { 3066, 0, -948, 15 }, - { 3084, 0, -939, 15 }, - { 3101, 0, -930, 15 }, - { 3119, 0, -920, 15 }, - { 3136, 0, -910, 15 }, - { 3153, 0, -900, 15 }, - { 3170, 0, -889, 15 }, - { 3187, 0, -879, 15 }, - { 3204, 0, -867, 15 }, - { 3220, 0, -856, 15 }, - { 3236, 0, -844, 15 }, - { 3252, 0, -831, 15 }, - { 3267, 0, -819, 15 }, - { 3282, 0, -805, 15 }, - { 3297, 0, -792, 15 }, - { 3311, 0, -778, 15 }, - { 3325, 0, -764, 15 }, - { 3339, 0, -749, 15 }, - { 3353, 0, -734, 15 }, - { 3366, 0, -719, 15 }, - { 3379, 0, -704, 15 }, - { 3392, 0, -689, 15 }, - { 3404, 0, -673, 15 }, - { 3416, 0, -657, 15 }, - { 3428, 0, -641, 15 }, - { 3440, 0, -625, 15 }, - { 3451, 0, -608, 15 }, - { 3462, 0, -591, 15 }, - { 3472, 0, -574, 15 }, - { 3482, 0, -557, 15 }, - { 3492, 0, -539, 15 }, - { 3501, 0, -522, 15 }, - { 3510, 0, -504, 15 }, - { 3518, 0, -485, 15 }, - { 3526, 0, -467, 15 }, - { 3534, 0, -449, 15 }, - { 3541, 0, -430, 15 }, - { 3547, 0, -411, 15 }, - { 3554, 0, -392, 15 }, - { 3559, 0, -373, 15 }, - { 3565, 0, -353, 15 }, - { 3570, 0, -334, 15 }, - { 3574, 0, -315, 15 }, - { 3578, 0, -295, 15 }, - { 3582, 0, -275, 15 }, - { 3585, 0, -256, 15 }, - { 3588, 0, -236, 15 }, - { 3590, 0, -216, 15 }, - { 3592, 0, -196, 16 }, - { 3593, 0, -176, 16 }, - { 3594, 0, -156, 16 }, - { 3595, 0, -136, 16 }, - { 3596, 0, -116, 16 }, - { 3597, 0, -96, 16 }, - { 3597, 0, -76, 16 }, - { 3598, 0, -56, 16 }, - { 3598, 0, -36, 16 }, - { 3598, 0, -16, 16 }, - { 3599, 0, 3, 16 }, - { 3599, 0, 23, 16 }, - { 3599, 0, 43, 16 }, - { 3598, 0, 63, 16 }, - { 3598, 0, 83, 16 }, - { 3598, 0, 103, 16 }, - { 3597, 0, 123, 16 }, - { 3597, 0, 143, 16 }, - { 3596, 0, 163, 16 }, - { 3595, 0, 183, 16 }, - { 3594, 0, 203, 16 }, - { 3592, 0, 223, 16 }, - { 3591, 0, 243, 16 }, - { 3590, 0, 263, 16 }, - { 3588, 0, 283, 16 }, - { 3586, 0, 303, 16 }, - { 3583, 0, 323, 16 }, - { 3580, 0, 343, 16 }, - { 3577, 0, 362, 16 }, - { 3573, 0, 382, 16 }, - { 3568, 0, 401, 16 }, - { 3563, 0, 421, 16 }, - { 3557, 0, 440, 16 }, - { 3551, 0, 459, 16 }, - { 3545, 0, 478, 16 }, - { 3538, 0, 497, 16 }, - { 3531, 0, 515, 16 }, - { 3523, 0, 534, 16 }, - { 3516, 0, 552, 16 }, - { 3507, 0, 571, 16 }, - { 3499, 0, 589, 16 }, - { 3490, 0, 607, 16 }, - { 3480, 0, 624, 16 }, - { 3471, 0, 642, 16 }, - { 3461, 0, 659, 16 }, - { 3451, 0, 676, 16 }, - { 3440, 0, 693, 16 }, - { 3429, 0, 710, 16 }, - { 3418, 0, 727, 16 }, - { 3406, 0, 743, 17 }, - { 3394, 0, 759, 17 }, - { 3382, 0, 775, 17 }, - { 3370, 0, 790, 17 }, - { 3357, 0, 806, 17 }, - { 3343, 0, 821, 17 }, - { 3330, 0, 835, 17 }, - { 3316, 0, 850, 17 }, - { 3302, 0, 864, 17 }, - { 3287, 0, 878, 17 }, - { 3273, 0, 891, 17 }, - { 3258, 0, 905, 17 }, - { 3242, 0, 918, 17 }, - { 3227, 0, 930, 17 }, - { 3211, 0, 943, 17 }, - { 3195, 0, 955, 17 }, - { 3179, 0, 966, 17 }, - { 3162, 0, 978, 17 }, - { 3146, 0, 989, 17 }, - { 3129, 0, 1000, 17 }, - { 3112, 0, 1010, 17 }, - { 3095, 0, 1020, 17 }, - { 3077, 0, 1030, 17 }, - { 3059, 0, 1039, 17 }, - { 3041, 0, 1048, 17 }, - { 3023, 0, 1057, 17 }, - { 3005, 0, 1065, 17 }, - { 2987, 0, 1073, 17 }, - { 2968, 0, 1080, 17 }, - { 2949, 0, 1087, 17 }, - { 2931, 0, 1094, 17 }, - { 2912, 0, 1100, 17 }, - { 2893, 0, 1106, 17 }, - { 2873, 0, 1112, 17 }, - { 2854, 0, 1117, 17 }, - { 2835, 0, 1122, 17 }, - { 2815, 0, 1127, 17 }, - { 2795, 0, 1131, 17 }, - { 2776, 0, 1134, 17 }, - { 2756, 0, 1137, 17 }, - { 2736, 0, 1140, 17 }, - { 2716, 0, 1143, 17 }, - { 2697, 0, 1145, 17 }, - { 2677, 0, 1148, 17 }, - { 2657, 0, 1149, 17 }, - { 2637, 0, 1151, 17 }, - { 2617, 0, 1152, 17 }, - { 2597, 0, 1153, 18 }, - { 2577, 0, 1154, 18 }, - { 2557, 0, 1155, 18 }, - { 2537, 0, 1155, 18 }, - { 2517, 0, 1156, 18 }, - { 2497, 0, 1156, 18 }, - { 2477, 0, 1156, 18 }, - { 2457, 0, 1157, 18 }, - { 2437, 0, 1157, 18 }, - { 2417, 0, 1157, 18 }, - { 2397, 0, 1157, 18 }, - { 2377, 0, 1157, 18 }, - { 2357, 0, 1157, 18 }, - { 2337, 0, 1158, 18 }, - { 2317, 0, 1158, 18 }, - { 2297, 0, 1158, 18 }, - { 2277, 0, 1158, 18 }, - { 2257, 0, 1158, 18 }, - { 2237, 0, 1158, 18 }, - { 2217, 0, 1158, 18 }, - { 2197, 0, 1158, 18 }, - { 2177, 0, 1158, 18 }, - { 2157, 0, 1158, 18 }, - { 2137, 0, 1158, 18 }, - { 2117, 0, 1157, 18 }, - { 2097, 0, 1157, 18 }, - { 2077, 0, 1157, 18 }, - { 2056, 0, 1157, 18 }, - { 2036, 0, 1157, 18 }, - { 2016, 0, 1157, 18 }, - { 1996, 0, 1157, 18 }, - { 1976, 0, 1157, 18 }, - { 1956, 0, 1157, 18 }, - { 1936, 0, 1157, 18 }, - { 1916, 0, 1156, 18 }, - { 1896, 0, 1156, 18 }, - { 1876, 0, 1156, 18 }, - { 1856, 0, 1156, 18 }, - { 1836, 0, 1156, 18 }, - { 1816, 0, 1156, 18 }, - { 1796, 0, 1156, 18 }, - { 1776, 0, 1155, 18 }, - { 1756, 0, 1155, 18 }, - { 1736, 0, 1155, 18 }, - { 1716, 0, 1155, 18 }, - { 1696, 0, 1155, 19 }, - { 1676, 0, 1155, 19 }, - { 1656, 0, 1154, 19 }, - { 1636, 0, 1154, 19 }, - { 1616, 0, 1154, 19 }, - { 1596, 0, 1154, 19 }, - { 1576, 0, 1154, 19 }, - { 1556, 0, 1153, 19 }, - { 1536, 0, 1153, 19 }, - { 1516, 0, 1153, 19 }, - { 1496, 0, 1153, 19 }, - { 1476, 0, 1153, 19 }, - { 1456, 0, 1152, 19 }, - { 1436, 0, 1152, 19 }, - { 1416, 0, 1152, 19 }, - { 1396, 0, 1152, 19 }, - { 1376, 0, 1151, 19 }, - { 1356, 0, 1151, 19 }, - { 1336, 0, 1151, 19 }, - { 1316, 0, 1151, 19 }, - { 1296, 0, 1150, 19 }, - { 1276, 0, 1150, 19 }, - { 1256, 0, 1150, 19 }, - { 1236, 0, 1149, 19 }, - { 1216, 0, 1149, 19 }, - { 1196, 0, 1149, 19 }, - { 1176, 0, 1148, 19 }, - { 1156, 0, 1148, 19 }, - { 1136, 0, 1147, 19 }, - { 1116, 0, 1147, 19 }, - { 1096, 0, 1146, 19 }, - { 1076, 0, 1145, 19 }, - { 1056, 0, 1144, 19 }, - { 1036, 0, 1143, 19 }, - { 1016, 0, 1142, 19 }, - { 996, 0, 1140, 19 }, - { 976, 0, 1138, 19 }, - { 956, 0, 1136, 19 }, - { 936, 0, 1133, 19 }, - { 917, 0, 1130, 19 }, - { 897, 0, 1127, 19 }, - { 877, 0, 1123, 19 }, - { 858, 0, 1119, 19 }, - { 838, 0, 1114, 19 }, - { 819, 0, 1109, 19 }, - { 799, 0, 1104, 19 }, - { 780, 0, 1098, 20 }, - { 761, 0, 1091, 20 }, - { 743, 0, 1084, 20 }, - { 724, 0, 1077, 20 }, - { 706, 0, 1069, 20 }, - { 687, 0, 1061, 20 }, - { 669, 0, 1053, 20 }, - { 651, 0, 1044, 20 }, - { 633, 0, 1035, 20 }, - { 616, 0, 1025, 20 }, - { 598, 0, 1015, 20 }, - { 581, 0, 1005, 20 }, - { 564, 0, 994, 20 }, - { 547, 0, 984, 20 }, - { 531, 0, 972, 20 }, - { 515, 0, 961, 20 }, - { 498, 0, 949, 20 }, - { 483, 0, 937, 20 }, - { 467, 0, 924, 20 }, - { 451, 0, 912, 20 }, - { 436, 0, 898, 20 }, - { 422, 0, 885, 20 }, - { 407, 0, 871, 20 }, - { 393, 0, 857, 20 }, - { 379, 0, 843, 20 }, - { 365, 0, 828, 20 }, - { 352, 0, 813, 20 }, - { 339, 0, 798, 20 }, - { 326, 0, 783, 20 }, - { 313, 0, 767, 20 }, - { 301, 0, 751, 20 }, - { 290, 0, 735, 20 }, - { 278, 0, 719, 20 }, - { 267, 0, 702, 20 }, - { 256, 0, 685, 20 }, - { 246, 0, 668, 20 }, - { 236, 0, 651, 20 }, - { 226, 0, 633, 20 }, - { 216, 0, 616, 20 }, - { 207, 0, 598, 20 }, - { 198, 0, 580, 20 }, - { 190, 0, 562, 20 }, - { 182, 0, 543, 20 }, - { 174, 0, 525, 20 }, - { 167, 0, 506, 20 }, - { 160, 0, 488, 20 }, - { 154, 0, 469, 20 }, - { 148, 0, 449, 1 }, - { 143, 0, 430, 1 }, - { 138, 0, 411, 1 }, - { 134, 0, 391, 1 }, - { 130, 0, 371, 1 }, - { 127, 0, 352, 1 }, - { 124, 0, 332, 1 }, - { 121, 0, 312, 1 }, - { 118, 0, 292, 1 }, - { 116, 0, 272, 1 }, - { 114, 0, 252, 1 }, - { 113, 0, 232, 1 }, - { 111, 0, 212, 1 }, - { 110, 0, 192, 1 }, - { 109, 0, 173, 1 }, - { 108, 0, 153, 1 }, - { 106, 0, 133, 1 }, - { 105, 0, 113, 1 }, - { 104, 0, 93, 1 }, - { 103, 0, 73, 1 }, - { 101, 0, 53, 1 }, - { 100, 0, 33, 1 }, - { -32768, -32768, -32768, 0 }, +#include "courses/toads_turnpike/d_course_toads_turnpike_track_path.inc.c" }; +#endif // 0x59B8 // Appears to be two windshields? Leaf texture or mask? @@ -7854,3 +7448,12 @@ TrackSections d_course_toads_turnpike_addr[] = { { d_course_toads_turnpike_packed_dl_51C8, RAMP, 255, 0x0000 }, { 0x00000000, 0, 0, 0x0000 }, }; + +#ifdef VERSION_JP /* VERSION_JP path order: JP puts the paths last */ +TrackPathPoint d_course_toads_turnpike_unknown_path[] = { +#include "courses/toads_turnpike/d_course_toads_turnpike_unknown_path.inc.c" +}; +TrackPathPoint d_course_toads_turnpike_track_path[] = { +#include "courses/toads_turnpike/d_course_toads_turnpike_track_path.inc.c" +}; +#endif diff --git a/courses/toads_turnpike/course_offsets.c b/courses/toads_turnpike/course_offsets.c index a14846b1c2..9e84ab682c 100644 --- a/courses/toads_turnpike/course_offsets.c +++ b/courses/toads_turnpike/course_offsets.c @@ -24,6 +24,30 @@ extern u8 gTextureRoad5[]; extern u8 gTextureSignToadRed[]; extern u8 gTexture668228[]; +#ifdef VERSION_JP /* JP ships different sign textures, so their compressed sizes differ */ +const course_texture toads_turnpike_textures[] = { + { gTexture645134, 0x052C, 0x0800, 0x0 }, + { gTexture64FE68, 0x0258, 0x1000, 0x0 }, + { gTexture6607C0, 0x0105, 0x0800, 0x0 }, + { gTexture6608C8, 0x0106, 0x0800, 0x0 }, + { gTextureGrass11, 0x01F8, 0x0800, 0x0 }, + { gTextureSignNintendoRed0, 0x02E1, 0x1000, 0x0 }, + { gTextureSignNintendoRed1, 0x034C, 0x1000, 0x0 }, + { gTexture671A88, 0x012D, 0x0800, 0x0 }, + { gTextureRoad2, 0x02AE, 0x1000, 0x0 }, + { gTextureRoad3, 0x0286, 0x1000, 0x0 }, + { gTextureRoad4, 0x0282, 0x1000, 0x0 }, + { gTextureRoadFinish0, 0x0338, 0x1000, 0x0 }, + { gTextureSignToadYellow, 0x0723, 0x1000, 0x0 }, + { gTextureSignToadGreen, 0x071F, 0x1000, 0x0 }, + { gTextureSignMergingLanes, 0x0118, 0x0800, 0x0 }, + { gTexture65127C, 0x01AB, 0x0800, 0x0 }, + { gTextureRoad5, 0x02B9, 0x1000, 0x0 }, + { gTextureSignToadRed, 0x0610, 0x1000, 0x0 }, + { gTexture668228, 0x0130, 0x0800, 0x0 }, + { 0x00000000, 0x0000, 0x0000, 0x0 }, +}; +#else const course_texture toads_turnpike_textures[] = { { gTexture645134, 0x052C, 0x0800, 0x0 }, { gTexture64FE68, 0x0258, 0x1000, 0x0 }, @@ -46,6 +70,7 @@ const course_texture toads_turnpike_textures[] = { { gTexture668228, 0x0130, 0x0800, 0x0 }, { 0x00000000, 0x0000, 0x0000, 0x0 }, }; +#endif const Gfx toads_turnpike_dl_0[] = { gsSPDisplayList(D_toads_turnpike_0D005398), diff --git a/courses/toads_turnpike/d_course_toads_turnpike_track_path.inc.c b/courses/toads_turnpike/d_course_toads_turnpike_track_path.inc.c new file mode 100644 index 0000000000..04b8a250da --- /dev/null +++ b/courses/toads_turnpike/d_course_toads_turnpike_track_path.inc.c @@ -0,0 +1,913 @@ + { 100, 0, 16, 1 }, + { 100, 0, -3, 1 }, + { 100, 0, -23, 1 }, + { 100, 0, -43, 1 }, + { 100, 0, -63, 1 }, + { 100, 0, -83, 1 }, + { 100, 0, -103, 1 }, + { 100, 0, -123, 1 }, + { 100, 0, -143, 1 }, + { 101, 0, -163, 2 }, + { 101, 0, -183, 2 }, + { 101, 0, -203, 2 }, + { 100, 0, -223, 2 }, + { 100, 0, -243, 2 }, + { 100, 0, -263, 2 }, + { 100, 0, -283, 2 }, + { 99, 0, -303, 2 }, + { 99, 0, -323, 2 }, + { 98, 0, -343, 2 }, + { 98, 0, -363, 2 }, + { 97, 0, -383, 2 }, + { 96, 0, -403, 2 }, + { 96, 0, -423, 2 }, + { 95, 0, -443, 2 }, + { 94, 0, -463, 2 }, + { 93, 0, -483, 2 }, + { 92, 0, -503, 2 }, + { 91, 0, -523, 2 }, + { 90, 0, -543, 2 }, + { 89, 0, -563, 2 }, + { 88, 0, -583, 2 }, + { 88, 0, -603, 2 }, + { 87, 0, -623, 2 }, + { 86, 0, -643, 2 }, + { 85, 0, -663, 2 }, + { 84, 0, -683, 2 }, + { 83, 0, -703, 2 }, + { 83, 0, -723, 2 }, + { 82, 0, -743, 2 }, + { 81, 0, -763, 2 }, + { 80, 0, -783, 2 }, + { 80, 0, -803, 2 }, + { 79, 0, -823, 2 }, + { 79, 0, -843, 2 }, + { 79, 0, -863, 2 }, + { 78, 0, -883, 2 }, + { 78, 0, -903, 2 }, + { 78, 0, -923, 2 }, + { 78, 0, -943, 2 }, + { 77, 0, -963, 2 }, + { 77, 0, -983, 2 }, + { 77, 0, -1003, 2 }, + { 77, 0, -1023, 2 }, + { 77, 0, -1043, 2 }, + { 77, 0, -1063, 3 }, + { 77, 0, -1083, 3 }, + { 77, 0, -1103, 3 }, + { 77, 0, -1123, 3 }, + { 77, 0, -1143, 3 }, + { 76, 0, -1163, 3 }, + { 76, 0, -1183, 3 }, + { 76, 0, -1203, 3 }, + { 76, 0, -1223, 3 }, + { 76, 0, -1243, 3 }, + { 76, 0, -1263, 3 }, + { 76, 0, -1283, 3 }, + { 76, 0, -1303, 3 }, + { 76, 0, -1323, 3 }, + { 76, 0, -1343, 3 }, + { 76, 0, -1364, 3 }, + { 76, 0, -1384, 3 }, + { 76, 0, -1404, 3 }, + { 77, 0, -1424, 3 }, + { 77, 0, -1444, 3 }, + { 77, 0, -1464, 3 }, + { 77, 0, -1484, 3 }, + { 77, 0, -1504, 3 }, + { 77, 0, -1524, 3 }, + { 77, 0, -1544, 3 }, + { 77, 0, -1564, 3 }, + { 77, 0, -1584, 3 }, + { 77, 0, -1604, 3 }, + { 77, 0, -1624, 3 }, + { 77, 0, -1644, 3 }, + { 76, 0, -1664, 3 }, + { 76, 0, -1684, 3 }, + { 76, 0, -1704, 3 }, + { 76, 0, -1724, 3 }, + { 76, 0, -1744, 3 }, + { 76, 0, -1764, 3 }, + { 76, 0, -1784, 3 }, + { 76, 0, -1804, 3 }, + { 76, 0, -1824, 3 }, + { 76, 0, -1844, 3 }, + { 75, 0, -1864, 3 }, + { 75, 0, -1884, 3 }, + { 75, 0, -1904, 3 }, + { 75, 0, -1924, 3 }, + { 74, 0, -1944, 3 }, + { 74, 0, -1964, 4 }, + { 74, 0, -1984, 4 }, + { 73, 0, -2004, 4 }, + { 73, 0, -2024, 4 }, + { 73, 0, -2044, 4 }, + { 72, 0, -2064, 4 }, + { 71, 0, -2084, 4 }, + { 70, 0, -2104, 4 }, + { 69, 0, -2124, 4 }, + { 68, 0, -2144, 4 }, + { 67, 0, -2164, 4 }, + { 65, 0, -2184, 4 }, + { 63, 0, -2204, 4 }, + { 61, 0, -2224, 4 }, + { 59, 0, -2244, 4 }, + { 56, 0, -2263, 4 }, + { 53, 0, -2283, 4 }, + { 49, 0, -2303, 4 }, + { 46, 0, -2323, 4 }, + { 42, 0, -2342, 4 }, + { 37, 0, -2362, 4 }, + { 32, 0, -2381, 4 }, + { 27, 0, -2400, 4 }, + { 21, 0, -2420, 4 }, + { 15, 0, -2439, 4 }, + { 8, 0, -2458, 4 }, + { 1, 0, -2476, 4 }, + { -5, 0, -2495, 4 }, + { -13, 0, -2513, 4 }, + { -21, 0, -2531, 4 }, + { -30, 0, -2550, 4 }, + { -39, 0, -2567, 4 }, + { -48, 0, -2585, 4 }, + { -58, 0, -2603, 4 }, + { -68, 0, -2620, 4 }, + { -78, 0, -2637, 4 }, + { -89, 0, -2654, 4 }, + { -100, 0, -2671, 4 }, + { -111, 0, -2687, 4 }, + { -123, 0, -2704, 4 }, + { -135, 0, -2720, 4 }, + { -147, 0, -2736, 4 }, + { -159, 0, -2751, 4 }, + { -172, 0, -2767, 4 }, + { -185, 0, -2782, 4 }, + { -198, 0, -2797, 4 }, + { -212, 0, -2812, 4 }, + { -226, 0, -2826, 5 }, + { -240, 0, -2840, 5 }, + { -255, 0, -2854, 5 }, + { -269, 0, -2867, 5 }, + { -284, 0, -2880, 5 }, + { -300, 0, -2893, 5 }, + { -316, 0, -2906, 5 }, + { -331, 0, -2918, 5 }, + { -348, 0, -2929, 5 }, + { -364, 0, -2941, 5 }, + { -381, 0, -2952, 5 }, + { -398, 0, -2963, 5 }, + { -415, 0, -2973, 5 }, + { -432, 0, -2983, 5 }, + { -450, 0, -2993, 5 }, + { -467, 0, -3002, 5 }, + { -485, 0, -3011, 5 }, + { -503, 0, -3020, 5 }, + { -521, 0, -3028, 5 }, + { -540, 0, -3036, 5 }, + { -558, 0, -3044, 5 }, + { -577, 0, -3051, 5 }, + { -595, 0, -3058, 5 }, + { -614, 0, -3065, 5 }, + { -633, 0, -3071, 5 }, + { -652, 0, -3077, 5 }, + { -672, 0, -3082, 5 }, + { -691, 0, -3087, 5 }, + { -711, 0, -3092, 5 }, + { -730, 0, -3096, 5 }, + { -750, 0, -3100, 5 }, + { -770, 0, -3103, 5 }, + { -789, 0, -3106, 5 }, + { -809, 0, -3109, 5 }, + { -829, 0, -3111, 5 }, + { -849, 0, -3113, 5 }, + { -869, 0, -3115, 5 }, + { -889, 0, -3116, 5 }, + { -909, 0, -3117, 5 }, + { -929, 0, -3118, 5 }, + { -949, 0, -3119, 5 }, + { -969, 0, -3120, 5 }, + { -989, 0, -3121, 5 }, + { -1009, 0, -3121, 5 }, + { -1029, 0, -3121, 5 }, + { -1049, 0, -3121, 5 }, + { -1069, 0, -3121, 5 }, + { -1089, 0, -3121, 5 }, + { -1109, 0, -3121, 6 }, + { -1129, 0, -3121, 6 }, + { -1149, 0, -3120, 6 }, + { -1169, 0, -3120, 6 }, + { -1189, 0, -3120, 6 }, + { -1209, 0, -3119, 6 }, + { -1229, 0, -3119, 6 }, + { -1249, 0, -3119, 6 }, + { -1269, 0, -3119, 6 }, + { -1289, 0, -3118, 6 }, + { -1309, 0, -3118, 6 }, + { -1329, 0, -3118, 6 }, + { -1349, 0, -3118, 6 }, + { -1369, 0, -3118, 6 }, + { -1389, 0, -3117, 6 }, + { -1409, 0, -3117, 6 }, + { -1429, 0, -3117, 6 }, + { -1449, 0, -3117, 6 }, + { -1469, 0, -3117, 6 }, + { -1489, 0, -3116, 6 }, + { -1509, 0, -3116, 6 }, + { -1529, 0, -3115, 6 }, + { -1549, 0, -3114, 6 }, + { -1569, 0, -3113, 6 }, + { -1589, 0, -3112, 6 }, + { -1609, 0, -3111, 6 }, + { -1629, 0, -3109, 6 }, + { -1649, 0, -3108, 6 }, + { -1669, 0, -3106, 6 }, + { -1689, 0, -3103, 6 }, + { -1709, 0, -3101, 6 }, + { -1728, 0, -3098, 6 }, + { -1748, 0, -3095, 6 }, + { -1768, 0, -3091, 6 }, + { -1787, 0, -3087, 6 }, + { -1807, 0, -3082, 6 }, + { -1826, 0, -3076, 6 }, + { -1845, 0, -3070, 6 }, + { -1864, 0, -3064, 6 }, + { -1883, 0, -3057, 6 }, + { -1901, 0, -3050, 6 }, + { -1920, 0, -3042, 6 }, + { -1938, 0, -3034, 6 }, + { -1957, 0, -3026, 6 }, + { -1975, 0, -3017, 6 }, + { -1992, 0, -3008, 6 }, + { -2010, 0, -2999, 7 }, + { -2028, 0, -2990, 7 }, + { -2046, 0, -2980, 7 }, + { -2063, 0, -2970, 7 }, + { -2080, 0, -2960, 7 }, + { -2097, 0, -2950, 7 }, + { -2114, 0, -2939, 7 }, + { -2131, 0, -2928, 7 }, + { -2148, 0, -2917, 7 }, + { -2164, 0, -2906, 7 }, + { -2180, 0, -2894, 7 }, + { -2196, 0, -2882, 7 }, + { -2212, 0, -2869, 7 }, + { -2227, 0, -2857, 7 }, + { -2242, 0, -2843, 7 }, + { -2257, 0, -2830, 7 }, + { -2271, 0, -2816, 7 }, + { -2285, 0, -2801, 7 }, + { -2299, 0, -2787, 7 }, + { -2312, 0, -2772, 7 }, + { -2326, 0, -2757, 7 }, + { -2338, 0, -2742, 7 }, + { -2351, 0, -2726, 7 }, + { -2363, 0, -2710, 7 }, + { -2375, 0, -2694, 7 }, + { -2386, 0, -2678, 7 }, + { -2398, 0, -2661, 7 }, + { -2409, 0, -2644, 7 }, + { -2419, 0, -2627, 7 }, + { -2429, 0, -2610, 7 }, + { -2439, 0, -2593, 7 }, + { -2449, 0, -2575, 7 }, + { -2458, 0, -2557, 7 }, + { -2467, 0, -2539, 7 }, + { -2476, 0, -2521, 7 }, + { -2484, 0, -2503, 7 }, + { -2492, 0, -2485, 7 }, + { -2499, 0, -2466, 7 }, + { -2506, 0, -2447, 7 }, + { -2513, 0, -2428, 7 }, + { -2519, 0, -2409, 7 }, + { -2525, 0, -2390, 7 }, + { -2531, 0, -2371, 7 }, + { -2536, 0, -2352, 7 }, + { -2541, 0, -2332, 7 }, + { -2546, 0, -2313, 7 }, + { -2550, 0, -2293, 7 }, + { -2554, 0, -2274, 7 }, + { -2557, 0, -2254, 8 }, + { -2560, 0, -2234, 8 }, + { -2563, 0, -2214, 8 }, + { -2565, 0, -2195, 8 }, + { -2567, 0, -2175, 8 }, + { -2569, 0, -2155, 8 }, + { -2570, 0, -2135, 8 }, + { -2571, 0, -2115, 8 }, + { -2571, 0, -2095, 8 }, + { -2571, 0, -2075, 8 }, + { -2571, 0, -2055, 8 }, + { -2570, 0, -2035, 8 }, + { -2569, 0, -2015, 8 }, + { -2568, 0, -1995, 8 }, + { -2566, 0, -1975, 8 }, + { -2563, 0, -1955, 8 }, + { -2560, 0, -1935, 8 }, + { -2557, 0, -1915, 8 }, + { -2554, 0, -1896, 8 }, + { -2550, 0, -1876, 8 }, + { -2545, 0, -1857, 8 }, + { -2541, 0, -1837, 8 }, + { -2535, 0, -1818, 8 }, + { -2530, 0, -1799, 8 }, + { -2524, 0, -1780, 8 }, + { -2517, 0, -1761, 8 }, + { -2511, 0, -1742, 8 }, + { -2504, 0, -1723, 8 }, + { -2496, 0, -1704, 8 }, + { -2488, 0, -1686, 8 }, + { -2480, 0, -1668, 8 }, + { -2472, 0, -1650, 8 }, + { -2463, 0, -1632, 8 }, + { -2453, 0, -1614, 8 }, + { -2444, 0, -1596, 8 }, + { -2434, 0, -1579, 8 }, + { -2424, 0, -1562, 8 }, + { -2413, 0, -1545, 8 }, + { -2402, 0, -1528, 8 }, + { -2391, 0, -1511, 8 }, + { -2380, 0, -1495, 8 }, + { -2368, 0, -1479, 8 }, + { -2356, 0, -1463, 8 }, + { -2343, 0, -1447, 8 }, + { -2331, 0, -1432, 8 }, + { -2318, 0, -1417, 8 }, + { -2304, 0, -1402, 8 }, + { -2291, 0, -1387, 8 }, + { -2277, 0, -1373, 8 }, + { -2262, 0, -1359, 9 }, + { -2248, 0, -1345, 9 }, + { -2233, 0, -1332, 9 }, + { -2218, 0, -1318, 9 }, + { -2203, 0, -1306, 9 }, + { -2187, 0, -1293, 9 }, + { -2171, 0, -1281, 9 }, + { -2155, 0, -1269, 9 }, + { -2139, 0, -1257, 9 }, + { -2122, 0, -1246, 9 }, + { -2105, 0, -1235, 9 }, + { -2089, 0, -1224, 9 }, + { -2071, 0, -1214, 9 }, + { -2054, 0, -1204, 9 }, + { -2036, 0, -1195, 9 }, + { -2019, 0, -1185, 9 }, + { -2001, 0, -1176, 9 }, + { -1983, 0, -1167, 9 }, + { -1965, 0, -1159, 9 }, + { -1946, 0, -1151, 9 }, + { -1928, 0, -1143, 9 }, + { -1909, 0, -1136, 9 }, + { -1891, 0, -1128, 9 }, + { -1872, 0, -1121, 9 }, + { -1853, 0, -1115, 9 }, + { -1834, 0, -1109, 9 }, + { -1815, 0, -1103, 9 }, + { -1796, 0, -1097, 9 }, + { -1776, 0, -1093, 9 }, + { -1757, 0, -1088, 9 }, + { -1737, 0, -1085, 9 }, + { -1717, 0, -1081, 9 }, + { -1698, 0, -1078, 9 }, + { -1678, 0, -1075, 9 }, + { -1658, 0, -1073, 9 }, + { -1638, 0, -1071, 9 }, + { -1618, 0, -1070, 9 }, + { -1598, 0, -1068, 9 }, + { -1578, 0, -1067, 9 }, + { -1558, 0, -1066, 9 }, + { -1538, 0, -1066, 9 }, + { -1518, 0, -1066, 9 }, + { -1498, 0, -1065, 9 }, + { -1478, 0, -1065, 9 }, + { -1458, 0, -1065, 9 }, + { -1438, 0, -1064, 9 }, + { -1418, 0, -1064, 9 }, + { -1398, 0, -1064, 10 }, + { -1378, 0, -1064, 10 }, + { -1358, -1, -1064, 10 }, + { -1338, -2, -1064, 10 }, + { -1318, -2, -1064, 10 }, + { -1298, -3, -1064, 10 }, + { -1278, -4, -1064, 10 }, + { -1258, -4, -1064, 10 }, + { -1238, -5, -1064, 10 }, + { -1218, -6, -1064, 10 }, + { -1198, -6, -1064, 10 }, + { -1178, -7, -1064, 10 }, + { -1158, -8, -1064, 10 }, + { -1138, -8, -1064, 10 }, + { -1118, -9, -1064, 10 }, + { -1098, -10, -1064, 10 }, + { -1078, -11, -1064, 10 }, + { -1058, -12, -1064, 10 }, + { -1038, -14, -1064, 10 }, + { -1018, -15, -1064, 10 }, + { -998, -16, -1064, 10 }, + { -978, -18, -1064, 10 }, + { -958, -19, -1065, 10 }, + { -938, -21, -1065, 10 }, + { -918, -23, -1065, 10 }, + { -898, -25, -1065, 10 }, + { -878, -27, -1065, 10 }, + { -858, -29, -1065, 10 }, + { -838, -31, -1065, 10 }, + { -818, -33, -1065, 10 }, + { -798, -35, -1066, 10 }, + { -778, -37, -1066, 10 }, + { -758, -40, -1066, 10 }, + { -738, -43, -1066, 10 }, + { -718, -45, -1066, 10 }, + { -698, -48, -1066, 10 }, + { -678, -51, -1066, 10 }, + { -658, -53, -1066, 10 }, + { -638, -56, -1066, 10 }, + { -618, -59, -1067, 10 }, + { -598, -61, -1067, 10 }, + { -578, -64, -1067, 10 }, + { -558, -67, -1067, 10 }, + { -537, -69, -1067, 10 }, + { -517, -72, -1067, 10 }, + { -497, -75, -1067, 11 }, + { -477, -77, -1067, 11 }, + { -457, -79, -1067, 11 }, + { -437, -81, -1067, 11 }, + { -417, -83, -1068, 11 }, + { -397, -85, -1068, 11 }, + { -377, -87, -1068, 11 }, + { -357, -89, -1068, 11 }, + { -337, -90, -1068, 11 }, + { -317, -91, -1068, 11 }, + { -297, -91, -1068, 11 }, + { -277, -92, -1068, 11 }, + { -257, -93, -1068, 11 }, + { -237, -93, -1068, 11 }, + { -217, -94, -1068, 11 }, + { -197, -95, -1068, 11 }, + { -177, -95, -1068, 11 }, + { -157, -96, -1068, 11 }, + { -137, -97, -1068, 11 }, + { -117, -97, -1069, 11 }, + { -97, -98, -1069, 11 }, + { -77, -99, -1069, 11 }, + { -57, -99, -1069, 11 }, + { -37, -100, -1069, 11 }, + { -17, -100, -1069, 11 }, + { 2, -100, -1069, 11 }, + { 22, -100, -1069, 11 }, + { 42, -100, -1069, 11 }, + { 62, -100, -1069, 11 }, + { 82, -100, -1069, 11 }, + { 102, -100, -1069, 11 }, + { 122, -100, -1069, 11 }, + { 142, -100, -1069, 11 }, + { 162, -100, -1069, 11 }, + { 182, -100, -1069, 11 }, + { 202, -100, -1069, 11 }, + { 222, -100, -1069, 11 }, + { 242, -100, -1069, 11 }, + { 262, -99, -1069, 11 }, + { 282, -98, -1070, 11 }, + { 302, -98, -1070, 11 }, + { 322, -97, -1070, 11 }, + { 342, -96, -1070, 11 }, + { 362, -96, -1070, 11 }, + { 382, -95, -1070, 11 }, + { 402, -94, -1070, 12 }, + { 422, -93, -1070, 12 }, + { 442, -92, -1070, 12 }, + { 462, -90, -1070, 12 }, + { 482, -89, -1070, 12 }, + { 502, -88, -1070, 12 }, + { 522, -86, -1070, 12 }, + { 542, -85, -1070, 12 }, + { 562, -84, -1070, 12 }, + { 582, -82, -1070, 12 }, + { 602, -81, -1070, 12 }, + { 622, -80, -1070, 12 }, + { 642, -78, -1070, 12 }, + { 662, -77, -1070, 12 }, + { 682, -76, -1070, 12 }, + { 702, -74, -1070, 12 }, + { 722, -72, -1070, 12 }, + { 742, -70, -1070, 12 }, + { 762, -68, -1070, 12 }, + { 782, -66, -1070, 12 }, + { 802, -64, -1070, 12 }, + { 822, -62, -1070, 12 }, + { 842, -60, -1070, 12 }, + { 862, -58, -1070, 12 }, + { 882, -56, -1070, 12 }, + { 902, -54, -1070, 12 }, + { 922, -52, -1070, 12 }, + { 942, -50, -1070, 12 }, + { 962, -48, -1070, 12 }, + { 983, -46, -1070, 12 }, + { 1003, -44, -1071, 12 }, + { 1023, -42, -1071, 12 }, + { 1043, -40, -1071, 12 }, + { 1063, -38, -1071, 12 }, + { 1083, -36, -1071, 12 }, + { 1103, -34, -1071, 12 }, + { 1123, -32, -1071, 12 }, + { 1143, -30, -1071, 12 }, + { 1163, -29, -1071, 12 }, + { 1183, -27, -1071, 12 }, + { 1203, -26, -1071, 12 }, + { 1223, -25, -1071, 12 }, + { 1243, -23, -1071, 12 }, + { 1263, -22, -1071, 12 }, + { 1283, -21, -1071, 12 }, + { 1303, -19, -1071, 13 }, + { 1323, -18, -1071, 13 }, + { 1343, -17, -1071, 13 }, + { 1363, -15, -1071, 13 }, + { 1383, -14, -1071, 13 }, + { 1403, -13, -1071, 13 }, + { 1423, -11, -1071, 13 }, + { 1443, -10, -1071, 13 }, + { 1463, -9, -1071, 13 }, + { 1483, -8, -1071, 13 }, + { 1503, -8, -1071, 13 }, + { 1523, -7, -1071, 13 }, + { 1543, -6, -1071, 13 }, + { 1563, -6, -1071, 13 }, + { 1583, -5, -1071, 13 }, + { 1603, -4, -1071, 13 }, + { 1623, -4, -1071, 13 }, + { 1643, -3, -1071, 13 }, + { 1663, -2, -1071, 13 }, + { 1683, -2, -1071, 13 }, + { 1703, -1, -1071, 13 }, + { 1723, 0, -1071, 13 }, + { 1743, 0, -1071, 13 }, + { 1763, 0, -1071, 13 }, + { 1783, 0, -1071, 13 }, + { 1803, 0, -1071, 13 }, + { 1823, 0, -1071, 13 }, + { 1843, 0, -1071, 13 }, + { 1863, 0, -1071, 13 }, + { 1883, 0, -1071, 13 }, + { 1903, 0, -1071, 13 }, + { 1923, 0, -1071, 13 }, + { 1943, 0, -1071, 13 }, + { 1963, 0, -1071, 13 }, + { 1983, 0, -1071, 13 }, + { 2003, 0, -1071, 13 }, + { 2023, 0, -1071, 13 }, + { 2043, 0, -1071, 13 }, + { 2063, 0, -1071, 13 }, + { 2083, 0, -1071, 13 }, + { 2103, 0, -1071, 13 }, + { 2123, 0, -1071, 13 }, + { 2143, 0, -1071, 13 }, + { 2163, 0, -1071, 13 }, + { 2183, 0, -1070, 13 }, + { 2203, 0, -1070, 14 }, + { 2224, 0, -1070, 14 }, + { 2244, 0, -1070, 14 }, + { 2264, 0, -1070, 14 }, + { 2284, 0, -1070, 14 }, + { 2304, 0, -1070, 14 }, + { 2324, 0, -1070, 14 }, + { 2344, 0, -1070, 14 }, + { 2364, 0, -1070, 14 }, + { 2384, 0, -1070, 14 }, + { 2404, 0, -1070, 14 }, + { 2424, 0, -1070, 14 }, + { 2444, 0, -1069, 14 }, + { 2464, 0, -1069, 14 }, + { 2484, 0, -1069, 14 }, + { 2504, 0, -1068, 14 }, + { 2524, 0, -1067, 14 }, + { 2544, 0, -1067, 14 }, + { 2564, 0, -1066, 14 }, + { 2584, 0, -1065, 14 }, + { 2604, 0, -1064, 14 }, + { 2624, 0, -1062, 14 }, + { 2644, 0, -1061, 14 }, + { 2663, 0, -1059, 14 }, + { 2683, 0, -1058, 14 }, + { 2703, 0, -1055, 14 }, + { 2723, 0, -1053, 14 }, + { 2743, 0, -1051, 14 }, + { 2763, 0, -1048, 14 }, + { 2783, 0, -1044, 14 }, + { 2802, 0, -1041, 14 }, + { 2822, 0, -1037, 14 }, + { 2841, 0, -1032, 14 }, + { 2861, 0, -1027, 14 }, + { 2880, 0, -1022, 14 }, + { 2899, 0, -1016, 14 }, + { 2918, 0, -1010, 14 }, + { 2937, 0, -1003, 14 }, + { 2956, 0, -996, 14 }, + { 2974, 0, -989, 14 }, + { 2993, 0, -981, 14 }, + { 3011, 0, -973, 14 }, + { 3030, 0, -965, 14 }, + { 3048, 0, -957, 14 }, + { 3066, 0, -948, 15 }, + { 3084, 0, -939, 15 }, + { 3101, 0, -930, 15 }, + { 3119, 0, -920, 15 }, + { 3136, 0, -910, 15 }, + { 3153, 0, -900, 15 }, + { 3170, 0, -889, 15 }, + { 3187, 0, -879, 15 }, + { 3204, 0, -867, 15 }, + { 3220, 0, -856, 15 }, + { 3236, 0, -844, 15 }, + { 3252, 0, -831, 15 }, + { 3267, 0, -819, 15 }, + { 3282, 0, -805, 15 }, + { 3297, 0, -792, 15 }, + { 3311, 0, -778, 15 }, + { 3325, 0, -764, 15 }, + { 3339, 0, -749, 15 }, + { 3353, 0, -734, 15 }, + { 3366, 0, -719, 15 }, + { 3379, 0, -704, 15 }, + { 3392, 0, -689, 15 }, + { 3404, 0, -673, 15 }, + { 3416, 0, -657, 15 }, + { 3428, 0, -641, 15 }, + { 3440, 0, -625, 15 }, + { 3451, 0, -608, 15 }, + { 3462, 0, -591, 15 }, + { 3472, 0, -574, 15 }, + { 3482, 0, -557, 15 }, + { 3492, 0, -539, 15 }, + { 3501, 0, -522, 15 }, + { 3510, 0, -504, 15 }, + { 3518, 0, -485, 15 }, + { 3526, 0, -467, 15 }, + { 3534, 0, -449, 15 }, + { 3541, 0, -430, 15 }, + { 3547, 0, -411, 15 }, + { 3554, 0, -392, 15 }, + { 3559, 0, -373, 15 }, + { 3565, 0, -353, 15 }, + { 3570, 0, -334, 15 }, + { 3574, 0, -315, 15 }, + { 3578, 0, -295, 15 }, + { 3582, 0, -275, 15 }, + { 3585, 0, -256, 15 }, + { 3588, 0, -236, 15 }, + { 3590, 0, -216, 15 }, + { 3592, 0, -196, 16 }, + { 3593, 0, -176, 16 }, + { 3594, 0, -156, 16 }, + { 3595, 0, -136, 16 }, + { 3596, 0, -116, 16 }, + { 3597, 0, -96, 16 }, + { 3597, 0, -76, 16 }, + { 3598, 0, -56, 16 }, + { 3598, 0, -36, 16 }, + { 3598, 0, -16, 16 }, + { 3599, 0, 3, 16 }, + { 3599, 0, 23, 16 }, + { 3599, 0, 43, 16 }, + { 3598, 0, 63, 16 }, + { 3598, 0, 83, 16 }, + { 3598, 0, 103, 16 }, + { 3597, 0, 123, 16 }, + { 3597, 0, 143, 16 }, + { 3596, 0, 163, 16 }, + { 3595, 0, 183, 16 }, + { 3594, 0, 203, 16 }, + { 3592, 0, 223, 16 }, + { 3591, 0, 243, 16 }, + { 3590, 0, 263, 16 }, + { 3588, 0, 283, 16 }, + { 3586, 0, 303, 16 }, + { 3583, 0, 323, 16 }, + { 3580, 0, 343, 16 }, + { 3577, 0, 362, 16 }, + { 3573, 0, 382, 16 }, + { 3568, 0, 401, 16 }, + { 3563, 0, 421, 16 }, + { 3557, 0, 440, 16 }, + { 3551, 0, 459, 16 }, + { 3545, 0, 478, 16 }, + { 3538, 0, 497, 16 }, + { 3531, 0, 515, 16 }, + { 3523, 0, 534, 16 }, + { 3516, 0, 552, 16 }, + { 3507, 0, 571, 16 }, + { 3499, 0, 589, 16 }, + { 3490, 0, 607, 16 }, + { 3480, 0, 624, 16 }, + { 3471, 0, 642, 16 }, + { 3461, 0, 659, 16 }, + { 3451, 0, 676, 16 }, + { 3440, 0, 693, 16 }, + { 3429, 0, 710, 16 }, + { 3418, 0, 727, 16 }, + { 3406, 0, 743, 17 }, + { 3394, 0, 759, 17 }, + { 3382, 0, 775, 17 }, + { 3370, 0, 790, 17 }, + { 3357, 0, 806, 17 }, + { 3343, 0, 821, 17 }, + { 3330, 0, 835, 17 }, + { 3316, 0, 850, 17 }, + { 3302, 0, 864, 17 }, + { 3287, 0, 878, 17 }, + { 3273, 0, 891, 17 }, + { 3258, 0, 905, 17 }, + { 3242, 0, 918, 17 }, + { 3227, 0, 930, 17 }, + { 3211, 0, 943, 17 }, + { 3195, 0, 955, 17 }, + { 3179, 0, 966, 17 }, + { 3162, 0, 978, 17 }, + { 3146, 0, 989, 17 }, + { 3129, 0, 1000, 17 }, + { 3112, 0, 1010, 17 }, + { 3095, 0, 1020, 17 }, + { 3077, 0, 1030, 17 }, + { 3059, 0, 1039, 17 }, + { 3041, 0, 1048, 17 }, + { 3023, 0, 1057, 17 }, + { 3005, 0, 1065, 17 }, + { 2987, 0, 1073, 17 }, + { 2968, 0, 1080, 17 }, + { 2949, 0, 1087, 17 }, + { 2931, 0, 1094, 17 }, + { 2912, 0, 1100, 17 }, + { 2893, 0, 1106, 17 }, + { 2873, 0, 1112, 17 }, + { 2854, 0, 1117, 17 }, + { 2835, 0, 1122, 17 }, + { 2815, 0, 1127, 17 }, + { 2795, 0, 1131, 17 }, + { 2776, 0, 1134, 17 }, + { 2756, 0, 1137, 17 }, + { 2736, 0, 1140, 17 }, + { 2716, 0, 1143, 17 }, + { 2697, 0, 1145, 17 }, + { 2677, 0, 1148, 17 }, + { 2657, 0, 1149, 17 }, + { 2637, 0, 1151, 17 }, + { 2617, 0, 1152, 17 }, + { 2597, 0, 1153, 18 }, + { 2577, 0, 1154, 18 }, + { 2557, 0, 1155, 18 }, + { 2537, 0, 1155, 18 }, + { 2517, 0, 1156, 18 }, + { 2497, 0, 1156, 18 }, + { 2477, 0, 1156, 18 }, + { 2457, 0, 1157, 18 }, + { 2437, 0, 1157, 18 }, + { 2417, 0, 1157, 18 }, + { 2397, 0, 1157, 18 }, + { 2377, 0, 1157, 18 }, + { 2357, 0, 1157, 18 }, + { 2337, 0, 1158, 18 }, + { 2317, 0, 1158, 18 }, + { 2297, 0, 1158, 18 }, + { 2277, 0, 1158, 18 }, + { 2257, 0, 1158, 18 }, + { 2237, 0, 1158, 18 }, + { 2217, 0, 1158, 18 }, + { 2197, 0, 1158, 18 }, + { 2177, 0, 1158, 18 }, + { 2157, 0, 1158, 18 }, + { 2137, 0, 1158, 18 }, + { 2117, 0, 1157, 18 }, + { 2097, 0, 1157, 18 }, + { 2077, 0, 1157, 18 }, + { 2056, 0, 1157, 18 }, + { 2036, 0, 1157, 18 }, + { 2016, 0, 1157, 18 }, + { 1996, 0, 1157, 18 }, + { 1976, 0, 1157, 18 }, + { 1956, 0, 1157, 18 }, + { 1936, 0, 1157, 18 }, + { 1916, 0, 1156, 18 }, + { 1896, 0, 1156, 18 }, + { 1876, 0, 1156, 18 }, + { 1856, 0, 1156, 18 }, + { 1836, 0, 1156, 18 }, + { 1816, 0, 1156, 18 }, + { 1796, 0, 1156, 18 }, + { 1776, 0, 1155, 18 }, + { 1756, 0, 1155, 18 }, + { 1736, 0, 1155, 18 }, + { 1716, 0, 1155, 18 }, + { 1696, 0, 1155, 19 }, + { 1676, 0, 1155, 19 }, + { 1656, 0, 1154, 19 }, + { 1636, 0, 1154, 19 }, + { 1616, 0, 1154, 19 }, + { 1596, 0, 1154, 19 }, + { 1576, 0, 1154, 19 }, + { 1556, 0, 1153, 19 }, + { 1536, 0, 1153, 19 }, + { 1516, 0, 1153, 19 }, + { 1496, 0, 1153, 19 }, + { 1476, 0, 1153, 19 }, + { 1456, 0, 1152, 19 }, + { 1436, 0, 1152, 19 }, + { 1416, 0, 1152, 19 }, + { 1396, 0, 1152, 19 }, + { 1376, 0, 1151, 19 }, + { 1356, 0, 1151, 19 }, + { 1336, 0, 1151, 19 }, + { 1316, 0, 1151, 19 }, + { 1296, 0, 1150, 19 }, + { 1276, 0, 1150, 19 }, + { 1256, 0, 1150, 19 }, + { 1236, 0, 1149, 19 }, + { 1216, 0, 1149, 19 }, + { 1196, 0, 1149, 19 }, + { 1176, 0, 1148, 19 }, + { 1156, 0, 1148, 19 }, + { 1136, 0, 1147, 19 }, + { 1116, 0, 1147, 19 }, + { 1096, 0, 1146, 19 }, + { 1076, 0, 1145, 19 }, + { 1056, 0, 1144, 19 }, + { 1036, 0, 1143, 19 }, + { 1016, 0, 1142, 19 }, + { 996, 0, 1140, 19 }, + { 976, 0, 1138, 19 }, + { 956, 0, 1136, 19 }, + { 936, 0, 1133, 19 }, + { 917, 0, 1130, 19 }, + { 897, 0, 1127, 19 }, + { 877, 0, 1123, 19 }, + { 858, 0, 1119, 19 }, + { 838, 0, 1114, 19 }, + { 819, 0, 1109, 19 }, + { 799, 0, 1104, 19 }, + { 780, 0, 1098, 20 }, + { 761, 0, 1091, 20 }, + { 743, 0, 1084, 20 }, + { 724, 0, 1077, 20 }, + { 706, 0, 1069, 20 }, + { 687, 0, 1061, 20 }, + { 669, 0, 1053, 20 }, + { 651, 0, 1044, 20 }, + { 633, 0, 1035, 20 }, + { 616, 0, 1025, 20 }, + { 598, 0, 1015, 20 }, + { 581, 0, 1005, 20 }, + { 564, 0, 994, 20 }, + { 547, 0, 984, 20 }, + { 531, 0, 972, 20 }, + { 515, 0, 961, 20 }, + { 498, 0, 949, 20 }, + { 483, 0, 937, 20 }, + { 467, 0, 924, 20 }, + { 451, 0, 912, 20 }, + { 436, 0, 898, 20 }, + { 422, 0, 885, 20 }, + { 407, 0, 871, 20 }, + { 393, 0, 857, 20 }, + { 379, 0, 843, 20 }, + { 365, 0, 828, 20 }, + { 352, 0, 813, 20 }, + { 339, 0, 798, 20 }, + { 326, 0, 783, 20 }, + { 313, 0, 767, 20 }, + { 301, 0, 751, 20 }, + { 290, 0, 735, 20 }, + { 278, 0, 719, 20 }, + { 267, 0, 702, 20 }, + { 256, 0, 685, 20 }, + { 246, 0, 668, 20 }, + { 236, 0, 651, 20 }, + { 226, 0, 633, 20 }, + { 216, 0, 616, 20 }, + { 207, 0, 598, 20 }, + { 198, 0, 580, 20 }, + { 190, 0, 562, 20 }, + { 182, 0, 543, 20 }, + { 174, 0, 525, 20 }, + { 167, 0, 506, 20 }, + { 160, 0, 488, 20 }, + { 154, 0, 469, 20 }, + { 148, 0, 449, 1 }, + { 143, 0, 430, 1 }, + { 138, 0, 411, 1 }, + { 134, 0, 391, 1 }, + { 130, 0, 371, 1 }, + { 127, 0, 352, 1 }, + { 124, 0, 332, 1 }, + { 121, 0, 312, 1 }, + { 118, 0, 292, 1 }, + { 116, 0, 272, 1 }, + { 114, 0, 252, 1 }, + { 113, 0, 232, 1 }, + { 111, 0, 212, 1 }, + { 110, 0, 192, 1 }, + { 109, 0, 173, 1 }, + { 108, 0, 153, 1 }, + { 106, 0, 133, 1 }, + { 105, 0, 113, 1 }, + { 104, 0, 93, 1 }, + { 103, 0, 73, 1 }, + { 101, 0, 53, 1 }, + { 100, 0, 33, 1 }, + { -32768, -32768, -32768, 0 }, diff --git a/courses/toads_turnpike/d_course_toads_turnpike_unknown_path.inc.c b/courses/toads_turnpike/d_course_toads_turnpike_unknown_path.inc.c new file mode 100644 index 0000000000..22fd89d273 --- /dev/null +++ b/courses/toads_turnpike/d_course_toads_turnpike_unknown_path.inc.c @@ -0,0 +1,14 @@ + { 100, 0, 26, 0 }, { 100, 0, 7, 0 }, { 102, 0, -299, 0 }, { 88, 0, -601, 0 }, + { 76, 0, -897, 0 }, { 78, 0, -1946, 0 }, { 64, 0, -2260, 0 }, { 5, 0, -2490, 0 }, + { -116, 0, -2706, 0 }, { -279, 0, -2886, 0 }, { -481, 0, -3017, 0 }, { -706, 0, -3099, 0 }, + { -952, 0, -3124, 0 }, { -1250, 0, -3119, 0 }, { -1629, 0, -3116, 0 }, { -1867, 0, -3075, 0 }, + { -2155, 0, -2924, 0 }, { -2330, 0, -2764, 0 }, { -2465, 0, -2561, 0 }, { -2548, 0, -2335, 0 }, + { -2579, 0, -2093, 0 }, { -2553, 0, -1856, 0 }, { -2470, 0, -1630, 0 }, { -2333, 0, -1423, 0 }, + { -2156, 0, -1261, 0 }, { -1945, 0, -1144, 0 }, { -1717, 0, -1072, 0 }, { -1401, 0, -1062, 0 }, + { -202, 0, -1070, 0 }, { 2201, 0, -1072, 0 }, { 2652, 0, -1068, 0 }, { 2919, 0, -1021, 0 }, + { 3203, 0, -881, 0 }, { 3380, 0, -715, 0 }, { 3516, 0, -512, 0 }, { 3589, 0, -283, 0 }, + { 3600, 0, -45, 0 }, { 3598, 0, 166, 0 }, { 3580, 0, 389, 0 }, { 3495, 0, 612, 0 }, + { 3366, 0, 807, 0 }, { 3191, 0, 967, 0 }, { 2987, 0, 1081, 0 }, { 2754, 0, 1146, 0 }, + { 2450, 0, 1161, 0 }, { 1254, 0, 1152, 0 }, { 936, 0, 1141, 0 }, { 718, 0, 1083, 0 }, + { 507, 0, 964, 0 }, { 337, 0, 807, 0 }, { 206, 0, 610, 0 }, { 123, 0, 389, 0 }, + { 98, 0, 50, 0 }, { -32768, 0, 0, 0 }, diff --git a/courses/wario_stadium/course_data.c b/courses/wario_stadium/course_data.c index b72503024a..b55aa64b86 100644 --- a/courses/wario_stadium/course_data.c +++ b/courses/wario_stadium/course_data.c @@ -70,8 +70,12 @@ Gfx d_course_wario_stadium_dl_1B8[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_50A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_59C0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5938), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_5888), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), @@ -123,13 +127,30 @@ Gfx d_course_wario_stadium_dl_350[] = { Gfx d_course_wario_stadium_dl_440[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4BA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), + gsSPDisplayList(d_course_wario_stadium_packed_dl_4BA8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_59C0), gsSPDisplayList(d_course_wario_stadium_packed_dl_5938), - gsSPDisplayList(d_course_wario_stadium_packed_dl_5888), gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), - gsSPDisplayList(d_course_wario_stadium_packed_dl_7530), gsSPDisplayList(d_course_wario_stadium_packed_dl_75A8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_7630), gsSPDisplayList(d_course_wario_stadium_packed_dl_8D28), + gsSPDisplayList(d_course_wario_stadium_packed_dl_5888), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_7530), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_75A8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_7630), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_8D28), gsSPDisplayList(d_course_wario_stadium_packed_dl_8DE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_8EF0), - gsSPDisplayList(d_course_wario_stadium_packed_dl_1860), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_1860), +#endif + gsSPEndDisplayList(), }; Gfx d_course_wario_stadium_dl_4C0[] = { @@ -145,8 +166,12 @@ Gfx d_course_wario_stadium_dl_4C0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_59C0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5938), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_5888), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D10), @@ -168,7 +193,9 @@ Gfx d_course_wario_stadium_dl_4C0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_8DE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_8EF0), gsSPDisplayList(d_course_wario_stadium_packed_dl_1458), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_1860), +#endif gsSPEndDisplayList(), }; @@ -185,14 +212,20 @@ Gfx d_course_wario_stadium_dl_5E8[] = { Gfx d_course_wario_stadium_dl_668[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4BA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), + gsSPDisplayList(d_course_wario_stadium_packed_dl_4BA8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), gsSPDisplayList(d_course_wario_stadium_packed_dl_5938), gsSPDisplayList(d_course_wario_stadium_packed_dl_5888), - gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), gsSPDisplayList(d_course_wario_stadium_packed_dl_21D8), gsSPDisplayList(d_course_wario_stadium_packed_dl_75A8), gsSPDisplayList(d_course_wario_stadium_packed_dl_7630), gsSPDisplayList(d_course_wario_stadium_packed_dl_76E0), @@ -210,14 +243,24 @@ Gfx d_course_wario_stadium_dl_798[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), gsSPDisplayList(d_course_wario_stadium_packed_dl_4BA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_5938), gsSPDisplayList(d_course_wario_stadium_packed_dl_5888), gsSPDisplayList(d_course_wario_stadium_packed_dl_57F8), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_21D8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_75A8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_7630), gsSPDisplayList(d_course_wario_stadium_packed_dl_76E0), gsSPDisplayList(d_course_wario_stadium_packed_dl_64E8), @@ -234,10 +277,18 @@ Gfx d_course_wario_stadium_dl_830[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), gsSPDisplayList(d_course_wario_stadium_packed_dl_5938), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_5938), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_5888), gsSPDisplayList(d_course_wario_stadium_packed_dl_57F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), gsSPDisplayList(d_course_wario_stadium_packed_dl_75A8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_75A8), gsSPDisplayList(d_course_wario_stadium_packed_dl_7630), gsSPDisplayList(d_course_wario_stadium_packed_dl_76E0), gsSPDisplayList(d_course_wario_stadium_packed_dl_1F28), gsSPDisplayList(d_course_wario_stadium_packed_dl_1FC8), gsSPDisplayList(d_course_wario_stadium_packed_dl_20A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_24D0), @@ -263,7 +314,10 @@ Gfx d_course_wario_stadium_dl_990[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), gsSPDisplayList(d_course_wario_stadium_packed_dl_3AA8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_5888), gsSPDisplayList(d_course_wario_stadium_packed_dl_57F8), + gsSPDisplayList(d_course_wario_stadium_packed_dl_5888), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_57F8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_5768), gsSPDisplayList(d_course_wario_stadium_packed_dl_38F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), gsSPDisplayList(d_course_wario_stadium_packed_dl_7630), gsSPDisplayList(d_course_wario_stadium_packed_dl_76E0), gsSPDisplayList(d_course_wario_stadium_packed_dl_77A8), @@ -332,12 +386,18 @@ Gfx d_course_wario_stadium_dl_C08[] = { Gfx d_course_wario_stadium_dl_C70[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4930), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_4930), gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), - gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_57F8), + gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_57F8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_5768), gsSPDisplayList(d_course_wario_stadium_packed_dl_56E0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D80), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D10), @@ -355,8 +415,18 @@ Gfx d_course_wario_stadium_dl_D60[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_57F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_5768), - gsSPDisplayList(d_course_wario_stadium_packed_dl_56E0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D80), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_56E0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3D80), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_76E0), gsSPDisplayList(d_course_wario_stadium_packed_dl_77A8), gsSPDisplayList(d_course_wario_stadium_packed_dl_7838), gsSPDisplayList(d_course_wario_stadium_packed_dl_1F28), gsSPDisplayList(d_course_wario_stadium_packed_dl_65A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_8FC8), @@ -369,10 +439,21 @@ Gfx d_course_wario_stadium_dl_E30[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_57F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_5768), - gsSPDisplayList(d_course_wario_stadium_packed_dl_56E0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), - gsSPDisplayList(d_course_wario_stadium_packed_dl_5D20), gsSPDisplayList(d_course_wario_stadium_packed_dl_5CB0), + gsSPDisplayList(d_course_wario_stadium_packed_dl_56E0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_5D20), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_5CB0), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_76E0), gsSPDisplayList(d_course_wario_stadium_packed_dl_77A8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_7838), gsSPDisplayList(d_course_wario_stadium_packed_dl_65A0), + gsSPDisplayList(d_course_wario_stadium_packed_dl_7838), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_65A0), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_8FC8), gsSPDisplayList(d_course_wario_stadium_packed_dl_9090), gsSPDisplayList(d_course_wario_stadium_packed_dl_9120), gsSPEndDisplayList(), }; @@ -431,8 +512,18 @@ Gfx d_course_wario_stadium_dl_1068[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_5768), - gsSPDisplayList(d_course_wario_stadium_packed_dl_56E0), gsSPDisplayList(d_course_wario_stadium_packed_dl_5A38), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D80), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_56E0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_5A38), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3D80), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), gsSPDisplayList(d_course_wario_stadium_packed_dl_77A8), gsSPDisplayList(d_course_wario_stadium_packed_dl_7838), gsSPDisplayList(d_course_wario_stadium_packed_dl_73F0), gsSPDisplayList(d_course_wario_stadium_packed_dl_2658), gsSPDisplayList(d_course_wario_stadium_packed_dl_5FC8), @@ -469,7 +560,9 @@ Gfx d_course_wario_stadium_dl_11F8[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), gsSPDisplayList(d_course_wario_stadium_packed_dl_38F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_7838), gsSPDisplayList(d_course_wario_stadium_packed_dl_73F0), gsSPDisplayList(d_course_wario_stadium_packed_dl_6DD8), @@ -510,7 +603,10 @@ Gfx d_course_wario_stadium_dl_13C0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), - gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), + gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), gsSPDisplayList(d_course_wario_stadium_packed_dl_7838), gsSPDisplayList(d_course_wario_stadium_packed_dl_73F0), gsSPDisplayList(d_course_wario_stadium_packed_dl_6DD8), gsSPDisplayList(d_course_wario_stadium_packed_dl_2AB0), gsSPDisplayList(d_course_wario_stadium_packed_dl_2658), @@ -526,7 +622,10 @@ Gfx d_course_wario_stadium_dl_14A0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), gsSPDisplayList(d_course_wario_stadium_packed_dl_38F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D80), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D10), @@ -599,7 +698,10 @@ Gfx d_course_wario_stadium_dl_17A8[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), - gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), + gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), gsSPDisplayList(d_course_wario_stadium_packed_dl_38F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D10), gsSPDisplayList(d_course_wario_stadium_packed_dl_73F0), @@ -611,7 +713,10 @@ Gfx d_course_wario_stadium_dl_17A8[] = { }; Gfx d_course_wario_stadium_dl_1868[] = { - gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), @@ -659,7 +764,9 @@ Gfx d_course_wario_stadium_dl_19E0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), @@ -704,7 +811,9 @@ Gfx d_course_wario_stadium_dl_1B48[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_6EC8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6FC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_7090), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_6108), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_8678), gsSPDisplayList(d_course_wario_stadium_packed_dl_8708), gsSPDisplayList(d_course_wario_stadium_packed_dl_8798), @@ -748,14 +857,26 @@ Gfx d_course_wario_stadium_dl_1BB0[] = { Gfx d_course_wario_stadium_dl_1CA8[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), - gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), + gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), + gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_6EC8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6FC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_7090), gsSPDisplayList(d_course_wario_stadium_packed_dl_6108), - gsSPDisplayList(d_course_wario_stadium_packed_dl_5FC8), gsSPDisplayList(d_course_wario_stadium_packed_dl_65A0), + gsSPDisplayList(d_course_wario_stadium_packed_dl_5FC8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_65A0), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_8678), gsSPDisplayList(d_course_wario_stadium_packed_dl_8708), gsSPDisplayList(d_course_wario_stadium_packed_dl_8798), gsSPEndDisplayList(), }; @@ -764,7 +885,10 @@ Gfx d_course_wario_stadium_dl_1D68[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), - gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), gsSPDisplayList(d_course_wario_stadium_packed_dl_38F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6EC8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6FC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_7090), @@ -841,8 +965,16 @@ Gfx d_course_wario_stadium_dl_1E70[] = { Gfx d_course_wario_stadium_dl_1FD8[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), gsSPDisplayList(d_course_wario_stadium_packed_dl_3AA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), gsSPDisplayList(d_course_wario_stadium_packed_dl_6FC0), @@ -858,7 +990,10 @@ Gfx d_course_wario_stadium_dl_20A8[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), + gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), gsSPDisplayList(d_course_wario_stadium_packed_dl_38F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), @@ -885,7 +1020,10 @@ Gfx d_course_wario_stadium_dl_21A8[] = { Gfx d_course_wario_stadium_dl_2218[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), + gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), @@ -905,9 +1043,13 @@ Gfx d_course_wario_stadium_dl_2308[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), gsSPDisplayList(d_course_wario_stadium_packed_dl_3AA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), @@ -916,8 +1058,12 @@ Gfx d_course_wario_stadium_dl_2308[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_7220), gsSPDisplayList(d_course_wario_stadium_packed_dl_7338), gsSPDisplayList(d_course_wario_stadium_packed_dl_24D0), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_6198), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_6418), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_64E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_8798), gsSPDisplayList(d_course_wario_stadium_packed_dl_88A0), @@ -930,10 +1076,19 @@ Gfx d_course_wario_stadium_dl_23B0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), - gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), + gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), gsSPDisplayList(d_course_wario_stadium_packed_dl_7090), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_7090), gsSPDisplayList(d_course_wario_stadium_packed_dl_7220), gsSPDisplayList(d_course_wario_stadium_packed_dl_7338), gsSPDisplayList(d_course_wario_stadium_packed_dl_24D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3160), gsSPDisplayList(d_course_wario_stadium_packed_dl_6418), gsSPDisplayList(d_course_wario_stadium_packed_dl_64E8), @@ -945,7 +1100,12 @@ Gfx d_course_wario_stadium_dl_23B0[] = { Gfx d_course_wario_stadium_dl_2490[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3AA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_7090), gsSPDisplayList(d_course_wario_stadium_packed_dl_7220), gsSPDisplayList(d_course_wario_stadium_packed_dl_7338), @@ -957,7 +1117,10 @@ Gfx d_course_wario_stadium_dl_2490[] = { Gfx d_course_wario_stadium_dl_2530[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), @@ -980,7 +1143,9 @@ Gfx d_course_wario_stadium_dl_2610[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), gsSPDisplayList(d_course_wario_stadium_packed_dl_3AA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), gsSPDisplayList(d_course_wario_stadium_packed_dl_7220), gsSPDisplayList(d_course_wario_stadium_packed_dl_7338), @@ -998,10 +1163,16 @@ Gfx d_course_wario_stadium_dl_2698[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), gsSPDisplayList(d_course_wario_stadium_packed_dl_7090), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_7090), gsSPDisplayList(d_course_wario_stadium_packed_dl_7220), gsSPDisplayList(d_course_wario_stadium_packed_dl_7338), gsSPDisplayList(d_course_wario_stadium_packed_dl_7960), gsSPDisplayList(d_course_wario_stadium_packed_dl_2658), gsSPDisplayList(d_course_wario_stadium_packed_dl_6198), gsSPDisplayList(d_course_wario_stadium_packed_dl_6418), @@ -1019,7 +1190,9 @@ Gfx d_course_wario_stadium_dl_2798[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), gsSPDisplayList(d_course_wario_stadium_packed_dl_3AA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), @@ -1043,8 +1216,12 @@ Gfx d_course_wario_stadium_dl_2798[] = { Gfx d_course_wario_stadium_dl_2870[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), @@ -1071,12 +1248,16 @@ Gfx d_course_wario_stadium_dl_2928[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), gsSPDisplayList(d_course_wario_stadium_packed_dl_3AA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), gsSPDisplayList(d_course_wario_stadium_packed_dl_1FC8), gsSPDisplayList(d_course_wario_stadium_packed_dl_7338), @@ -1111,7 +1292,12 @@ Gfx d_course_wario_stadium_dl_29D0[] = { Gfx d_course_wario_stadium_dl_2AB0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_1F28), gsSPDisplayList(d_course_wario_stadium_packed_dl_1FC8), gsSPDisplayList(d_course_wario_stadium_packed_dl_7960), gsSPDisplayList(d_course_wario_stadium_packed_dl_8030), @@ -1124,7 +1310,10 @@ Gfx d_course_wario_stadium_dl_2AB0[] = { Gfx d_course_wario_stadium_dl_2B60[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), @@ -1140,11 +1329,26 @@ Gfx d_course_wario_stadium_dl_2B60[] = { Gfx d_course_wario_stadium_dl_2C30[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), - gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), + gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), + gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), gsSPDisplayList(d_course_wario_stadium_packed_dl_7960), gsSPDisplayList(d_course_wario_stadium_packed_dl_8030), gsSPDisplayList(d_course_wario_stadium_packed_dl_80E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6198), gsSPDisplayList(d_course_wario_stadium_packed_dl_6418), gsSPDisplayList(d_course_wario_stadium_packed_dl_64E8), @@ -1153,14 +1357,28 @@ Gfx d_course_wario_stadium_dl_2C30[] = { }; Gfx d_course_wario_stadium_dl_2CE0[] = { - gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), - gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), - gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), + gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_1F28), gsSPDisplayList(d_course_wario_stadium_packed_dl_7960), gsSPDisplayList(d_course_wario_stadium_packed_dl_8030), gsSPDisplayList(d_course_wario_stadium_packed_dl_80E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6198), gsSPDisplayList(d_course_wario_stadium_packed_dl_62C8), @@ -1171,9 +1389,15 @@ Gfx d_course_wario_stadium_dl_2CE0[] = { Gfx d_course_wario_stadium_dl_2DC0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), + gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), gsSPDisplayList(d_course_wario_stadium_packed_dl_38F8), + gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_38F8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_1F28), gsSPDisplayList(d_course_wario_stadium_packed_dl_1FC8), gsSPDisplayList(d_course_wario_stadium_packed_dl_8030), gsSPDisplayList(d_course_wario_stadium_packed_dl_80E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_8240), gsSPDisplayList(d_course_wario_stadium_packed_dl_62C8), @@ -1187,7 +1411,9 @@ Gfx d_course_wario_stadium_dl_2E70[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), @@ -1197,7 +1423,9 @@ Gfx d_course_wario_stadium_dl_2E70[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_38F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), @@ -1230,22 +1458,41 @@ Gfx d_course_wario_stadium_dl_2E70[] = { Gfx d_course_wario_stadium_dl_2FB8[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), - gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), + gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_8030), gsSPDisplayList(d_course_wario_stadium_packed_dl_80E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_8240), gsSPDisplayList(d_course_wario_stadium_packed_dl_2C18), - gsSPDisplayList(d_course_wario_stadium_packed_dl_2CE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6198), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_2CE8), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_6198), gsSPDisplayList(d_course_wario_stadium_packed_dl_62C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6390), gsSPDisplayList(d_course_wario_stadium_packed_dl_6418), gsSPDisplayList(d_course_wario_stadium_packed_dl_64E8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_6108), gsSPDisplayList(d_course_wario_stadium_packed_dl_6AE8), + gsSPDisplayList(d_course_wario_stadium_packed_dl_6108), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_6AE8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_98A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_9998), gsSPDisplayList(d_course_wario_stadium_packed_dl_9AD8), gsSPEndDisplayList(), }; Gfx d_course_wario_stadium_dl_3098[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), @@ -1254,22 +1501,32 @@ Gfx d_course_wario_stadium_dl_3098[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), gsSPDisplayList(d_course_wario_stadium_packed_dl_38F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_1F28), gsSPDisplayList(d_course_wario_stadium_packed_dl_8030), gsSPDisplayList(d_course_wario_stadium_packed_dl_80E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_8240), gsSPDisplayList(d_course_wario_stadium_packed_dl_2C18), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_2CE8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_6198), gsSPDisplayList(d_course_wario_stadium_packed_dl_62C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6390), @@ -1337,30 +1594,42 @@ Gfx d_course_wario_stadium_dl_3368[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), gsSPDisplayList(d_course_wario_stadium_packed_dl_80E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_8240), gsSPDisplayList(d_course_wario_stadium_packed_dl_82F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_83A0), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_2CE8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_6198), gsSPDisplayList(d_course_wario_stadium_packed_dl_62C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6390), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_6108), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_6AE8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_34A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_9998), gsSPDisplayList(d_course_wario_stadium_packed_dl_9AD8), gsSPDisplayList(d_course_wario_stadium_packed_dl_9C80), gsSPDisplayList(d_course_wario_stadium_packed_dl_9D00), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_1BD0), +#endif gsSPEndDisplayList(), }; @@ -1369,18 +1638,30 @@ Gfx d_course_wario_stadium_dl_3450[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), gsSPDisplayList(d_course_wario_stadium_packed_dl_38F8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), + gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_80E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_8240), gsSPDisplayList(d_course_wario_stadium_packed_dl_82F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_83A0), - gsSPDisplayList(d_course_wario_stadium_packed_dl_2CE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_2658), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_2CE8), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_2658), gsSPDisplayList(d_course_wario_stadium_packed_dl_6108), gsSPDisplayList(d_course_wario_stadium_packed_dl_5F08), gsSPDisplayList(d_course_wario_stadium_packed_dl_6AE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3598), gsSPDisplayList(d_course_wario_stadium_packed_dl_9998), gsSPDisplayList(d_course_wario_stadium_packed_dl_9AD8), gsSPDisplayList(d_course_wario_stadium_packed_dl_9C80), gsSPDisplayList(d_course_wario_stadium_packed_dl_9D00), - gsSPDisplayList(d_course_wario_stadium_packed_dl_1BD0), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_1BD0), +#endif + gsSPEndDisplayList(), }; Gfx d_course_wario_stadium_dl_3550[] = { @@ -1430,14 +1711,23 @@ Gfx d_course_wario_stadium_dl_3600[] = { Gfx d_course_wario_stadium_dl_36D8[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), - gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), - gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), + gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), gsSPDisplayList(d_course_wario_stadium_packed_dl_80E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_8240), gsSPDisplayList(d_course_wario_stadium_packed_dl_82F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_83A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_2CE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6198), gsSPDisplayList(d_course_wario_stadium_packed_dl_62C8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3260), gsSPDisplayList(d_course_wario_stadium_packed_dl_6AE8), + gsSPDisplayList(d_course_wario_stadium_packed_dl_3260), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_6AE8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_6700), gsSPDisplayList(d_course_wario_stadium_packed_dl_9AD8), gsSPDisplayList(d_course_wario_stadium_packed_dl_9C80), gsSPDisplayList(d_course_wario_stadium_packed_dl_9D00), gsSPDisplayList(d_course_wario_stadium_packed_dl_1BD0), gsSPEndDisplayList(), @@ -1451,12 +1741,16 @@ Gfx d_course_wario_stadium_dl_37A8[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_80E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_8240), gsSPDisplayList(d_course_wario_stadium_packed_dl_82F8), @@ -1507,30 +1801,62 @@ Gfx d_course_wario_stadium_dl_3980[] = { Gfx d_course_wario_stadium_dl_3A10[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), - gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), + gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), - gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_5BB8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_5B38), gsSPDisplayList(d_course_wario_stadium_packed_dl_80E8), + gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_5BB8), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_5B38), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_80E8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_2BB0), gsSPDisplayList(d_course_wario_stadium_packed_dl_82F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_83A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_8438), - gsSPDisplayList(d_course_wario_stadium_packed_dl_6198), gsSPDisplayList(d_course_wario_stadium_packed_dl_6108), + gsSPDisplayList(d_course_wario_stadium_packed_dl_6198), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_6108), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_6700), gsSPDisplayList(d_course_wario_stadium_packed_dl_67B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_9C80), gsSPDisplayList(d_course_wario_stadium_packed_dl_9D00), gsSPDisplayList(d_course_wario_stadium_packed_dl_9D78), gsSPEndDisplayList(), }; Gfx d_course_wario_stadium_dl_3AD0[] = { - gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), - gsSPDisplayList(d_course_wario_stadium_packed_dl_5BB8), gsSPDisplayList(d_course_wario_stadium_packed_dl_5B38), - gsSPDisplayList(d_course_wario_stadium_packed_dl_80E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_2BB0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), + gsSPDisplayList(d_course_wario_stadium_packed_dl_5BB8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_5B38), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_80E8), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_2BB0), gsSPDisplayList(d_course_wario_stadium_packed_dl_82F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_83A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_8438), gsSPDisplayList(d_course_wario_stadium_packed_dl_7B20), - gsSPDisplayList(d_course_wario_stadium_packed_dl_6108), gsSPDisplayList(d_course_wario_stadium_packed_dl_5F08), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_6108), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_5F08), gsSPDisplayList(d_course_wario_stadium_packed_dl_6AE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6950), gsSPDisplayList(d_course_wario_stadium_packed_dl_6658), gsSPDisplayList(d_course_wario_stadium_packed_dl_6878), gsSPDisplayList(d_course_wario_stadium_packed_dl_9C80), gsSPDisplayList(d_course_wario_stadium_packed_dl_9D00), @@ -1552,8 +1878,12 @@ Gfx d_course_wario_stadium_dl_3BB0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D80), gsSPDisplayList(d_course_wario_stadium_packed_dl_5C30), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5BB8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5B38), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), gsSPDisplayList(d_course_wario_stadium_packed_dl_2AB0), gsSPDisplayList(d_course_wario_stadium_packed_dl_2BB0), @@ -1605,25 +1935,47 @@ Gfx d_course_wario_stadium_dl_3CF8[] = { Gfx d_course_wario_stadium_dl_3D90[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), + gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_5C30), gsSPDisplayList(d_course_wario_stadium_packed_dl_5BB8), gsSPDisplayList(d_course_wario_stadium_packed_dl_5B38), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), gsSPDisplayList(d_course_wario_stadium_packed_dl_80E8), + gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_80E8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_82F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_83A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_8438), gsSPDisplayList(d_course_wario_stadium_packed_dl_7FB0), - gsSPDisplayList(d_course_wario_stadium_packed_dl_7B20), gsSPDisplayList(d_course_wario_stadium_packed_dl_6198), - gsSPDisplayList(d_course_wario_stadium_packed_dl_6108), gsSPDisplayList(d_course_wario_stadium_packed_dl_6BE0), - gsSPDisplayList(d_course_wario_stadium_packed_dl_6950), gsSPDisplayList(d_course_wario_stadium_packed_dl_6658), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_7B20), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_6198), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_6108), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_6BE0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_6950), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_6658), gsSPDisplayList(d_course_wario_stadium_packed_dl_6700), gsSPDisplayList(d_course_wario_stadium_packed_dl_67B8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_6878), gsSPDisplayList(d_course_wario_stadium_packed_dl_9C80), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_6878), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_9C80), gsSPDisplayList(d_course_wario_stadium_packed_dl_9D00), gsSPDisplayList(d_course_wario_stadium_packed_dl_9D78), gsSPDisplayList(d_course_wario_stadium_packed_dl_9820), gsSPEndDisplayList(), }; Gfx d_course_wario_stadium_dl_3E80[] = { +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), @@ -1636,13 +1988,17 @@ Gfx d_course_wario_stadium_dl_3E80[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_5C30), gsSPDisplayList(d_course_wario_stadium_packed_dl_5BB8), gsSPDisplayList(d_course_wario_stadium_packed_dl_5B38), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_80E8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_82F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_83A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_8438), gsSPDisplayList(d_course_wario_stadium_packed_dl_7FB0), gsSPDisplayList(d_course_wario_stadium_packed_dl_7B20), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_6108), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_6AE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6BE0), gsSPDisplayList(d_course_wario_stadium_packed_dl_6950), @@ -1671,8 +2027,12 @@ Gfx d_course_wario_stadium_dl_3F78[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_5CB0), gsSPDisplayList(d_course_wario_stadium_packed_dl_5C30), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5BB8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), gsSPDisplayList(d_course_wario_stadium_packed_dl_8438), gsSPDisplayList(d_course_wario_stadium_packed_dl_7FB0), @@ -1692,7 +2052,10 @@ Gfx d_course_wario_stadium_dl_4060[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_5CB0), gsSPDisplayList(d_course_wario_stadium_packed_dl_5C30), gsSPDisplayList(d_course_wario_stadium_packed_dl_5BB8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), gsSPDisplayList(d_course_wario_stadium_packed_dl_8438), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_8438), gsSPDisplayList(d_course_wario_stadium_packed_dl_7FB0), gsSPDisplayList(d_course_wario_stadium_packed_dl_7A40), gsSPDisplayList(d_course_wario_stadium_packed_dl_6BE0), gsSPDisplayList(d_course_wario_stadium_packed_dl_6C80), gsSPDisplayList(d_course_wario_stadium_packed_dl_9D78), gsSPDisplayList(d_course_wario_stadium_packed_dl_9820), @@ -1705,8 +2068,16 @@ Gfx d_course_wario_stadium_dl_40F0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), gsSPDisplayList(d_course_wario_stadium_packed_dl_53D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_5CB0), gsSPDisplayList(d_course_wario_stadium_packed_dl_5C30), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_5CB0), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_5C30), gsSPDisplayList(d_course_wario_stadium_packed_dl_5BB8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), gsSPDisplayList(d_course_wario_stadium_packed_dl_8438), gsSPDisplayList(d_course_wario_stadium_packed_dl_7FB0), gsSPDisplayList(d_course_wario_stadium_packed_dl_7A40), @@ -1734,19 +2105,28 @@ Gfx d_course_wario_stadium_dl_4270[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_4FB8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), + gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), gsSPDisplayList(d_course_wario_stadium_packed_dl_5D20), gsSPDisplayList(d_course_wario_stadium_packed_dl_5CB0), gsSPDisplayList(d_course_wario_stadium_packed_dl_5C30), gsSPDisplayList(d_course_wario_stadium_packed_dl_7FB0), gsSPDisplayList(d_course_wario_stadium_packed_dl_7A40), gsSPDisplayList(d_course_wario_stadium_packed_dl_7B20), gsSPDisplayList(d_course_wario_stadium_packed_dl_6A10), gsSPDisplayList(d_course_wario_stadium_packed_dl_6AE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6BE0), - gsSPDisplayList(d_course_wario_stadium_packed_dl_6C80), gsSPDisplayList(d_course_wario_stadium_packed_dl_6950), + gsSPDisplayList(d_course_wario_stadium_packed_dl_6C80), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_6950), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_9820), gsSPDisplayList(d_course_wario_stadium_packed_dl_9328), gsSPDisplayList(d_course_wario_stadium_packed_dl_93B0), gsSPEndDisplayList(), }; Gfx d_course_wario_stadium_dl_4340[] = { - gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_53D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_5CB0), @@ -1763,8 +2143,16 @@ Gfx d_course_wario_stadium_dl_43E0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), gsSPDisplayList(d_course_wario_stadium_packed_dl_53D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), - gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), - gsSPDisplayList(d_course_wario_stadium_packed_dl_5D20), gsSPDisplayList(d_course_wario_stadium_packed_dl_5CB0), + gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_5D20), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_5CB0), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_5C30), gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_7FB0), gsSPDisplayList(d_course_wario_stadium_packed_dl_7A40), gsSPDisplayList(d_course_wario_stadium_packed_dl_7B20), gsSPDisplayList(d_course_wario_stadium_packed_dl_6A10), @@ -1792,22 +2180,43 @@ Gfx d_course_wario_stadium_dl_4550[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), gsSPDisplayList(d_course_wario_stadium_packed_dl_3AA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), gsSPDisplayList(d_course_wario_stadium_packed_dl_38F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3D80), gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3D80), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_2108), gsSPDisplayList(d_course_wario_stadium_packed_dl_20A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_24D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_2A28), gsSPDisplayList(d_course_wario_stadium_packed_dl_2BB0), gsSPDisplayList(d_course_wario_stadium_packed_dl_82F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_83A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_7A40), gsSPDisplayList(d_course_wario_stadium_packed_dl_7B20), gsSPDisplayList(d_course_wario_stadium_packed_dl_7BE0), - gsSPDisplayList(d_course_wario_stadium_packed_dl_7D00), gsSPDisplayList(d_course_wario_stadium_packed_dl_6198), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_7D00), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_6198), gsSPDisplayList(d_course_wario_stadium_packed_dl_31F0), gsSPDisplayList(d_course_wario_stadium_packed_dl_32D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_30E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6A10), - gsSPDisplayList(d_course_wario_stadium_packed_dl_6AE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6C80), - gsSPDisplayList(d_course_wario_stadium_packed_dl_6950), gsSPDisplayList(d_course_wario_stadium_packed_dl_6700), + gsSPDisplayList(d_course_wario_stadium_packed_dl_6AE8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_6C80), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_6950), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_6700), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_6878), gsSPDisplayList(d_course_wario_stadium_packed_dl_1180), gsSPDisplayList(d_course_wario_stadium_packed_dl_15C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_1A50), gsSPDisplayList(d_course_wario_stadium_packed_dl_9C80), gsSPDisplayList(d_course_wario_stadium_packed_dl_9D00), @@ -1816,17 +2225,32 @@ Gfx d_course_wario_stadium_dl_4550[] = { }; Gfx d_course_wario_stadium_dl_46E0[] = { - gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3D80), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D10), gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), gsSPDisplayList(d_course_wario_stadium_packed_dl_83A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_2CE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_7A40), gsSPDisplayList(d_course_wario_stadium_packed_dl_7B20), gsSPDisplayList(d_course_wario_stadium_packed_dl_7BE0), - gsSPDisplayList(d_course_wario_stadium_packed_dl_7D00), gsSPDisplayList(d_course_wario_stadium_packed_dl_6A10), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_7D00), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_6A10), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_6BE0), gsSPDisplayList(d_course_wario_stadium_packed_dl_6C80), gsSPDisplayList(d_course_wario_stadium_packed_dl_6950), gsSPDisplayList(d_course_wario_stadium_packed_dl_6700), gsSPDisplayList(d_course_wario_stadium_packed_dl_67B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6878), @@ -1882,22 +2306,37 @@ Gfx d_course_wario_stadium_dl_47F0[] = { }; Gfx d_course_wario_stadium_dl_4948[] = { - gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), + gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), gsSPDisplayList(d_course_wario_stadium_packed_dl_38F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D80), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D10), gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_2108), - gsSPDisplayList(d_course_wario_stadium_packed_dl_2BB0), gsSPDisplayList(d_course_wario_stadium_packed_dl_82F8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_2BB0), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_82F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_83A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_2CE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_7A40), gsSPDisplayList(d_course_wario_stadium_packed_dl_7B20), - gsSPDisplayList(d_course_wario_stadium_packed_dl_62C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6A10), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_62C8), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_6A10), gsSPDisplayList(d_course_wario_stadium_packed_dl_6AE8), gsSPDisplayList(d_course_wario_stadium_packed_dl_6BE0), gsSPDisplayList(d_course_wario_stadium_packed_dl_6C80), gsSPDisplayList(d_course_wario_stadium_packed_dl_6950), - gsSPDisplayList(d_course_wario_stadium_packed_dl_6878), gsSPDisplayList(d_course_wario_stadium_packed_dl_1A50), + gsSPDisplayList(d_course_wario_stadium_packed_dl_6878), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_1A50), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_9C80), gsSPDisplayList(d_course_wario_stadium_packed_dl_9D00), gsSPDisplayList(d_course_wario_stadium_packed_dl_1BD0), gsSPDisplayList(d_course_wario_stadium_packed_dl_9328), gsSPDisplayList(d_course_wario_stadium_packed_dl_93B0), gsSPEndDisplayList(), @@ -1912,7 +2351,9 @@ Gfx d_course_wario_stadium_dl_4A78[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_50A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), gsSPDisplayList(d_course_wario_stadium_packed_dl_38F8), @@ -1931,8 +2372,12 @@ Gfx d_course_wario_stadium_dl_4A78[] = { Gfx d_course_wario_stadium_dl_4B30[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), @@ -1961,7 +2406,9 @@ Gfx d_course_wario_stadium_dl_4BE8[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_50A0), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), gsSPDisplayList(d_course_wario_stadium_packed_dl_5AA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_7BE0), @@ -2009,7 +2456,12 @@ Gfx d_course_wario_stadium_dl_4D40[] = { }; Gfx d_course_wario_stadium_dl_4E30[] = { - gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_50A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D10), @@ -2025,7 +2477,10 @@ Gfx d_course_wario_stadium_dl_4E30[] = { Gfx d_course_wario_stadium_dl_4EF0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), - gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_50A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), gsSPDisplayList(d_course_wario_stadium_packed_dl_3AA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), gsSPDisplayList(d_course_wario_stadium_packed_dl_5AA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_7BE0), @@ -2069,7 +2524,9 @@ Gfx d_course_wario_stadium_dl_5090[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_50A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D80), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3D10), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_5AA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_2658), gsSPDisplayList(d_course_wario_stadium_packed_dl_7D00), @@ -2161,8 +2618,12 @@ Gfx d_course_wario_stadium_dl_5338[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D80), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D10), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5BB8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5B38), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_5AA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_7530), gsSPDisplayList(d_course_wario_stadium_packed_dl_2238), @@ -2208,11 +2669,17 @@ Gfx d_course_wario_stadium_dl_54E8[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), gsSPDisplayList(d_course_wario_stadium_packed_dl_4168), gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_50A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_59C0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3AA8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), gsSPDisplayList(d_course_wario_stadium_packed_dl_5B38), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), +#endif + gsSPDisplayList(d_course_wario_stadium_packed_dl_5B38), gsSPDisplayList(d_course_wario_stadium_packed_dl_5AA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_7530), gsSPDisplayList(d_course_wario_stadium_packed_dl_2780), gsSPDisplayList(d_course_wario_stadium_packed_dl_7DF8), gsSPDisplayList(d_course_wario_stadium_packed_dl_7ED0), gsSPDisplayList(d_course_wario_stadium_packed_dl_67B8), - gsSPDisplayList(d_course_wario_stadium_packed_dl_8D28), gsSPDisplayList(d_course_wario_stadium_packed_dl_1348), + gsSPDisplayList(d_course_wario_stadium_packed_dl_8D28), +#ifndef VERSION_JP + gsSPDisplayList(d_course_wario_stadium_packed_dl_1348), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_1778), gsSPDisplayList(d_course_wario_stadium_packed_dl_9668), gsSPDisplayList(d_course_wario_stadium_packed_dl_9760), gsSPEndDisplayList(), }; @@ -2230,8 +2697,12 @@ Gfx d_course_wario_stadium_dl_5588[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), gsSPDisplayList(d_course_wario_stadium_packed_dl_50A0), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_59C0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3AA8), +#endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D80), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D10), @@ -2256,498 +2727,17 @@ Gfx d_course_wario_stadium_dl_5588[] = { }; // 0x56A0 +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_wario_stadium_unknown_path[] = { - { 16, 0, 7, 0 }, { 11, 0, -25, 0 }, { 8, 0, -227, 0 }, { 6, 0, -674, 0 }, - { -3, 0, -1560, 0 }, { -121, 0, -1883, 0 }, { -430, 0, -2100, 0 }, { -790, 0, -2160, 0 }, - { -1487, 0, -2155, 0 }, { -2171, 0, -2139, 0 }, { -2522, 0, -2014, 0 }, { -2757, 0, -1691, 0 }, - { -2808, 0, -1303, 0 }, { -2808, 0, -837, 0 }, { -2713, 0, -671, 0 }, { -2459, 0, -611, 0 }, - { -2311, 0, -533, 0 }, { -2288, 0, -325, 0 }, { -2292, 0, 64, 0 }, { -2209, 0, 207, 0 }, - { -2006, 0, 248, 0 }, { -1724, 0, 175, 0 }, { -1664, 0, -42, 0 }, { -1678, 0, -656, 0 }, - { -1867, 0, -845, 0 }, { -2412, 0, -845, 0 }, { -2583, 0, -933, 0 }, { -2606, 0, -1155, 0 }, - { -2555, 0, -1573, 0 }, { -2380, 0, -1818, 0 }, { -2131, 0, -1910, 0 }, { -1600, 0, -1915, 0 }, - { -1005, 0, -1915, 0 }, { -691, 0, -1891, 0 }, { -432, 0, -1739, 0 }, { -377, 0, -1448, 0 }, - { -373, 0, -426, 0 }, { -391, 0, -89, 0 }, { -562, 0, 100, 0 }, { -839, 0, 54, 0 }, - { -917, 0, -52, 0 }, { -950, 0, -389, 0 }, { -945, 0, -1280, 0 }, { -968, 0, -1543, 0 }, - { -1139, 0, -1631, 0 }, { -1310, 0, -1575, 0 }, { -1356, 0, -1308, 0 }, { -1360, 0, -348, 0 }, - { -1353, 0, 1016, 0 }, { -1349, 0, 1466, 0 }, { -1413, 0, 1618, 0 }, { -1552, 0, 1678, 0 }, - { -2193, 0, 1660, 0 }, { -2539, 0, 1537, 0 }, { -2756, 0, 1246, 0 }, { -2816, 0, 770, 0 }, - { -2765, 0, 613, 0 }, { -2595, 0, 553, 0 }, { -2087, 0, 558, 0 }, { -1538, 0, 558, 0 }, - { -896, 0, 563, 0 }, { -472, 0, 572, 0 }, { -278, 0, 595, 0 }, { -195, 0, 720, 0 }, - { -209, 0, 1001, 0 }, { -319, 0, 1232, 0 }, { -522, 0, 1366, 0 }, { -933, 0, 1403, 0 }, - { -1039, 0, 1463, 0 }, { -1053, 0, 1610, 0 }, { -919, 0, 1693, 0 }, { -592, 0, 1666, 0 }, - { -255, 0, 1541, 0 }, { -52, 0, 1315, 0 }, { 4, 0, 1033, 0 }, { 13, 0, 122, 0 }, - { -32768, 0, 0, 0 }, +#include "courses/wario_stadium/d_course_wario_stadium_unknown_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_wario_stadium_track_path[] = { - { 13, 0, -9, 1 }, { 11, 0, -28, 1 }, { 11, 0, -48, 1 }, - { 10, 0, -68, 1 }, { 10, 0, -88, 1 }, { 9, 0, -108, 1 }, - { 9, 0, -128, 1 }, { 9, 0, -148, 1 }, { 8, 0, -168, 1 }, - { 8, 0, -189, 1 }, { 8, 0, -209, 1 }, { 8, 0, -229, 1 }, - { 8, 0, -249, 1 }, { 8, 1, -269, 2 }, { 7, 3, -289, 2 }, - { 7, 6, -309, 2 }, { 7, 9, -329, 2 }, { 7, 13, -349, 2 }, - { 7, 15, -369, 2 }, { 7, 15, -389, 2 }, { 7, 12, -409, 2 }, - { 7, 8, -429, 2 }, { 7, 4, -449, 2 }, { 6, 2, -469, 2 }, - { 6, 1, -489, 2 }, { 6, 0, -509, 2 }, { 6, 0, -529, 2 }, - { 6, 0, -549, 2 }, { 6, 1, -569, 2 }, { 6, 3, -589, 2 }, - { 6, 6, -609, 2 }, { 5, 9, -629, 2 }, { 5, 13, -649, 2 }, - { 5, 15, -669, 2 }, { 5, 15, -689, 2 }, { 5, 12, -709, 2 }, - { 5, 8, -729, 2 }, { 4, 4, -749, 2 }, { 4, 2, -769, 2 }, - { 4, 1, -789, 2 }, { 4, 0, -809, 2 }, { 4, 0, -829, 2 }, - { 4, 0, -849, 2 }, { 3, 1, -869, 2 }, { 3, 3, -889, 2 }, - { 3, 6, -909, 2 }, { 3, 9, -929, 2 }, { 3, 13, -949, 2 }, - { 2, 15, -969, 2 }, { 2, 15, -989, 2 }, { 2, 12, -1009, 2 }, - { 2, 8, -1029, 2 }, { 2, 4, -1049, 2 }, { 1, 2, -1069, 2 }, - { 1, 1, -1089, 2 }, { 1, 0, -1109, 2 }, { 1, 0, -1129, 2 }, - { 1, 0, -1149, 2 }, { 0, 1, -1169, 3 }, { 0, 3, -1189, 3 }, - { 0, 6, -1209, 3 }, { 0, 9, -1229, 3 }, { -1, 13, -1249, 3 }, - { -1, 15, -1269, 3 }, { -2, 15, -1289, 3 }, { -3, 12, -1309, 3 }, - { -4, 8, -1329, 3 }, { -5, 4, -1349, 3 }, { -6, 2, -1369, 3 }, - { -8, 1, -1389, 3 }, { -9, 0, -1409, 3 }, { -11, 0, -1429, 3 }, - { -12, 0, -1449, 3 }, { -14, 0, -1469, 3 }, { -16, 0, -1489, 3 }, - { -18, 0, -1509, 3 }, { -21, 0, -1529, 3 }, { -23, 0, -1548, 3 }, - { -26, 0, -1568, 3 }, { -29, 0, -1588, 3 }, { -33, 0, -1608, 3 }, - { -36, 0, -1627, 3 }, { -40, 0, -1647, 3 }, { -45, 0, -1666, 3 }, - { -50, 0, -1686, 3 }, { -56, 0, -1705, 3 }, { -63, 0, -1724, 3 }, - { -70, 0, -1742, 3 }, { -78, 0, -1761, 3 }, { -87, 0, -1779, 3 }, - { -96, 0, -1796, 3 }, { -106, 0, -1814, 3 }, { -117, 0, -1831, 3 }, - { -128, 0, -1847, 3 }, { -140, 0, -1863, 3 }, { -152, 0, -1879, 3 }, - { -165, 0, -1894, 3 }, { -179, 0, -1909, 3 }, { -193, 0, -1923, 3 }, - { -207, 0, -1937, 3 }, { -222, 0, -1950, 3 }, { -238, 0, -1963, 3 }, - { -254, 0, -1975, 3 }, { -270, 0, -1987, 3 }, { -286, 0, -1999, 3 }, - { -303, 0, -2010, 3 }, { -320, 0, -2020, 3 }, { -337, 0, -2031, 3 }, - { -354, 0, -2041, 3 }, { -372, 0, -2050, 3 }, { -390, 0, -2059, 3 }, - { -408, 0, -2068, 3 }, { -426, 0, -2076, 3 }, { -445, 0, -2083, 3 }, - { -463, 0, -2091, 3 }, { -482, 0, -2097, 3 }, { -501, 0, -2104, 3 }, - { -520, 0, -2109, 3 }, { -540, 0, -2115, 3 }, { -559, 0, -2119, 3 }, - { -579, 0, -2124, 3 }, { -598, 0, -2128, 3 }, { -618, 0, -2131, 3 }, - { -638, 0, -2134, 3 }, { -658, 0, -2137, 3 }, { -677, 0, -2139, 3 }, - { -697, 0, -2141, 3 }, { -717, 0, -2143, 3 }, { -737, 0, -2145, 3 }, - { -757, 0, -2147, 3 }, { -777, 0, -2148, 3 }, { -797, 0, -2149, 3 }, - { -817, 0, -2151, 3 }, { -837, 0, -2152, 3 }, { -857, 0, -2153, 3 }, - { -877, 0, -2153, 3 }, { -897, 0, -2154, 3 }, { -917, 0, -2155, 3 }, - { -937, 0, -2155, 3 }, { -957, 1, -2156, 4 }, { -977, 4, -2156, 4 }, - { -997, 7, -2157, 4 }, { -1017, 10, -2157, 4 }, { -1037, 13, -2157, 4 }, - { -1057, 17, -2157, 4 }, { -1077, 20, -2157, 4 }, { -1097, 24, -2157, 4 }, - { -1117, 29, -2157, 4 }, { -1137, 33, -2157, 4 }, { -1157, 39, -2157, 4 }, - { -1177, 45, -2157, 4 }, { -1197, 51, -2157, 4 }, { -1217, 57, -2156, 4 }, - { -1237, 65, -2156, 4 }, { -1257, 72, -2156, 4 }, { -1277, 80, -2156, 4 }, - { -1297, 85, -2156, 4 }, { -1317, 87, -2155, 4 }, { -1337, 85, -2155, 4 }, - { -1357, 77, -2155, 4 }, { -1377, 73, -2155, 4 }, { -1397, 69, -2154, 4 }, - { -1417, 65, -2154, 4 }, { -1437, 61, -2154, 4 }, { -1457, 57, -2154, 4 }, - { -1477, 53, -2153, 4 }, { -1497, 49, -2153, 4 }, { -1517, 45, -2153, 4 }, - { -1537, 41, -2152, 4 }, { -1557, 37, -2152, 4 }, { -1577, 33, -2152, 4 }, - { -1597, 29, -2151, 4 }, { -1617, 25, -2151, 4 }, { -1637, 21, -2151, 4 }, - { -1657, 17, -2150, 4 }, { -1677, 13, -2150, 4 }, { -1697, 9, -2149, 4 }, - { -1717, 0, -2149, 4 }, { -1737, 0, -2149, 4 }, { -1757, 0, -2148, 4 }, - { -1777, 0, -2148, 4 }, { -1797, 0, -2147, 4 }, { -1817, 0, -2147, 4 }, - { -1837, 0, -2146, 4 }, { -1857, 0, -2146, 5 }, { -1877, 0, -2145, 5 }, - { -1897, 0, -2144, 5 }, { -1917, 0, -2143, 5 }, { -1937, 0, -2142, 5 }, - { -1957, 0, -2141, 5 }, { -1977, 0, -2140, 5 }, { -1997, 0, -2138, 5 }, - { -2017, 0, -2137, 5 }, { -2037, 0, -2135, 5 }, { -2057, 0, -2133, 5 }, - { -2077, 0, -2131, 5 }, { -2097, 0, -2129, 5 }, { -2117, 0, -2126, 5 }, - { -2137, 0, -2124, 5 }, { -2156, 0, -2121, 5 }, { -2176, 0, -2118, 5 }, - { -2196, 0, -2114, 5 }, { -2216, 0, -2111, 5 }, { -2235, 0, -2107, 5 }, - { -2255, 0, -2102, 5 }, { -2274, 0, -2098, 5 }, { -2293, 0, -2092, 5 }, - { -2313, 0, -2087, 5 }, { -2332, 0, -2081, 5 }, { -2351, 0, -2074, 5 }, - { -2369, 0, -2067, 5 }, { -2388, 0, -2059, 5 }, { -2406, 0, -2051, 5 }, - { -2424, 0, -2042, 5 }, { -2441, 0, -2032, 5 }, { -2459, 0, -2022, 5 }, - { -2475, 0, -2011, 5 }, { -2492, 0, -2000, 5 }, { -2508, 0, -1988, 5 }, - { -2524, 0, -1976, 5 }, { -2539, 0, -1963, 5 }, { -2554, 0, -1949, 5 }, - { -2568, 0, -1935, 5 }, { -2582, 0, -1921, 5 }, { -2596, 0, -1906, 5 }, - { -2609, 0, -1891, 5 }, { -2621, 0, -1875, 5 }, { -2633, 0, -1860, 5 }, - { -2645, 0, -1843, 5 }, { -2657, 0, -1827, 5 }, { -2667, 0, -1810, 5 }, - { -2678, 0, -1793, 5 }, { -2688, 0, -1776, 5 }, { -2698, 0, -1758, 5 }, - { -2707, 0, -1741, 5 }, { -2716, 0, -1723, 5 }, { -2724, 0, -1705, 5 }, - { -2732, 0, -1686, 5 }, { -2739, 0, -1668, 5 }, { -2746, 0, -1649, 5 }, - { -2752, 0, -1630, 5 }, { -2758, 0, -1611, 5 }, { -2764, 0, -1591, 5 }, - { -2768, 0, -1572, 5 }, { -2773, 0, -1552, 5 }, { -2776, 0, -1533, 5 }, - { -2780, 0, -1513, 5 }, { -2782, 0, -1493, 5 }, { -2785, 0, -1473, 5 }, - { -2787, 0, -1453, 6 }, { -2790, 0, -1433, 6 }, { -2792, 0, -1414, 6 }, - { -2793, 0, -1394, 6 }, { -2795, 0, -1374, 6 }, { -2797, 0, -1354, 6 }, - { -2798, 0, -1334, 6 }, { -2800, 0, -1314, 6 }, { -2801, 0, -1294, 6 }, - { -2802, 0, -1274, 6 }, { -2803, 0, -1254, 6 }, { -2804, 0, -1234, 6 }, - { -2805, 0, -1214, 6 }, { -2806, 0, -1194, 6 }, { -2806, 0, -1174, 6 }, - { -2807, 0, -1154, 6 }, { -2807, 0, -1134, 6 }, { -2807, 0, -1114, 6 }, - { -2807, 0, -1094, 6 }, { -2807, 0, -1074, 6 }, { -2807, 0, -1054, 6 }, - { -2807, 0, -1034, 6 }, { -2807, 0, -1014, 6 }, { -2806, 0, -994, 6 }, - { -2805, 0, -974, 6 }, { -2804, 0, -954, 6 }, { -2802, 0, -934, 6 }, - { -2801, 0, -914, 6 }, { -2798, 0, -894, 6 }, { -2796, 0, -874, 6 }, - { -2792, 0, -854, 6 }, { -2789, 0, -835, 6 }, { -2784, 0, -815, 6 }, - { -2778, 0, -796, 6 }, { -2771, 0, -777, 6 }, { -2763, 0, -759, 6 }, - { -2753, 0, -742, 6 }, { -2741, 0, -726, 6 }, { -2727, 0, -711, 6 }, - { -2712, 0, -698, 6 }, { -2696, 0, -686, 6 }, { -2679, 0, -676, 6 }, - { -2661, 0, -666, 6 }, { -2643, 0, -658, 6 }, { -2624, 0, -652, 6 }, - { -2605, 0, -646, 6 }, { -2586, 0, -641, 6 }, { -2566, 0, -636, 6 }, - { -2547, 0, -631, 6 }, { -2528, 0, -626, 6 }, { -2508, 0, -620, 6 }, - { -2489, 0, -614, 6 }, { -2470, 0, -608, 6 }, { -2452, 0, -601, 6 }, - { -2433, 0, -594, 6 }, { -2414, 0, -586, 6 }, { -2396, 0, -578, 6 }, - { -2379, 0, -568, 6 }, { -2362, 0, -557, 6 }, { -2347, 0, -544, 6 }, - { -2334, 0, -528, 6 }, { -2323, 0, -512, 6 }, { -2315, 0, -494, 6 }, - { -2308, 0, -475, 6 }, { -2303, 0, -455, 6 }, { -2300, 0, -436, 6 }, - { -2298, 0, -416, 6 }, { -2296, 0, -396, 6 }, { -2294, 0, -376, 6 }, - { -2293, 0, -356, 6 }, { -2292, 0, -336, 6 }, { -2291, 0, -316, 6 }, - { -2291, 0, -296, 6 }, { -2290, 0, -276, 6 }, { -2290, 0, -256, 6 }, - { -2289, 0, -236, 7 }, { -2289, 0, -216, 7 }, { -2289, 0, -196, 7 }, - { -2289, 0, -176, 7 }, { -2289, 0, -156, 7 }, { -2289, 0, -136, 7 }, - { -2290, 0, -116, 7 }, { -2290, 0, -96, 7 }, { -2289, 0, -76, 7 }, - { -2289, 0, -56, 7 }, { -2288, 0, -36, 7 }, { -2286, 0, -16, 7 }, - { -2284, 0, 3, 7 }, { -2282, 0, 23, 7 }, { -2279, 0, 43, 7 }, - { -2275, 0, 63, 7 }, { -2271, 0, 82, 7 }, { -2265, 0, 101, 7 }, - { -2258, 0, 120, 7 }, { -2248, 0, 138, 7 }, { -2237, 0, 154, 7 }, - { -2224, 0, 169, 7 }, { -2209, 0, 182, 7 }, { -2193, 0, 194, 7 }, - { -2176, 0, 204, 7 }, { -2157, 0, 212, 7 }, { -2138, 0, 219, 7 }, - { -2119, 0, 224, 7 }, { -2100, 0, 228, 7 }, { -2080, 0, 231, 7 }, - { -2060, 0, 233, 7 }, { -2040, 0, 234, 7 }, { -2020, 0, 234, 7 }, - { -2000, 0, 234, 7 }, { -1980, 0, 232, 7 }, { -1960, 0, 230, 7 }, - { -1940, 0, 227, 7 }, { -1921, 0, 224, 7 }, { -1901, 0, 220, 7 }, - { -1881, 0, 215, 7 }, { -1862, 0, 210, 7 }, { -1843, 0, 205, 7 }, - { -1824, 0, 198, 7 }, { -1805, 0, 190, 7 }, { -1788, 0, 181, 7 }, - { -1770, 0, 171, 7 }, { -1754, 0, 159, 7 }, { -1739, 0, 146, 7 }, - { -1726, 0, 131, 7 }, { -1715, 0, 114, 7 }, { -1705, 0, 97, 7 }, - { -1697, 0, 78, 7 }, { -1692, 0, 59, 7 }, { -1687, 0, 40, 7 }, - { -1684, 0, 20, 7 }, { -1681, 0, 0, 7 }, { -1679, 0, -19, 7 }, - { -1677, 0, -39, 7 }, { -1675, 1, -59, 7 }, { -1673, 3, -78, 7 }, - { -1672, 9, -98, 7 }, { -1671, 16, -118, 7 }, { -1671, 18, -138, 7 }, - { -1670, 20, -158, 7 }, { -1670, 18, -178, 7 }, { -1669, 16, -198, 7 }, - { -1669, 9, -218, 7 }, { -1669, 3, -238, 7 }, { -1669, 1, -259, 7 }, - { -1669, 0, -279, 7 }, { -1670, 2, -299, 7 }, { -1670, 6, -319, 7 }, - { -1670, 13, -339, 7 }, { -1671, 17, -359, 7 }, { -1671, 20, -379, 7 }, - { -1672, 19, -399, 7 }, { -1673, 17, -419, 7 }, { -1675, 12, -438, 7 }, - { -1676, 6, -458, 7 }, { -1678, 2, -478, 7 }, { -1681, 0, -498, 7 }, - { -1683, 0, -518, 8 }, { -1686, 0, -538, 8 }, { -1690, 0, -558, 8 }, - { -1694, 0, -577, 8 }, { -1698, 0, -597, 8 }, { -1703, 0, -616, 8 }, - { -1709, 0, -635, 8 }, { -1715, 0, -654, 8 }, { -1723, 0, -673, 8 }, - { -1731, 0, -691, 8 }, { -1740, 0, -709, 8 }, { -1751, 0, -725, 8 }, - { -1764, 0, -741, 8 }, { -1778, 0, -755, 8 }, { -1793, 0, -768, 8 }, - { -1810, 0, -780, 8 }, { -1827, 0, -790, 8 }, { -1845, 0, -798, 8 }, - { -1863, 0, -806, 8 }, { -1882, 0, -813, 8 }, { -1901, 0, -818, 8 }, - { -1921, 0, -823, 8 }, { -1940, 0, -828, 8 }, { -1960, 0, -831, 8 }, - { -1980, 0, -834, 8 }, { -2000, 0, -837, 8 }, { -2019, 0, -839, 8 }, - { -2039, 0, -841, 8 }, { -2059, 0, -842, 8 }, { -2079, 0, -843, 8 }, - { -2099, 0, -844, 8 }, { -2119, 0, -844, 8 }, { -2139, 0, -845, 8 }, - { -2159, 0, -845, 8 }, { -2179, 0, -845, 8 }, { -2200, 0, -845, 8 }, - { -2220, 0, -846, 8 }, { -2240, 0, -846, 8 }, { -2260, 0, -847, 8 }, - { -2280, 0, -848, 8 }, { -2299, 0, -849, 8 }, { -2319, 0, -851, 9 }, - { -2339, 0, -853, 9 }, { -2359, 0, -855, 9 }, { -2379, 0, -857, 9 }, - { -2399, 0, -860, 9 }, { -2419, 0, -864, 9 }, { -2438, 0, -868, 9 }, - { -2457, 0, -873, 9 }, { -2476, 0, -880, 9 }, { -2495, 0, -887, 9 }, - { -2512, 0, -897, 9 }, { -2528, 0, -909, 9 }, { -2543, 0, -923, 9 }, - { -2556, 0, -938, 9 }, { -2567, 0, -954, 9 }, { -2576, 0, -972, 9 }, - { -2583, 0, -991, 9 }, { -2589, 0, -1010, 9 }, { -2592, 0, -1030, 9 }, - { -2595, 0, -1050, 9 }, { -2596, 0, -1070, 9 }, { -2597, 0, -1090, 9 }, - { -2598, 0, -1110, 9 }, { -2598, 0, -1130, 9 }, { -2597, 0, -1150, 9 }, - { -2597, 0, -1170, 9 }, { -2596, 0, -1190, 9 }, { -2595, 0, -1210, 9 }, - { -2593, 0, -1230, 9 }, { -2592, 0, -1250, 9 }, { -2590, 0, -1270, 9 }, - { -2588, 0, -1290, 9 }, { -2586, 0, -1309, 9 }, { -2584, 0, -1329, 9 }, - { -2582, 0, -1349, 9 }, { -2579, 0, -1369, 9 }, { -2577, 0, -1389, 9 }, - { -2574, 0, -1409, 9 }, { -2570, 0, -1428, 10 }, { -2566, 0, -1448, 10 }, - { -2562, 0, -1468, 10 }, { -2558, 0, -1487, 10 }, { -2553, 0, -1507, 10 }, - { -2547, 0, -1526, 10 }, { -2541, 0, -1545, 10 }, { -2534, 0, -1564, 10 }, - { -2527, 0, -1582, 10 }, { -2520, 0, -1601, 10 }, { -2511, 0, -1619, 10 }, - { -2502, 0, -1637, 10 }, { -2493, 0, -1655, 10 }, { -2483, 0, -1672, 10 }, - { -2472, 0, -1688, 10 }, { -2460, 0, -1705, 10 }, { -2448, 0, -1721, 10 }, - { -2435, 0, -1736, 10 }, { -2422, 0, -1751, 10 }, { -2408, 0, -1765, 10 }, - { -2393, 0, -1779, 10 }, { -2378, 0, -1792, 10 }, { -2362, 0, -1805, 10 }, - { -2346, 0, -1816, 10 }, { -2329, 0, -1827, 10 }, { -2312, 0, -1837, 10 }, - { -2294, 0, -1847, 10 }, { -2276, 0, -1855, 10 }, { -2258, 0, -1863, 10 }, - { -2239, 0, -1869, 10 }, { -2220, 0, -1875, 10 }, { -2200, 0, -1880, 10 }, - { -2181, 0, -1884, 10 }, { -2161, 0, -1888, 10 }, { -2141, 0, -1892, 10 }, - { -2122, 0, -1895, 10 }, { -2102, 0, -1898, 10 }, { -2082, 0, -1900, 10 }, - { -2062, 0, -1902, 10 }, { -2042, 0, -1904, 10 }, { -2022, 0, -1906, 10 }, - { -2002, 0, -1907, 10 }, { -1982, 0, -1908, 10 }, { -1962, 0, -1909, 10 }, - { -1942, 0, -1910, 10 }, { -1922, 0, -1911, 10 }, { -1902, 0, -1911, 10 }, - { -1882, 0, -1912, 10 }, { -1862, 0, -1912, 10 }, { -1842, 0, -1912, 11 }, - { -1822, 2, -1912, 11 }, { -1802, 3, -1913, 11 }, { -1782, 6, -1913, 11 }, - { -1762, 11, -1913, 11 }, { -1742, 16, -1913, 11 }, { -1722, 21, -1913, 11 }, - { -1702, 27, -1913, 11 }, { -1682, 33, -1913, 11 }, { -1662, 40, -1914, 11 }, - { -1642, 46, -1914, 11 }, { -1622, 52, -1914, 11 }, { -1602, 59, -1914, 11 }, - { -1582, 65, -1914, 11 }, { -1562, 70, -1914, 11 }, { -1542, 70, -1914, 11 }, - { -1522, 67, -1914, 11 }, { -1502, 63, -1914, 11 }, { -1482, 53, -1914, 11 }, - { -1462, 49, -1914, 11 }, { -1442, 45, -1914, 11 }, { -1422, 41, -1914, 11 }, - { -1402, 37, -1914, 11 }, { -1382, 33, -1914, 11 }, { -1362, 29, -1914, 11 }, - { -1342, 25, -1914, 11 }, { -1322, 21, -1914, 11 }, { -1302, 28, -1915, 11 }, - { -1282, 37, -1914, 11 }, { -1262, 44, -1914, 11 }, { -1242, 50, -1914, 11 }, - { -1222, 53, -1914, 11 }, { -1202, 55, -1914, 11 }, { -1182, 55, -1914, 11 }, - { -1162, 52, -1914, 11 }, { -1142, 49, -1913, 11 }, { -1122, 42, -1913, 11 }, - { -1102, 35, -1913, 11 }, { -1082, 27, -1912, 11 }, { -1062, 21, -1912, 11 }, - { -1042, 17, -1912, 11 }, { -1022, 12, -1911, 11 }, { -1002, 8, -1910, 11 }, - { -982, 5, -1910, 11 }, { -962, 1, -1909, 11 }, { -942, 0, -1908, 12 }, - { -922, 0, -1907, 12 }, { -902, 0, -1906, 12 }, { -882, 0, -1905, 12 }, - { -862, 0, -1904, 12 }, { -842, 0, -1902, 12 }, { -822, 0, -1900, 12 }, - { -802, 0, -1898, 12 }, { -782, 0, -1895, 12 }, { -763, 0, -1891, 12 }, - { -743, 0, -1887, 12 }, { -724, 0, -1882, 12 }, { -704, 0, -1877, 12 }, - { -685, 0, -1871, 12 }, { -666, 0, -1864, 12 }, { -648, 0, -1857, 12 }, - { -629, 0, -1849, 12 }, { -611, 0, -1841, 12 }, { -593, 0, -1832, 12 }, - { -575, 0, -1823, 12 }, { -558, 0, -1813, 12 }, { -541, 0, -1802, 12 }, - { -525, 0, -1790, 12 }, { -509, 0, -1778, 12 }, { -494, 0, -1765, 12 }, - { -480, 0, -1750, 12 }, { -467, 0, -1735, 12 }, { -455, 0, -1719, 12 }, - { -445, 0, -1702, 12 }, { -435, 0, -1685, 12 }, { -426, 0, -1667, 12 }, - { -419, 0, -1648, 12 }, { -413, 0, -1629, 12 }, { -408, 0, -1610, 12 }, - { -403, 0, -1590, 12 }, { -400, 0, -1570, 12 }, { -397, 1, -1551, 12 }, - { -395, 1, -1531, 12 }, { -393, 1, -1511, 12 }, { -391, 1, -1491, 12 }, - { -390, 1, -1471, 12 }, { -388, 2, -1451, 12 }, { -387, 0, -1431, 12 }, - { -386, 0, -1411, 12 }, { -385, 0, -1391, 12 }, { -384, 0, -1371, 12 }, - { -383, 0, -1351, 12 }, { -382, 0, -1331, 12 }, { -381, 0, -1311, 12 }, - { -380, 0, -1291, 12 }, { -380, 3, -1271, 12 }, { -379, 6, -1251, 12 }, - { -379, 8, -1231, 12 }, { -378, 11, -1211, 12 }, { -378, 14, -1191, 12 }, - { -377, 16, -1171, 12 }, { -377, 19, -1151, 12 }, { -376, 17, -1131, 13 }, - { -376, 14, -1111, 13 }, { -376, 12, -1091, 13 }, { -376, 9, -1071, 13 }, - { -375, 6, -1051, 13 }, { -375, 4, -1031, 13 }, { -375, 1, -1011, 13 }, - { -375, 0, -991, 13 }, { -375, 0, -971, 13 }, { -375, 0, -951, 13 }, - { -374, 0, -931, 13 }, { -374, 0, -911, 13 }, { -374, 0, -891, 13 }, - { -374, 0, -871, 13 }, { -374, 0, -851, 13 }, { -374, 0, -831, 13 }, - { -374, 0, -811, 13 }, { -374, 0, -791, 13 }, { -374, 0, -771, 13 }, - { -374, 0, -751, 13 }, { -374, 0, -731, 13 }, { -374, 0, -711, 13 }, - { -374, 1, -690, 13 }, { -374, 4, -670, 13 }, { -374, 8, -650, 13 }, - { -374, 11, -630, 13 }, { -374, 14, -610, 13 }, { -375, 18, -590, 13 }, - { -375, 21, -570, 13 }, { -375, 24, -550, 13 }, { -375, 21, -530, 13 }, - { -375, 18, -510, 13 }, { -375, 15, -490, 13 }, { -376, 11, -470, 13 }, - { -376, 8, -450, 13 }, { -376, 5, -430, 13 }, { -377, 1, -410, 13 }, - { -377, 0, -390, 13 }, { -378, 0, -370, 13 }, { -378, 0, -350, 13 }, - { -379, 0, -330, 13 }, { -379, 0, -310, 13 }, { -380, 0, -290, 13 }, - { -381, 0, -270, 13 }, { -382, 0, -250, 13 }, { -383, 0, -230, 14 }, - { -386, 0, -211, 14 }, { -388, 0, -191, 14 }, { -392, 0, -171, 14 }, - { -396, 0, -152, 14 }, { -401, 0, -132, 14 }, { -407, 0, -113, 14 }, - { -414, 0, -94, 14 }, { -422, 0, -76, 14 }, { -431, 0, -58, 14 }, - { -441, 0, -41, 14 }, { -452, 0, -24, 14 }, { -464, 0, -8, 14 }, - { -477, 0, 6, 14 }, { -491, 0, 21, 14 }, { -506, 0, 34, 14 }, - { -523, 0, 45, 14 }, { -540, 0, 55, 14 }, { -558, 0, 64, 14 }, - { -577, 0, 71, 14 }, { -596, 0, 76, 14 }, { -616, 0, 79, 14 }, - { -636, 0, 81, 14 }, { -656, 0, 81, 14 }, { -676, 0, 80, 14 }, - { -696, 0, 77, 14 }, { -715, 0, 74, 14 }, { -735, 0, 70, 14 }, - { -754, 0, 65, 14 }, { -774, 0, 60, 14 }, { -793, 0, 54, 14 }, - { -812, 0, 47, 14 }, { -830, 0, 38, 14 }, { -847, 0, 28, 14 }, - { -863, 0, 16, 14 }, { -877, 0, 2, 14 }, { -887, 0, -14, 14 }, - { -896, 0, -32, 14 }, { -902, 0, -51, 14 }, { -908, 0, -70, 14 }, - { -913, 0, -90, 14 }, { -917, 0, -109, 14 }, { -921, 0, -129, 14 }, - { -924, 0, -149, 14 }, { -927, 0, -169, 14 }, { -930, 0, -188, 14 }, - { -932, 0, -208, 14 }, { -934, 0, -228, 14 }, { -935, 0, -248, 14 }, - { -937, 0, -268, 15 }, { -938, 0, -288, 15 }, { -939, 0, -308, 15 }, - { -940, 0, -328, 15 }, { -941, 1, -348, 15 }, { -942, 2, -368, 15 }, - { -943, 3, -388, 15 }, { -943, 6, -408, 15 }, { -944, 10, -428, 15 }, - { -945, 14, -448, 15 }, { -945, 16, -468, 15 }, { -945, 15, -488, 15 }, - { -946, 13, -508, 15 }, { -946, 9, -528, 15 }, { -946, 4, -548, 15 }, - { -947, 3, -568, 15 }, { -947, 1, -588, 15 }, { -947, 0, -608, 15 }, - { -947, 0, -628, 15 }, { -947, 4, -648, 15 }, { -947, 7, -668, 15 }, - { -947, 11, -688, 15 }, { -947, 14, -708, 15 }, { -947, 19, -728, 15 }, - { -947, 24, -748, 15 }, { -947, 31, -768, 15 }, { -947, 35, -788, 15 }, - { -947, 37, -808, 15 }, { -947, 34, -828, 15 }, { -947, 30, -848, 15 }, - { -947, 23, -868, 15 }, { -947, 16, -888, 15 }, { -947, 9, -908, 15 }, - { -947, 3, -928, 15 }, { -947, 1, -948, 15 }, { -947, 0, -968, 15 }, - { -947, 2, -988, 15 }, { -947, 6, -1008, 15 }, { -947, 10, -1028, 15 }, - { -947, 14, -1048, 15 }, { -947, 16, -1068, 15 }, { -947, 15, -1089, 15 }, - { -947, 13, -1109, 15 }, { -947, 9, -1129, 15 }, { -947, 4, -1149, 15 }, - { -948, 2, -1169, 16 }, { -948, 1, -1189, 16 }, { -948, 0, -1209, 16 }, - { -948, 0, -1229, 16 }, { -949, 0, -1249, 16 }, { -949, 0, -1269, 16 }, - { -950, 0, -1289, 16 }, { -951, 0, -1309, 16 }, { -951, 0, -1329, 16 }, - { -952, 0, -1349, 16 }, { -953, 0, -1369, 16 }, { -954, 0, -1389, 16 }, - { -956, 0, -1409, 16 }, { -958, 0, -1428, 16 }, { -961, 0, -1448, 16 }, - { -965, 0, -1468, 16 }, { -971, 0, -1487, 16 }, { -978, 0, -1505, 16 }, - { -988, 0, -1523, 16 }, { -998, 0, -1540, 16 }, { -1011, 0, -1555, 16 }, - { -1026, 0, -1569, 16 }, { -1042, 0, -1580, 16 }, { -1060, 0, -1590, 16 }, - { -1078, 0, -1598, 16 }, { -1097, 0, -1604, 16 }, { -1117, 0, -1609, 16 }, - { -1136, 0, -1612, 16 }, { -1156, 0, -1613, 16 }, { -1176, 0, -1613, 16 }, - { -1196, 0, -1610, 16 }, { -1216, 0, -1605, 16 }, { -1235, 0, -1599, 16 }, - { -1252, 0, -1589, 16 }, { -1268, 0, -1577, 16 }, { -1282, 0, -1563, 16 }, - { -1294, 0, -1547, 16 }, { -1305, 0, -1530, 16 }, { -1313, 0, -1512, 16 }, - { -1320, 0, -1493, 16 }, { -1325, 0, -1474, 16 }, { -1330, 0, -1454, 16 }, - { -1334, 0, -1435, 16 }, { -1336, 0, -1415, 16 }, { -1339, 0, -1395, 16 }, - { -1341, 0, -1375, 16 }, { -1342, 0, -1355, 16 }, { -1344, 0, -1335, 16 }, - { -1345, 0, -1315, 16 }, { -1347, 0, -1295, 16 }, { -1348, 0, -1275, 16 }, - { -1349, 0, -1255, 16 }, { -1350, 0, -1235, 16 }, { -1350, 0, -1215, 16 }, - { -1351, 0, -1195, 16 }, { -1352, 0, -1175, 16 }, { -1353, 0, -1155, 16 }, - { -1353, 2, -1135, 17 }, { -1354, 9, -1115, 17 }, { -1354, 11, -1095, 17 }, - { -1355, 10, -1075, 17 }, { -1355, 3, -1055, 17 }, { -1355, 0, -1035, 17 }, - { -1356, 5, -1015, 17 }, { -1356, 10, -995, 17 }, { -1356, 11, -975, 17 }, - { -1357, 7, -955, 17 }, { -1357, 2, -935, 17 }, { -1357, 1, -915, 17 }, - { -1357, 7, -895, 17 }, { -1357, 11, -875, 17 }, { -1357, 10, -855, 17 }, - { -1357, 5, -835, 17 }, { -1358, 0, -815, 17 }, { -1358, 3, -795, 17 }, - { -1358, 9, -775, 17 }, { -1358, 11, -755, 17 }, { -1358, 9, -735, 17 }, - { -1358, 3, -715, 17 }, { -1358, 0, -695, 17 }, { -1358, 5, -675, 17 }, - { -1358, 10, -655, 17 }, { -1358, 11, -635, 17 }, { -1358, 7, -615, 17 }, - { -1358, 1, -595, 17 }, { -1358, 2, -575, 17 }, { -1358, 8, -555, 17 }, - { -1358, 11, -535, 17 }, { -1358, 10, -515, 17 }, { -1358, 4, -495, 17 }, - { -1358, 0, -475, 17 }, { -1358, 0, -455, 17 }, { -1358, 0, -435, 17 }, - { -1358, 0, -415, 17 }, { -1358, 0, -395, 17 }, { -1358, 0, -375, 17 }, - { -1358, 0, -355, 17 }, { -1358, 0, -335, 17 }, { -1358, 0, -315, 17 }, - { -1358, 0, -295, 17 }, { -1358, 0, -275, 17 }, { -1358, 0, -255, 17 }, - { -1358, -1, -235, 18 }, { -1358, -2, -215, 18 }, { -1358, -4, -195, 18 }, - { -1358, -5, -175, 18 }, { -1358, -7, -155, 18 }, { -1358, -9, -135, 18 }, - { -1358, -10, -115, 18 }, { -1358, -12, -95, 18 }, { -1358, -14, -75, 18 }, - { -1358, -16, -55, 18 }, { -1358, -17, -35, 18 }, { -1357, -19, -15, 18 }, - { -1357, -21, 4, 18 }, { -1357, -25, 24, 18 }, { -1357, -28, 44, 18 }, - { -1357, -31, 64, 18 }, { -1357, -35, 84, 18 }, { -1357, -38, 104, 18 }, - { -1357, -41, 124, 18 }, { -1357, -45, 144, 18 }, { -1357, -48, 164, 18 }, - { -1357, -52, 184, 18 }, { -1357, -55, 204, 18 }, { -1357, -58, 224, 18 }, - { -1356, -62, 244, 18 }, { -1356, -63, 264, 18 }, { -1356, -65, 284, 18 }, - { -1356, -66, 305, 18 }, { -1356, -68, 325, 18 }, { -1356, -69, 345, 18 }, - { -1356, -70, 365, 18 }, { -1356, -72, 385, 18 }, { -1356, -73, 405, 19 }, - { -1356, -73, 425, 19 }, { -1355, -73, 445, 19 }, { -1355, -73, 465, 19 }, - { -1355, -73, 485, 19 }, { -1355, -73, 505, 19 }, { -1355, -73, 525, 19 }, - { -1355, -73, 545, 19 }, { -1355, -71, 565, 19 }, { -1355, -70, 585, 19 }, - { -1355, -69, 605, 19 }, { -1354, -67, 625, 19 }, { -1354, -66, 645, 19 }, - { -1354, -65, 665, 19 }, { -1354, -63, 685, 19 }, { -1354, -62, 705, 19 }, - { -1354, -59, 725, 19 }, { -1354, -56, 745, 19 }, { -1354, -53, 765, 19 }, - { -1354, -51, 785, 19 }, { -1353, -48, 805, 19 }, { -1353, -45, 825, 19 }, - { -1353, -42, 845, 19 }, { -1353, -39, 865, 19 }, { -1353, -37, 885, 19 }, - { -1353, -34, 905, 19 }, { -1353, -31, 925, 19 }, { -1353, -28, 945, 19 }, - { -1352, -25, 965, 19 }, { -1352, -23, 985, 19 }, { -1352, -20, 1005, 20 }, - { -1352, -19, 1025, 20 }, { -1352, -17, 1045, 20 }, { -1352, -16, 1065, 20 }, - { -1352, -14, 1085, 20 }, { -1352, -13, 1105, 20 }, { -1351, -11, 1125, 20 }, - { -1351, -10, 1145, 20 }, { -1351, -9, 1165, 20 }, { -1351, -8, 1185, 20 }, - { -1351, -8, 1205, 20 }, { -1351, -7, 1225, 20 }, { -1350, -6, 1245, 20 }, - { -1350, -6, 1265, 20 }, { -1350, -5, 1285, 20 }, { -1351, -4, 1305, 20 }, - { -1351, -4, 1325, 20 }, { -1352, -3, 1345, 20 }, { -1353, -2, 1365, 20 }, - { -1354, -2, 1385, 20 }, { -1355, -1, 1405, 20 }, { -1357, 0, 1425, 20 }, - { -1359, 0, 1445, 20 }, { -1361, 0, 1465, 20 }, { -1365, 0, 1484, 20 }, - { -1369, 0, 1504, 20 }, { -1374, 0, 1523, 20 }, { -1381, 0, 1542, 20 }, - { -1389, 0, 1560, 20 }, { -1399, 0, 1578, 20 }, { -1411, 0, 1594, 20 }, - { -1424, 0, 1609, 20 }, { -1439, 0, 1622, 20 }, { -1456, 0, 1634, 20 }, - { -1473, 0, 1643, 20 }, { -1492, 0, 1651, 20 }, { -1511, 0, 1656, 20 }, - { -1531, 0, 1660, 20 }, { -1550, 0, 1662, 20 }, { -1570, 0, 1665, 20 }, - { -1590, 0, 1666, 20 }, { -1610, 0, 1668, 20 }, { -1630, 0, 1669, 20 }, - { -1650, 0, 1669, 20 }, { -1670, 0, 1670, 20 }, { -1690, 0, 1670, 20 }, - { -1710, 0, 1670, 20 }, { -1730, 0, 1671, 20 }, { -1750, 0, 1671, 20 }, - { -1770, 0, 1670, 20 }, { -1790, 0, 1670, 20 }, { -1810, 0, 1670, 20 }, - { -1830, 0, 1670, 20 }, { -1850, 0, 1669, 20 }, { -1870, 0, 1669, 20 }, - { -1890, 0, 1668, 20 }, { -1910, 0, 1667, 20 }, { -1930, 0, 1666, 20 }, - { -1950, 0, 1665, 20 }, { -1970, 0, 1664, 20 }, { -1990, 0, 1663, 20 }, - { -2010, 0, 1662, 20 }, { -2030, 0, 1660, 20 }, { -2050, 0, 1658, 20 }, - { -2070, 0, 1657, 20 }, { -2090, 0, 1655, 20 }, { -2110, 0, 1652, 20 }, - { -2130, 0, 1650, 20 }, { -2150, 0, 1647, 20 }, { -2169, 0, 1644, 20 }, - { -2189, 0, 1641, 20 }, { -2209, 0, 1638, 21 }, { -2229, 0, 1634, 21 }, - { -2248, 0, 1630, 21 }, { -2268, 0, 1626, 21 }, { -2287, 0, 1621, 21 }, - { -2307, 0, 1616, 21 }, { -2326, 0, 1611, 21 }, { -2345, 0, 1605, 21 }, - { -2364, 0, 1599, 21 }, { -2383, 0, 1592, 21 }, { -2401, 0, 1584, 21 }, - { -2420, 0, 1576, 21 }, { -2438, 0, 1567, 21 }, { -2455, 0, 1558, 21 }, - { -2473, 0, 1548, 21 }, { -2490, 0, 1538, 21 }, { -2506, 0, 1527, 21 }, - { -2523, 0, 1515, 21 }, { -2539, 0, 1503, 21 }, { -2554, 0, 1490, 21 }, - { -2569, 0, 1477, 21 }, { -2584, 0, 1463, 21 }, { -2598, 0, 1449, 21 }, - { -2611, 0, 1434, 21 }, { -2625, 0, 1419, 21 }, { -2637, 0, 1404, 21 }, - { -2649, 0, 1388, 21 }, { -2661, 0, 1372, 21 }, { -2672, 0, 1355, 21 }, - { -2682, 0, 1338, 21 }, { -2692, 0, 1320, 21 }, { -2701, 0, 1303, 21 }, - { -2710, 0, 1285, 21 }, { -2718, 0, 1266, 21 }, { -2726, 0, 1248, 21 }, - { -2733, 0, 1229, 21 }, { -2740, 0, 1210, 21 }, { -2746, 0, 1191, 21 }, - { -2752, 0, 1172, 21 }, { -2758, 0, 1153, 21 }, { -2763, 0, 1134, 21 }, - { -2767, 0, 1114, 21 }, { -2771, 0, 1095, 21 }, { -2775, 0, 1075, 21 }, - { -2779, 0, 1055, 21 }, { -2782, 0, 1035, 22 }, { -2784, 0, 1016, 22 }, - { -2787, 0, 996, 22 }, { -2789, 0, 976, 22 }, { -2792, 0, 956, 22 }, - { -2794, 0, 936, 22 }, { -2796, 0, 916, 22 }, { -2797, 0, 896, 22 }, - { -2799, 0, 876, 22 }, { -2800, 0, 856, 22 }, { -2801, 0, 836, 22 }, - { -2802, 0, 816, 22 }, { -2802, 0, 796, 22 }, { -2801, 0, 776, 22 }, - { -2801, 0, 756, 22 }, { -2799, 0, 736, 22 }, { -2796, 0, 716, 22 }, - { -2792, 0, 697, 22 }, { -2785, 0, 678, 22 }, { -2777, 0, 660, 22 }, - { -2766, 0, 643, 22 }, { -2753, 0, 628, 22 }, { -2738, 0, 614, 22 }, - { -2722, 0, 603, 22 }, { -2704, 0, 593, 22 }, { -2686, 0, 585, 22 }, - { -2667, 0, 579, 22 }, { -2648, 0, 574, 22 }, { -2628, 0, 570, 22 }, - { -2608, 0, 567, 22 }, { -2589, 0, 564, 22 }, { -2569, 0, 562, 22 }, - { -2549, 0, 560, 22 }, { -2529, 0, 559, 22 }, { -2509, 0, 558, 22 }, - { -2489, 0, 557, 22 }, { -2469, 0, 556, 22 }, { -2449, 0, 556, 22 }, - { -2429, 0, 555, 22 }, { -2409, 0, 555, 22 }, { -2389, 0, 555, 22 }, - { -2369, 0, 555, 22 }, { -2349, 0, 555, 22 }, { -2329, 0, 555, 22 }, - { -2309, 0, 555, 22 }, { -2289, 0, 555, 22 }, { -2269, 0, 556, 22 }, - { -2249, 0, 556, 22 }, { -2229, 0, 556, 22 }, { -2209, 0, 556, 23 }, - { -2188, 0, 556, 23 }, { -2168, 0, 556, 23 }, { -2148, 0, 557, 23 }, - { -2128, 0, 557, 23 }, { -2108, 0, 557, 23 }, { -2088, 0, 557, 23 }, - { -2068, 2, 557, 23 }, { -2048, 3, 557, 23 }, { -2028, 4, 557, 23 }, - { -2008, 6, 557, 23 }, { -1988, 7, 557, 23 }, { -1968, 8, 557, 23 }, - { -1948, 10, 557, 23 }, { -1928, 12, 557, 23 }, { -1908, 14, 557, 23 }, - { -1888, 16, 557, 23 }, { -1868, 18, 557, 23 }, { -1848, 20, 557, 23 }, - { -1828, 23, 557, 23 }, { -1808, 25, 558, 23 }, { -1788, 28, 558, 23 }, - { -1768, 31, 558, 23 }, { -1748, 35, 558, 23 }, { -1728, 39, 558, 23 }, - { -1708, 42, 558, 23 }, { -1688, 46, 558, 23 }, { -1668, 49, 558, 23 }, - { -1648, 53, 558, 23 }, { -1628, 57, 558, 23 }, { -1608, 60, 558, 23 }, - { -1588, 64, 558, 23 }, { -1568, 67, 558, 23 }, { -1548, 71, 558, 23 }, - { -1528, 74, 558, 23 }, { -1508, 78, 558, 23 }, { -1488, 81, 558, 23 }, - { -1468, 81, 558, 23 }, { -1448, 81, 558, 23 }, { -1428, 81, 559, 19 }, - { -1408, 81, 559, 19 }, { -1388, 81, 559, 19 }, { -1368, 81, 559, 19 }, - { -1348, 81, 559, 19 }, { -1328, 81, 559, 19 }, { -1308, 81, 559, 19 }, - { -1288, 81, 559, 19 }, { -1268, 81, 560, 19 }, { -1248, 81, 560, 19 }, - { -1228, 81, 560, 24 }, { -1208, 77, 560, 24 }, { -1188, 73, 560, 24 }, - { -1168, 69, 560, 24 }, { -1148, 65, 561, 24 }, { -1128, 61, 561, 24 }, - { -1108, 57, 561, 24 }, { -1088, 53, 561, 24 }, { -1068, 49, 561, 24 }, - { -1048, 45, 562, 24 }, { -1028, 41, 562, 24 }, { -1008, 37, 562, 24 }, - { -988, 33, 562, 24 }, { -968, 29, 562, 24 }, { -948, 25, 563, 24 }, - { -928, 21, 563, 24 }, { -908, 17, 563, 24 }, { -888, 13, 563, 24 }, - { -868, 8, 564, 24 }, { -848, 9, 564, 24 }, { -828, 10, 564, 24 }, - { -808, 12, 565, 24 }, { -788, 13, 565, 24 }, { -768, 15, 565, 24 }, - { -748, 16, 566, 24 }, { -728, 14, 566, 24 }, { -708, 13, 567, 24 }, - { -688, 12, 567, 24 }, { -668, 11, 567, 24 }, { -648, 10, 568, 24 }, - { -628, 10, 568, 24 }, { -608, 10, 569, 24 }, { -588, 10, 570, 24 }, - { -568, 10, 570, 24 }, { -548, 10, 571, 24 }, { -528, 10, 572, 24 }, - { -508, 10, 573, 24 }, { -488, 11, 574, 24 }, { -468, 12, 575, 24 }, - { -448, 10, 576, 24 }, { -428, 8, 578, 24 }, { -408, 7, 580, 24 }, - { -388, 5, 582, 24 }, { -368, 3, 584, 24 }, { -348, 1, 587, 24 }, - { -329, 1, 592, 24 }, { -310, 1, 599, 24 }, { -292, 0, 607, 24 }, - { -275, 0, 617, 24 }, { -259, 0, 630, 24 }, { -245, 0, 644, 24 }, - { -234, 0, 661, 24 }, { -224, 0, 678, 25 }, { -217, 0, 697, 25 }, - { -211, 0, 716, 25 }, { -207, 0, 736, 25 }, { -204, 0, 755, 25 }, - { -202, 0, 775, 25 }, { -201, 0, 795, 25 }, { -201, 0, 815, 25 }, - { -201, 0, 835, 25 }, { -201, 0, 855, 25 }, { -202, 0, 875, 25 }, - { -204, 0, 895, 25 }, { -206, 0, 915, 25 }, { -209, 0, 935, 25 }, - { -212, 0, 955, 25 }, { -216, 0, 974, 25 }, { -220, 0, 994, 25 }, - { -225, 0, 1013, 25 }, { -231, 0, 1033, 25 }, { -237, 0, 1052, 25 }, - { -244, 0, 1070, 25 }, { -251, 0, 1089, 25 }, { -259, 0, 1107, 25 }, - { -268, 0, 1125, 25 }, { -277, 0, 1143, 25 }, { -287, 0, 1160, 25 }, - { -298, 0, 1177, 25 }, { -310, 0, 1194, 25 }, { -322, 0, 1209, 25 }, - { -335, 0, 1225, 25 }, { -348, 0, 1239, 25 }, { -363, 1, 1253, 25 }, - { -378, 2, 1267, 25 }, { -393, 3, 1279, 25 }, { -409, 3, 1291, 25 }, - { -426, 4, 1302, 25 }, { -443, 4, 1312, 25 }, { -461, 4, 1322, 25 }, - { -479, 4, 1330, 25 }, { -498, 2, 1337, 25 }, { -517, 1, 1344, 25 }, - { -536, 0, 1350, 25 }, { -555, 0, 1355, 25 }, { -574, 0, 1360, 25 }, - { -594, 0, 1365, 25 }, { -614, 0, 1369, 25 }, { -633, 0, 1372, 25 }, - { -653, 0, 1375, 25 }, { -673, 0, 1378, 26 }, { -693, 0, 1380, 26 }, - { -713, 0, 1383, 26 }, { -733, 0, 1385, 26 }, { -753, 0, 1386, 26 }, - { -772, 0, 1388, 26 }, { -792, 0, 1391, 26 }, { -812, 0, 1393, 26 }, - { -832, 0, 1396, 26 }, { -852, 0, 1398, 26 }, { -872, 0, 1401, 26 }, - { -891, 0, 1405, 26 }, { -911, 0, 1409, 26 }, { -931, 0, 1413, 26 }, - { -950, 0, 1418, 26 }, { -969, 0, 1425, 26 }, { -987, 0, 1433, 26 }, - { -1003, 0, 1445, 26 }, { -1017, 1, 1459, 26 }, { -1028, 0, 1476, 26 }, - { -1036, 0, 1494, 26 }, { -1042, 0, 1513, 26 }, { -1045, 0, 1533, 26 }, - { -1046, 0, 1553, 26 }, { -1044, 0, 1573, 26 }, { -1038, 0, 1592, 26 }, - { -1029, 0, 1610, 26 }, { -1017, 0, 1625, 26 }, { -1002, 0, 1639, 26 }, - { -986, 0, 1651, 27 }, { -968, 0, 1660, 27 }, { -950, 0, 1667, 27 }, - { -930, 0, 1672, 27 }, { -911, 0, 1676, 27 }, { -891, 0, 1679, 27 }, - { -871, 0, 1681, 27 }, { -851, 0, 1682, 27 }, { -831, 0, 1682, 27 }, - { -811, 0, 1682, 27 }, { -791, 0, 1681, 27 }, { -771, 0, 1680, 27 }, - { -751, 0, 1679, 27 }, { -731, 0, 1677, 27 }, { -711, 0, 1675, 27 }, - { -691, 0, 1672, 27 }, { -672, 0, 1669, 27 }, { -652, 0, 1666, 27 }, - { -632, 0, 1662, 27 }, { -613, 0, 1658, 27 }, { -593, 0, 1654, 27 }, - { -574, 0, 1649, 27 }, { -554, 0, 1644, 27 }, { -535, 0, 1639, 27 }, - { -516, 0, 1634, 27 }, { -496, 0, 1628, 27 }, { -477, 0, 1622, 27 }, - { -458, 0, 1616, 27 }, { -439, 0, 1609, 27 }, { -421, 0, 1602, 27 }, - { -402, 0, 1595, 27 }, { -384, 0, 1587, 27 }, { -365, 0, 1579, 27 }, - { -347, 0, 1571, 27 }, { -329, 0, 1562, 27 }, { -312, 0, 1552, 27 }, - { -294, 0, 1542, 27 }, { -277, 0, 1532, 27 }, { -260, 0, 1521, 27 }, - { -244, 0, 1509, 27 }, { -228, 0, 1497, 27 }, { -212, 0, 1485, 27 }, - { -197, 0, 1472, 27 }, { -183, 0, 1458, 27 }, { -168, 0, 1444, 27 }, - { -155, 0, 1429, 27 }, { -141, 0, 1414, 27 }, { -129, 0, 1399, 27 }, - { -117, 0, 1383, 27 }, { -105, 0, 1367, 27 }, { -94, 0, 1350, 27 }, - { -84, 0, 1333, 27 }, { -74, 0, 1315, 27 }, { -65, 0, 1297, 27 }, - { -57, 0, 1279, 27 }, { -49, 0, 1261, 27 }, { -42, 0, 1242, 27 }, - { -36, 0, 1223, 27 }, { -30, 0, 1204, 27 }, { -26, 0, 1184, 27 }, - { -22, 0, 1165, 27 }, { -19, 0, 1145, 27 }, { -16, 0, 1125, 27 }, - { -14, 0, 1105, 27 }, { -11, 0, 1085, 27 }, { -10, 0, 1065, 27 }, - { -8, 0, 1045, 27 }, { -6, 0, 1025, 27 }, { -5, 0, 1006, 27 }, - { -4, 0, 986, 27 }, { -2, 0, 966, 27 }, { -1, 0, 946, 27 }, - { 0, 0, 926, 27 }, { 0, 0, 906, 27 }, { 1, 0, 886, 27 }, - { 1, 0, 866, 27 }, { 2, 0, 846, 27 }, { 3, 0, 826, 27 }, - { 4, 0, 806, 27 }, { 4, 0, 786, 27 }, { 5, 0, 766, 27 }, - { 5, 0, 746, 27 }, { 6, 0, 726, 27 }, { 6, 0, 706, 27 }, - { 7, 0, 686, 27 }, { 7, 0, 666, 27 }, { 8, 0, 646, 27 }, - { 8, 0, 626, 27 }, { 8, 0, 606, 27 }, { 9, 0, 586, 27 }, - { 9, 0, 566, 27 }, { 9, 0, 546, 27 }, { 9, 0, 526, 27 }, - { 10, 0, 506, 27 }, { 10, 0, 486, 1 }, { 10, 0, 466, 1 }, - { 10, 0, 445, 1 }, { 11, 0, 425, 1 }, { 11, 0, 405, 1 }, - { 11, 0, 385, 1 }, { 11, 0, 365, 1 }, { 11, 0, 345, 1 }, - { 12, 0, 325, 1 }, { 12, 0, 305, 1 }, { 12, 0, 285, 1 }, - { 12, 0, 265, 1 }, { 12, 0, 245, 1 }, { 13, 0, 225, 1 }, - { 13, 0, 205, 1 }, { 13, 0, 185, 1 }, { 13, 0, 165, 1 }, - { 13, 0, 145, 1 }, { 13, 0, 125, 1 }, { 14, 0, 105, 1 }, - { 14, 0, 85, 1 }, { 14, 0, 65, 1 }, { 14, 0, 45, 1 }, - { 14, 0, 25, 1 }, { 14, 0, 5, 1 }, { -32768, -32768, -32768, 0 }, +#include "courses/wario_stadium/d_course_wario_stadium_track_path.inc.c" }; +#endif // 0x84D0 Vtx d_course_wario_stadium_sign_head_model1[] = { @@ -2997,3 +2987,12 @@ TrackSections d_course_wario_stadium_addr[] = { { d_course_wario_stadium_packed_dl_9F18, RAMP, 255, 0x0000 }, { 0x00000000, 0, 0, 0x0000 }, }; + +#ifdef VERSION_JP /* VERSION_JP path order: JP puts the paths last */ +TrackPathPoint d_course_wario_stadium_unknown_path[] = { +#include "courses/wario_stadium/d_course_wario_stadium_unknown_path.inc.c" +}; +TrackPathPoint d_course_wario_stadium_track_path[] = { +#include "courses/wario_stadium/d_course_wario_stadium_track_path.inc.c" +}; +#endif diff --git a/courses/wario_stadium/d_course_wario_stadium_track_path.inc.c b/courses/wario_stadium/d_course_wario_stadium_track_path.inc.c new file mode 100644 index 0000000000..58a2d3cb86 --- /dev/null +++ b/courses/wario_stadium/d_course_wario_stadium_track_path.inc.c @@ -0,0 +1,467 @@ + { 13, 0, -9, 1 }, { 11, 0, -28, 1 }, { 11, 0, -48, 1 }, + { 10, 0, -68, 1 }, { 10, 0, -88, 1 }, { 9, 0, -108, 1 }, + { 9, 0, -128, 1 }, { 9, 0, -148, 1 }, { 8, 0, -168, 1 }, + { 8, 0, -189, 1 }, { 8, 0, -209, 1 }, { 8, 0, -229, 1 }, + { 8, 0, -249, 1 }, { 8, 1, -269, 2 }, { 7, 3, -289, 2 }, + { 7, 6, -309, 2 }, { 7, 9, -329, 2 }, { 7, 13, -349, 2 }, + { 7, 15, -369, 2 }, { 7, 15, -389, 2 }, { 7, 12, -409, 2 }, + { 7, 8, -429, 2 }, { 7, 4, -449, 2 }, { 6, 2, -469, 2 }, + { 6, 1, -489, 2 }, { 6, 0, -509, 2 }, { 6, 0, -529, 2 }, + { 6, 0, -549, 2 }, { 6, 1, -569, 2 }, { 6, 3, -589, 2 }, + { 6, 6, -609, 2 }, { 5, 9, -629, 2 }, { 5, 13, -649, 2 }, + { 5, 15, -669, 2 }, { 5, 15, -689, 2 }, { 5, 12, -709, 2 }, + { 5, 8, -729, 2 }, { 4, 4, -749, 2 }, { 4, 2, -769, 2 }, + { 4, 1, -789, 2 }, { 4, 0, -809, 2 }, { 4, 0, -829, 2 }, + { 4, 0, -849, 2 }, { 3, 1, -869, 2 }, { 3, 3, -889, 2 }, + { 3, 6, -909, 2 }, { 3, 9, -929, 2 }, { 3, 13, -949, 2 }, + { 2, 15, -969, 2 }, { 2, 15, -989, 2 }, { 2, 12, -1009, 2 }, + { 2, 8, -1029, 2 }, { 2, 4, -1049, 2 }, { 1, 2, -1069, 2 }, + { 1, 1, -1089, 2 }, { 1, 0, -1109, 2 }, { 1, 0, -1129, 2 }, + { 1, 0, -1149, 2 }, { 0, 1, -1169, 3 }, { 0, 3, -1189, 3 }, + { 0, 6, -1209, 3 }, { 0, 9, -1229, 3 }, { -1, 13, -1249, 3 }, + { -1, 15, -1269, 3 }, { -2, 15, -1289, 3 }, { -3, 12, -1309, 3 }, + { -4, 8, -1329, 3 }, { -5, 4, -1349, 3 }, { -6, 2, -1369, 3 }, + { -8, 1, -1389, 3 }, { -9, 0, -1409, 3 }, { -11, 0, -1429, 3 }, + { -12, 0, -1449, 3 }, { -14, 0, -1469, 3 }, { -16, 0, -1489, 3 }, + { -18, 0, -1509, 3 }, { -21, 0, -1529, 3 }, { -23, 0, -1548, 3 }, + { -26, 0, -1568, 3 }, { -29, 0, -1588, 3 }, { -33, 0, -1608, 3 }, + { -36, 0, -1627, 3 }, { -40, 0, -1647, 3 }, { -45, 0, -1666, 3 }, + { -50, 0, -1686, 3 }, { -56, 0, -1705, 3 }, { -63, 0, -1724, 3 }, + { -70, 0, -1742, 3 }, { -78, 0, -1761, 3 }, { -87, 0, -1779, 3 }, + { -96, 0, -1796, 3 }, { -106, 0, -1814, 3 }, { -117, 0, -1831, 3 }, + { -128, 0, -1847, 3 }, { -140, 0, -1863, 3 }, { -152, 0, -1879, 3 }, + { -165, 0, -1894, 3 }, { -179, 0, -1909, 3 }, { -193, 0, -1923, 3 }, + { -207, 0, -1937, 3 }, { -222, 0, -1950, 3 }, { -238, 0, -1963, 3 }, + { -254, 0, -1975, 3 }, { -270, 0, -1987, 3 }, { -286, 0, -1999, 3 }, + { -303, 0, -2010, 3 }, { -320, 0, -2020, 3 }, { -337, 0, -2031, 3 }, + { -354, 0, -2041, 3 }, { -372, 0, -2050, 3 }, { -390, 0, -2059, 3 }, + { -408, 0, -2068, 3 }, { -426, 0, -2076, 3 }, { -445, 0, -2083, 3 }, + { -463, 0, -2091, 3 }, { -482, 0, -2097, 3 }, { -501, 0, -2104, 3 }, + { -520, 0, -2109, 3 }, { -540, 0, -2115, 3 }, { -559, 0, -2119, 3 }, + { -579, 0, -2124, 3 }, { -598, 0, -2128, 3 }, { -618, 0, -2131, 3 }, + { -638, 0, -2134, 3 }, { -658, 0, -2137, 3 }, { -677, 0, -2139, 3 }, + { -697, 0, -2141, 3 }, { -717, 0, -2143, 3 }, { -737, 0, -2145, 3 }, + { -757, 0, -2147, 3 }, { -777, 0, -2148, 3 }, { -797, 0, -2149, 3 }, + { -817, 0, -2151, 3 }, { -837, 0, -2152, 3 }, { -857, 0, -2153, 3 }, + { -877, 0, -2153, 3 }, { -897, 0, -2154, 3 }, { -917, 0, -2155, 3 }, + { -937, 0, -2155, 3 }, { -957, 1, -2156, 4 }, { -977, 4, -2156, 4 }, + { -997, 7, -2157, 4 }, { -1017, 10, -2157, 4 }, { -1037, 13, -2157, 4 }, + { -1057, 17, -2157, 4 }, { -1077, 20, -2157, 4 }, { -1097, 24, -2157, 4 }, + { -1117, 29, -2157, 4 }, { -1137, 33, -2157, 4 }, { -1157, 39, -2157, 4 }, + { -1177, 45, -2157, 4 }, { -1197, 51, -2157, 4 }, { -1217, 57, -2156, 4 }, + { -1237, 65, -2156, 4 }, { -1257, 72, -2156, 4 }, { -1277, 80, -2156, 4 }, + { -1297, 85, -2156, 4 }, { -1317, 87, -2155, 4 }, { -1337, 85, -2155, 4 }, + { -1357, 77, -2155, 4 }, { -1377, 73, -2155, 4 }, { -1397, 69, -2154, 4 }, + { -1417, 65, -2154, 4 }, { -1437, 61, -2154, 4 }, { -1457, 57, -2154, 4 }, + { -1477, 53, -2153, 4 }, { -1497, 49, -2153, 4 }, { -1517, 45, -2153, 4 }, + { -1537, 41, -2152, 4 }, { -1557, 37, -2152, 4 }, { -1577, 33, -2152, 4 }, + { -1597, 29, -2151, 4 }, { -1617, 25, -2151, 4 }, { -1637, 21, -2151, 4 }, + { -1657, 17, -2150, 4 }, { -1677, 13, -2150, 4 }, { -1697, 9, -2149, 4 }, + { -1717, 0, -2149, 4 }, { -1737, 0, -2149, 4 }, { -1757, 0, -2148, 4 }, + { -1777, 0, -2148, 4 }, { -1797, 0, -2147, 4 }, { -1817, 0, -2147, 4 }, + { -1837, 0, -2146, 4 }, { -1857, 0, -2146, 5 }, { -1877, 0, -2145, 5 }, + { -1897, 0, -2144, 5 }, { -1917, 0, -2143, 5 }, { -1937, 0, -2142, 5 }, + { -1957, 0, -2141, 5 }, { -1977, 0, -2140, 5 }, { -1997, 0, -2138, 5 }, + { -2017, 0, -2137, 5 }, { -2037, 0, -2135, 5 }, { -2057, 0, -2133, 5 }, + { -2077, 0, -2131, 5 }, { -2097, 0, -2129, 5 }, { -2117, 0, -2126, 5 }, + { -2137, 0, -2124, 5 }, { -2156, 0, -2121, 5 }, { -2176, 0, -2118, 5 }, + { -2196, 0, -2114, 5 }, { -2216, 0, -2111, 5 }, { -2235, 0, -2107, 5 }, + { -2255, 0, -2102, 5 }, { -2274, 0, -2098, 5 }, { -2293, 0, -2092, 5 }, + { -2313, 0, -2087, 5 }, { -2332, 0, -2081, 5 }, { -2351, 0, -2074, 5 }, + { -2369, 0, -2067, 5 }, { -2388, 0, -2059, 5 }, { -2406, 0, -2051, 5 }, + { -2424, 0, -2042, 5 }, { -2441, 0, -2032, 5 }, { -2459, 0, -2022, 5 }, + { -2475, 0, -2011, 5 }, { -2492, 0, -2000, 5 }, { -2508, 0, -1988, 5 }, + { -2524, 0, -1976, 5 }, { -2539, 0, -1963, 5 }, { -2554, 0, -1949, 5 }, + { -2568, 0, -1935, 5 }, { -2582, 0, -1921, 5 }, { -2596, 0, -1906, 5 }, + { -2609, 0, -1891, 5 }, { -2621, 0, -1875, 5 }, { -2633, 0, -1860, 5 }, + { -2645, 0, -1843, 5 }, { -2657, 0, -1827, 5 }, { -2667, 0, -1810, 5 }, + { -2678, 0, -1793, 5 }, { -2688, 0, -1776, 5 }, { -2698, 0, -1758, 5 }, + { -2707, 0, -1741, 5 }, { -2716, 0, -1723, 5 }, { -2724, 0, -1705, 5 }, + { -2732, 0, -1686, 5 }, { -2739, 0, -1668, 5 }, { -2746, 0, -1649, 5 }, + { -2752, 0, -1630, 5 }, { -2758, 0, -1611, 5 }, { -2764, 0, -1591, 5 }, + { -2768, 0, -1572, 5 }, { -2773, 0, -1552, 5 }, { -2776, 0, -1533, 5 }, + { -2780, 0, -1513, 5 }, { -2782, 0, -1493, 5 }, { -2785, 0, -1473, 5 }, + { -2787, 0, -1453, 6 }, { -2790, 0, -1433, 6 }, { -2792, 0, -1414, 6 }, + { -2793, 0, -1394, 6 }, { -2795, 0, -1374, 6 }, { -2797, 0, -1354, 6 }, + { -2798, 0, -1334, 6 }, { -2800, 0, -1314, 6 }, { -2801, 0, -1294, 6 }, + { -2802, 0, -1274, 6 }, { -2803, 0, -1254, 6 }, { -2804, 0, -1234, 6 }, + { -2805, 0, -1214, 6 }, { -2806, 0, -1194, 6 }, { -2806, 0, -1174, 6 }, + { -2807, 0, -1154, 6 }, { -2807, 0, -1134, 6 }, { -2807, 0, -1114, 6 }, + { -2807, 0, -1094, 6 }, { -2807, 0, -1074, 6 }, { -2807, 0, -1054, 6 }, + { -2807, 0, -1034, 6 }, { -2807, 0, -1014, 6 }, { -2806, 0, -994, 6 }, + { -2805, 0, -974, 6 }, { -2804, 0, -954, 6 }, { -2802, 0, -934, 6 }, + { -2801, 0, -914, 6 }, { -2798, 0, -894, 6 }, { -2796, 0, -874, 6 }, + { -2792, 0, -854, 6 }, { -2789, 0, -835, 6 }, { -2784, 0, -815, 6 }, + { -2778, 0, -796, 6 }, { -2771, 0, -777, 6 }, { -2763, 0, -759, 6 }, + { -2753, 0, -742, 6 }, { -2741, 0, -726, 6 }, { -2727, 0, -711, 6 }, + { -2712, 0, -698, 6 }, { -2696, 0, -686, 6 }, { -2679, 0, -676, 6 }, + { -2661, 0, -666, 6 }, { -2643, 0, -658, 6 }, { -2624, 0, -652, 6 }, + { -2605, 0, -646, 6 }, { -2586, 0, -641, 6 }, { -2566, 0, -636, 6 }, + { -2547, 0, -631, 6 }, { -2528, 0, -626, 6 }, { -2508, 0, -620, 6 }, + { -2489, 0, -614, 6 }, { -2470, 0, -608, 6 }, { -2452, 0, -601, 6 }, + { -2433, 0, -594, 6 }, { -2414, 0, -586, 6 }, { -2396, 0, -578, 6 }, + { -2379, 0, -568, 6 }, { -2362, 0, -557, 6 }, { -2347, 0, -544, 6 }, + { -2334, 0, -528, 6 }, { -2323, 0, -512, 6 }, { -2315, 0, -494, 6 }, + { -2308, 0, -475, 6 }, { -2303, 0, -455, 6 }, { -2300, 0, -436, 6 }, + { -2298, 0, -416, 6 }, { -2296, 0, -396, 6 }, { -2294, 0, -376, 6 }, + { -2293, 0, -356, 6 }, { -2292, 0, -336, 6 }, { -2291, 0, -316, 6 }, + { -2291, 0, -296, 6 }, { -2290, 0, -276, 6 }, { -2290, 0, -256, 6 }, + { -2289, 0, -236, 7 }, { -2289, 0, -216, 7 }, { -2289, 0, -196, 7 }, + { -2289, 0, -176, 7 }, { -2289, 0, -156, 7 }, { -2289, 0, -136, 7 }, + { -2290, 0, -116, 7 }, { -2290, 0, -96, 7 }, { -2289, 0, -76, 7 }, + { -2289, 0, -56, 7 }, { -2288, 0, -36, 7 }, { -2286, 0, -16, 7 }, + { -2284, 0, 3, 7 }, { -2282, 0, 23, 7 }, { -2279, 0, 43, 7 }, + { -2275, 0, 63, 7 }, { -2271, 0, 82, 7 }, { -2265, 0, 101, 7 }, + { -2258, 0, 120, 7 }, { -2248, 0, 138, 7 }, { -2237, 0, 154, 7 }, + { -2224, 0, 169, 7 }, { -2209, 0, 182, 7 }, { -2193, 0, 194, 7 }, + { -2176, 0, 204, 7 }, { -2157, 0, 212, 7 }, { -2138, 0, 219, 7 }, + { -2119, 0, 224, 7 }, { -2100, 0, 228, 7 }, { -2080, 0, 231, 7 }, + { -2060, 0, 233, 7 }, { -2040, 0, 234, 7 }, { -2020, 0, 234, 7 }, + { -2000, 0, 234, 7 }, { -1980, 0, 232, 7 }, { -1960, 0, 230, 7 }, + { -1940, 0, 227, 7 }, { -1921, 0, 224, 7 }, { -1901, 0, 220, 7 }, + { -1881, 0, 215, 7 }, { -1862, 0, 210, 7 }, { -1843, 0, 205, 7 }, + { -1824, 0, 198, 7 }, { -1805, 0, 190, 7 }, { -1788, 0, 181, 7 }, + { -1770, 0, 171, 7 }, { -1754, 0, 159, 7 }, { -1739, 0, 146, 7 }, + { -1726, 0, 131, 7 }, { -1715, 0, 114, 7 }, { -1705, 0, 97, 7 }, + { -1697, 0, 78, 7 }, { -1692, 0, 59, 7 }, { -1687, 0, 40, 7 }, + { -1684, 0, 20, 7 }, { -1681, 0, 0, 7 }, { -1679, 0, -19, 7 }, + { -1677, 0, -39, 7 }, { -1675, 1, -59, 7 }, { -1673, 3, -78, 7 }, + { -1672, 9, -98, 7 }, { -1671, 16, -118, 7 }, { -1671, 18, -138, 7 }, + { -1670, 20, -158, 7 }, { -1670, 18, -178, 7 }, { -1669, 16, -198, 7 }, + { -1669, 9, -218, 7 }, { -1669, 3, -238, 7 }, { -1669, 1, -259, 7 }, + { -1669, 0, -279, 7 }, { -1670, 2, -299, 7 }, { -1670, 6, -319, 7 }, + { -1670, 13, -339, 7 }, { -1671, 17, -359, 7 }, { -1671, 20, -379, 7 }, + { -1672, 19, -399, 7 }, { -1673, 17, -419, 7 }, { -1675, 12, -438, 7 }, + { -1676, 6, -458, 7 }, { -1678, 2, -478, 7 }, { -1681, 0, -498, 7 }, + { -1683, 0, -518, 8 }, { -1686, 0, -538, 8 }, { -1690, 0, -558, 8 }, + { -1694, 0, -577, 8 }, { -1698, 0, -597, 8 }, { -1703, 0, -616, 8 }, + { -1709, 0, -635, 8 }, { -1715, 0, -654, 8 }, { -1723, 0, -673, 8 }, + { -1731, 0, -691, 8 }, { -1740, 0, -709, 8 }, { -1751, 0, -725, 8 }, + { -1764, 0, -741, 8 }, { -1778, 0, -755, 8 }, { -1793, 0, -768, 8 }, + { -1810, 0, -780, 8 }, { -1827, 0, -790, 8 }, { -1845, 0, -798, 8 }, + { -1863, 0, -806, 8 }, { -1882, 0, -813, 8 }, { -1901, 0, -818, 8 }, + { -1921, 0, -823, 8 }, { -1940, 0, -828, 8 }, { -1960, 0, -831, 8 }, + { -1980, 0, -834, 8 }, { -2000, 0, -837, 8 }, { -2019, 0, -839, 8 }, + { -2039, 0, -841, 8 }, { -2059, 0, -842, 8 }, { -2079, 0, -843, 8 }, + { -2099, 0, -844, 8 }, { -2119, 0, -844, 8 }, { -2139, 0, -845, 8 }, + { -2159, 0, -845, 8 }, { -2179, 0, -845, 8 }, { -2200, 0, -845, 8 }, + { -2220, 0, -846, 8 }, { -2240, 0, -846, 8 }, { -2260, 0, -847, 8 }, + { -2280, 0, -848, 8 }, { -2299, 0, -849, 8 }, { -2319, 0, -851, 9 }, + { -2339, 0, -853, 9 }, { -2359, 0, -855, 9 }, { -2379, 0, -857, 9 }, + { -2399, 0, -860, 9 }, { -2419, 0, -864, 9 }, { -2438, 0, -868, 9 }, + { -2457, 0, -873, 9 }, { -2476, 0, -880, 9 }, { -2495, 0, -887, 9 }, + { -2512, 0, -897, 9 }, { -2528, 0, -909, 9 }, { -2543, 0, -923, 9 }, + { -2556, 0, -938, 9 }, { -2567, 0, -954, 9 }, { -2576, 0, -972, 9 }, + { -2583, 0, -991, 9 }, { -2589, 0, -1010, 9 }, { -2592, 0, -1030, 9 }, + { -2595, 0, -1050, 9 }, { -2596, 0, -1070, 9 }, { -2597, 0, -1090, 9 }, + { -2598, 0, -1110, 9 }, { -2598, 0, -1130, 9 }, { -2597, 0, -1150, 9 }, + { -2597, 0, -1170, 9 }, { -2596, 0, -1190, 9 }, { -2595, 0, -1210, 9 }, + { -2593, 0, -1230, 9 }, { -2592, 0, -1250, 9 }, { -2590, 0, -1270, 9 }, + { -2588, 0, -1290, 9 }, { -2586, 0, -1309, 9 }, { -2584, 0, -1329, 9 }, + { -2582, 0, -1349, 9 }, { -2579, 0, -1369, 9 }, { -2577, 0, -1389, 9 }, + { -2574, 0, -1409, 9 }, { -2570, 0, -1428, 10 }, { -2566, 0, -1448, 10 }, + { -2562, 0, -1468, 10 }, { -2558, 0, -1487, 10 }, { -2553, 0, -1507, 10 }, + { -2547, 0, -1526, 10 }, { -2541, 0, -1545, 10 }, { -2534, 0, -1564, 10 }, + { -2527, 0, -1582, 10 }, { -2520, 0, -1601, 10 }, { -2511, 0, -1619, 10 }, + { -2502, 0, -1637, 10 }, { -2493, 0, -1655, 10 }, { -2483, 0, -1672, 10 }, + { -2472, 0, -1688, 10 }, { -2460, 0, -1705, 10 }, { -2448, 0, -1721, 10 }, + { -2435, 0, -1736, 10 }, { -2422, 0, -1751, 10 }, { -2408, 0, -1765, 10 }, + { -2393, 0, -1779, 10 }, { -2378, 0, -1792, 10 }, { -2362, 0, -1805, 10 }, + { -2346, 0, -1816, 10 }, { -2329, 0, -1827, 10 }, { -2312, 0, -1837, 10 }, + { -2294, 0, -1847, 10 }, { -2276, 0, -1855, 10 }, { -2258, 0, -1863, 10 }, + { -2239, 0, -1869, 10 }, { -2220, 0, -1875, 10 }, { -2200, 0, -1880, 10 }, + { -2181, 0, -1884, 10 }, { -2161, 0, -1888, 10 }, { -2141, 0, -1892, 10 }, + { -2122, 0, -1895, 10 }, { -2102, 0, -1898, 10 }, { -2082, 0, -1900, 10 }, + { -2062, 0, -1902, 10 }, { -2042, 0, -1904, 10 }, { -2022, 0, -1906, 10 }, + { -2002, 0, -1907, 10 }, { -1982, 0, -1908, 10 }, { -1962, 0, -1909, 10 }, + { -1942, 0, -1910, 10 }, { -1922, 0, -1911, 10 }, { -1902, 0, -1911, 10 }, + { -1882, 0, -1912, 10 }, { -1862, 0, -1912, 10 }, { -1842, 0, -1912, 11 }, + { -1822, 2, -1912, 11 }, { -1802, 3, -1913, 11 }, { -1782, 6, -1913, 11 }, + { -1762, 11, -1913, 11 }, { -1742, 16, -1913, 11 }, { -1722, 21, -1913, 11 }, + { -1702, 27, -1913, 11 }, { -1682, 33, -1913, 11 }, { -1662, 40, -1914, 11 }, + { -1642, 46, -1914, 11 }, { -1622, 52, -1914, 11 }, { -1602, 59, -1914, 11 }, + { -1582, 65, -1914, 11 }, { -1562, 70, -1914, 11 }, { -1542, 70, -1914, 11 }, + { -1522, 67, -1914, 11 }, { -1502, 63, -1914, 11 }, { -1482, 53, -1914, 11 }, + { -1462, 49, -1914, 11 }, { -1442, 45, -1914, 11 }, { -1422, 41, -1914, 11 }, + { -1402, 37, -1914, 11 }, { -1382, 33, -1914, 11 }, { -1362, 29, -1914, 11 }, + { -1342, 25, -1914, 11 }, { -1322, 21, -1914, 11 }, { -1302, 28, -1915, 11 }, + { -1282, 37, -1914, 11 }, { -1262, 44, -1914, 11 }, { -1242, 50, -1914, 11 }, + { -1222, 53, -1914, 11 }, { -1202, 55, -1914, 11 }, { -1182, 55, -1914, 11 }, + { -1162, 52, -1914, 11 }, { -1142, 49, -1913, 11 }, { -1122, 42, -1913, 11 }, + { -1102, 35, -1913, 11 }, { -1082, 27, -1912, 11 }, { -1062, 21, -1912, 11 }, + { -1042, 17, -1912, 11 }, { -1022, 12, -1911, 11 }, { -1002, 8, -1910, 11 }, + { -982, 5, -1910, 11 }, { -962, 1, -1909, 11 }, { -942, 0, -1908, 12 }, + { -922, 0, -1907, 12 }, { -902, 0, -1906, 12 }, { -882, 0, -1905, 12 }, + { -862, 0, -1904, 12 }, { -842, 0, -1902, 12 }, { -822, 0, -1900, 12 }, + { -802, 0, -1898, 12 }, { -782, 0, -1895, 12 }, { -763, 0, -1891, 12 }, + { -743, 0, -1887, 12 }, { -724, 0, -1882, 12 }, { -704, 0, -1877, 12 }, + { -685, 0, -1871, 12 }, { -666, 0, -1864, 12 }, { -648, 0, -1857, 12 }, + { -629, 0, -1849, 12 }, { -611, 0, -1841, 12 }, { -593, 0, -1832, 12 }, + { -575, 0, -1823, 12 }, { -558, 0, -1813, 12 }, { -541, 0, -1802, 12 }, + { -525, 0, -1790, 12 }, { -509, 0, -1778, 12 }, { -494, 0, -1765, 12 }, + { -480, 0, -1750, 12 }, { -467, 0, -1735, 12 }, { -455, 0, -1719, 12 }, + { -445, 0, -1702, 12 }, { -435, 0, -1685, 12 }, { -426, 0, -1667, 12 }, + { -419, 0, -1648, 12 }, { -413, 0, -1629, 12 }, { -408, 0, -1610, 12 }, + { -403, 0, -1590, 12 }, { -400, 0, -1570, 12 }, { -397, 1, -1551, 12 }, + { -395, 1, -1531, 12 }, { -393, 1, -1511, 12 }, { -391, 1, -1491, 12 }, + { -390, 1, -1471, 12 }, { -388, 2, -1451, 12 }, { -387, 0, -1431, 12 }, + { -386, 0, -1411, 12 }, { -385, 0, -1391, 12 }, { -384, 0, -1371, 12 }, + { -383, 0, -1351, 12 }, { -382, 0, -1331, 12 }, { -381, 0, -1311, 12 }, + { -380, 0, -1291, 12 }, { -380, 3, -1271, 12 }, { -379, 6, -1251, 12 }, + { -379, 8, -1231, 12 }, { -378, 11, -1211, 12 }, { -378, 14, -1191, 12 }, + { -377, 16, -1171, 12 }, { -377, 19, -1151, 12 }, { -376, 17, -1131, 13 }, + { -376, 14, -1111, 13 }, { -376, 12, -1091, 13 }, { -376, 9, -1071, 13 }, + { -375, 6, -1051, 13 }, { -375, 4, -1031, 13 }, { -375, 1, -1011, 13 }, + { -375, 0, -991, 13 }, { -375, 0, -971, 13 }, { -375, 0, -951, 13 }, + { -374, 0, -931, 13 }, { -374, 0, -911, 13 }, { -374, 0, -891, 13 }, + { -374, 0, -871, 13 }, { -374, 0, -851, 13 }, { -374, 0, -831, 13 }, + { -374, 0, -811, 13 }, { -374, 0, -791, 13 }, { -374, 0, -771, 13 }, + { -374, 0, -751, 13 }, { -374, 0, -731, 13 }, { -374, 0, -711, 13 }, + { -374, 1, -690, 13 }, { -374, 4, -670, 13 }, { -374, 8, -650, 13 }, + { -374, 11, -630, 13 }, { -374, 14, -610, 13 }, { -375, 18, -590, 13 }, + { -375, 21, -570, 13 }, { -375, 24, -550, 13 }, { -375, 21, -530, 13 }, + { -375, 18, -510, 13 }, { -375, 15, -490, 13 }, { -376, 11, -470, 13 }, + { -376, 8, -450, 13 }, { -376, 5, -430, 13 }, { -377, 1, -410, 13 }, + { -377, 0, -390, 13 }, { -378, 0, -370, 13 }, { -378, 0, -350, 13 }, + { -379, 0, -330, 13 }, { -379, 0, -310, 13 }, { -380, 0, -290, 13 }, + { -381, 0, -270, 13 }, { -382, 0, -250, 13 }, { -383, 0, -230, 14 }, + { -386, 0, -211, 14 }, { -388, 0, -191, 14 }, { -392, 0, -171, 14 }, + { -396, 0, -152, 14 }, { -401, 0, -132, 14 }, { -407, 0, -113, 14 }, + { -414, 0, -94, 14 }, { -422, 0, -76, 14 }, { -431, 0, -58, 14 }, + { -441, 0, -41, 14 }, { -452, 0, -24, 14 }, { -464, 0, -8, 14 }, + { -477, 0, 6, 14 }, { -491, 0, 21, 14 }, { -506, 0, 34, 14 }, + { -523, 0, 45, 14 }, { -540, 0, 55, 14 }, { -558, 0, 64, 14 }, + { -577, 0, 71, 14 }, { -596, 0, 76, 14 }, { -616, 0, 79, 14 }, + { -636, 0, 81, 14 }, { -656, 0, 81, 14 }, { -676, 0, 80, 14 }, + { -696, 0, 77, 14 }, { -715, 0, 74, 14 }, { -735, 0, 70, 14 }, + { -754, 0, 65, 14 }, { -774, 0, 60, 14 }, { -793, 0, 54, 14 }, + { -812, 0, 47, 14 }, { -830, 0, 38, 14 }, { -847, 0, 28, 14 }, + { -863, 0, 16, 14 }, { -877, 0, 2, 14 }, { -887, 0, -14, 14 }, + { -896, 0, -32, 14 }, { -902, 0, -51, 14 }, { -908, 0, -70, 14 }, + { -913, 0, -90, 14 }, { -917, 0, -109, 14 }, { -921, 0, -129, 14 }, + { -924, 0, -149, 14 }, { -927, 0, -169, 14 }, { -930, 0, -188, 14 }, + { -932, 0, -208, 14 }, { -934, 0, -228, 14 }, { -935, 0, -248, 14 }, + { -937, 0, -268, 15 }, { -938, 0, -288, 15 }, { -939, 0, -308, 15 }, + { -940, 0, -328, 15 }, { -941, 1, -348, 15 }, { -942, 2, -368, 15 }, + { -943, 3, -388, 15 }, { -943, 6, -408, 15 }, { -944, 10, -428, 15 }, + { -945, 14, -448, 15 }, { -945, 16, -468, 15 }, { -945, 15, -488, 15 }, + { -946, 13, -508, 15 }, { -946, 9, -528, 15 }, { -946, 4, -548, 15 }, + { -947, 3, -568, 15 }, { -947, 1, -588, 15 }, { -947, 0, -608, 15 }, + { -947, 0, -628, 15 }, { -947, 4, -648, 15 }, { -947, 7, -668, 15 }, + { -947, 11, -688, 15 }, { -947, 14, -708, 15 }, { -947, 19, -728, 15 }, + { -947, 24, -748, 15 }, { -947, 31, -768, 15 }, { -947, 35, -788, 15 }, + { -947, 37, -808, 15 }, { -947, 34, -828, 15 }, { -947, 30, -848, 15 }, + { -947, 23, -868, 15 }, { -947, 16, -888, 15 }, { -947, 9, -908, 15 }, + { -947, 3, -928, 15 }, { -947, 1, -948, 15 }, { -947, 0, -968, 15 }, + { -947, 2, -988, 15 }, { -947, 6, -1008, 15 }, { -947, 10, -1028, 15 }, + { -947, 14, -1048, 15 }, { -947, 16, -1068, 15 }, { -947, 15, -1089, 15 }, + { -947, 13, -1109, 15 }, { -947, 9, -1129, 15 }, { -947, 4, -1149, 15 }, + { -948, 2, -1169, 16 }, { -948, 1, -1189, 16 }, { -948, 0, -1209, 16 }, + { -948, 0, -1229, 16 }, { -949, 0, -1249, 16 }, { -949, 0, -1269, 16 }, + { -950, 0, -1289, 16 }, { -951, 0, -1309, 16 }, { -951, 0, -1329, 16 }, + { -952, 0, -1349, 16 }, { -953, 0, -1369, 16 }, { -954, 0, -1389, 16 }, + { -956, 0, -1409, 16 }, { -958, 0, -1428, 16 }, { -961, 0, -1448, 16 }, + { -965, 0, -1468, 16 }, { -971, 0, -1487, 16 }, { -978, 0, -1505, 16 }, + { -988, 0, -1523, 16 }, { -998, 0, -1540, 16 }, { -1011, 0, -1555, 16 }, + { -1026, 0, -1569, 16 }, { -1042, 0, -1580, 16 }, { -1060, 0, -1590, 16 }, + { -1078, 0, -1598, 16 }, { -1097, 0, -1604, 16 }, { -1117, 0, -1609, 16 }, + { -1136, 0, -1612, 16 }, { -1156, 0, -1613, 16 }, { -1176, 0, -1613, 16 }, + { -1196, 0, -1610, 16 }, { -1216, 0, -1605, 16 }, { -1235, 0, -1599, 16 }, + { -1252, 0, -1589, 16 }, { -1268, 0, -1577, 16 }, { -1282, 0, -1563, 16 }, + { -1294, 0, -1547, 16 }, { -1305, 0, -1530, 16 }, { -1313, 0, -1512, 16 }, + { -1320, 0, -1493, 16 }, { -1325, 0, -1474, 16 }, { -1330, 0, -1454, 16 }, + { -1334, 0, -1435, 16 }, { -1336, 0, -1415, 16 }, { -1339, 0, -1395, 16 }, + { -1341, 0, -1375, 16 }, { -1342, 0, -1355, 16 }, { -1344, 0, -1335, 16 }, + { -1345, 0, -1315, 16 }, { -1347, 0, -1295, 16 }, { -1348, 0, -1275, 16 }, + { -1349, 0, -1255, 16 }, { -1350, 0, -1235, 16 }, { -1350, 0, -1215, 16 }, + { -1351, 0, -1195, 16 }, { -1352, 0, -1175, 16 }, { -1353, 0, -1155, 16 }, + { -1353, 2, -1135, 17 }, { -1354, 9, -1115, 17 }, { -1354, 11, -1095, 17 }, + { -1355, 10, -1075, 17 }, { -1355, 3, -1055, 17 }, { -1355, 0, -1035, 17 }, + { -1356, 5, -1015, 17 }, { -1356, 10, -995, 17 }, { -1356, 11, -975, 17 }, + { -1357, 7, -955, 17 }, { -1357, 2, -935, 17 }, { -1357, 1, -915, 17 }, + { -1357, 7, -895, 17 }, { -1357, 11, -875, 17 }, { -1357, 10, -855, 17 }, + { -1357, 5, -835, 17 }, { -1358, 0, -815, 17 }, { -1358, 3, -795, 17 }, + { -1358, 9, -775, 17 }, { -1358, 11, -755, 17 }, { -1358, 9, -735, 17 }, + { -1358, 3, -715, 17 }, { -1358, 0, -695, 17 }, { -1358, 5, -675, 17 }, + { -1358, 10, -655, 17 }, { -1358, 11, -635, 17 }, { -1358, 7, -615, 17 }, + { -1358, 1, -595, 17 }, { -1358, 2, -575, 17 }, { -1358, 8, -555, 17 }, + { -1358, 11, -535, 17 }, { -1358, 10, -515, 17 }, { -1358, 4, -495, 17 }, + { -1358, 0, -475, 17 }, { -1358, 0, -455, 17 }, { -1358, 0, -435, 17 }, + { -1358, 0, -415, 17 }, { -1358, 0, -395, 17 }, { -1358, 0, -375, 17 }, + { -1358, 0, -355, 17 }, { -1358, 0, -335, 17 }, { -1358, 0, -315, 17 }, + { -1358, 0, -295, 17 }, { -1358, 0, -275, 17 }, { -1358, 0, -255, 17 }, + { -1358, -1, -235, 18 }, { -1358, -2, -215, 18 }, { -1358, -4, -195, 18 }, + { -1358, -5, -175, 18 }, { -1358, -7, -155, 18 }, { -1358, -9, -135, 18 }, + { -1358, -10, -115, 18 }, { -1358, -12, -95, 18 }, { -1358, -14, -75, 18 }, + { -1358, -16, -55, 18 }, { -1358, -17, -35, 18 }, { -1357, -19, -15, 18 }, + { -1357, -21, 4, 18 }, { -1357, -25, 24, 18 }, { -1357, -28, 44, 18 }, + { -1357, -31, 64, 18 }, { -1357, -35, 84, 18 }, { -1357, -38, 104, 18 }, + { -1357, -41, 124, 18 }, { -1357, -45, 144, 18 }, { -1357, -48, 164, 18 }, + { -1357, -52, 184, 18 }, { -1357, -55, 204, 18 }, { -1357, -58, 224, 18 }, + { -1356, -62, 244, 18 }, { -1356, -63, 264, 18 }, { -1356, -65, 284, 18 }, + { -1356, -66, 305, 18 }, { -1356, -68, 325, 18 }, { -1356, -69, 345, 18 }, + { -1356, -70, 365, 18 }, { -1356, -72, 385, 18 }, { -1356, -73, 405, 19 }, + { -1356, -73, 425, 19 }, { -1355, -73, 445, 19 }, { -1355, -73, 465, 19 }, + { -1355, -73, 485, 19 }, { -1355, -73, 505, 19 }, { -1355, -73, 525, 19 }, + { -1355, -73, 545, 19 }, { -1355, -71, 565, 19 }, { -1355, -70, 585, 19 }, + { -1355, -69, 605, 19 }, { -1354, -67, 625, 19 }, { -1354, -66, 645, 19 }, + { -1354, -65, 665, 19 }, { -1354, -63, 685, 19 }, { -1354, -62, 705, 19 }, + { -1354, -59, 725, 19 }, { -1354, -56, 745, 19 }, { -1354, -53, 765, 19 }, + { -1354, -51, 785, 19 }, { -1353, -48, 805, 19 }, { -1353, -45, 825, 19 }, + { -1353, -42, 845, 19 }, { -1353, -39, 865, 19 }, { -1353, -37, 885, 19 }, + { -1353, -34, 905, 19 }, { -1353, -31, 925, 19 }, { -1353, -28, 945, 19 }, + { -1352, -25, 965, 19 }, { -1352, -23, 985, 19 }, { -1352, -20, 1005, 20 }, + { -1352, -19, 1025, 20 }, { -1352, -17, 1045, 20 }, { -1352, -16, 1065, 20 }, + { -1352, -14, 1085, 20 }, { -1352, -13, 1105, 20 }, { -1351, -11, 1125, 20 }, + { -1351, -10, 1145, 20 }, { -1351, -9, 1165, 20 }, { -1351, -8, 1185, 20 }, + { -1351, -8, 1205, 20 }, { -1351, -7, 1225, 20 }, { -1350, -6, 1245, 20 }, + { -1350, -6, 1265, 20 }, { -1350, -5, 1285, 20 }, { -1351, -4, 1305, 20 }, + { -1351, -4, 1325, 20 }, { -1352, -3, 1345, 20 }, { -1353, -2, 1365, 20 }, + { -1354, -2, 1385, 20 }, { -1355, -1, 1405, 20 }, { -1357, 0, 1425, 20 }, + { -1359, 0, 1445, 20 }, { -1361, 0, 1465, 20 }, { -1365, 0, 1484, 20 }, + { -1369, 0, 1504, 20 }, { -1374, 0, 1523, 20 }, { -1381, 0, 1542, 20 }, + { -1389, 0, 1560, 20 }, { -1399, 0, 1578, 20 }, { -1411, 0, 1594, 20 }, + { -1424, 0, 1609, 20 }, { -1439, 0, 1622, 20 }, { -1456, 0, 1634, 20 }, + { -1473, 0, 1643, 20 }, { -1492, 0, 1651, 20 }, { -1511, 0, 1656, 20 }, + { -1531, 0, 1660, 20 }, { -1550, 0, 1662, 20 }, { -1570, 0, 1665, 20 }, + { -1590, 0, 1666, 20 }, { -1610, 0, 1668, 20 }, { -1630, 0, 1669, 20 }, + { -1650, 0, 1669, 20 }, { -1670, 0, 1670, 20 }, { -1690, 0, 1670, 20 }, + { -1710, 0, 1670, 20 }, { -1730, 0, 1671, 20 }, { -1750, 0, 1671, 20 }, + { -1770, 0, 1670, 20 }, { -1790, 0, 1670, 20 }, { -1810, 0, 1670, 20 }, + { -1830, 0, 1670, 20 }, { -1850, 0, 1669, 20 }, { -1870, 0, 1669, 20 }, + { -1890, 0, 1668, 20 }, { -1910, 0, 1667, 20 }, { -1930, 0, 1666, 20 }, + { -1950, 0, 1665, 20 }, { -1970, 0, 1664, 20 }, { -1990, 0, 1663, 20 }, + { -2010, 0, 1662, 20 }, { -2030, 0, 1660, 20 }, { -2050, 0, 1658, 20 }, + { -2070, 0, 1657, 20 }, { -2090, 0, 1655, 20 }, { -2110, 0, 1652, 20 }, + { -2130, 0, 1650, 20 }, { -2150, 0, 1647, 20 }, { -2169, 0, 1644, 20 }, + { -2189, 0, 1641, 20 }, { -2209, 0, 1638, 21 }, { -2229, 0, 1634, 21 }, + { -2248, 0, 1630, 21 }, { -2268, 0, 1626, 21 }, { -2287, 0, 1621, 21 }, + { -2307, 0, 1616, 21 }, { -2326, 0, 1611, 21 }, { -2345, 0, 1605, 21 }, + { -2364, 0, 1599, 21 }, { -2383, 0, 1592, 21 }, { -2401, 0, 1584, 21 }, + { -2420, 0, 1576, 21 }, { -2438, 0, 1567, 21 }, { -2455, 0, 1558, 21 }, + { -2473, 0, 1548, 21 }, { -2490, 0, 1538, 21 }, { -2506, 0, 1527, 21 }, + { -2523, 0, 1515, 21 }, { -2539, 0, 1503, 21 }, { -2554, 0, 1490, 21 }, + { -2569, 0, 1477, 21 }, { -2584, 0, 1463, 21 }, { -2598, 0, 1449, 21 }, + { -2611, 0, 1434, 21 }, { -2625, 0, 1419, 21 }, { -2637, 0, 1404, 21 }, + { -2649, 0, 1388, 21 }, { -2661, 0, 1372, 21 }, { -2672, 0, 1355, 21 }, + { -2682, 0, 1338, 21 }, { -2692, 0, 1320, 21 }, { -2701, 0, 1303, 21 }, + { -2710, 0, 1285, 21 }, { -2718, 0, 1266, 21 }, { -2726, 0, 1248, 21 }, + { -2733, 0, 1229, 21 }, { -2740, 0, 1210, 21 }, { -2746, 0, 1191, 21 }, + { -2752, 0, 1172, 21 }, { -2758, 0, 1153, 21 }, { -2763, 0, 1134, 21 }, + { -2767, 0, 1114, 21 }, { -2771, 0, 1095, 21 }, { -2775, 0, 1075, 21 }, + { -2779, 0, 1055, 21 }, { -2782, 0, 1035, 22 }, { -2784, 0, 1016, 22 }, + { -2787, 0, 996, 22 }, { -2789, 0, 976, 22 }, { -2792, 0, 956, 22 }, + { -2794, 0, 936, 22 }, { -2796, 0, 916, 22 }, { -2797, 0, 896, 22 }, + { -2799, 0, 876, 22 }, { -2800, 0, 856, 22 }, { -2801, 0, 836, 22 }, + { -2802, 0, 816, 22 }, { -2802, 0, 796, 22 }, { -2801, 0, 776, 22 }, + { -2801, 0, 756, 22 }, { -2799, 0, 736, 22 }, { -2796, 0, 716, 22 }, + { -2792, 0, 697, 22 }, { -2785, 0, 678, 22 }, { -2777, 0, 660, 22 }, + { -2766, 0, 643, 22 }, { -2753, 0, 628, 22 }, { -2738, 0, 614, 22 }, + { -2722, 0, 603, 22 }, { -2704, 0, 593, 22 }, { -2686, 0, 585, 22 }, + { -2667, 0, 579, 22 }, { -2648, 0, 574, 22 }, { -2628, 0, 570, 22 }, + { -2608, 0, 567, 22 }, { -2589, 0, 564, 22 }, { -2569, 0, 562, 22 }, + { -2549, 0, 560, 22 }, { -2529, 0, 559, 22 }, { -2509, 0, 558, 22 }, + { -2489, 0, 557, 22 }, { -2469, 0, 556, 22 }, { -2449, 0, 556, 22 }, + { -2429, 0, 555, 22 }, { -2409, 0, 555, 22 }, { -2389, 0, 555, 22 }, + { -2369, 0, 555, 22 }, { -2349, 0, 555, 22 }, { -2329, 0, 555, 22 }, + { -2309, 0, 555, 22 }, { -2289, 0, 555, 22 }, { -2269, 0, 556, 22 }, + { -2249, 0, 556, 22 }, { -2229, 0, 556, 22 }, { -2209, 0, 556, 23 }, + { -2188, 0, 556, 23 }, { -2168, 0, 556, 23 }, { -2148, 0, 557, 23 }, + { -2128, 0, 557, 23 }, { -2108, 0, 557, 23 }, { -2088, 0, 557, 23 }, + { -2068, 2, 557, 23 }, { -2048, 3, 557, 23 }, { -2028, 4, 557, 23 }, + { -2008, 6, 557, 23 }, { -1988, 7, 557, 23 }, { -1968, 8, 557, 23 }, + { -1948, 10, 557, 23 }, { -1928, 12, 557, 23 }, { -1908, 14, 557, 23 }, + { -1888, 16, 557, 23 }, { -1868, 18, 557, 23 }, { -1848, 20, 557, 23 }, + { -1828, 23, 557, 23 }, { -1808, 25, 558, 23 }, { -1788, 28, 558, 23 }, + { -1768, 31, 558, 23 }, { -1748, 35, 558, 23 }, { -1728, 39, 558, 23 }, + { -1708, 42, 558, 23 }, { -1688, 46, 558, 23 }, { -1668, 49, 558, 23 }, + { -1648, 53, 558, 23 }, { -1628, 57, 558, 23 }, { -1608, 60, 558, 23 }, + { -1588, 64, 558, 23 }, { -1568, 67, 558, 23 }, { -1548, 71, 558, 23 }, + { -1528, 74, 558, 23 }, { -1508, 78, 558, 23 }, { -1488, 81, 558, 23 }, + { -1468, 81, 558, 23 }, { -1448, 81, 558, 23 }, { -1428, 81, 559, 19 }, + { -1408, 81, 559, 19 }, { -1388, 81, 559, 19 }, { -1368, 81, 559, 19 }, + { -1348, 81, 559, 19 }, { -1328, 81, 559, 19 }, { -1308, 81, 559, 19 }, + { -1288, 81, 559, 19 }, { -1268, 81, 560, 19 }, { -1248, 81, 560, 19 }, + { -1228, 81, 560, 24 }, { -1208, 77, 560, 24 }, { -1188, 73, 560, 24 }, + { -1168, 69, 560, 24 }, { -1148, 65, 561, 24 }, { -1128, 61, 561, 24 }, + { -1108, 57, 561, 24 }, { -1088, 53, 561, 24 }, { -1068, 49, 561, 24 }, + { -1048, 45, 562, 24 }, { -1028, 41, 562, 24 }, { -1008, 37, 562, 24 }, + { -988, 33, 562, 24 }, { -968, 29, 562, 24 }, { -948, 25, 563, 24 }, + { -928, 21, 563, 24 }, { -908, 17, 563, 24 }, { -888, 13, 563, 24 }, + { -868, 8, 564, 24 }, { -848, 9, 564, 24 }, { -828, 10, 564, 24 }, + { -808, 12, 565, 24 }, { -788, 13, 565, 24 }, { -768, 15, 565, 24 }, + { -748, 16, 566, 24 }, { -728, 14, 566, 24 }, { -708, 13, 567, 24 }, + { -688, 12, 567, 24 }, { -668, 11, 567, 24 }, { -648, 10, 568, 24 }, + { -628, 10, 568, 24 }, { -608, 10, 569, 24 }, { -588, 10, 570, 24 }, + { -568, 10, 570, 24 }, { -548, 10, 571, 24 }, { -528, 10, 572, 24 }, + { -508, 10, 573, 24 }, { -488, 11, 574, 24 }, { -468, 12, 575, 24 }, + { -448, 10, 576, 24 }, { -428, 8, 578, 24 }, { -408, 7, 580, 24 }, + { -388, 5, 582, 24 }, { -368, 3, 584, 24 }, { -348, 1, 587, 24 }, + { -329, 1, 592, 24 }, { -310, 1, 599, 24 }, { -292, 0, 607, 24 }, + { -275, 0, 617, 24 }, { -259, 0, 630, 24 }, { -245, 0, 644, 24 }, + { -234, 0, 661, 24 }, { -224, 0, 678, 25 }, { -217, 0, 697, 25 }, + { -211, 0, 716, 25 }, { -207, 0, 736, 25 }, { -204, 0, 755, 25 }, + { -202, 0, 775, 25 }, { -201, 0, 795, 25 }, { -201, 0, 815, 25 }, + { -201, 0, 835, 25 }, { -201, 0, 855, 25 }, { -202, 0, 875, 25 }, + { -204, 0, 895, 25 }, { -206, 0, 915, 25 }, { -209, 0, 935, 25 }, + { -212, 0, 955, 25 }, { -216, 0, 974, 25 }, { -220, 0, 994, 25 }, + { -225, 0, 1013, 25 }, { -231, 0, 1033, 25 }, { -237, 0, 1052, 25 }, + { -244, 0, 1070, 25 }, { -251, 0, 1089, 25 }, { -259, 0, 1107, 25 }, + { -268, 0, 1125, 25 }, { -277, 0, 1143, 25 }, { -287, 0, 1160, 25 }, + { -298, 0, 1177, 25 }, { -310, 0, 1194, 25 }, { -322, 0, 1209, 25 }, + { -335, 0, 1225, 25 }, { -348, 0, 1239, 25 }, { -363, 1, 1253, 25 }, + { -378, 2, 1267, 25 }, { -393, 3, 1279, 25 }, { -409, 3, 1291, 25 }, + { -426, 4, 1302, 25 }, { -443, 4, 1312, 25 }, { -461, 4, 1322, 25 }, + { -479, 4, 1330, 25 }, { -498, 2, 1337, 25 }, { -517, 1, 1344, 25 }, + { -536, 0, 1350, 25 }, { -555, 0, 1355, 25 }, { -574, 0, 1360, 25 }, + { -594, 0, 1365, 25 }, { -614, 0, 1369, 25 }, { -633, 0, 1372, 25 }, + { -653, 0, 1375, 25 }, { -673, 0, 1378, 26 }, { -693, 0, 1380, 26 }, + { -713, 0, 1383, 26 }, { -733, 0, 1385, 26 }, { -753, 0, 1386, 26 }, + { -772, 0, 1388, 26 }, { -792, 0, 1391, 26 }, { -812, 0, 1393, 26 }, + { -832, 0, 1396, 26 }, { -852, 0, 1398, 26 }, { -872, 0, 1401, 26 }, + { -891, 0, 1405, 26 }, { -911, 0, 1409, 26 }, { -931, 0, 1413, 26 }, + { -950, 0, 1418, 26 }, { -969, 0, 1425, 26 }, { -987, 0, 1433, 26 }, + { -1003, 0, 1445, 26 }, { -1017, 1, 1459, 26 }, { -1028, 0, 1476, 26 }, + { -1036, 0, 1494, 26 }, { -1042, 0, 1513, 26 }, { -1045, 0, 1533, 26 }, + { -1046, 0, 1553, 26 }, { -1044, 0, 1573, 26 }, { -1038, 0, 1592, 26 }, + { -1029, 0, 1610, 26 }, { -1017, 0, 1625, 26 }, { -1002, 0, 1639, 26 }, + { -986, 0, 1651, 27 }, { -968, 0, 1660, 27 }, { -950, 0, 1667, 27 }, + { -930, 0, 1672, 27 }, { -911, 0, 1676, 27 }, { -891, 0, 1679, 27 }, + { -871, 0, 1681, 27 }, { -851, 0, 1682, 27 }, { -831, 0, 1682, 27 }, + { -811, 0, 1682, 27 }, { -791, 0, 1681, 27 }, { -771, 0, 1680, 27 }, + { -751, 0, 1679, 27 }, { -731, 0, 1677, 27 }, { -711, 0, 1675, 27 }, + { -691, 0, 1672, 27 }, { -672, 0, 1669, 27 }, { -652, 0, 1666, 27 }, + { -632, 0, 1662, 27 }, { -613, 0, 1658, 27 }, { -593, 0, 1654, 27 }, + { -574, 0, 1649, 27 }, { -554, 0, 1644, 27 }, { -535, 0, 1639, 27 }, + { -516, 0, 1634, 27 }, { -496, 0, 1628, 27 }, { -477, 0, 1622, 27 }, + { -458, 0, 1616, 27 }, { -439, 0, 1609, 27 }, { -421, 0, 1602, 27 }, + { -402, 0, 1595, 27 }, { -384, 0, 1587, 27 }, { -365, 0, 1579, 27 }, + { -347, 0, 1571, 27 }, { -329, 0, 1562, 27 }, { -312, 0, 1552, 27 }, + { -294, 0, 1542, 27 }, { -277, 0, 1532, 27 }, { -260, 0, 1521, 27 }, + { -244, 0, 1509, 27 }, { -228, 0, 1497, 27 }, { -212, 0, 1485, 27 }, + { -197, 0, 1472, 27 }, { -183, 0, 1458, 27 }, { -168, 0, 1444, 27 }, + { -155, 0, 1429, 27 }, { -141, 0, 1414, 27 }, { -129, 0, 1399, 27 }, + { -117, 0, 1383, 27 }, { -105, 0, 1367, 27 }, { -94, 0, 1350, 27 }, + { -84, 0, 1333, 27 }, { -74, 0, 1315, 27 }, { -65, 0, 1297, 27 }, + { -57, 0, 1279, 27 }, { -49, 0, 1261, 27 }, { -42, 0, 1242, 27 }, + { -36, 0, 1223, 27 }, { -30, 0, 1204, 27 }, { -26, 0, 1184, 27 }, + { -22, 0, 1165, 27 }, { -19, 0, 1145, 27 }, { -16, 0, 1125, 27 }, + { -14, 0, 1105, 27 }, { -11, 0, 1085, 27 }, { -10, 0, 1065, 27 }, + { -8, 0, 1045, 27 }, { -6, 0, 1025, 27 }, { -5, 0, 1006, 27 }, + { -4, 0, 986, 27 }, { -2, 0, 966, 27 }, { -1, 0, 946, 27 }, + { 0, 0, 926, 27 }, { 0, 0, 906, 27 }, { 1, 0, 886, 27 }, + { 1, 0, 866, 27 }, { 2, 0, 846, 27 }, { 3, 0, 826, 27 }, + { 4, 0, 806, 27 }, { 4, 0, 786, 27 }, { 5, 0, 766, 27 }, + { 5, 0, 746, 27 }, { 6, 0, 726, 27 }, { 6, 0, 706, 27 }, + { 7, 0, 686, 27 }, { 7, 0, 666, 27 }, { 8, 0, 646, 27 }, + { 8, 0, 626, 27 }, { 8, 0, 606, 27 }, { 9, 0, 586, 27 }, + { 9, 0, 566, 27 }, { 9, 0, 546, 27 }, { 9, 0, 526, 27 }, + { 10, 0, 506, 27 }, { 10, 0, 486, 1 }, { 10, 0, 466, 1 }, + { 10, 0, 445, 1 }, { 11, 0, 425, 1 }, { 11, 0, 405, 1 }, + { 11, 0, 385, 1 }, { 11, 0, 365, 1 }, { 11, 0, 345, 1 }, + { 12, 0, 325, 1 }, { 12, 0, 305, 1 }, { 12, 0, 285, 1 }, + { 12, 0, 265, 1 }, { 12, 0, 245, 1 }, { 13, 0, 225, 1 }, + { 13, 0, 205, 1 }, { 13, 0, 185, 1 }, { 13, 0, 165, 1 }, + { 13, 0, 145, 1 }, { 13, 0, 125, 1 }, { 14, 0, 105, 1 }, + { 14, 0, 85, 1 }, { 14, 0, 65, 1 }, { 14, 0, 45, 1 }, + { 14, 0, 25, 1 }, { 14, 0, 5, 1 }, { -32768, -32768, -32768, 0 }, diff --git a/courses/wario_stadium/d_course_wario_stadium_unknown_path.inc.c b/courses/wario_stadium/d_course_wario_stadium_unknown_path.inc.c new file mode 100644 index 0000000000..8245727e5c --- /dev/null +++ b/courses/wario_stadium/d_course_wario_stadium_unknown_path.inc.c @@ -0,0 +1,20 @@ + { 16, 0, 7, 0 }, { 11, 0, -25, 0 }, { 8, 0, -227, 0 }, { 6, 0, -674, 0 }, + { -3, 0, -1560, 0 }, { -121, 0, -1883, 0 }, { -430, 0, -2100, 0 }, { -790, 0, -2160, 0 }, + { -1487, 0, -2155, 0 }, { -2171, 0, -2139, 0 }, { -2522, 0, -2014, 0 }, { -2757, 0, -1691, 0 }, + { -2808, 0, -1303, 0 }, { -2808, 0, -837, 0 }, { -2713, 0, -671, 0 }, { -2459, 0, -611, 0 }, + { -2311, 0, -533, 0 }, { -2288, 0, -325, 0 }, { -2292, 0, 64, 0 }, { -2209, 0, 207, 0 }, + { -2006, 0, 248, 0 }, { -1724, 0, 175, 0 }, { -1664, 0, -42, 0 }, { -1678, 0, -656, 0 }, + { -1867, 0, -845, 0 }, { -2412, 0, -845, 0 }, { -2583, 0, -933, 0 }, { -2606, 0, -1155, 0 }, + { -2555, 0, -1573, 0 }, { -2380, 0, -1818, 0 }, { -2131, 0, -1910, 0 }, { -1600, 0, -1915, 0 }, + { -1005, 0, -1915, 0 }, { -691, 0, -1891, 0 }, { -432, 0, -1739, 0 }, { -377, 0, -1448, 0 }, + { -373, 0, -426, 0 }, { -391, 0, -89, 0 }, { -562, 0, 100, 0 }, { -839, 0, 54, 0 }, + { -917, 0, -52, 0 }, { -950, 0, -389, 0 }, { -945, 0, -1280, 0 }, { -968, 0, -1543, 0 }, + { -1139, 0, -1631, 0 }, { -1310, 0, -1575, 0 }, { -1356, 0, -1308, 0 }, { -1360, 0, -348, 0 }, + { -1353, 0, 1016, 0 }, { -1349, 0, 1466, 0 }, { -1413, 0, 1618, 0 }, { -1552, 0, 1678, 0 }, + { -2193, 0, 1660, 0 }, { -2539, 0, 1537, 0 }, { -2756, 0, 1246, 0 }, { -2816, 0, 770, 0 }, + { -2765, 0, 613, 0 }, { -2595, 0, 553, 0 }, { -2087, 0, 558, 0 }, { -1538, 0, 558, 0 }, + { -896, 0, 563, 0 }, { -472, 0, 572, 0 }, { -278, 0, 595, 0 }, { -195, 0, 720, 0 }, + { -209, 0, 1001, 0 }, { -319, 0, 1232, 0 }, { -522, 0, 1366, 0 }, { -933, 0, 1403, 0 }, + { -1039, 0, 1463, 0 }, { -1053, 0, 1610, 0 }, { -919, 0, 1693, 0 }, { -592, 0, 1666, 0 }, + { -255, 0, 1541, 0 }, { -52, 0, 1315, 0 }, { 4, 0, 1033, 0 }, { 13, 0, 122, 0 }, + { -32768, 0, 0, 0 }, diff --git a/courses/yoshi_valley/course_data.c b/courses/yoshi_valley/course_data.c index aa70323fe8..47425543d4 100644 --- a/courses/yoshi_valley/course_data.c +++ b/courses/yoshi_valley/course_data.c @@ -71,12 +71,21 @@ Gfx d_course_yoshi_valley_dl_290[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_1290), gsSPDisplayList(d_course_yoshi_valley_dl_20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7EF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7F58), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7FC8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7C50), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1DE8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_1DE8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1FF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2270), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6798), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1C18), gsSPDisplayList(d_course_yoshi_valley_packed_dl_61E8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2A00), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_2CD0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2EE0), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_2DD0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6E20), + gsSPDisplayList(d_course_yoshi_valley_packed_dl_2CD0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_2EE0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_2DD0), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_6E20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_44C8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_4588), gsSPDisplayList(d_course_yoshi_valley_packed_dl_33D8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_3B00), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5158), gsSPDisplayList(d_course_yoshi_valley_packed_dl_4A58), @@ -85,7 +94,10 @@ Gfx d_course_yoshi_valley_dl_290[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_58F8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5970), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5C80), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D00), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D90), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5DF8), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_5C18), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5B48), + gsSPDisplayList(d_course_yoshi_valley_packed_dl_5C18), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_5B48), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_5BB0), gsSPEndDisplayList(), }; @@ -439,7 +451,9 @@ Gfx d_course_yoshi_valley_dl_FA0[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1F20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1EB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_2188), gsSPDisplayList(d_course_yoshi_valley_packed_dl_66B0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_63A0), @@ -491,7 +505,10 @@ Gfx d_course_yoshi_valley_dl_1178[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_11B8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1220), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1290), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1300), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1368), gsSPDisplayList(d_course_yoshi_valley_dl_20), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_64F8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1E50), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_64F8), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_1E50), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1DE8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1FF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2270), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6798), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6728), gsSPDisplayList(d_course_yoshi_valley_packed_dl_71A0), @@ -742,7 +759,10 @@ Gfx d_course_yoshi_valley_dl_1C38[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_58F8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5710), gsSPDisplayList(d_course_yoshi_valley_packed_dl_54B0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5548), gsSPDisplayList(d_course_yoshi_valley_packed_dl_55C0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5628), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D90), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5DF8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D90), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_5DF8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5C18), gsSPDisplayList(d_course_yoshi_valley_packed_dl_59F0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5A60), gsSPEndDisplayList(), }; @@ -844,7 +864,10 @@ Gfx d_course_yoshi_valley_dl_2000[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_308), gsSPDisplayList(d_course_yoshi_valley_packed_dl_A8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_240), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1290), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1300), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1368), - gsSPDisplayList(d_course_yoshi_valley_dl_20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_78B0), + gsSPDisplayList(d_course_yoshi_valley_dl_20), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_78B0), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_75F0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7660), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7D38), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1F80), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1F20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_64F8), @@ -859,10 +882,16 @@ Gfx d_course_yoshi_valley_dl_2000[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_4428), gsSPDisplayList(d_course_yoshi_valley_packed_dl_3E08), gsSPDisplayList(d_course_yoshi_valley_packed_dl_51D8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_3BF8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_4C18), gsSPDisplayList(d_course_yoshi_valley_packed_dl_3900), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_4E88), gsSPDisplayList(d_course_yoshi_valley_packed_dl_58F8), + gsSPDisplayList(d_course_yoshi_valley_packed_dl_4E88), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_58F8), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_5710), gsSPDisplayList(d_course_yoshi_valley_packed_dl_54B0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5548), gsSPDisplayList(d_course_yoshi_valley_packed_dl_55C0), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_5628), gsSPDisplayList(d_course_yoshi_valley_packed_dl_59F0), + gsSPDisplayList(d_course_yoshi_valley_packed_dl_5628), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_59F0), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_5A60), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5AD8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7558), gsSPEndDisplayList(), }; @@ -884,13 +913,17 @@ Gfx d_course_yoshi_valley_dl_21B0[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_1300), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1368), gsSPDisplayList(d_course_yoshi_valley_dl_20), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_78B0), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A08), gsSPDisplayList(d_course_yoshi_valley_packed_dl_75F0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7CC0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7D38), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1F80), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_64F8), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6638), @@ -937,7 +970,9 @@ Gfx d_course_yoshi_valley_dl_21B0[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_5970), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D90), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5DF8), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_5AD8), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_5B48), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5BB0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7558), @@ -960,7 +995,10 @@ Gfx d_course_yoshi_valley_dl_2408[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_21F8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2188), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2108), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2CD0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2F90), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6A98), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_6A08), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2498), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_6A08), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_2498), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2428), gsSPDisplayList(d_course_yoshi_valley_packed_dl_27F0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2758), gsSPDisplayList(d_course_yoshi_valley_packed_dl_26C8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_45F0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_4670), @@ -972,10 +1010,16 @@ Gfx d_course_yoshi_valley_dl_2408[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_54B0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5548), gsSPDisplayList(d_course_yoshi_valley_packed_dl_55C0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5628), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5970), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5C80), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D00), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D90), + gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D00), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D90), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_5DF8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5C18), gsSPDisplayList(d_course_yoshi_valley_packed_dl_59F0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5A60), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_5BB0), gsSPEndDisplayList(), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_5BB0), +#endif + gsSPEndDisplayList(), }; Gfx d_course_yoshi_valley_dl_25E8[] = { @@ -994,8 +1038,12 @@ Gfx d_course_yoshi_valley_dl_25E8[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_1300), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1368), gsSPDisplayList(d_course_yoshi_valley_dl_20), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_78B0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A08), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_75F0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7660), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7D38), @@ -1046,7 +1094,9 @@ Gfx d_course_yoshi_valley_dl_25E8[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_5628), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5970), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D90), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_5DF8), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_5A60), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5AD8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5B48), @@ -1065,13 +1115,21 @@ Gfx d_course_yoshi_valley_dl_2840[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_128), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1368), gsSPDisplayList(d_course_yoshi_valley_dl_20), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_78B0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_75F0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7660), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_1F80), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1F20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1EB8), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_2108), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2078), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6008), @@ -1118,8 +1176,12 @@ Gfx d_course_yoshi_valley_dl_2978[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_1300), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1368), gsSPDisplayList(d_course_yoshi_valley_dl_20), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_75F0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7660), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_1F80), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), @@ -1220,8 +1282,12 @@ Gfx d_course_yoshi_valley_dl_2D70[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_FF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_10C8), gsSPDisplayList(d_course_yoshi_valley_dl_20), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_78B0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_75F0), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_7660), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1F80), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1F20), @@ -1297,8 +1363,14 @@ Gfx d_course_yoshi_valley_dl_3078[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_F40), gsSPDisplayList(d_course_yoshi_valley_packed_dl_FF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_10C8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1220), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1290), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1300), - gsSPDisplayList(d_course_yoshi_valley_dl_20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_78B0), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_7998), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), + gsSPDisplayList(d_course_yoshi_valley_dl_20), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_78B0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_7998), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6638), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6810), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6798), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6728), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6070), @@ -1340,8 +1412,12 @@ Gfx d_course_yoshi_valley_dl_3258[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_1300), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1368), gsSPDisplayList(d_course_yoshi_valley_dl_20), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_78B0), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7998), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6810), @@ -1702,14 +1778,22 @@ Gfx d_course_yoshi_valley_dl_40B8[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_1290), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1300), gsSPDisplayList(d_course_yoshi_valley_dl_20), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A70), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_76C8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1EB8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_6798), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6728), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1D20), @@ -1873,10 +1957,18 @@ Gfx d_course_yoshi_valley_dl_4718[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_DE0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_E90), gsSPDisplayList(d_course_yoshi_valley_dl_20), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A70), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7FC8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7DA8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_1EB8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), @@ -1893,8 +1985,12 @@ Gfx d_course_yoshi_valley_dl_4718[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_2A90), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2EE0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2DD0), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_28F8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_2868), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_3F10), gsSPDisplayList(d_course_yoshi_valley_packed_dl_3FF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_4108), @@ -1930,7 +2026,9 @@ Gfx d_course_yoshi_valley_dl_48C0[] = { gsSPDisplayList(d_course_yoshi_valley_dl_20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_76C8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7B50), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_7BD0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), @@ -2104,7 +2202,9 @@ Gfx d_course_yoshi_valley_dl_4E60[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6638), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2078), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_1D20), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_1938), gsSPDisplayList(d_course_yoshi_valley_packed_dl_18C8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1BA0), @@ -2115,7 +2215,9 @@ Gfx d_course_yoshi_valley_dl_4E60[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_7090), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2E58), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2DD0), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_28F8), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_3FF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_4108), gsSPDisplayList(d_course_yoshi_valley_packed_dl_41B0), @@ -2314,7 +2416,10 @@ Gfx d_course_yoshi_valley_dl_5638[] = { gsSPDisplayList(d_course_yoshi_valley_dl_20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_76C8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7DA8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7B50), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7BD0), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1EB8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_1EB8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1E50), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1DE8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2078), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1938), gsSPDisplayList(d_course_yoshi_valley_packed_dl_18C8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1830), @@ -2414,7 +2519,10 @@ Gfx d_course_yoshi_valley_dl_5A80[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_7E20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7E88), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7BD0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1F80), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1F20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1EB8), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_1E50), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1DE8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_1E50), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_1DE8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6638), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6810), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6798), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6728), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2078), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1D20), @@ -2538,7 +2646,9 @@ Gfx d_course_yoshi_valley_dl_5ED8[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_2B08), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2E58), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2DD0), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_2868), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_33D8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_3200), gsSPDisplayList(d_course_yoshi_valley_packed_dl_4258), @@ -2580,7 +2690,11 @@ Gfx d_course_yoshi_valley_dl_6070[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), gsSPDisplayList(d_course_yoshi_valley_packed_dl_64F8), +#ifdef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), +#else gsSPDisplayList(d_course_yoshi_valley_packed_dl_1DE8), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_6638), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6810), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6798), @@ -2619,7 +2733,9 @@ Gfx d_course_yoshi_valley_dl_6070[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_5970), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D90), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5DF8), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_5BB0), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_7458), gsSPEndDisplayList(), }; @@ -2632,7 +2748,10 @@ Gfx d_course_yoshi_valley_dl_6268[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_7DA8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7B50), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7BD0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1EB8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1E50), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1DE8), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_6638), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1830), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_6638), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_1830), gsSPDisplayList(d_course_yoshi_valley_packed_dl_17B0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1738), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1BA0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1AF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1A68), gsSPDisplayList(d_course_yoshi_valley_packed_dl_22F0), @@ -2715,7 +2834,10 @@ Gfx d_course_yoshi_valley_dl_6530[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_7DA8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7B50), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1E50), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1DE8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1FF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2270), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_6798), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6728), + gsSPDisplayList(d_course_yoshi_valley_packed_dl_6798), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_6728), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_1738), gsSPDisplayList(d_course_yoshi_valley_packed_dl_19F8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1C18), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1BA0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1AF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2C30), @@ -2725,7 +2847,10 @@ Gfx d_course_yoshi_valley_dl_6530[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_4358), gsSPDisplayList(d_course_yoshi_valley_packed_dl_4918), gsSPDisplayList(d_course_yoshi_valley_packed_dl_4FD0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_4D68), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5788), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5880), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_5548), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5970), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_5548), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_5970), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D90), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5DF8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5B48), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5BB0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7458), gsSPEndDisplayList(), @@ -2905,7 +3030,9 @@ Gfx d_course_yoshi_valley_dl_6BF0[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_2B08), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2A90), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2A00), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_2DD0), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_33D8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_4918), gsSPDisplayList(d_course_yoshi_valley_packed_dl_4FD0), @@ -3052,11 +3179,17 @@ Gfx d_course_yoshi_valley_dl_7310[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_7F58), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7FC8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7C50), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1DE8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1FF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2270), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_6798), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1CB0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_6798), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_1CB0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1C18), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1BA0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2A00), gsSPDisplayList(d_course_yoshi_valley_packed_dl_4FD0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5058), gsSPDisplayList(d_course_yoshi_valley_packed_dl_50E0), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_5788), gsSPDisplayList(d_course_yoshi_valley_packed_dl_56A0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_5788), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_56A0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5970), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D00), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D90), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5DF8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5BB0), gsSPEndDisplayList(), @@ -3077,13 +3210,19 @@ Gfx d_course_yoshi_valley_dl_7400[] = { gsSPDisplayList(d_course_yoshi_valley_dl_20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7E88), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7EF0), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7F58), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_7FC8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7C50), gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_64F8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_1DE8), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_1FF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2270), gsSPDisplayList(d_course_yoshi_valley_packed_dl_21F8), @@ -3118,7 +3257,9 @@ Gfx d_course_yoshi_valley_dl_7400[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D90), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5DF8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5A60), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_5AD8), +#endif gsSPEndDisplayList(), }; @@ -3422,7 +3563,9 @@ Gfx d_course_yoshi_valley_dl_8030[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_7CC0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7D38), gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_1FF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2270), gsSPDisplayList(d_course_yoshi_valley_packed_dl_21F8), @@ -3595,7 +3738,10 @@ Gfx d_course_yoshi_valley_dl_8710[] = { gsSPDisplayList(d_course_yoshi_valley_dl_20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7EF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7F58), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7FC8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7DA8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7C50), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_7CC0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), + gsSPDisplayList(d_course_yoshi_valley_packed_dl_7CC0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_1DE8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1FF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2270), gsSPDisplayList(d_course_yoshi_valley_packed_dl_21F8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1C18), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2A00), @@ -3605,7 +3751,10 @@ Gfx d_course_yoshi_valley_dl_8710[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_56A0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5970), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5C80), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D00), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D90), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5DF8), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_5C18), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5B48), + gsSPDisplayList(d_course_yoshi_valley_packed_dl_5C18), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_5B48), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_5BB0), gsSPEndDisplayList(), }; @@ -3645,7 +3794,9 @@ Gfx d_course_yoshi_valley_dl_8830[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_5DF8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5C18), gsSPDisplayList(d_course_yoshi_valley_packed_dl_59F0), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_5A60), +#endif gsSPEndDisplayList(), }; @@ -3793,8 +3944,14 @@ Gfx d_course_yoshi_valley_dl_8D58[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_1580), gsSPDisplayList(d_course_yoshi_valley_packed_dl_FF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1220), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1290), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1300), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1368), - gsSPDisplayList(d_course_yoshi_valley_dl_20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_76C8), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1F80), + gsSPDisplayList(d_course_yoshi_valley_dl_20), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_76C8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_1F80), gsSPDisplayList(d_course_yoshi_valley_packed_dl_64F8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6638), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6810), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6798), @@ -3873,7 +4030,9 @@ Gfx d_course_yoshi_valley_dl_91D8[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_748), gsSPDisplayList(d_course_yoshi_valley_dl_20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_76C8), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_1F20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1EB8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), @@ -3998,8 +4157,12 @@ Gfx d_course_yoshi_valley_dl_9548[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_1290), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1300), gsSPDisplayList(d_course_yoshi_valley_dl_20), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7998), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6638), @@ -4216,7 +4379,9 @@ Gfx d_course_yoshi_valley_dl_9DB8[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_6638), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6810), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6798), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_6728), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_1938), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2EE0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2E58), @@ -4239,7 +4404,9 @@ Gfx d_course_yoshi_valley_dl_9DB8[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_3A00), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5788), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5880), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_5548), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_5970), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5C80), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D90), @@ -4272,11 +4439,17 @@ Gfx d_course_yoshi_valley_dl_9F70[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_1368), gsSPDisplayList(d_course_yoshi_valley_dl_20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7928), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7998), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A08), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_6638), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_6810), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6798), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6728), @@ -4328,7 +4501,10 @@ Gfx d_course_yoshi_valley_dl_A188[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_AB0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_BF8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6A0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1580), gsSPDisplayList(d_course_yoshi_valley_packed_dl_DE0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_FF0), - gsSPDisplayList(d_course_yoshi_valley_dl_20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7928), + gsSPDisplayList(d_course_yoshi_valley_dl_20), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_7928), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1EB8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6638), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6070), @@ -4392,8 +4568,14 @@ Gfx d_course_yoshi_valley_dl_A518[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_FF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_10C8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1220), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1290), gsSPDisplayList(d_course_yoshi_valley_dl_20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7928), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A08), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7C50), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_7CC0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), + gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A08), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_7C50), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_7CC0), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6638), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6810), gsSPDisplayList(d_course_yoshi_valley_packed_dl_21F8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6250), gsSPDisplayList(d_course_yoshi_valley_packed_dl_61E8), @@ -4433,10 +4615,16 @@ Gfx d_course_yoshi_valley_dl_A6B8[] = { gsSPDisplayList(d_course_yoshi_valley_dl_20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7928), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A08), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7C50), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7CC0), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_6638), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_6810), gsSPDisplayList(d_course_yoshi_valley_packed_dl_21F8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2188), @@ -4486,7 +4674,10 @@ Gfx d_course_yoshi_valley_dl_A8A0[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_DE0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_F40), gsSPDisplayList(d_course_yoshi_valley_packed_dl_FF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_10C8), gsSPDisplayList(d_course_yoshi_valley_dl_20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7928), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A08), gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A08), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1F20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_64F8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6638), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6810), @@ -4726,7 +4917,9 @@ Gfx d_course_yoshi_valley_dl_B220[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), gsSPDisplayList(d_course_yoshi_valley_packed_dl_64F8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_21F8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6728), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1BA0), @@ -4780,7 +4973,10 @@ Gfx d_course_yoshi_valley_dl_B428[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_7EF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7F58), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7FC8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7DA8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7C50), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7CC0), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1DE8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_1DE8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1FF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2270), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6798), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1C18), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1BA0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2D50), @@ -4790,7 +4986,10 @@ Gfx d_course_yoshi_valley_dl_B428[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_4A58), gsSPDisplayList(d_course_yoshi_valley_packed_dl_4B20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5788), gsSPDisplayList(d_course_yoshi_valley_packed_dl_56A0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5970), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D90), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_5DF8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5B48), + gsSPDisplayList(d_course_yoshi_valley_packed_dl_5DF8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_5B48), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_5BB0), gsSPEndDisplayList(), }; @@ -4851,7 +5050,9 @@ Gfx d_course_yoshi_valley_dl_B778[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_7F58), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7FC8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7DA8), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7C50), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), gsSPDisplayList(d_course_yoshi_valley_packed_dl_64F8), @@ -4985,7 +5186,10 @@ Gfx d_course_yoshi_valley_dl_BC98[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_1290), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1300), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1368), gsSPDisplayList(d_course_yoshi_valley_dl_20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_78B0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A08), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), + gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_6810), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6798), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6728), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2510), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2498), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2428), @@ -5099,8 +5303,12 @@ Gfx d_course_yoshi_valley_dl_C140[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_1290), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1300), gsSPDisplayList(d_course_yoshi_valley_dl_20), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7998), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6638), @@ -5152,7 +5360,9 @@ Gfx d_course_yoshi_valley_dl_C2D8[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_1300), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1368), gsSPDisplayList(d_course_yoshi_valley_dl_20), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7998), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6810), @@ -5196,7 +5406,10 @@ Gfx d_course_yoshi_valley_dl_C470[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_240), gsSPDisplayList(d_course_yoshi_valley_packed_dl_AB0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_BF8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6A0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1580), gsSPDisplayList(d_course_yoshi_valley_dl_20), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_7998), gsSPDisplayList(d_course_yoshi_valley_packed_dl_76C8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_7998), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_76C8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1EB8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6638), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1D20), @@ -5248,7 +5461,10 @@ Gfx d_course_yoshi_valley_dl_C668[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_AB0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_B40), gsSPDisplayList(d_course_yoshi_valley_packed_dl_BF8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6A0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1580), gsSPDisplayList(d_course_yoshi_valley_dl_20), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1D20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1938), gsSPDisplayList(d_course_yoshi_valley_packed_dl_61E8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6888), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2EE0), @@ -5318,7 +5534,10 @@ Gfx d_course_yoshi_valley_dl_C8F8[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_32E8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_3368), gsSPDisplayList(d_course_yoshi_valley_packed_dl_37B0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_3B78), gsSPDisplayList(d_course_yoshi_valley_packed_dl_3BF8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_4CB0), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_4D68), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5788), + gsSPDisplayList(d_course_yoshi_valley_packed_dl_4D68), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_5788), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_5880), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5548), gsSPDisplayList(d_course_yoshi_valley_packed_dl_55C0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5628), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5A60), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5AD8), @@ -5343,12 +5562,20 @@ Gfx d_course_yoshi_valley_dl_CAD8[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_1220), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1290), gsSPDisplayList(d_course_yoshi_valley_dl_20), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A70), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7F58), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7FC8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7DA8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7B50), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1FF0), @@ -5401,16 +5628,26 @@ Gfx d_course_yoshi_valley_dl_CC80[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_1220), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1290), gsSPDisplayList(d_course_yoshi_valley_dl_20), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A70), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7FC8), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7DA8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7B50), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_7C50), gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_64F8), +#endif +#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), +#endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_1FF0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_2270), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6798), @@ -5464,9 +5701,22 @@ Gfx d_course_yoshi_valley_dl_CEC8[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_980), gsSPDisplayList(d_course_yoshi_valley_packed_dl_858), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1580), gsSPDisplayList(d_course_yoshi_valley_dl_20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_76C8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_7FC8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7DA8), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_7B50), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7BD0), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1EB8), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_7FC8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_7DA8), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_7B50), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_7BD0), +#endif +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_1EB8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), gsSPDisplayList(d_course_yoshi_valley_packed_dl_6638), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1D20), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1938), gsSPDisplayList(d_course_yoshi_valley_packed_dl_1C18), @@ -5637,2482 +5887,63 @@ Gfx d_course_yoshi_valley_dl_D540[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_4C18), gsSPDisplayList(d_course_yoshi_valley_packed_dl_3900), gsSPDisplayList(d_course_yoshi_valley_packed_dl_4E88), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5628), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5970), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5D90), - gsSPDisplayList(d_course_yoshi_valley_packed_dl_5DF8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5A60), +#ifndef VERSION_JP + gsSPDisplayList(d_course_yoshi_valley_packed_dl_5DF8), +#endif + gsSPDisplayList(d_course_yoshi_valley_packed_dl_5A60), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5AD8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5B48), gsSPDisplayList(d_course_yoshi_valley_packed_dl_5BB0), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7558), gsSPDisplayList(d_course_yoshi_valley_packed_dl_74D0), gsSPEndDisplayList(), }; // 0xD780 +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_yoshi_valley_unknown_path[] = { - { -3, 0, -4, 0 }, { -3, 0, -20, 0 }, { -3, 0, -261, 0 }, { -18, 0, -642, 0 }, - { -62, 0, -955, 0 }, { -155, 0, -1297, 0 }, { -232, 0, -1502, 0 }, { -317, 0, -1596, 0 }, - { -432, 0, -1625, 0 }, { -554, 0, -1619, 0 }, { -765, 0, -1542, 0 }, { -1069, 0, -1409, 0 }, - { -1198, 0, -1391, 0 }, { -1313, 0, -1479, 0 }, { -1467, 0, -1606, 0 }, { -1668, 0, -1660, 0 }, - { -1796, 0, -1600, 0 }, { -1836, 0, -1475, 0 }, { -1822, 0, -1231, 0 }, { -1731, 0, -1055, 0 }, - { -1598, 0, -769, 0 }, { -1551, 0, -574, 0 }, { -1580, 0, -327, 0 }, { -1629, 0, -156, 0 }, - { -1724, 0, 26, 0 }, { -1861, 0, 92, 0 }, { -2037, 0, 69, 0 }, { -2140, 0, -22, 0 }, - { -2228, 0, -248, 0 }, { -2243, 0, -401, 0 }, { -2274, 0, -525, 0 }, { -2382, 0, -811, 0 }, - { -2553, 0, -1038, 0 }, { -2663, 0, -1219, 0 }, { -2779, 0, -1501, 0 }, { -2899, 0, -1710, 0 }, - { -3007, 0, -1775, 0 }, { -3119, 0, -1769, 0 }, { -3201, 0, -1684, 0 }, { -3225, 0, -1553, 0 }, - { -3183, 0, -1392, 0 }, { -2997, 0, -1195, 0 }, { -2828, 0, -1095, 0 }, { -2770, 0, -1012, 0 }, - { -2762, 0, -912, 0 }, { -2836, 0, -680, 0 }, { -2899, 0, -578, 0 }, { -2933, 0, -451, 0 }, - { -2908, 0, -165, 0 }, { -2793, 0, 121, 0 }, { -2616, 0, 400, 0 }, { -2485, 0, 528, 0 }, - { -2429, 0, 577, 0 }, { -2372, 0, 620, 0 }, { -2318, 0, 659, 0 }, { -2278, 0, 691, 0 }, - { -2224, 0, 721, 0 }, { -2178, 0, 746, 0 }, { -2110, 0, 786, 0 }, { -1903, 0, 916, 0 }, - { -1626, 0, 1087, 0 }, { -1546, 0, 1123, 0 }, { -1322, 0, 1201, 0 }, { -1033, 0, 1195, 0 }, - { -850, 0, 1148, 0 }, { -652, 0, 967, 0 }, { -503, 0, 821, 0 }, { -319, 0, 768, 0 }, - { -163, 0, 709, 0 }, { -75, 0, 506, 0 }, { -24, 0, 295, 0 }, { -3, 0, 24, 0 }, - { -32768, 0, 0, 0 }, +#include "courses/yoshi_valley/d_course_yoshi_valley_unknown_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_yoshi_valley_unknown_path_2[] = { - { -6, 0, -5, 1 }, { -6, 0, -21, 1 }, { -5, 0, -434, 1 }, { -37, 0, -841, 1 }, - { -150, 0, -1267, 1 }, { -228, 0, -1498, 1 }, { -328, 0, -1603, 1 }, { -439, 0, -1627, 1 }, - { -548, 0, -1621, 1 }, { -759, 0, -1544, 1 }, { -1078, 0, -1402, 1 }, { -1207, 0, -1400, 1 }, - { -1314, 0, -1494, 1 }, { -1470, 0, -1617, 1 }, { -1670, 0, -1673, 1 }, { -1804, 0, -1594, 1 }, - { -1834, 0, -1463, 1 }, { -1842, 0, -1286, 1 }, { -1883, 0, -1253, 1 }, { -1969, 0, -1212, 1 }, - { -2023, 0, -1148, 1 }, { -2099, 0, -1042, 1 }, { -2156, 0, -971, 1 }, { -2219, 0, -885, 1 }, - { -2312, 0, -763, 1 }, { -2414, 0, -624, 1 }, { -2492, 0, -515, 1 }, { -2543, 0, -394, 1 }, - { -2559, 0, -212, 1 }, { -2518, 0, -125, 1 }, { -2395, 0, -60, 1 }, { -2280, 0, -75, 1 }, - { -2210, 0, -135, 1 }, { -2203, 0, -239, 1 }, { -2234, 0, -406, 1 }, { -2293, 0, -555, 1 }, - { -2411, 0, -866, 1 }, { -2617, 0, -1115, 1 }, { -2905, 0, -1727, 1 }, { -3020, 0, -1784, 1 }, - { -3138, 0, -1763, 1 }, { -3222, 0, -1633, 1 }, { -3197, 0, -1408, 1 }, { -3037, 0, -1223, 1 }, - { -2819, 0, -1099, 1 }, { -2762, 0, -1008, 1 }, { -2760, 0, -924, 1 }, { -2825, 0, -690, 1 }, - { -2906, 0, -581, 1 }, { -2940, 0, -455, 1 }, { -2911, 0, -179, 1 }, { -2786, 0, 121, 1 }, - { -2611, 0, 397, 1 }, { -2498, 0, 518, 1 }, { -2440, 0, 572, 1 }, { -2386, 0, 616, 1 }, - { -2354, 0, 633, 1 }, { -2309, 0, 669, 1 }, { -2256, 0, 702, 1 }, { -2207, 0, 730, 1 }, - { -2164, 0, 754, 1 }, { -1893, 0, 923, 1 }, { -1616, 0, 1091, 1 }, { -1532, 0, 1125, 1 }, - { -1275, 0, 1216, 1 }, { -909, 0, 1171, 1 }, { -669, 0, 973, 1 }, { -510, 0, 836, 1 }, - { -340, 0, 772, 1 }, { -198, 0, 723, 1 }, { -92, 0, 542, 1 }, { -23, 0, 328, 1 }, - { -2, 0, 33, 1 }, { -32768, 0, 0, 0 }, +#include "courses/yoshi_valley/d_course_yoshi_valley_unknown_path_2.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_yoshi_valley_unknown_path_3[] = { - { -3, 0, -3, 4 }, { -3, 0, -19, 4 }, { 0, 0, -268, 4 }, { -21, 0, -638, 4 }, - { -66, 0, -952, 4 }, { -162, 0, -1297, 4 }, { -232, 0, -1502, 4 }, { -318, 0, -1594, 4 }, - { -434, 0, -1624, 4 }, { -562, 0, -1612, 4 }, { -768, 0, -1547, 4 }, { -1081, 0, -1412, 4 }, - { -1186, 0, -1313, 4 }, { -1215, 0, -1238, 4 }, { -1213, 0, -1135, 4 }, { -1198, 0, -998, 4 }, - { -1172, 0, -856, 4 }, { -1145, 0, -777, 4 }, { -1117, 0, -718, 4 }, { -1101, 0, -674, 4 }, - { -1096, 0, -594, 4 }, { -1114, 0, -515, 4 }, { -1149, 0, -424, 4 }, { -1179, 0, -326, 4 }, - { -1179, 0, -257, 4 }, { -1142, 0, -166, 4 }, { -1091, 0, -31, 4 }, { -1053, 0, 136, 4 }, - { -1045, 0, 241, 4 }, { -1089, 0, 323, 4 }, { -1187, 0, 368, 4 }, { -1364, 0, 402, 4 }, - { -1490, 0, 389, 4 }, { -1632, 0, 307, 4 }, { -1740, 0, 200, 4 }, { -1869, 0, 113, 4 }, - { -2214, 0, -186, 4 }, { -2239, 0, -382, 4 }, { -2275, 0, -510, 4 }, { -2375, 0, -794, 4 }, - { -2450, 0, -939, 4 }, { -2567, 0, -1050, 4 }, { -2672, 0, -1206, 4 }, { -2781, 0, -1510, 4 }, - { -2898, 0, -1715, 4 }, { -3015, 0, -1774, 4 }, { -3117, 0, -1761, 4 }, { -3203, 0, -1689, 4 }, - { -3225, 0, -1545, 4 }, { -3171, 0, -1382, 4 }, { -2990, 0, -1199, 4 }, { -2836, 0, -1099, 4 }, - { -2762, 0, -1010, 4 }, { -2770, 0, -919, 4 }, { -2837, 0, -687, 4 }, { -2906, 0, -578, 4 }, - { -2930, 0, -455, 4 }, { -2908, 0, -171, 4 }, { -2788, 0, 115, 4 }, { -2610, 0, 399, 4 }, - { -2485, 0, 529, 4 }, { -2419, 0, 572, 4 }, { -2363, 0, 617, 4 }, { -2305, 0, 662, 4 }, - { -2256, 0, 700, 4 }, { -2213, 0, 725, 4 }, { -2178, 0, 744, 4 }, { -2115, 0, 785, 4 }, - { -1898, 0, 921, 4 }, { -1627, 0, 1091, 4 }, { -1551, 0, 1122, 4 }, { -1326, 0, 1196, 4 }, - { -1034, 0, 1193, 4 }, { -848, 0, 1151, 4 }, { -657, 0, 964, 4 }, { -509, 0, 825, 4 }, - { -327, 0, 764, 4 }, { -170, 0, 701, 4 }, { -84, 0, 505, 4 }, { -29, 0, 300, 4 }, - { -6, 0, 21, 4 }, { -32768, 0, 0, 0 }, +#include "courses/yoshi_valley/d_course_yoshi_valley_unknown_path_3.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_yoshi_valley_unknown_path_4[] = { - { -2, 0, -1, 7 }, { 0, 0, -18, 7 }, { -2, 0, -268, 7 }, { -21, 0, -653, 7 }, - { -70, 0, -965, 7 }, { -162, 0, -1303, 7 }, { -235, 0, -1506, 7 }, { -324, 0, -1596, 7 }, - { -438, 0, -1624, 7 }, { -571, 0, -1611, 7 }, { -773, 0, -1533, 7 }, { -1077, 0, -1399, 7 }, - { -1206, 0, -1392, 7 }, { -1312, 0, -1474, 7 }, { -1686, 0, -1670, 7 }, { -1892, 0, -1769, 7 }, - { -2057, 0, -1883, 7 }, { -2199, 0, -1894, 7 }, { -2273, 0, -1860, 7 }, { -2324, 0, -1765, 7 }, - { -2331, 0, -1621, 7 }, { -2286, 0, -1417, 7 }, { -2175, 0, -1158, 7 }, { -2033, 0, -896, 7 }, - { -1913, 0, -684, 7 }, { -1753, 0, -497, 7 }, { -1643, 0, -437, 7 }, { -1458, 0, -383, 7 }, - { -1288, 0, -354, 7 }, { -1202, 0, -283, 7 }, { -1114, 0, -108, 7 }, { -1041, 0, 178, 7 }, - { -1049, 0, 277, 7 }, { -1133, 0, 350, 7 }, { -1351, 0, 406, 7 }, { -1460, 0, 406, 7 }, - { -1559, 0, 354, 7 }, { -1731, 0, 220, 7 }, { -1860, 0, 114, 7 }, { -2052, 0, 47, 7 }, - { -2202, 0, -127, 7 }, { -2237, 0, -327, 7 }, { -2256, 0, -487, 7 }, { -2323, 0, -626, 7 }, - { -2405, 0, -871, 7 }, { -2537, 0, -1025, 7 }, { -2665, 0, -1193, 7 }, { -2775, 0, -1486, 7 }, - { -2897, 0, -1725, 7 }, { -3021, 0, -1779, 7 }, { -3124, 0, -1760, 7 }, { -3212, 0, -1657, 7 }, - { -3214, 0, -1502, 7 }, { -3076, 0, -1257, 7 }, { -2852, 0, -1108, 7 }, { -2782, 0, -1039, 7 }, - { -2756, 0, -940, 7 }, { -2800, 0, -758, 7 }, { -2901, 0, -578, 7 }, { -2940, 0, -462, 7 }, - { -2914, 0, -179, 7 }, { -2794, 0, 122, 7 }, { -2618, 0, 392, 7 }, { -2489, 0, 526, 7 }, - { -2446, 0, 564, 7 }, { -2400, 0, 609, 7 }, { -2358, 0, 643, 7 }, { -2316, 0, 670, 7 }, - { -2275, 0, 695, 7 }, { -2224, 0, 723, 7 }, { -2176, 0, 747, 7 }, { -2135, 0, 774, 7 }, - { -1896, 0, 923, 7 }, { -1623, 0, 1091, 7 }, { -1272, 0, 1213, 7 }, { -1050, 0, 1206, 7 }, - { -834, 0, 1139, 7 }, { -640, 0, 960, 7 }, { -496, 0, 818, 7 }, { -324, 0, 765, 7 }, - { -176, 0, 708, 7 }, { -75, 0, 483, 7 }, { -13, 0, 223, 7 }, { 0, 0, 16, 7 }, - { -32768, 0, 0, 0 }, +#include "courses/yoshi_valley/d_course_yoshi_valley_unknown_path_4.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_yoshi_valley_track_path[] = { - { -3, 180, -12, 1 }, { -3, 180, -32, 2 }, { -3, 180, -52, 2 }, - { -2, 180, -72, 2 }, { -3, 180, -92, 2 }, { -3, 180, -112, 2 }, - { -3, 180, -132, 2 }, { -3, 180, -152, 2 }, { -3, 180, -172, 2 }, - { -3, 180, -192, 2 }, { -3, 180, -212, 2 }, { -3, 180, -232, 2 }, - { -4, 180, -252, 2 }, { -4, 180, -272, 2 }, { -5, 180, -292, 2 }, - { -5, 180, -312, 2 }, { -6, 180, -332, 2 }, { -6, 180, -352, 2 }, - { -7, 180, -372, 2 }, { -8, 180, -392, 2 }, { -9, 180, -412, 2 }, - { -9, 180, -432, 2 }, { -10, 180, -452, 2 }, { -11, 180, -472, 2 }, - { -12, 180, -492, 2 }, { -13, 180, -512, 2 }, { -14, 180, -532, 2 }, - { -15, 180, -552, 2 }, { -16, 180, -572, 2 }, { -18, 180, -592, 2 }, - { -19, 180, -612, 2 }, { -21, 180, -632, 2 }, { -23, 180, -651, 2 }, - { -25, 180, -671, 2 }, { -27, 180, -691, 2 }, { -29, 180, -711, 2 }, - { -31, 180, -731, 2 }, { -33, 180, -751, 2 }, { -36, 180, -771, 2 }, - { -38, 180, -791, 2 }, { -41, 180, -810, 2 }, { -44, 180, -830, 2 }, - { -47, 180, -850, 2 }, { -51, 180, -870, 3 }, { -54, 180, -889, 3 }, - { -58, 180, -909, 3 }, { -62, 180, -929, 3 }, { -66, 181, -948, 3 }, - { -70, 181, -968, 3 }, { -74, 181, -988, 3 }, { -78, 181, -1007, 3 }, - { -83, 181, -1027, 3 }, { -88, 182, -1046, 3 }, { -92, 182, -1065, 3 }, - { -97, 182, -1085, 3 }, { -102, 182, -1104, 3 }, { -107, 182, -1123, 3 }, - { -113, 183, -1143, 3 }, { -118, 183, -1162, 3 }, { -123, 183, -1181, 3 }, - { -129, 183, -1201, 3 }, { -135, 184, -1220, 3 }, { -140, 184, -1239, 3 }, - { -146, 184, -1258, 3 }, { -152, 184, -1277, 3 }, { -158, 184, -1296, 3 }, - { -164, 184, -1315, 3 }, { -170, 184, -1334, 3 }, { -177, 183, -1353, 3 }, - { -183, 183, -1372, 3 }, { -190, 182, -1391, 3 }, { -197, 182, -1410, 3 }, - { -205, 181, -1428, 3 }, { -213, 181, -1447, 3 }, { -221, 180, -1465, 3 }, - { -230, 180, -1483, 3 }, { -240, 179, -1500, 3 }, { -250, 177, -1517, 3 }, - { -262, 176, -1534, 3 }, { -275, 173, -1549, 3 }, { -289, 171, -1563, 3 }, - { -304, 169, -1576, 3 }, { -320, 167, -1587, 3 }, { -338, 165, -1597, 3 }, - { -356, 163, -1605, 3 }, { -376, 160, -1610, 3 }, { -395, 158, -1615, 3 }, - { -415, 156, -1618, 3 }, { -435, 154, -1620, 3 }, { -455, 151, -1622, 3 }, - { -475, 148, -1622, 3 }, { -495, 146, -1621, 4 }, { -515, 143, -1619, 4 }, - { -534, 141, -1616, 4 }, { -554, 138, -1612, 4 }, { -573, 135, -1607, 4 }, - { -593, 132, -1602, 4 }, { -612, 128, -1596, 4 }, { -631, 125, -1590, 4 }, - { -650, 122, -1583, 4 }, { -669, 118, -1576, 4 }, { -687, 115, -1569, 4 }, - { -706, 111, -1562, 4 }, { -725, 108, -1555, 4 }, { -743, 104, -1548, 4 }, - { -762, 101, -1540, 4 }, { -780, 97, -1533, 4 }, { -799, 93, -1525, 4 }, - { -817, 90, -1517, 4 }, { -836, 86, -1510, 4 }, { -854, 82, -1502, 4 }, - { -873, 79, -1494, 4 }, { -891, 75, -1486, 4 }, { -909, 71, -1478, 4 }, - { -928, 67, -1470, 4 }, { -946, 64, -1462, 5 }, { -965, 60, -1454, 5 }, - { -983, 57, -1447, 5 }, { -1002, 53, -1440, 5 }, { -1020, 50, -1432, 5 }, - { -1039, 46, -1426, 5 }, { -1058, 43, -1419, 5 }, { -1077, 40, -1413, 5 }, - { -1096, 37, -1407, 5 }, { -1116, 34, -1403, 5 }, { -1136, 31, -1399, 5 }, - { -1155, 28, -1398, 5 }, { -1175, 26, -1399, 5 }, { -1195, 24, -1404, 5 }, - { -1214, 22, -1410, 6 }, { -1232, 20, -1419, 6 }, { -1249, 19, -1430, 6 }, - { -1265, 18, -1442, 6 }, { -1280, 16, -1454, 6 }, { -1296, 15, -1467, 6 }, - { -1312, 14, -1479, 6 }, { -1327, 12, -1491, 6 }, { -1343, 10, -1504, 6 }, - { -1359, 8, -1517, 6 }, { -1374, 7, -1529, 6 }, { -1390, 5, -1542, 6 }, - { -1405, 3, -1554, 6 }, { -1422, 3, -1566, 6 }, { -1438, 2, -1577, 6 }, - { -1455, 2, -1587, 6 }, { -1473, 1, -1597, 6 }, { -1491, 0, -1605, 6 }, - { -1510, 0, -1613, 6 }, { -1528, 0, -1620, 6 }, { -1547, 0, -1627, 6 }, - { -1566, 0, -1632, 6 }, { -1586, 0, -1637, 6 }, { -1605, 0, -1641, 6 }, - { -1625, 0, -1644, 6 }, { -1645, 0, -1645, 6 }, { -1665, 0, -1645, 6 }, - { -1685, 0, -1643, 6 }, { -1705, 0, -1639, 6 }, { -1724, -2, -1633, 6 }, - { -1742, -2, -1624, 6 }, { -1759, -2, -1614, 6 }, { -1774, -3, -1601, 6 }, - { -1788, -3, -1587, 6 }, { -1800, -4, -1571, 7 }, { -1809, -6, -1553, 7 }, - { -1816, -8, -1534, 7 }, { -1821, -10, -1515, 7 }, { -1825, -12, -1495, 7 }, - { -1827, -14, -1475, 7 }, { -1829, -18, -1455, 7 }, { -1830, -21, -1435, 7 }, - { -1830, -25, -1415, 7 }, { -1830, -28, -1395, 7 }, { -1830, -32, -1375, 7 }, - { -1829, -36, -1355, 7 }, { -1827, -39, -1335, 7 }, { -1825, -43, -1316, 7 }, - { -1823, -47, -1296, 7 }, { -1820, -51, -1276, 7 }, { -1816, -53, -1256, 7 }, - { -1811, -56, -1237, 7 }, { -1806, -58, -1218, 7 }, { -1800, -61, -1198, 7 }, - { -1793, -64, -1180, 8 }, { -1785, -67, -1161, 8 }, { -1776, -69, -1143, 8 }, - { -1767, -71, -1125, 8 }, { -1758, -73, -1108, 8 }, { -1749, -75, -1090, 8 }, - { -1740, -77, -1072, 8 }, { -1732, -79, -1054, 8 }, { -1723, -82, -1036, 8 }, - { -1714, -85, -1018, 8 }, { -1706, -87, -1000, 8 }, { -1697, -90, -982, 8 }, - { -1688, -90, -964, 8 }, { -1680, -91, -945, 8 }, { -1671, -93, -927, 8 }, - { -1663, -94, -909, 8 }, { -1655, -95, -891, 8 }, { -1646, -95, -873, 8 }, - { -1638, -96, -854, 8 }, { -1631, -97, -836, 8 }, { -1623, -97, -818, 8 }, - { -1616, -98, -799, 8 }, { -1608, -99, -780, 8 }, { -1602, -100, -761, 8 }, - { -1595, -101, -743, 8 }, { -1589, -101, -724, 8 }, { -1583, -103, -704, 8 }, - { -1578, -104, -685, 8 }, { -1573, -106, -666, 8 }, { -1569, -107, -646, 8 }, - { -1565, -108, -626, 8 }, { -1563, -109, -606, 8 }, { -1561, -108, -587, 8 }, - { -1560, -108, -567, 8 }, { -1559, -107, -547, 8 }, { -1560, -106, -527, 8 }, - { -1560, -106, -507, 8 }, { -1561, -105, -487, 8 }, { -1563, -105, -467, 8 }, - { -1565, -105, -447, 8 }, { -1568, -105, -427, 8 }, { -1571, -105, -407, 8 }, - { -1573, -105, -387, 8 }, { -1576, -105, -367, 8 }, { -1580, -115, -348, 9 }, - { -1584, -121, -328, 9 }, { -1587, -119, -308, 9 }, { -1592, -116, -289, 9 }, - { -1596, -114, -269, 9 }, { -1601, -111, -250, 9 }, { -1607, -108, -231, 9 }, - { -1613, -105, -212, 9 }, { -1619, -102, -193, 9 }, { -1626, -98, -174, 9 }, - { -1634, -95, -155, 9 }, { -1641, -91, -137, 9 }, { -1650, -87, -119, 9 }, - { -1658, -83, -101, 9 }, { -1667, -80, -83, 9 }, { -1676, -76, -65, 9 }, - { -1686, -72, -47, 9 }, { -1696, -67, -30, 9 }, { -1707, -62, -14, 9 }, - { -1720, -57, 1, 9 }, { -1733, -53, 16, 9 }, { -1748, -50, 29, 9 }, - { -1764, -47, 42, 9 }, { -1781, -44, 52, 10 }, { -1798, -42, 61, 10 }, - { -1817, -40, 69, 10 }, { -1836, -38, 75, 10 }, { -1856, -35, 79, 10 }, - { -1876, -31, 82, 10 }, { -1896, -29, 83, 10 }, { -1916, -27, 83, 10 }, - { -1936, -25, 81, 10 }, { -1955, -23, 79, 10 }, { -1975, -20, 76, 10 }, - { -1995, -16, 71, 10 }, { -2014, -13, 65, 10 }, { -2032, -10, 58, 10 }, - { -2050, -7, 49, 10 }, { -2067, -6, 39, 10 }, { -2083, -6, 27, 10 }, - { -2098, -7, 13, 10 }, { -2111, -7, -1, 10 }, { -2124, -7, -17, 10 }, - { -2135, -7, -33, 10 }, { -2145, -7, -51, 10 }, { -2154, -8, -68, 10 }, - { -2163, -9, -86, 10 }, { -2171, -10, -104, 10 }, { -2179, -10, -123, 10 }, - { -2186, -11, -142, 10 }, { -2193, -12, -160, 10 }, { -2200, -12, -179, 10 }, - { -2206, -12, -198, 10 }, { -2212, -12, -217, 10 }, { -2218, -12, -236, 10 }, - { -2223, -11, -256, 10 }, { -2227, -11, -275, 10 }, { -2231, -11, -295, 10 }, - { -2234, -10, -315, 11 }, { -2236, -10, -335, 11 }, { -2238, -10, -355, 11 }, - { -2241, -9, -374, 11 }, { -2244, -9, -394, 11 }, { -2247, -9, -414, 11 }, - { -2251, -9, -433, 11 }, { -2256, -8, -453, 11 }, { -2261, -8, -472, 11 }, - { -2266, -7, -492, 11 }, { -2272, -6, -511, 11 }, { -2278, -5, -530, 11 }, - { -2285, -5, -549, 11 }, { -2291, -4, -568, 11 }, { -2298, -3, -587, 11 }, - { -2304, -3, -605, 11 }, { -2311, -3, -624, 11 }, { -2318, -2, -643, 11 }, - { -2325, -2, -662, 11 }, { -2332, -2, -680, 11 }, { -2340, -2, -699, 11 }, - { -2348, -1, -717, 11 }, { -2356, -1, -736, 11 }, { -2364, -1, -754, 11 }, - { -2373, 0, -772, 11 }, { -2382, 0, -790, 11 }, { -2392, 0, -807, 11 }, - { -2401, 0, -825, 11 }, { -2412, 0, -842, 11 }, { -2422, 0, -859, 11 }, - { -2433, 0, -876, 11 }, { -2444, 0, -892, 11 }, { -2456, 0, -909, 11 }, - { -2468, 0, -925, 11 }, { -2480, 0, -941, 12 }, { -2492, 0, -957, 12 }, - { -2503, 0, -973, 12 }, { -2515, 0, -989, 12 }, { -2527, 0, -1006, 12 }, - { -2538, 0, -1022, 12 }, { -2550, 0, -1039, 12 }, { -2561, 0, -1055, 12 }, - { -2572, 0, -1072, 12 }, { -2583, 0, -1089, 12 }, { -2594, 0, -1105, 12 }, - { -2604, 0, -1122, 12 }, { -2614, 0, -1140, 12 }, { -2624, 0, -1157, 12 }, - { -2634, 0, -1174, 12 }, { -2644, 0, -1192, 12 }, { -2653, 0, -1210, 12 }, - { -2662, 0, -1228, 12 }, { -2670, -1, -1246, 12 }, { -2679, -1, -1264, 12 }, - { -2687, -1, -1282, 12 }, { -2695, -1, -1300, 12 }, { -2703, -1, -1319, 12 }, - { -2711, -1, -1337, 12 }, { -2719, -1, -1356, 12 }, { -2727, -1, -1374, 12 }, - { -2734, -1, -1393, 12 }, { -2742, -1, -1411, 12 }, { -2750, -1, -1429, 12 }, - { -2758, -1, -1447, 12 }, { -2767, -1, -1466, 12 }, { -2775, -1, -1484, 12 }, - { -2784, -1, -1502, 12 }, { -2793, -1, -1520, 12 }, { -2802, -1, -1538, 12 }, - { -2811, -1, -1555, 12 }, { -2821, -1, -1573, 13 }, { -2830, -1, -1590, 13 }, - { -2840, -1, -1608, 13 }, { -2850, -1, -1625, 13 }, { -2861, -1, -1642, 13 }, - { -2872, -1, -1659, 13 }, { -2884, -1, -1675, 13 }, { -2896, -1, -1691, 13 }, - { -2909, -1, -1706, 13 }, { -2924, -1, -1720, 13 }, { -2939, -1, -1733, 13 }, - { -2955, -1, -1744, 13 }, { -2973, -1, -1753, 13 }, { -2992, -1, -1761, 13 }, - { -3011, -1, -1767, 13 }, { -3030, -1, -1770, 13 }, { -3050, -1, -1772, 13 }, - { -3070, -1, -1771, 13 }, { -3090, -1, -1767, 13 }, { -3109, -1, -1761, 13 }, - { -3127, -1, -1752, 13 }, { -3143, -1, -1741, 13 }, { -3158, -1, -1727, 13 }, - { -3171, -1, -1712, 13 }, { -3183, -1, -1696, 13 }, { -3193, -1, -1679, 13 }, - { -3201, -1, -1660, 13 }, { -3207, -1, -1641, 13 }, { -3212, -1, -1622, 13 }, - { -3215, -1, -1602, 13 }, { -3217, -1, -1582, 13 }, { -3217, -1, -1562, 13 }, - { -3216, -1, -1542, 13 }, { -3214, -1, -1522, 13 }, { -3210, -1, -1503, 13 }, - { -3206, -1, -1483, 13 }, { -3201, -1, -1464, 13 }, { -3195, -1, -1445, 13 }, - { -3187, -1, -1426, 13 }, { -3177, -1, -1409, 13 }, { -3167, -1, -1391, 13 }, - { -3156, -1, -1375, 14 }, { -3145, -1, -1358, 14 }, { -3133, -2, -1342, 14 }, - { -3120, -2, -1327, 14 }, { -3107, -3, -1312, 14 }, { -3093, -3, -1297, 14 }, - { -3079, -3, -1282, 14 }, { -3065, -4, -1268, 14 }, { -3051, -5, -1254, 14 }, - { -3037, -6, -1240, 14 }, { -3022, -7, -1227, 14 }, { -3007, -8, -1214, 14 }, - { -2992, -9, -1201, 14 }, { -2976, -10, -1188, 14 }, { -2960, -12, -1176, 14 }, - { -2944, -12, -1165, 14 }, { -2927, -13, -1154, 14 }, { -2910, -14, -1143, 14 }, - { -2893, -14, -1133, 14 }, { -2876, -15, -1122, 14 }, { -2860, -16, -1110, 14 }, - { -2844, -17, -1098, 14 }, { -2828, -17, -1086, 14 }, { -2814, -18, -1072, 14 }, - { -2801, -19, -1056, 14 }, { -2790, -19, -1040, 14 }, { -2781, -19, -1022, 14 }, - { -2774, -19, -1003, 14 }, { -2769, -19, -984, 14 }, { -2766, -19, -964, 14 }, - { -2765, -19, -944, 14 }, { -2767, -19, -924, 14 }, { -2770, -19, -904, 14 }, - { -2774, -19, -885, 14 }, { -2778, -19, -865, 14 }, { -2784, -18, -846, 14 }, - { -2789, -18, -827, 15 }, { -2795, -18, -807, 15 }, { -2801, -17, -788, 15 }, - { -2807, -17, -769, 15 }, { -2814, -17, -750, 15 }, { -2820, -16, -732, 15 }, - { -2827, -16, -713, 15 }, { -2835, -15, -694, 15 }, { -2843, -15, -676, 15 }, - { -2851, -14, -658, 15 }, { -2860, -14, -640, 15 }, { -2871, -13, -623, 15 }, - { -2880, -13, -605, 15 }, { -2889, -12, -587, 15 }, { -2897, -12, -569, 15 }, - { -2904, -11, -550, 15 }, { -2911, -11, -531, 15 }, { -2916, -11, -512, 15 }, - { -2920, -11, -492, 15 }, { -2923, -10, -473, 15 }, { -2924, -10, -453, 15 }, - { -2925, -10, -433, 15 }, { -2925, -10, -413, 15 }, { -2925, -9, -393, 15 }, - { -2924, -9, -373, 15 }, { -2923, -9, -353, 15 }, { -2922, -9, -333, 15 }, - { -2920, -9, -313, 15 }, { -2919, -9, -293, 15 }, { -2916, -8, -273, 15 }, - { -2914, -8, -253, 15 }, { -2910, -8, -233, 15 }, { -2907, -8, -214, 15 }, - { -2903, -7, -194, 15 }, { -2899, -7, -175, 16 }, { -2894, -7, -155, 16 }, - { -2889, -7, -136, 16 }, { -2883, -7, -117, 16 }, { -2877, -7, -97, 16 }, - { -2871, -7, -78, 16 }, { -2864, -6, -60, 16 }, { -2858, -6, -41, 16 }, - { -2850, -6, -22, 16 }, { -2843, -6, -4, 16 }, { -2835, -5, 14, 16 }, - { -2827, -5, 32, 16 }, { -2819, -5, 50, 16 }, { -2810, -5, 69, 16 }, - { -2801, -5, 87, 16 }, { -2792, -5, 104, 16 }, { -2783, -4, 122, 16 }, - { -2774, -4, 140, 16 }, { -2765, -4, 158, 16 }, { -2755, -4, 175, 16 }, - { -2745, -3, 192, 16 }, { -2735, -3, 210, 16 }, { -2725, -3, 227, 16 }, - { -2714, -3, 244, 16 }, { -2703, -2, 261, 16 }, { -2693, -2, 278, 16 }, - { -2682, -2, 295, 16 }, { -2671, -1, 311, 16 }, { -2659, -1, 328, 16 }, - { -2648, -1, 344, 16 }, { -2636, -1, 360, 16 }, { -2624, -1, 377, 16 }, - { -2612, -1, 392, 16 }, { -2600, -1, 408, 16 }, { -2587, -1, 424, 16 }, - { -2574, 0, 439, 16 }, { -2560, 0, 453, 16 }, { -2546, 0, 467, 16 }, - { -2532, 0, 481, 16 }, { -2517, 0, 495, 16 }, { -2503, 0, 509, 16 }, - { -2488, 0, 523, 16 }, { -2474, 0, 537, 17 }, { -2459, 0, 550, 17 }, - { -2444, 0, 563, 17 }, { -2428, 0, 576, 17 }, { -2413, 0, 588, 17 }, - { -2397, 0, 600, 17 }, { -2381, 0, 612, 17 }, { -2365, 0, 624, 17 }, - { -2348, 0, 636, 17 }, { -2332, 0, 648, 17 }, { -2316, 0, 660, 17 }, - { -2300, 0, 672, 17 }, { -2284, 0, 684, 17 }, { -2268, 0, 695, 17 }, - { -2251, 0, 705, 17 }, { -2233, 0, 715, 17 }, { -2215, 0, 725, 17 }, - { -2198, 0, 734, 17 }, { -2180, 0, 744, 17 }, { -2163, -2, 754, 18 }, - { -2146, -4, 764, 18 }, { -2129, -7, 774, 18 }, { -2111, -9, 785, 18 }, - { -2094, -11, 795, 18 }, { -2077, -12, 806, 18 }, { -2060, -13, 816, 18 }, - { -2043, -14, 827, 18 }, { -2026, -15, 838, 18 }, { -2010, -16, 848, 18 }, - { -1993, -17, 859, 18 }, { -1976, -17, 870, 18 }, { -1959, -18, 880, 18 }, - { -1942, -18, 891, 18 }, { -1925, -19, 901, 18 }, { -1908, -19, 912, 18 }, - { -1891, -19, 923, 18 }, { -1874, -19, 933, 18 }, { -1857, -18, 944, 18 }, - { -1840, -18, 954, 18 }, { -1823, -17, 965, 18 }, { -1806, -16, 975, 18 }, - { -1789, -16, 986, 18 }, { -1772, -15, 996, 18 }, { -1755, -14, 1007, 18 }, - { -1738, -13, 1017, 18 }, { -1720, -11, 1028, 18 }, { -1703, -10, 1038, 18 }, - { -1686, -8, 1048, 18 }, { -1669, -6, 1059, 18 }, { -1652, -3, 1069, 18 }, - { -1634, -1, 1079, 18 }, { -1617, 0, 1088, 19 }, { -1599, 0, 1098, 19 }, - { -1581, 0, 1106, 19 }, { -1563, -1, 1114, 19 }, { -1544, -1, 1121, 19 }, - { -1525, -1, 1129, 19 }, { -1507, -2, 1135, 19 }, { -1488, -2, 1142, 19 }, - { -1469, -2, 1149, 19 }, { -1450, -2, 1156, 19 }, { -1431, -3, 1162, 19 }, - { -1412, -3, 1168, 19 }, { -1393, -3, 1174, 19 }, { -1373, -4, 1179, 19 }, - { -1354, -4, 1183, 19 }, { -1334, -4, 1187, 19 }, { -1314, -4, 1190, 19 }, - { -1295, -1, 1192, 19 }, { -1275, 0, 1194, 19 }, { -1255, 3, 1196, 19 }, - { -1235, 5, 1197, 19 }, { -1215, 7, 1198, 19 }, { -1195, 10, 1198, 19 }, - { -1175, 13, 1197, 19 }, { -1155, 15, 1197, 19 }, { -1135, 18, 1196, 19 }, - { -1115, 21, 1195, 19 }, { -1095, 23, 1194, 19 }, { -1075, 26, 1192, 19 }, - { -1055, 28, 1190, 19 }, { -1035, 31, 1188, 19 }, { -1015, 33, 1185, 19 }, - { -995, 35, 1182, 19 }, { -976, 38, 1179, 19 }, { -956, 40, 1175, 19 }, - { -937, 43, 1170, 19 }, { -918, 46, 1164, 19 }, { -899, 50, 1157, 19 }, - { -881, 55, 1149, 19 }, { -863, 58, 1139, 19 }, { -845, 62, 1129, 19 }, - { -829, 65, 1119, 20 }, { -812, 69, 1107, 20 }, { -796, 72, 1095, 20 }, - { -780, 76, 1083, 20 }, { -765, 79, 1070, 20 }, { -750, 82, 1057, 20 }, - { -735, 86, 1043, 20 }, { -721, 89, 1030, 20 }, { -706, 93, 1016, 20 }, - { -691, 96, 1002, 20 }, { -677, 99, 989, 20 }, { -662, 103, 975, 20 }, - { -648, 106, 961, 20 }, { -633, 109, 948, 20 }, { -619, 113, 934, 20 }, - { -604, 116, 920, 20 }, { -590, 119, 906, 20 }, { -575, 123, 892, 20 }, - { -561, 126, 878, 20 }, { -546, 129, 865, 20 }, { -530, 133, 853, 20 }, - { -513, 135, 842, 20 }, { -496, 137, 831, 20 }, { -479, 138, 821, 20 }, - { -461, 139, 813, 20 }, { -442, 140, 805, 20 }, { -424, 142, 798, 20 }, - { -404, 143, 792, 20 }, { -385, 144, 787, 20 }, { -366, 146, 781, 20 }, - { -347, 147, 775, 20 }, { -328, 148, 769, 20 }, { -309, 149, 762, 20 }, - { -290, 151, 756, 20 }, { -271, 152, 749, 20 }, { -252, 153, 742, 20 }, - { -234, 155, 735, 20 }, { -216, 156, 726, 20 }, { -199, 158, 715, 20 }, - { -183, 159, 703, 20 }, { -169, 161, 689, 20 }, { -157, 162, 673, 20 }, - { -145, 163, 657, 20 }, { -135, 165, 640, 1 }, { -125, 166, 622, 1 }, - { -117, 167, 604, 1 }, { -109, 169, 585, 1 }, { -102, 170, 567, 1 }, - { -95, 172, 548, 1 }, { -88, 173, 529, 1 }, { -81, 175, 511, 1 }, - { -75, 176, 492, 1 }, { -69, 176, 472, 1 }, { -63, 177, 453, 1 }, - { -58, 178, 434, 1 }, { -53, 178, 415, 1 }, { -48, 179, 395, 1 }, - { -43, 179, 376, 1 }, { -39, 179, 356, 1 }, { -36, 180, 336, 1 }, - { -32, 180, 317, 1 }, { -29, 180, 297, 1 }, { -26, 180, 277, 1 }, - { -24, 180, 257, 1 }, { -21, 180, 237, 1 }, { -19, 180, 217, 1 }, - { -17, 180, 198, 1 }, { -16, 180, 178, 1 }, { -14, 180, 158, 1 }, - { -12, 180, 138, 1 }, { -11, 180, 118, 1 }, { -10, 180, 98, 1 }, - { -8, 180, 78, 1 }, { -7, 180, 58, 1 }, { -6, 180, 38, 1 }, - { -4, 180, 18, 1 }, { -3, 180, -1, 1 }, { -32768, -32768, -32768, 0 }, +#include "courses/yoshi_valley/d_course_yoshi_valley_track_path.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_yoshi_valley_track_path_2[] = { - { -6, 180, -13, 1 }, - { -5, 180, -33, 2 }, - { -5, 180, -53, 2 }, - { -5, 180, -73, 2 }, - { -5, 180, -93, 2 }, - { -5, 180, -113, 2 }, - { -5, 180, -133, 2 }, - { -5, 180, -153, 2 }, - { -5, 180, -173, 2 }, - { -5, 180, -193, 2 }, - { -5, 180, -213, 2 }, - { -5, 180, -233, 2 }, - { -5, 180, -253, 2 }, - { -5, 180, -273, 2 }, - { -5, 180, -293, 2 }, - { -6, 180, -313, 2 }, - { -6, 180, -333, 2 }, - { -6, 180, -353, 2 }, - { -7, 180, -373, 2 }, - { -7, 180, -393, 2 }, - { -8, 180, -413, 2 }, - { -9, 180, -433, 2 }, - { -9, 180, -453, 2 }, - { -10, 180, -473, 2 }, - { -11, 180, -493, 2 }, - { -12, 180, -513, 2 }, - { -13, 180, -533, 2 }, - { -15, 180, -553, 2 }, - { -16, 180, -573, 2 }, - { -17, 180, -593, 2 }, - { -19, 180, -613, 2 }, - { -20, 180, -632, 2 }, - { -22, 180, -652, 2 }, - { -24, 180, -672, 2 }, - { -26, 180, -692, 2 }, - { -28, 180, -712, 2 }, - { -30, 180, -732, 2 }, - { -33, 180, -752, 2 }, - { -35, 180, -772, 2 }, - { -38, 180, -792, 2 }, - { -41, 180, -811, 2 }, - { -45, 180, -831, 2 }, - { -48, 180, -851, 2 }, - { -52, 180, -870, 3 }, - { -55, 180, -890, 3 }, - { -59, 180, -910, 3 }, - { -63, 180, -929, 3 }, - { -68, 181, -949, 3 }, - { -72, 181, -968, 3 }, - { -76, 181, -988, 3 }, - { -81, 181, -1007, 3 }, - { -86, 181, -1027, 3 }, - { -91, 182, -1046, 3 }, - { -96, 182, -1065, 3 }, - { -101, 182, -1085, 3 }, - { -107, 182, -1104, 3 }, - { -112, 182, -1123, 3 }, - { -117, 183, -1143, 3 }, - { -122, 183, -1162, 3 }, - { -128, 183, -1181, 3 }, - { -133, 183, -1201, 3 }, - { -139, 184, -1220, 3 }, - { -144, 184, -1239, 3 }, - { -150, 184, -1258, 3 }, - { -156, 184, -1277, 3 }, - { -161, 184, -1297, 3 }, - { -167, 184, -1316, 3 }, - { -173, 184, -1335, 3 }, - { -179, 183, -1354, 3 }, - { -185, 183, -1373, 3 }, - { -192, 182, -1392, 3 }, - { -199, 182, -1411, 3 }, - { -206, 181, -1429, 3 }, - { -214, 181, -1448, 3 }, - { -222, 180, -1466, 3 }, - { -231, 180, -1484, 3 }, - { -241, 179, -1501, 3 }, - { -252, 177, -1518, 3 }, - { -264, 176, -1534, 3 }, - { -277, 173, -1549, 3 }, - { -291, 171, -1563, 3 }, - { -306, 169, -1576, 3 }, - { -322, 167, -1588, 3 }, - { -340, 165, -1598, 3 }, - { -358, 163, -1607, 3 }, - { -377, 160, -1613, 3 }, - { -396, 158, -1617, 3 }, - { -416, 156, -1620, 3 }, - { -436, 153, -1623, 3 }, - { -456, 151, -1624, 3 }, - { -476, 148, -1624, 3 }, - { -496, 145, -1623, 4 }, - { -516, 143, -1621, 4 }, - { -535, 141, -1617, 4 }, - { -555, 138, -1613, 4 }, - { -574, 135, -1608, 4 }, - { -594, 132, -1602, 4 }, - { -613, 128, -1596, 4 }, - { -632, 125, -1590, 4 }, - { -650, 121, -1583, 4 }, - { -669, 118, -1576, 4 }, - { -688, 115, -1569, 4 }, - { -707, 111, -1562, 4 }, - { -725, 108, -1554, 4 }, - { -744, 104, -1547, 4 }, - { -762, 100, -1539, 4 }, - { -781, 97, -1532, 4 }, - { -799, 93, -1524, 4 }, - { -818, 89, -1516, 4 }, - { -836, 86, -1508, 4 }, - { -854, 82, -1500, 4 }, - { -873, 78, -1492, 4 }, - { -891, 75, -1484, 4 }, - { -909, 71, -1476, 4 }, - { -928, 67, -1468, 4 }, - { -946, 64, -1460, 5 }, - { -965, 60, -1452, 5 }, - { -983, 57, -1445, 5 }, - { -1002, 53, -1438, 5 }, - { -1020, 50, -1431, 5 }, - { -1039, 46, -1424, 5 }, - { -1058, 43, -1418, 5 }, - { -1077, 40, -1412, 5 }, - { -1097, 37, -1407, 5 }, - { -1116, 34, -1403, 5 }, - { -1136, 31, -1401, 5 }, - { -1156, 28, -1401, 5 }, - { -1176, 26, -1403, 5 }, - { -1195, 24, -1409, 5 }, - { -1214, 22, -1416, 6 }, - { -1232, 21, -1425, 6 }, - { -1248, 19, -1437, 6 }, - { -1263, 18, -1450, 6 }, - { -1279, 17, -1463, 6 }, - { -1294, 15, -1476, 6 }, - { -1309, 14, -1488, 6 }, - { -1325, 12, -1501, 6 }, - { -1340, 10, -1514, 6 }, - { -1356, 9, -1526, 6 }, - { -1371, 7, -1539, 6 }, - { -1387, 5, -1551, 6 }, - { -1403, 4, -1564, 6 }, - { -1419, 3, -1575, 6 }, - { -1436, 3, -1586, 6 }, - { -1453, 2, -1596, 6 }, - { -1471, 1, -1606, 6 }, - { -1489, 0, -1615, 6 }, - { -1507, 0, -1623, 6 }, - { -1526, 0, -1630, 6 }, - { -1544, 0, -1637, 6 }, - { -1564, 0, -1643, 6 }, - { -1583, 0, -1648, 6 }, - { -1602, 0, -1652, 6 }, - { -1622, 0, -1655, 6 }, - { -1642, 0, -1656, 6 }, - { -1662, 0, -1656, 6 }, - { -1682, 0, -1653, 6 }, - { -1702, 0, -1648, 6 }, - { -1720, -1, -1641, 6 }, - { -1738, -2, -1632, 6 }, - { -1755, -2, -1621, 6 }, - { -1770, -2, -1609, 6 }, - { -1784, -3, -1594, 6 }, - { -1797, -4, -1579, 6 }, - { -1807, -5, -1561, 7 }, - { -1814, -7, -1543, 7 }, - { -1820, -9, -1523, 7 }, - { -1824, -11, -1504, 7 }, - { -1827, -13, -1484, 7 }, - { -1830, -16, -1464, 7 }, - { -1832, -20, -1444, 7 }, - { -1834, -23, -1425, 7 }, - { -1836, -27, -1405, 7 }, - { -1837, -31, -1385, 7 }, - { -1838, -34, -1365, 7 }, - { -1839, -38, -1345, 7 }, - { -1842, -43, -1325, 7 }, - { -1845, -48, -1305, 7 }, - { -1851, -52, -1286, 7 }, - { -1862, -55, -1269, 7 }, - { -1878, -58, -1258, 7 }, - { -1895, -61, -1247, 28 }, - { -1913, -66, -1238, 28 }, - { -1931, -70, -1229, 28 }, - { -1948, -75, -1220, 28 }, - { -1965, -79, -1208, 28 }, - { -1980, -84, -1195, 28 }, - { -1994, -88, -1181, 28 }, - { -2007, -92, -1166, 28 }, - { -2019, -95, -1150, 28 }, - { -2031, -97, -1134, 28 }, - { -2043, -98, -1118, 28 }, - { -2055, -99, -1102, 28 }, - { -2067, -100, -1086, 28 }, - { -2079, -100, -1069, 28 }, - { -2091, -100, -1053, 28 }, - { -2103, -100, -1037, 28 }, - { -2115, -100, -1021, 28 }, - { -2127, -100, -1006, 28 }, - { -2140, -100, -990, 28 }, - { -2152, -100, -974, 28 }, - { -2164, -102, -958, 29 }, - { -2176, -105, -942, 29 }, - { -2188, -107, -926, 29 }, - { -2200, -109, -910, 29 }, - { -2212, -110, -894, 29 }, - { -2224, -110, -878, 29 }, - { -2236, -109, -862, 29 }, - { -2248, -107, -846, 29 }, - { -2260, -104, -830, 29 }, - { -2272, -101, -814, 29 }, - { -2284, -100, -798, 30 }, - { -2296, -100, -782, 30 }, - { -2308, -100, -766, 30 }, - { -2320, -100, -750, 30 }, - { -2332, -100, -734, 30 }, - { -2344, -100, -718, 30 }, - { -2356, -100, -702, 30 }, - { -2368, -100, -686, 30 }, - { -2380, -100, -670, 30 }, - { -2391, -100, -653, 30 }, - { -2403, -100, -637, 30 }, - { -2415, -99, -621, 30 }, - { -2427, -99, -605, 30 }, - { -2438, -98, -589, 30 }, - { -2450, -98, -572, 30 }, - { -2462, -98, -556, 30 }, - { -2472, -97, -539, 30 }, - { -2483, -97, -522, 30 }, - { -2493, -96, -505, 30 }, - { -2502, -94, -487, 30 }, - { -2510, -92, -469, 30 }, - { -2518, -91, -451, 30 }, - { -2525, -89, -432, 30 }, - { -2531, -88, -413, 30 }, - { -2536, -86, -393, 30 }, - { -2541, -82, -374, 30 }, - { -2544, -79, -354, 30 }, - { -2547, -75, -334, 30 }, - { -2549, -72, -314, 30 }, - { -2551, -67, -294, 30 }, - { -2552, -61, -274, 30 }, - { -2553, -55, -254, 30 }, - { -2552, -50, -234, 30 }, - { -2550, -44, -215, 30 }, - { -2547, -38, -195, 30 }, - { -2541, -33, -176, 30 }, - { -2532, -28, -158, 30 }, - { -2521, -23, -141, 30 }, - { -2507, -19, -127, 30 }, - { -2492, -15, -114, 30 }, - { -2475, -12, -103, 30 }, - { -2458, -8, -93, 30 }, - { -2440, -5, -84, 30 }, - { -2421, 0, -77, 30 }, - { -2402, 2, -71, 30 }, - { -2382, 6, -67, 30 }, - { -2362, 9, -66, 30 }, - { -2342, 11, -66, 30 }, - { -2323, 1, -69, 10 }, - { -2303, -8, -74, 10 }, - { -2284, -9, -80, 10 }, - { -2266, -11, -89, 10 }, - { -2250, -12, -100, 10 }, - { -2235, -12, -114, 10 }, - { -2223, -12, -130, 10 }, - { -2214, -12, -148, 10 }, - { -2209, -12, -167, 10 }, - { -2206, -12, -187, 10 }, - { -2205, -12, -207, 10 }, - { -2206, -12, -227, 10 }, - { -2207, -11, -247, 10 }, - { -2209, -11, -267, 10 }, - { -2212, -11, -286, 10 }, - { -2215, -10, -306, 11 }, - { -2219, -10, -326, 11 }, - { -2223, -9, -346, 11 }, - { -2227, -9, -365, 11 }, - { -2232, -9, -384, 11 }, - { -2237, -9, -404, 11 }, - { -2243, -9, -423, 11 }, - { -2249, -8, -442, 11 }, - { -2256, -8, -461, 11 }, - { -2263, -7, -480, 11 }, - { -2270, -7, -498, 11 }, - { -2277, -6, -517, 11 }, - { -2285, -5, -535, 11 }, - { -2292, -5, -554, 11 }, - { -2299, -4, -573, 11 }, - { -2306, -3, -591, 11 }, - { -2313, -3, -610, 11 }, - { -2321, -3, -629, 11 }, - { -2328, -2, -648, 11 }, - { -2335, -2, -666, 11 }, - { -2342, -2, -685, 11 }, - { -2349, -1, -704, 11 }, - { -2356, -1, -722, 11 }, - { -2364, -1, -741, 11 }, - { -2372, 0, -759, 11 }, - { -2380, 0, -778, 11 }, - { -2388, 0, -796, 11 }, - { -2397, 0, -814, 11 }, - { -2407, 0, -831, 11 }, - { -2416, 0, -849, 11 }, - { -2426, 0, -866, 11 }, - { -2437, 0, -883, 11 }, - { -2447, 0, -900, 11 }, - { -2459, 0, -917, 11 }, - { -2470, 0, -933, 11 }, - { -2482, 0, -949, 12 }, - { -2494, 0, -965, 12 }, - { -2506, 0, -981, 12 }, - { -2519, 0, -997, 12 }, - { -2531, 0, -1012, 12 }, - { -2543, 0, -1028, 12 }, - { -2555, 0, -1045, 12 }, - { -2566, 0, -1061, 12 }, - { -2577, 0, -1078, 12 }, - { -2588, 0, -1095, 12 }, - { -2598, 0, -1112, 12 }, - { -2609, 0, -1129, 12 }, - { -2619, 0, -1146, 12 }, - { -2629, 0, -1163, 12 }, - { -2639, 0, -1181, 12 }, - { -2648, 0, -1198, 12 }, - { -2658, 0, -1216, 12 }, - { -2667, -1, -1234, 12 }, - { -2677, -1, -1251, 12 }, - { -2686, -1, -1269, 12 }, - { -2695, -1, -1287, 12 }, - { -2704, -1, -1305, 12 }, - { -2713, -1, -1323, 12 }, - { -2722, -1, -1341, 12 }, - { -2731, -1, -1359, 12 }, - { -2740, -1, -1377, 12 }, - { -2748, -1, -1395, 12 }, - { -2757, -1, -1413, 12 }, - { -2765, -1, -1431, 12 }, - { -2774, 0, -1449, 12 }, - { -2783, 0, -1467, 12 }, - { -2791, 0, -1485, 12 }, - { -2800, 0, -1503, 12 }, - { -2809, 0, -1521, 12 }, - { -2818, 0, -1539, 12 }, - { -2827, 0, -1557, 13 }, - { -2837, -1, -1574, 13 }, - { -2846, -1, -1592, 13 }, - { -2856, -1, -1610, 13 }, - { -2865, -1, -1627, 13 }, - { -2875, -1, -1644, 13 }, - { -2886, -1, -1662, 13 }, - { -2896, -1, -1678, 13 }, - { -2907, -1, -1695, 13 }, - { -2919, -1, -1712, 13 }, - { -2931, -1, -1727, 13 }, - { -2945, -1, -1742, 13 }, - { -2960, -1, -1754, 13 }, - { -2979, -1, -1762, 13 }, - { -2998, -1, -1769, 13 }, - { -3017, -1, -1773, 13 }, - { -3037, -1, -1776, 13 }, - { -3057, -1, -1776, 13 }, - { -3077, -1, -1773, 13 }, - { -3096, -1, -1769, 13 }, - { -3115, -1, -1761, 13 }, - { -3132, -1, -1750, 13 }, - { -3147, -1, -1737, 13 }, - { -3161, -1, -1723, 13 }, - { -3173, -1, -1707, 13 }, - { -3184, -1, -1690, 13 }, - { -3193, -1, -1672, 13 }, - { -3200, -1, -1654, 13 }, - { -3205, -1, -1634, 13 }, - { -3209, -1, -1615, 13 }, - { -3211, -1, -1595, 13 }, - { -3212, -1, -1575, 13 }, - { -3212, -1, -1555, 13 }, - { -3210, -1, -1535, 13 }, - { -3208, -1, -1515, 13 }, - { -3205, -1, -1495, 13 }, - { -3201, -1, -1476, 13 }, - { -3196, -1, -1456, 13 }, - { -3190, -1, -1437, 13 }, - { -3182, -1, -1419, 13 }, - { -3174, -1, -1401, 13 }, - { -3165, -1, -1383, 13 }, - { -3154, -1, -1366, 14 }, - { -3143, -2, -1349, 14 }, - { -3131, -2, -1333, 14 }, - { -3119, -3, -1317, 14 }, - { -3105, -3, -1302, 14 }, - { -3092, -3, -1288, 14 }, - { -3078, -4, -1274, 14 }, - { -3063, -4, -1260, 14 }, - { -3048, -6, -1246, 14 }, - { -3033, -7, -1233, 14 }, - { -3018, -8, -1221, 14 }, - { -3002, -9, -1209, 14 }, - { -2985, -10, -1197, 14 }, - { -2969, -11, -1186, 14 }, - { -2952, -12, -1175, 14 }, - { -2935, -13, -1165, 14 }, - { -2917, -13, -1155, 14 }, - { -2900, -14, -1144, 14 }, - { -2883, -14, -1134, 14 }, - { -2867, -15, -1123, 14 }, - { -2850, -16, -1111, 14 }, - { -2834, -16, -1099, 14 }, - { -2819, -17, -1086, 14 }, - { -2805, -18, -1072, 14 }, - { -2792, -19, -1057, 14 }, - { -2782, -19, -1039, 14 }, - { -2773, -19, -1021, 14 }, - { -2767, -19, -1003, 14 }, - { -2762, -19, -983, 14 }, - { -2760, -19, -963, 14 }, - { -2762, -19, -943, 14 }, - { -2764, -19, -923, 14 }, - { -2768, -19, -904, 14 }, - { -2772, -19, -884, 14 }, - { -2777, -19, -865, 14 }, - { -2782, -18, -845, 14 }, - { -2787, -18, -826, 15 }, - { -2792, -18, -807, 15 }, - { -2797, -17, -787, 15 }, - { -2803, -17, -768, 15 }, - { -2810, -17, -749, 15 }, - { -2816, -16, -730, 15 }, - { -2824, -16, -712, 15 }, - { -2832, -15, -693, 15 }, - { -2840, -15, -675, 15 }, - { -2850, -14, -658, 15 }, - { -2861, -14, -641, 15 }, - { -2872, -13, -625, 15 }, - { -2883, -13, -608, 15 }, - { -2893, -12, -591, 15 }, - { -2902, -12, -573, 15 }, - { -2910, -12, -554, 15 }, - { -2917, -12, -536, 15 }, - { -2923, -11, -516, 15 }, - { -2927, -11, -497, 15 }, - { -2929, -10, -477, 15 }, - { -2931, -10, -457, 15 }, - { -2932, -10, -437, 15 }, - { -2932, -10, -417, 15 }, - { -2931, -10, -397, 15 }, - { -2930, -9, -377, 15 }, - { -2929, -9, -357, 15 }, - { -2927, -9, -337, 15 }, - { -2925, -9, -317, 15 }, - { -2923, -9, -297, 15 }, - { -2920, -9, -277, 15 }, - { -2917, -8, -258, 15 }, - { -2913, -8, -238, 15 }, - { -2909, -8, -218, 15 }, - { -2904, -7, -199, 15 }, - { -2900, -7, -180, 15 }, - { -2894, -7, -160, 16 }, - { -2889, -7, -141, 16 }, - { -2883, -7, -122, 16 }, - { -2876, -7, -103, 16 }, - { -2870, -6, -84, 16 }, - { -2863, -6, -65, 16 }, - { -2855, -6, -47, 16 }, - { -2848, -6, -28, 16 }, - { -2840, -6, -10, 16 }, - { -2832, -6, 8, 16 }, - { -2824, -5, 26, 16 }, - { -2816, -5, 44, 16 }, - { -2807, -5, 62, 16 }, - { -2798, -5, 80, 16 }, - { -2789, -4, 98, 16 }, - { -2780, -4, 116, 16 }, - { -2771, -4, 134, 16 }, - { -2761, -4, 151, 16 }, - { -2752, -3, 169, 16 }, - { -2742, -3, 186, 16 }, - { -2732, -3, 203, 16 }, - { -2721, -3, 221, 16 }, - { -2711, -2, 238, 16 }, - { -2700, -2, 255, 16 }, - { -2690, -2, 272, 16 }, - { -2679, -2, 288, 16 }, - { -2668, -1, 305, 16 }, - { -2657, -1, 322, 16 }, - { -2646, -1, 338, 16 }, - { -2634, -1, 355, 16 }, - { -2623, -1, 371, 16 }, - { -2611, -1, 387, 16 }, - { -2599, -1, 403, 16 }, - { -2586, -1, 419, 16 }, - { -2574, 0, 435, 16 }, - { -2561, 0, 450, 16 }, - { -2547, 0, 464, 16 }, - { -2533, 0, 479, 16 }, - { -2520, 0, 493, 16 }, - { -2506, 0, 508, 16 }, - { -2492, 0, 522, 16 }, - { -2477, 0, 536, 17 }, - { -2463, 0, 550, 17 }, - { -2448, 0, 563, 17 }, - { -2433, 0, 576, 17 }, - { -2418, 0, 589, 17 }, - { -2402, 0, 602, 17 }, - { -2386, 0, 614, 17 }, - { -2369, 0, 624, 17 }, - { -2352, 0, 635, 17 }, - { -2336, 0, 647, 17 }, - { -2320, 0, 659, 17 }, - { -2304, 0, 671, 17 }, - { -2287, 0, 682, 17 }, - { -2270, 0, 692, 17 }, - { -2253, 0, 703, 17 }, - { -2236, 0, 713, 17 }, - { -2218, 0, 723, 17 }, - { -2201, 0, 733, 17 }, - { -2183, 0, 742, 17 }, - { -2166, -1, 753, 18 }, - { -2149, -4, 763, 18 }, - { -2132, -6, 773, 18 }, - { -2115, -9, 784, 18 }, - { -2098, -10, 794, 18 }, - { -2081, -12, 805, 18 }, - { -2064, -13, 816, 18 }, - { -2047, -14, 826, 18 }, - { -2030, -15, 837, 18 }, - { -2013, -16, 847, 18 }, - { -1996, -16, 858, 18 }, - { -1979, -17, 868, 18 }, - { -1962, -18, 879, 18 }, - { -1945, -18, 890, 18 }, - { -1928, -19, 900, 18 }, - { -1911, -19, 911, 18 }, - { -1894, -19, 921, 18 }, - { -1877, -19, 932, 18 }, - { -1860, -18, 942, 18 }, - { -1843, -18, 952, 18 }, - { -1826, -17, 963, 18 }, - { -1809, -16, 973, 18 }, - { -1792, -16, 984, 18 }, - { -1774, -15, 994, 18 }, - { -1757, -14, 1004, 18 }, - { -1740, -13, 1015, 18 }, - { -1723, -11, 1025, 18 }, - { -1706, -10, 1035, 18 }, - { -1689, -9, 1046, 18 }, - { -1671, -6, 1056, 18 }, - { -1654, -4, 1066, 18 }, - { -1637, -1, 1075, 18 }, - { -1619, 0, 1085, 19 }, - { -1601, 0, 1094, 19 }, - { -1583, 0, 1103, 19 }, - { -1565, -1, 1111, 19 }, - { -1546, -1, 1118, 19 }, - { -1527, -1, 1125, 19 }, - { -1509, -2, 1132, 19 }, - { -1490, -2, 1139, 19 }, - { -1471, -2, 1146, 19 }, - { -1452, -2, 1152, 19 }, - { -1433, -3, 1159, 19 }, - { -1415, -3, 1166, 19 }, - { -1396, -3, 1173, 19 }, - { -1377, -4, 1178, 19 }, - { -1357, -4, 1184, 19 }, - { -1338, -4, 1188, 19 }, - { -1318, -4, 1192, 19 }, - { -1298, -2, 1195, 19 }, - { -1278, 0, 1197, 19 }, - { -1258, 2, 1199, 19 }, - { -1238, 4, 1200, 19 }, - { -1218, 7, 1200, 19 }, - { -1198, 9, 1200, 19 }, - { -1178, 12, 1200, 19 }, - { -1158, 15, 1199, 19 }, - { -1138, 17, 1198, 19 }, - { -1118, 20, 1196, 19 }, - { -1099, 23, 1194, 19 }, - { -1079, 25, 1191, 19 }, - { -1059, 28, 1188, 19 }, - { -1039, 30, 1185, 19 }, - { -1020, 33, 1181, 19 }, - { -1000, 35, 1176, 19 }, - { -981, 38, 1171, 19 }, - { -962, 40, 1165, 19 }, - { -943, 42, 1158, 19 }, - { -924, 45, 1151, 19 }, - { -906, 50, 1144, 19 }, - { -888, 54, 1135, 19 }, - { -870, 59, 1126, 19 }, - { -852, 62, 1116, 19 }, - { -835, 66, 1106, 20 }, - { -819, 69, 1094, 20 }, - { -803, 73, 1083, 20 }, - { -787, 76, 1070, 20 }, - { -771, 79, 1057, 20 }, - { -756, 83, 1045, 20 }, - { -741, 86, 1032, 20 }, - { -725, 90, 1019, 20 }, - { -710, 93, 1006, 20 }, - { -695, 96, 993, 20 }, - { -679, 100, 981, 20 }, - { -664, 103, 968, 20 }, - { -649, 107, 955, 20 }, - { -633, 110, 942, 20 }, - { -618, 113, 929, 20 }, - { -603, 117, 916, 20 }, - { -588, 120, 903, 20 }, - { -572, 123, 890, 20 }, - { -557, 127, 878, 20 }, - { -540, 130, 866, 20 }, - { -524, 133, 855, 20 }, - { -507, 136, 844, 20 }, - { -490, 137, 834, 20 }, - { -472, 138, 824, 20 }, - { -454, 139, 816, 20 }, - { -436, 141, 808, 20 }, - { -417, 142, 801, 20 }, - { -398, 143, 794, 20 }, - { -379, 145, 787, 20 }, - { -361, 146, 780, 20 }, - { -342, 147, 773, 20 }, - { -323, 148, 766, 20 }, - { -304, 150, 759, 20 }, - { -285, 151, 753, 20 }, - { -266, 152, 746, 20 }, - { -248, 154, 738, 20 }, - { -231, 155, 728, 20 }, - { -214, 157, 717, 20 }, - { -199, 158, 704, 20 }, - { -185, 159, 689, 20 }, - { -173, 161, 674, 20 }, - { -161, 163, 658, 20 }, - { -150, 164, 641, 20 }, - { -140, 166, 624, 1 }, - { -130, 167, 606, 1 }, - { -121, 168, 589, 1 }, - { -112, 170, 571, 1 }, - { -103, 171, 553, 1 }, - { -95, 173, 534, 1 }, - { -87, 174, 516, 1 }, - { -79, 175, 497, 1 }, - { -72, 176, 479, 1 }, - { -65, 177, 460, 1 }, - { -59, 177, 441, 1 }, - { -53, 178, 422, 1 }, - { -48, 178, 403, 1 }, - { -43, 179, 383, 1 }, - { -38, 179, 364, 1 }, - { -34, 179, 344, 1 }, - { -31, 180, 324, 1 }, - { -28, 180, 305, 1 }, - { -25, 180, 285, 1 }, - { -22, 180, 265, 1 }, - { -20, 180, 245, 1 }, - { -18, 180, 225, 1 }, - { -17, 180, 205, 1 }, - { -15, 180, 185, 1 }, - { -14, 180, 165, 1 }, - { -13, 180, 145, 1 }, - { -12, 180, 125, 1 }, - { -11, 180, 105, 1 }, - { -10, 180, 85, 1 }, - { -9, 180, 65, 1 }, - { -8, 180, 45, 1 }, - { -7, 180, 25, 1 }, - { -6, 180, 5, 1 }, - { -32768, -32768, -32768, 0 }, +#include "courses/yoshi_valley/d_course_yoshi_valley_track_path_2.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_yoshi_valley_track_path_3[] = { - { -3, 180, -11, 1 }, - { -2, 180, -31, 2 }, - { -2, 180, -51, 2 }, - { -2, 180, -71, 2 }, - { -2, 180, -91, 2 }, - { -1, 180, -111, 2 }, - { -1, 180, -131, 2 }, - { -1, 180, -151, 2 }, - { -1, 180, -171, 2 }, - { -1, 180, -191, 2 }, - { -1, 180, -211, 2 }, - { -1, 180, -231, 2 }, - { -2, 180, -251, 2 }, - { -2, 180, -271, 2 }, - { -3, 180, -291, 2 }, - { -3, 180, -311, 2 }, - { -4, 180, -331, 2 }, - { -5, 180, -351, 2 }, - { -6, 180, -371, 2 }, - { -7, 180, -391, 2 }, - { -8, 180, -411, 2 }, - { -9, 180, -431, 2 }, - { -10, 180, -451, 2 }, - { -11, 180, -471, 2 }, - { -12, 180, -491, 2 }, - { -14, 180, -510, 2 }, - { -15, 180, -530, 2 }, - { -17, 180, -550, 2 }, - { -18, 180, -570, 2 }, - { -20, 180, -590, 2 }, - { -22, 180, -610, 2 }, - { -23, 180, -630, 2 }, - { -25, 180, -650, 2 }, - { -28, 180, -670, 2 }, - { -30, 180, -690, 2 }, - { -32, 180, -710, 2 }, - { -34, 180, -730, 2 }, - { -37, 180, -750, 2 }, - { -39, 180, -769, 2 }, - { -42, 180, -789, 2 }, - { -45, 180, -809, 2 }, - { -48, 180, -829, 2 }, - { -51, 180, -849, 2 }, - { -55, 180, -868, 3 }, - { -58, 180, -888, 3 }, - { -62, 180, -908, 3 }, - { -66, 180, -927, 3 }, - { -70, 180, -947, 3 }, - { -74, 181, -966, 3 }, - { -79, 181, -986, 3 }, - { -83, 181, -1005, 3 }, - { -88, 181, -1025, 3 }, - { -92, 182, -1044, 3 }, - { -97, 182, -1064, 3 }, - { -102, 182, -1083, 3 }, - { -108, 182, -1102, 3 }, - { -113, 182, -1122, 3 }, - { -118, 183, -1141, 3 }, - { -124, 183, -1160, 3 }, - { -129, 183, -1180, 3 }, - { -135, 183, -1199, 3 }, - { -140, 184, -1218, 3 }, - { -146, 184, -1237, 3 }, - { -151, 184, -1256, 3 }, - { -157, 184, -1276, 3 }, - { -163, 184, -1295, 3 }, - { -169, 184, -1314, 3 }, - { -175, 184, -1333, 3 }, - { -181, 183, -1352, 3 }, - { -187, 183, -1371, 3 }, - { -193, 182, -1390, 3 }, - { -200, 182, -1409, 3 }, - { -207, 181, -1428, 3 }, - { -214, 181, -1446, 3 }, - { -222, 180, -1465, 3 }, - { -231, 180, -1483, 3 }, - { -241, 179, -1500, 3 }, - { -251, 177, -1517, 3 }, - { -263, 176, -1534, 3 }, - { -276, 173, -1549, 3 }, - { -290, 171, -1563, 3 }, - { -306, 169, -1575, 3 }, - { -322, 167, -1586, 3 }, - { -340, 165, -1596, 3 }, - { -359, 163, -1603, 3 }, - { -378, 160, -1609, 3 }, - { -397, 158, -1613, 3 }, - { -417, 156, -1616, 3 }, - { -437, 153, -1618, 3 }, - { -457, 150, -1619, 3 }, - { -477, 148, -1619, 3 }, - { -497, 145, -1618, 4 }, - { -517, 143, -1615, 4 }, - { -537, 140, -1612, 4 }, - { -556, 138, -1608, 4 }, - { -576, 135, -1604, 4 }, - { -595, 131, -1599, 4 }, - { -614, 128, -1594, 4 }, - { -634, 124, -1588, 4 }, - { -653, 121, -1583, 4 }, - { -672, 118, -1577, 4 }, - { -691, 114, -1570, 4 }, - { -710, 111, -1564, 4 }, - { -729, 107, -1557, 4 }, - { -748, 104, -1550, 4 }, - { -766, 100, -1543, 4 }, - { -785, 96, -1536, 4 }, - { -804, 93, -1529, 4 }, - { -822, 89, -1521, 4 }, - { -841, 85, -1514, 4 }, - { -859, 82, -1506, 4 }, - { -878, 78, -1499, 4 }, - { -896, 74, -1491, 4 }, - { -915, 70, -1483, 4 }, - { -933, 67, -1475, 4 }, - { -951, 63, -1467, 5 }, - { -970, 60, -1459, 5 }, - { -988, 56, -1450, 5 }, - { -1006, 53, -1442, 5 }, - { -1024, 49, -1433, 5 }, - { -1041, 46, -1423, 5 }, - { -1059, 42, -1414, 5 }, - { -1076, 40, -1403, 5 }, - { -1093, 37, -1393, 5 }, - { -1109, 34, -1381, 5 }, - { -1125, 32, -1369, 5 }, - { -1140, 28, -1355, 5 }, - { -1154, 25, -1341, 5 }, - { -1167, 21, -1326, 5 }, - { -1180, 17, -1311, 5 }, - { -1191, 15, -1294, 5 }, - { -1200, 12, -1276, 5 }, - { -1206, 9, -1257, 5 }, - { -1210, 6, -1237, 5 }, - { -1213, 3, -1218, 5 }, - { -1214, 0, -1198, 5 }, - { -1213, -2, -1178, 5 }, - { -1213, -5, -1158, 5 }, - { -1211, -8, -1138, 5 }, - { -1210, -10, -1118, 5 }, - { -1208, -12, -1098, 5 }, - { -1206, -15, -1078, 5 }, - { -1204, -17, -1058, 5 }, - { -1202, -20, -1038, 5 }, - { -1199, -22, -1018, 5 }, - { -1196, -25, -998, 5 }, - { -1193, -26, -979, 5 }, - { -1190, -27, -959, 5 }, - { -1187, -28, -939, 5 }, - { -1183, -29, -919, 5 }, - { -1179, -30, -900, 5 }, - { -1175, -30, -880, 5 }, - { -1171, -31, -861, 5 }, - { -1166, -31, -841, 31 }, - { -1160, -31, -822, 31 }, - { -1154, -31, -803, 31 }, - { -1147, -31, -784, 31 }, - { -1139, -31, -766, 31 }, - { -1131, -31, -748, 31 }, - { -1122, -31, -729, 31 }, - { -1115, -31, -711, 31 }, - { -1107, -31, -692, 31 }, - { -1103, -31, -673, 31 }, - { -1100, -31, -653, 31 }, - { -1098, -31, -633, 31 }, - { -1097, -30, -613, 31 }, - { -1098, -28, -593, 31 }, - { -1101, -26, -573, 31 }, - { -1105, -24, -554, 31 }, - { -1109, -22, -534, 31 }, - { -1115, -20, -515, 31 }, - { -1121, -18, -496, 31 }, - { -1128, -16, -477, 31 }, - { -1135, -13, -459, 31 }, - { -1142, -10, -440, 31 }, - { -1148, -7, -421, 31 }, - { -1155, -4, -402, 31 }, - { -1161, -1, -383, 25 }, - { -1167, -1, -364, 25 }, - { -1172, -1, -344, 25 }, - { -1176, -1, -325, 25 }, - { -1178, -1, -305, 25 }, - { -1178, -1, -285, 25 }, - { -1176, -1, -265, 25 }, - { -1172, 0, -245, 25 }, - { -1166, 0, -226, 25 }, - { -1159, 0, -208, 25 }, - { -1151, 0, -189, 25 }, - { -1144, 0, -170, 25 }, - { -1137, 0, -152, 25 }, - { -1129, 0, -133, 25 }, - { -1122, 0, -114, 25 }, - { -1115, 0, -96, 25 }, - { -1108, 0, -77, 25 }, - { -1102, 0, -58, 25 }, - { -1096, 0, -39, 25 }, - { -1090, 0, -20, 25 }, - { -1085, 0, 0, 25 }, - { -1080, 0, 18, 25 }, - { -1075, 0, 37, 25 }, - { -1070, 0, 57, 25 }, - { -1066, 0, 76, 25 }, - { -1062, 0, 96, 25 }, - { -1058, 0, 116, 25 }, - { -1055, 0, 135, 25 }, - { -1052, 0, 155, 25 }, - { -1050, 0, 175, 25 }, - { -1048, 0, 195, 25 }, - { -1048, 0, 215, 25 }, - { -1050, 0, 235, 25 }, - { -1055, 0, 254, 25 }, - { -1062, 0, 273, 25 }, - { -1072, 0, 291, 25 }, - { -1084, 0, 307, 25 }, - { -1098, 0, 320, 26 }, - { -1114, 0, 332, 26 }, - { -1132, 0, 342, 26 }, - { -1150, 0, 350, 26 }, - { -1169, 0, 357, 26 }, - { -1188, 0, 364, 26 }, - { -1207, 0, 369, 26 }, - { -1226, 0, 374, 26 }, - { -1246, 0, 379, 26 }, - { -1266, 0, 383, 26 }, - { -1285, 0, 386, 26 }, - { -1305, 0, 390, 26 }, - { -1325, 0, 392, 26 }, - { -1345, 0, 395, 26 }, - { -1365, 0, 396, 26 }, - { -1385, 0, 397, 26 }, - { -1405, 0, 397, 26 }, - { -1425, 0, 395, 26 }, - { -1444, 0, 392, 26 }, - { -1464, 0, 388, 26 }, - { -1483, 0, 383, 26 }, - { -1502, 0, 376, 26 }, - { -1520, 0, 368, 26 }, - { -1538, 0, 359, 26 }, - { -1556, 0, 350, 26 }, - { -1573, 0, 340, 26 }, - { -1590, -1, 329, 26 }, - { -1607, -1, 318, 26 }, - { -1623, -1, 306, 26 }, - { -1639, -1, 294, 26 }, - { -1654, -2, 282, 26 }, - { -1669, -2, 268, 26 }, - { -1684, -2, 254, 26 }, - { -1698, -2, 241, 26 }, - { -1713, -3, 227, 26 }, - { -1728, -3, 214, 26 }, - { -1743, -3, 201, 26 }, - { -1759, -13, 188, 10 }, - { -1775, -23, 176, 10 }, - { -1791, -27, 165, 10 }, - { -1808, -29, 153, 10 }, - { -1824, -29, 142, 10 }, - { -1840, -30, 130, 10 }, - { -1856, -31, 118, 10 }, - { -1872, -32, 105, 10 }, - { -1887, -31, 93, 10 }, - { -1903, -28, 80, 10 }, - { -1918, -26, 67, 10 }, - { -1934, -24, 55, 10 }, - { -1949, -21, 42, 10 }, - { -1964, -18, 29, 10 }, - { -1980, -14, 16, 10 }, - { -1995, -10, 3, 10 }, - { -2010, -3, -9, 255 }, - { -2025, 3, -22, 255 }, - { -2040, 1, -35, 255 }, - { -2055, 0, -49, 255 }, - { -2070, -1, -62, 255 }, - { -2085, -6, -76, 10 }, - { -2099, -7, -89, 10 }, - { -2113, -8, -104, 10 }, - { -2127, -9, -118, 10 }, - { -2141, -10, -133, 10 }, - { -2154, -11, -148, 10 }, - { -2167, -11, -163, 10 }, - { -2179, -12, -179, 10 }, - { -2190, -12, -196, 10 }, - { -2200, -12, -213, 10 }, - { -2210, -12, -231, 10 }, - { -2217, -11, -249, 10 }, - { -2223, -11, -268, 10 }, - { -2227, -11, -288, 10 }, - { -2229, -10, -308, 11 }, - { -2232, -10, -328, 11 }, - { -2235, -10, -347, 11 }, - { -2239, -9, -367, 11 }, - { -2243, -9, -387, 11 }, - { -2247, -9, -406, 11 }, - { -2251, -9, -426, 11 }, - { -2256, -8, -445, 11 }, - { -2262, -8, -464, 11 }, - { -2268, -7, -484, 11 }, - { -2274, -7, -503, 11 }, - { -2280, -6, -522, 11 }, - { -2286, -5, -541, 11 }, - { -2293, -4, -560, 11 }, - { -2299, -4, -579, 11 }, - { -2306, -3, -598, 11 }, - { -2312, -3, -616, 11 }, - { -2319, -3, -635, 11 }, - { -2325, -2, -654, 11 }, - { -2332, -2, -673, 11 }, - { -2339, -2, -692, 11 }, - { -2346, -1, -711, 11 }, - { -2353, -1, -729, 11 }, - { -2360, -1, -748, 11 }, - { -2368, 0, -767, 11 }, - { -2375, 0, -785, 11 }, - { -2383, 0, -804, 11 }, - { -2391, 0, -822, 11 }, - { -2399, 0, -840, 11 }, - { -2408, 0, -858, 11 }, - { -2417, 0, -876, 11 }, - { -2427, 0, -893, 11 }, - { -2438, 0, -910, 11 }, - { -2449, 0, -927, 11 }, - { -2461, 0, -943, 11 }, - { -2474, 0, -958, 12 }, - { -2487, 0, -973, 12 }, - { -2501, 0, -987, 12 }, - { -2516, 0, -1001, 12 }, - { -2530, 0, -1016, 12 }, - { -2543, 0, -1030, 12 }, - { -2557, 0, -1045, 12 }, - { -2569, 0, -1061, 12 }, - { -2582, 0, -1076, 12 }, - { -2594, 0, -1092, 12 }, - { -2606, 0, -1108, 12 }, - { -2617, 0, -1125, 12 }, - { -2628, 0, -1142, 12 }, - { -2638, 0, -1159, 12 }, - { -2648, 0, -1176, 12 }, - { -2657, 0, -1194, 12 }, - { -2666, 0, -1212, 12 }, - { -2675, -1, -1230, 12 }, - { -2683, -1, -1248, 12 }, - { -2691, -1, -1267, 12 }, - { -2698, -1, -1285, 12 }, - { -2706, -1, -1304, 12 }, - { -2713, -1, -1322, 12 }, - { -2720, -1, -1341, 12 }, - { -2727, -1, -1360, 12 }, - { -2734, -1, -1379, 12 }, - { -2741, -1, -1398, 12 }, - { -2748, -1, -1416, 12 }, - { -2755, -1, -1435, 12 }, - { -2763, -1, -1453, 12 }, - { -2771, -1, -1472, 12 }, - { -2778, -1, -1490, 12 }, - { -2787, -1, -1508, 12 }, - { -2795, -1, -1527, 12 }, - { -2804, -1, -1545, 12 }, - { -2812, -1, -1563, 13 }, - { -2822, -1, -1580, 13 }, - { -2831, -1, -1598, 13 }, - { -2841, -1, -1615, 13 }, - { -2851, -1, -1633, 13 }, - { -2862, -1, -1649, 13 }, - { -2873, -1, -1666, 13 }, - { -2885, -1, -1682, 13 }, - { -2898, -1, -1697, 13 }, - { -2912, -1, -1712, 13 }, - { -2927, -1, -1725, 13 }, - { -2943, -1, -1737, 13 }, - { -2961, -1, -1746, 13 }, - { -2979, -1, -1754, 13 }, - { -2998, -1, -1761, 13 }, - { -3018, -1, -1765, 13 }, - { -3037, -1, -1768, 13 }, - { -3057, -1, -1768, 13 }, - { -3077, -1, -1765, 13 }, - { -3097, -1, -1760, 13 }, - { -3115, -1, -1753, 13 }, - { -3133, -1, -1743, 13 }, - { -3150, -1, -1732, 13 }, - { -3165, -1, -1720, 13 }, - { -3179, -1, -1705, 13 }, - { -3190, -1, -1688, 13 }, - { -3199, -1, -1670, 13 }, - { -3206, -1, -1652, 13 }, - { -3211, -1, -1632, 13 }, - { -3214, -1, -1613, 13 }, - { -3216, -1, -1593, 13 }, - { -3217, -1, -1573, 13 }, - { -3216, -1, -1553, 13 }, - { -3214, -1, -1533, 13 }, - { -3211, -1, -1513, 13 }, - { -3206, -1, -1494, 13 }, - { -3201, -1, -1474, 13 }, - { -3195, -1, -1455, 13 }, - { -3187, -1, -1437, 13 }, - { -3179, -1, -1419, 13 }, - { -3169, -1, -1401, 13 }, - { -3158, -1, -1384, 13 }, - { -3147, -1, -1368, 14 }, - { -3135, -1, -1352, 14 }, - { -3122, -2, -1336, 14 }, - { -3109, -2, -1321, 14 }, - { -3096, -3, -1306, 14 }, - { -3082, -3, -1292, 14 }, - { -3068, -4, -1278, 14 }, - { -3053, -4, -1264, 14 }, - { -3039, -6, -1250, 14 }, - { -3024, -7, -1236, 14 }, - { -3009, -8, -1223, 14 }, - { -2994, -9, -1210, 14 }, - { -2979, -10, -1197, 14 }, - { -2963, -11, -1185, 14 }, - { -2947, -12, -1173, 14 }, - { -2931, -13, -1161, 14 }, - { -2914, -13, -1150, 14 }, - { -2898, -14, -1139, 14 }, - { -2881, -15, -1127, 14 }, - { -2865, -16, -1115, 14 }, - { -2849, -16, -1103, 14 }, - { -2834, -17, -1090, 14 }, - { -2819, -18, -1076, 14 }, - { -2805, -18, -1062, 14 }, - { -2793, -19, -1047, 14 }, - { -2782, -19, -1030, 14 }, - { -2773, -19, -1012, 14 }, - { -2767, -19, -993, 14 }, - { -2765, -19, -973, 14 }, - { -2767, -19, -953, 14 }, - { -2770, -19, -933, 14 }, - { -2774, -19, -914, 14 }, - { -2778, -19, -894, 14 }, - { -2783, -19, -875, 14 }, - { -2788, -19, -855, 14 }, - { -2794, -18, -836, 15 }, - { -2799, -18, -817, 15 }, - { -2804, -18, -798, 15 }, - { -2810, -17, -778, 15 }, - { -2816, -17, -759, 15 }, - { -2823, -17, -740, 15 }, - { -2829, -16, -721, 15 }, - { -2836, -16, -703, 15 }, - { -2844, -15, -684, 15 }, - { -2852, -14, -666, 15 }, - { -2861, -14, -648, 15 }, - { -2872, -14, -631, 15 }, - { -2882, -13, -614, 15 }, - { -2891, -13, -596, 15 }, - { -2899, -12, -578, 15 }, - { -2906, -12, -559, 15 }, - { -2912, -11, -540, 15 }, - { -2917, -11, -520, 15 }, - { -2920, -11, -501, 15 }, - { -2922, -10, -481, 15 }, - { -2923, -10, -461, 15 }, - { -2924, -10, -441, 15 }, - { -2924, -10, -421, 15 }, - { -2923, -9, -401, 15 }, - { -2923, -9, -381, 15 }, - { -2922, -9, -361, 15 }, - { -2921, -9, -341, 15 }, - { -2919, -9, -321, 15 }, - { -2918, -9, -301, 15 }, - { -2915, -8, -281, 15 }, - { -2913, -8, -261, 15 }, - { -2910, -8, -241, 15 }, - { -2906, -8, -222, 15 }, - { -2903, -7, -202, 15 }, - { -2898, -7, -182, 15 }, - { -2893, -7, -163, 16 }, - { -2888, -7, -144, 16 }, - { -2883, -7, -125, 16 }, - { -2877, -7, -105, 16 }, - { -2870, -6, -86, 16 }, - { -2863, -6, -68, 16 }, - { -2856, -6, -49, 16 }, - { -2849, -6, -30, 16 }, - { -2841, -6, -12, 16 }, - { -2833, -6, 5, 16 }, - { -2825, -5, 24, 16 }, - { -2816, -5, 42, 16 }, - { -2808, -5, 60, 16 }, - { -2799, -5, 78, 16 }, - { -2790, -4, 96, 16 }, - { -2781, -4, 113, 16 }, - { -2771, -4, 131, 16 }, - { -2762, -4, 149, 16 }, - { -2752, -3, 166, 16 }, - { -2742, -3, 184, 16 }, - { -2732, -3, 201, 16 }, - { -2722, -3, 218, 16 }, - { -2712, -2, 235, 16 }, - { -2701, -2, 252, 16 }, - { -2690, -2, 269, 16 }, - { -2680, -2, 286, 16 }, - { -2669, -1, 303, 16 }, - { -2658, -1, 320, 16 }, - { -2647, -1, 336, 16 }, - { -2635, -1, 353, 16 }, - { -2624, -1, 369, 16 }, - { -2612, -1, 385, 16 }, - { -2600, -1, 401, 16 }, - { -2587, -1, 417, 16 }, - { -2575, 0, 432, 16 }, - { -2562, 0, 448, 16 }, - { -2548, 0, 462, 16 }, - { -2534, 0, 477, 16 }, - { -2520, 0, 491, 16 }, - { -2506, 0, 505, 16 }, - { -2491, 0, 518, 16 }, - { -2476, 0, 531, 17 }, - { -2460, 0, 544, 17 }, - { -2444, 0, 555, 17 }, - { -2427, 0, 566, 17 }, - { -2411, 0, 578, 17 }, - { -2395, 0, 590, 17 }, - { -2379, 0, 603, 17 }, - { -2364, 0, 615, 17 }, - { -2348, 0, 628, 17 }, - { -2332, 0, 640, 17 }, - { -2316, 0, 652, 17 }, - { -2301, 0, 664, 17 }, - { -2285, 0, 677, 17 }, - { -2269, 0, 689, 17 }, - { -2253, 0, 700, 17 }, - { -2236, 0, 711, 17 }, - { -2218, 0, 721, 17 }, - { -2201, 0, 731, 17 }, - { -2183, 0, 741, 17 }, - { -2166, -1, 751, 18 }, - { -2149, -4, 762, 18 }, - { -2133, -6, 773, 18 }, - { -2116, -9, 783, 18 }, - { -2099, -10, 794, 18 }, - { -2082, -12, 805, 18 }, - { -2065, -13, 815, 18 }, - { -2048, -14, 826, 18 }, - { -2031, -15, 837, 18 }, - { -2014, -16, 847, 18 }, - { -1997, -16, 858, 18 }, - { -1980, -17, 869, 18 }, - { -1963, -18, 879, 18 }, - { -1946, -18, 890, 18 }, - { -1929, -19, 901, 18 }, - { -1912, -19, 911, 18 }, - { -1895, -19, 922, 18 }, - { -1879, -19, 932, 18 }, - { -1862, -18, 943, 18 }, - { -1845, -18, 954, 18 }, - { -1828, -17, 964, 18 }, - { -1811, -16, 975, 18 }, - { -1794, -16, 986, 18 }, - { -1777, -15, 996, 18 }, - { -1760, -14, 1007, 18 }, - { -1743, -13, 1017, 18 }, - { -1726, -12, 1028, 18 }, - { -1709, -10, 1039, 18 }, - { -1692, -9, 1049, 18 }, - { -1675, -6, 1059, 18 }, - { -1657, -4, 1069, 18 }, - { -1640, -1, 1079, 18 }, - { -1622, 0, 1089, 19 }, - { -1605, 0, 1098, 19 }, - { -1587, 0, 1107, 19 }, - { -1568, -1, 1114, 19 }, - { -1549, -1, 1121, 19 }, - { -1530, -1, 1127, 19 }, - { -1511, -1, 1134, 19 }, - { -1492, -2, 1140, 19 }, - { -1473, -2, 1147, 19 }, - { -1454, -2, 1153, 19 }, - { -1435, -3, 1159, 19 }, - { -1416, -3, 1165, 19 }, - { -1397, -3, 1170, 19 }, - { -1377, -4, 1175, 19 }, - { -1358, -4, 1179, 19 }, - { -1338, -4, 1183, 19 }, - { -1318, -4, 1186, 19 }, - { -1299, -2, 1188, 19 }, - { -1279, 0, 1190, 19 }, - { -1259, 2, 1192, 19 }, - { -1239, 4, 1193, 19 }, - { -1219, 7, 1194, 19 }, - { -1199, 9, 1194, 19 }, - { -1179, 12, 1194, 19 }, - { -1159, 15, 1194, 19 }, - { -1139, 17, 1193, 19 }, - { -1119, 20, 1192, 19 }, - { -1099, 23, 1191, 19 }, - { -1079, 25, 1190, 19 }, - { -1059, 28, 1189, 19 }, - { -1039, 30, 1187, 19 }, - { -1019, 33, 1185, 19 }, - { -999, 35, 1182, 19 }, - { -979, 37, 1179, 19 }, - { -960, 40, 1176, 19 }, - { -940, 42, 1171, 19 }, - { -921, 45, 1166, 19 }, - { -902, 50, 1160, 19 }, - { -883, 54, 1152, 19 }, - { -865, 58, 1143, 19 }, - { -848, 61, 1133, 19 }, - { -831, 65, 1122, 20 }, - { -815, 68, 1111, 20 }, - { -799, 71, 1099, 20 }, - { -784, 75, 1086, 20 }, - { -769, 78, 1073, 20 }, - { -754, 82, 1059, 20 }, - { -740, 85, 1045, 20 }, - { -725, 88, 1031, 20 }, - { -711, 92, 1017, 20 }, - { -697, 95, 1003, 20 }, - { -682, 99, 989, 20 }, - { -668, 102, 975, 20 }, - { -653, 105, 961, 20 }, - { -639, 109, 948, 20 }, - { -625, 112, 934, 20 }, - { -610, 115, 920, 20 }, - { -595, 119, 906, 20 }, - { -581, 122, 893, 20 }, - { -566, 125, 879, 20 }, - { -551, 129, 866, 20 }, - { -535, 132, 854, 20 }, - { -518, 135, 843, 20 }, - { -501, 136, 832, 20 }, - { -484, 138, 823, 20 }, - { -466, 139, 814, 20 }, - { -448, 140, 805, 20 }, - { -429, 141, 798, 20 }, - { -410, 143, 791, 20 }, - { -391, 144, 785, 20 }, - { -372, 145, 778, 20 }, - { -353, 147, 772, 20 }, - { -335, 148, 765, 20 }, - { -316, 149, 758, 20 }, - { -297, 150, 751, 20 }, - { -278, 152, 744, 20 }, - { -260, 153, 737, 20 }, - { -241, 154, 729, 20 }, - { -223, 156, 720, 20 }, - { -207, 158, 709, 20 }, - { -191, 159, 696, 20 }, - { -177, 160, 682, 20 }, - { -164, 162, 667, 20 }, - { -152, 164, 651, 20 }, - { -142, 165, 634, 1 }, - { -133, 166, 616, 1 }, - { -124, 168, 598, 1 }, - { -117, 169, 579, 1 }, - { -109, 170, 561, 1 }, - { -102, 172, 542, 1 }, - { -95, 173, 523, 1 }, - { -88, 175, 505, 1 }, - { -81, 176, 486, 1 }, - { -75, 176, 467, 1 }, - { -69, 177, 447, 1 }, - { -63, 177, 428, 1 }, - { -58, 178, 409, 1 }, - { -53, 179, 390, 1 }, - { -48, 179, 370, 1 }, - { -44, 179, 351, 1 }, - { -40, 180, 331, 1 }, - { -36, 180, 311, 1 }, - { -33, 180, 292, 1 }, - { -30, 180, 272, 1 }, - { -27, 180, 252, 1 }, - { -24, 180, 232, 1 }, - { -22, 180, 212, 1 }, - { -20, 180, 193, 1 }, - { -18, 180, 173, 1 }, - { -16, 180, 153, 1 }, - { -14, 180, 133, 1 }, - { -12, 180, 113, 1 }, - { -11, 180, 93, 1 }, - { -9, 180, 73, 1 }, - { -7, 180, 53, 1 }, - { -6, 180, 33, 1 }, - { -4, 180, 13, 1 }, - { -3, 180, -6, 1 }, - { -32768, -32768, -32768, 0 }, +#include "courses/yoshi_valley/d_course_yoshi_valley_track_path_3.inc.c" }; +#endif +#ifndef VERSION_JP /* VERSION_JP path order: moved to end of file */ TrackPathPoint d_course_yoshi_valley_track_path_4[] = { - { -1, 180, -9, 1 }, - { 0, 180, -29, 2 }, - { 0, 180, -49, 2 }, - { 0, 180, -69, 2 }, - { 0, 180, -89, 2 }, - { 0, 180, -109, 2 }, - { 0, 180, -129, 2 }, - { -1, 180, -149, 2 }, - { -1, 180, -169, 2 }, - { -1, 180, -189, 2 }, - { -2, 180, -209, 2 }, - { -2, 180, -229, 2 }, - { -3, 180, -249, 2 }, - { -3, 180, -269, 2 }, - { -4, 180, -289, 2 }, - { -4, 180, -309, 2 }, - { -5, 180, -329, 2 }, - { -6, 180, -349, 2 }, - { -7, 180, -369, 2 }, - { -8, 180, -389, 2 }, - { -9, 180, -409, 2 }, - { -10, 180, -429, 2 }, - { -10, 180, -449, 2 }, - { -11, 180, -469, 2 }, - { -13, 180, -489, 2 }, - { -14, 180, -509, 2 }, - { -15, 180, -529, 2 }, - { -16, 180, -549, 2 }, - { -18, 180, -569, 2 }, - { -19, 180, -589, 2 }, - { -21, 180, -609, 2 }, - { -23, 180, -629, 2 }, - { -25, 180, -649, 2 }, - { -27, 180, -669, 2 }, - { -29, 180, -689, 2 }, - { -31, 180, -708, 2 }, - { -34, 180, -728, 2 }, - { -36, 180, -748, 2 }, - { -39, 180, -768, 2 }, - { -42, 180, -788, 2 }, - { -45, 180, -808, 2 }, - { -48, 180, -827, 2 }, - { -51, 180, -847, 2 }, - { -55, 180, -867, 3 }, - { -58, 180, -886, 3 }, - { -62, 180, -906, 3 }, - { -66, 180, -926, 3 }, - { -70, 180, -945, 3 }, - { -74, 181, -965, 3 }, - { -79, 181, -984, 3 }, - { -83, 181, -1004, 3 }, - { -87, 181, -1023, 3 }, - { -92, 182, -1043, 3 }, - { -97, 182, -1062, 3 }, - { -102, 182, -1082, 3 }, - { -107, 182, -1101, 3 }, - { -112, 182, -1120, 3 }, - { -117, 183, -1140, 3 }, - { -123, 183, -1159, 3 }, - { -128, 183, -1178, 3 }, - { -133, 183, -1198, 3 }, - { -139, 184, -1217, 3 }, - { -144, 184, -1236, 3 }, - { -150, 184, -1255, 3 }, - { -156, 184, -1274, 3 }, - { -162, 184, -1294, 3 }, - { -167, 184, -1313, 3 }, - { -174, 184, -1332, 3 }, - { -180, 183, -1351, 3 }, - { -186, 183, -1370, 3 }, - { -193, 182, -1389, 3 }, - { -199, 182, -1408, 3 }, - { -206, 181, -1426, 3 }, - { -214, 181, -1445, 3 }, - { -222, 180, -1463, 3 }, - { -231, 180, -1481, 3 }, - { -241, 179, -1499, 3 }, - { -251, 177, -1516, 3 }, - { -263, 176, -1532, 3 }, - { -276, 174, -1547, 3 }, - { -290, 171, -1561, 3 }, - { -305, 169, -1574, 3 }, - { -322, 167, -1585, 3 }, - { -340, 165, -1595, 3 }, - { -358, 163, -1603, 3 }, - { -377, 160, -1609, 3 }, - { -396, 158, -1613, 3 }, - { -416, 156, -1616, 3 }, - { -436, 153, -1618, 3 }, - { -456, 151, -1619, 3 }, - { -476, 148, -1619, 3 }, - { -496, 145, -1618, 4 }, - { -516, 143, -1616, 4 }, - { -536, 141, -1612, 4 }, - { -555, 138, -1608, 4 }, - { -575, 135, -1604, 4 }, - { -594, 131, -1598, 4 }, - { -613, 128, -1592, 4 }, - { -632, 125, -1586, 4 }, - { -651, 121, -1579, 4 }, - { -670, 118, -1572, 4 }, - { -688, 114, -1565, 4 }, - { -707, 111, -1558, 4 }, - { -726, 107, -1550, 4 }, - { -744, 104, -1543, 4 }, - { -763, 100, -1535, 4 }, - { -781, 96, -1527, 4 }, - { -800, 93, -1519, 4 }, - { -818, 89, -1512, 4 }, - { -836, 85, -1504, 4 }, - { -855, 82, -1496, 4 }, - { -873, 78, -1488, 4 }, - { -892, 74, -1480, 4 }, - { -910, 71, -1472, 4 }, - { -928, 67, -1464, 4 }, - { -947, 63, -1456, 5 }, - { -965, 60, -1448, 5 }, - { -983, 56, -1441, 5 }, - { -1002, 53, -1433, 5 }, - { -1021, 49, -1426, 5 }, - { -1040, 46, -1419, 5 }, - { -1059, 42, -1413, 5 }, - { -1078, 39, -1407, 5 }, - { -1097, 37, -1402, 5 }, - { -1117, 34, -1398, 5 }, - { -1137, 31, -1395, 5 }, - { -1157, 28, -1395, 5 }, - { -1176, 26, -1397, 5 }, - { -1196, 23, -1401, 5 }, - { -1215, 21, -1407, 6 }, - { -1233, 20, -1416, 6 }, - { -1250, 19, -1426, 6 }, - { -1266, 18, -1438, 6 }, - { -1283, 16, -1450, 6 }, - { -1299, 15, -1460, 6 }, - { -1316, 13, -1471, 6 }, - { -1334, 12, -1481, 6 }, - { -1351, 10, -1491, 6 }, - { -1368, 8, -1501, 6 }, - { -1386, 6, -1511, 6 }, - { -1403, 4, -1521, 6 }, - { -1421, 3, -1530, 6 }, - { -1438, 3, -1540, 6 }, - { -1456, 2, -1549, 6 }, - { -1474, 1, -1559, 6 }, - { -1492, 1, -1568, 6 }, - { -1509, 0, -1577, 6 }, - { -1527, 0, -1586, 6 }, - { -1545, 0, -1596, 6 }, - { -1562, 0, -1605, 6 }, - { -1580, 0, -1614, 6 }, - { -1598, 0, -1623, 6 }, - { -1616, 0, -1632, 6 }, - { -1634, 0, -1642, 6 }, - { -1651, 0, -1651, 6 }, - { -1669, 0, -1660, 6 }, - { -1687, 0, -1669, 6 }, - { -1705, 0, -1678, 6 }, - { -1723, 0, -1687, 6 }, - { -1741, 0, -1696, 6 }, - { -1759, 0, -1705, 6 }, - { -1777, 0, -1713, 21 }, - { -1795, 1, -1722, 21 }, - { -1813, 3, -1731, 21 }, - { -1831, 5, -1740, 21 }, - { -1848, 6, -1749, 21 }, - { -1866, 8, -1759, 21 }, - { -1883, 10, -1769, 21 }, - { -1901, 11, -1779, 21 }, - { -1918, 13, -1789, 21 }, - { -1935, 15, -1800, 21 }, - { -1952, 17, -1810, 21 }, - { -1968, 19, -1822, 21 }, - { -1985, 21, -1833, 21 }, - { -2002, 23, -1843, 21 }, - { -2019, 25, -1853, 21 }, - { -2037, 27, -1862, 21 }, - { -2055, 29, -1870, 21 }, - { -2074, 31, -1877, 21 }, - { -2093, 34, -1883, 21 }, - { -2113, 36, -1886, 21 }, - { -2133, 38, -1888, 21 }, - { -2153, 41, -1889, 21 }, - { -2173, 44, -1889, 21 }, - { -2193, 46, -1888, 21 }, - { -2213, 49, -1884, 21 }, - { -2232, 50, -1878, 21 }, - { -2249, 51, -1869, 21 }, - { -2265, 53, -1856, 21 }, - { -2279, 54, -1842, 21 }, - { -2290, 54, -1826, 21 }, - { -2300, 52, -1808, 21 }, - { -2308, 50, -1790, 21 }, - { -2315, 48, -1771, 21 }, - { -2320, 46, -1752, 21 }, - { -2323, 43, -1732, 21 }, - { -2326, 39, -1712, 21 }, - { -2327, 37, -1692, 21 }, - { -2327, 32, -1672, 21 }, - { -2327, 29, -1652, 21 }, - { -2326, 25, -1632, 21 }, - { -2324, 22, -1612, 21 }, - { -2321, 20, -1592, 21 }, - { -2318, 17, -1572, 21 }, - { -2315, 15, -1553, 21 }, - { -2311, 13, -1533, 21 }, - { -2307, 11, -1514, 21 }, - { -2302, 9, -1494, 22 }, - { -2297, 8, -1475, 22 }, - { -2292, 6, -1456, 22 }, - { -2286, 5, -1436, 22 }, - { -2280, 4, -1417, 22 }, - { -2273, 3, -1398, 22 }, - { -2267, 2, -1379, 22 }, - { -2260, 0, -1361, 22 }, - { -2253, 0, -1342, 22 }, - { -2245, 0, -1323, 22 }, - { -2238, 0, -1305, 22 }, - { -2230, -1, -1287, 22 }, - { -2222, -2, -1268, 22 }, - { -2214, -3, -1250, 22 }, - { -2206, -4, -1232, 22 }, - { -2197, -5, -1213, 22 }, - { -2189, -6, -1195, 22 }, - { -2180, -7, -1177, 22 }, - { -2172, -7, -1159, 22 }, - { -2163, -7, -1141, 22 }, - { -2154, -7, -1123, 22 }, - { -2145, -7, -1105, 22 }, - { -2136, -6, -1087, 22 }, - { -2127, -6, -1070, 22 }, - { -2117, -5, -1052, 22 }, - { -2108, -5, -1034, 22 }, - { -2098, -4, -1017, 22 }, - { -2089, -3, -999, 22 }, - { -2079, -2, -982, 22 }, - { -2069, -2, -964, 22 }, - { -2060, -1, -946, 22 }, - { -2050, 0, -929, 22 }, - { -2041, 0, -911, 22 }, - { -2031, 0, -894, 22 }, - { -2021, 0, -876, 22 }, - { -2011, 0, -859, 22 }, - { -2002, 0, -841, 22 }, - { -1992, 0, -824, 22 }, - { -1982, 0, -807, 22 }, - { -1972, 0, -789, 22 }, - { -1962, 0, -772, 22 }, - { -1952, 0, -755, 22 }, - { -1941, 0, -738, 22 }, - { -1931, 0, -721, 22 }, - { -1920, 0, -704, 22 }, - { -1908, 0, -688, 22 }, - { -1897, 0, -671, 23 }, - { -1885, 0, -655, 23 }, - { -1873, 0, -639, 23 }, - { -1860, 0, -624, 23 }, - { -1848, 0, -608, 23 }, - { -1835, 0, -593, 23 }, - { -1822, 0, -578, 23 }, - { -1808, 0, -563, 23 }, - { -1795, 0, -548, 23 }, - { -1781, 0, -534, 23 }, - { -1767, 0, -520, 23 }, - { -1752, 0, -506, 23 }, - { -1736, 0, -493, 23 }, - { -1721, 0, -481, 23 }, - { -1704, 0, -470, 23 }, - { -1686, -1, -461, 23 }, - { -1668, -1, -452, 23 }, - { -1650, -1, -444, 23 }, - { -1631, -1, -437, 23 }, - { -1612, -2, -430, 24 }, - { -1594, -2, -423, 24 }, - { -1574, -2, -417, 24 }, - { -1555, -2, -411, 24 }, - { -1536, -2, -406, 24 }, - { -1517, -2, -400, 24 }, - { -1498, -1, -395, 24 }, - { -1478, -1, -390, 24 }, - { -1459, 0, -385, 24 }, - { -1439, 0, -381, 24 }, - { -1420, 0, -377, 24 }, - { -1400, 0, -373, 24 }, - { -1380, 0, -369, 24 }, - { -1361, 0, -366, 24 }, - { -1341, 0, -362, 24 }, - { -1322, 0, -356, 24 }, - { -1303, 0, -350, 24 }, - { -1284, 0, -342, 24 }, - { -1266, 0, -333, 24 }, - { -1250, 0, -322, 24 }, - { -1235, 0, -309, 25 }, - { -1221, 0, -295, 25 }, - { -1208, 0, -279, 25 }, - { -1197, 0, -263, 25 }, - { -1186, 0, -246, 25 }, - { -1176, 0, -229, 25 }, - { -1166, 0, -211, 25 }, - { -1157, 0, -193, 25 }, - { -1148, 0, -175, 25 }, - { -1140, 0, -157, 25 }, - { -1132, 0, -139, 25 }, - { -1125, 0, -120, 25 }, - { -1118, 0, -101, 25 }, - { -1111, 0, -82, 25 }, - { -1105, 0, -63, 25 }, - { -1099, 0, -44, 25 }, - { -1094, 0, -25, 25 }, - { -1088, 0, -6, 25 }, - { -1083, 0, 13, 25 }, - { -1078, 0, 32, 25 }, - { -1073, 0, 51, 25 }, - { -1068, 0, 71, 25 }, - { -1064, 0, 90, 25 }, - { -1059, 0, 110, 25 }, - { -1055, 0, 129, 25 }, - { -1052, 0, 149, 25 }, - { -1048, 0, 169, 25 }, - { -1046, 0, 189, 25 }, - { -1044, 0, 209, 25 }, - { -1045, 0, 229, 25 }, - { -1048, 0, 248, 25 }, - { -1055, 0, 267, 25 }, - { -1065, 0, 284, 25 }, - { -1077, 0, 300, 25 }, - { -1092, 0, 314, 26 }, - { -1108, 0, 326, 26 }, - { -1125, 0, 336, 26 }, - { -1143, 0, 345, 26 }, - { -1161, 0, 352, 26 }, - { -1180, 0, 359, 26 }, - { -1199, 0, 366, 26 }, - { -1218, 0, 371, 26 }, - { -1238, 0, 377, 26 }, - { -1257, 0, 381, 26 }, - { -1277, 0, 386, 26 }, - { -1296, 0, 391, 26 }, - { -1316, 0, 395, 26 }, - { -1335, 0, 398, 26 }, - { -1355, 0, 401, 26 }, - { -1375, 0, 404, 26 }, - { -1395, 0, 405, 26 }, - { -1415, 0, 405, 26 }, - { -1435, 0, 403, 26 }, - { -1455, 0, 400, 26 }, - { -1474, 0, 394, 26 }, - { -1493, 0, 387, 26 }, - { -1511, 0, 379, 26 }, - { -1528, 0, 369, 26 }, - { -1545, 0, 358, 26 }, - { -1562, 0, 347, 26 }, - { -1578, 0, 336, 26 }, - { -1595, -1, 324, 26 }, - { -1611, -1, 312, 26 }, - { -1627, -1, 300, 26 }, - { -1642, -1, 288, 26 }, - { -1658, -2, 276, 26 }, - { -1674, -2, 263, 26 }, - { -1690, -2, 251, 26 }, - { -1705, -2, 239, 26 }, - { -1721, -2, 226, 26 }, - { -1737, -3, 214, 26 }, - { -1752, -3, 201, 26 }, - { -1768, -13, 189, 10 }, - { -1783, -23, 176, 10 }, - { -1799, -28, 163, 10 }, - { -1815, -29, 151, 10 }, - { -1831, -29, 140, 10 }, - { -1848, -30, 129, 10 }, - { -1866, -30, 119, 10 }, - { -1883, -30, 110, 10 }, - { -1901, -29, 102, 10 }, - { -1920, -27, 94, 10 }, - { -1938, -25, 86, 10 }, - { -1957, -22, 79, 10 }, - { -1976, -19, 72, 10 }, - { -1994, -16, 64, 10 }, - { -2012, -12, 55, 10 }, - { -2029, -9, 45, 10 }, - { -2046, -6, 33, 10 }, - { -2062, -6, 22, 10 }, - { -2077, -6, 9, 10 }, - { -2092, -6, -4, 10 }, - { -2106, -6, -18, 10 }, - { -2120, -6, -32, 10 }, - { -2133, -7, -47, 10 }, - { -2146, -8, -63, 10 }, - { -2157, -9, -79, 10 }, - { -2168, -9, -96, 10 }, - { -2178, -10, -113, 10 }, - { -2188, -11, -131, 10 }, - { -2196, -11, -149, 10 }, - { -2203, -12, -168, 10 }, - { -2210, -12, -187, 10 }, - { -2215, -12, -206, 10 }, - { -2219, -12, -226, 10 }, - { -2222, -11, -245, 10 }, - { -2226, -11, -265, 10 }, - { -2229, -11, -285, 10 }, - { -2232, -10, -305, 11 }, - { -2235, -10, -324, 11 }, - { -2238, -10, -344, 11 }, - { -2241, -10, -364, 11 }, - { -2243, -9, -384, 11 }, - { -2246, -9, -404, 11 }, - { -2248, -9, -424, 11 }, - { -2252, -8, -443, 11 }, - { -2256, -8, -463, 11 }, - { -2261, -7, -482, 11 }, - { -2267, -6, -501, 11 }, - { -2274, -6, -520, 11 }, - { -2281, -5, -539, 11 }, - { -2289, -5, -557, 11 }, - { -2298, -4, -575, 11 }, - { -2306, -3, -593, 11 }, - { -2314, -3, -612, 11 }, - { -2321, -3, -630, 11 }, - { -2328, -2, -649, 11 }, - { -2335, -2, -668, 11 }, - { -2342, -2, -687, 11 }, - { -2349, -1, -705, 11 }, - { -2355, -1, -724, 11 }, - { -2362, -1, -743, 11 }, - { -2368, 0, -762, 11 }, - { -2375, 0, -781, 11 }, - { -2383, 0, -800, 11 }, - { -2391, 0, -818, 11 }, - { -2399, 0, -836, 11 }, - { -2408, 0, -854, 11 }, - { -2418, 0, -872, 11 }, - { -2428, 0, -889, 11 }, - { -2439, 0, -906, 11 }, - { -2450, 0, -922, 11 }, - { -2462, 0, -938, 11 }, - { -2475, 0, -953, 12 }, - { -2488, 0, -968, 12 }, - { -2501, 0, -984, 12 }, - { -2514, 0, -999, 12 }, - { -2527, 0, -1015, 12 }, - { -2539, 0, -1030, 12 }, - { -2552, 0, -1046, 12 }, - { -2564, 0, -1061, 12 }, - { -2576, 0, -1077, 12 }, - { -2589, 0, -1093, 12 }, - { -2601, 0, -1109, 12 }, - { -2613, 0, -1125, 12 }, - { -2624, 0, -1142, 12 }, - { -2635, 0, -1159, 12 }, - { -2645, 0, -1176, 12 }, - { -2654, 0, -1193, 12 }, - { -2664, 0, -1211, 12 }, - { -2673, 0, -1229, 12 }, - { -2681, -1, -1247, 12 }, - { -2690, -1, -1265, 12 }, - { -2697, -1, -1284, 12 }, - { -2705, -1, -1302, 12 }, - { -2713, -1, -1321, 12 }, - { -2720, -1, -1339, 12 }, - { -2727, -1, -1358, 12 }, - { -2734, -1, -1377, 12 }, - { -2741, -1, -1395, 12 }, - { -2749, -1, -1414, 12 }, - { -2756, -1, -1432, 12 }, - { -2764, -1, -1451, 12 }, - { -2772, -1, -1469, 12 }, - { -2780, -1, -1488, 12 }, - { -2788, -1, -1506, 12 }, - { -2796, -1, -1524, 12 }, - { -2805, -1, -1542, 12 }, - { -2813, -1, -1560, 13 }, - { -2822, -1, -1578, 13 }, - { -2831, -1, -1596, 13 }, - { -2840, -1, -1614, 13 }, - { -2850, -1, -1632, 13 }, - { -2860, -1, -1649, 13 }, - { -2871, -1, -1666, 13 }, - { -2882, -1, -1682, 13 }, - { -2894, -1, -1698, 13 }, - { -2907, -1, -1713, 13 }, - { -2922, -1, -1727, 13 }, - { -2937, -1, -1740, 13 }, - { -2955, -1, -1750, 13 }, - { -2973, -1, -1757, 13 }, - { -2992, -1, -1764, 13 }, - { -3012, -1, -1768, 13 }, - { -3031, -1, -1771, 13 }, - { -3051, -1, -1771, 13 }, - { -3071, -1, -1769, 13 }, - { -3091, -1, -1764, 13 }, - { -3109, -1, -1756, 13 }, - { -3126, -1, -1746, 13 }, - { -3142, -1, -1734, 13 }, - { -3156, -1, -1720, 13 }, - { -3170, -1, -1705, 13 }, - { -3182, -1, -1689, 13 }, - { -3192, -1, -1672, 13 }, - { -3200, -1, -1653, 13 }, - { -3206, -1, -1634, 13 }, - { -3210, -1, -1615, 13 }, - { -3212, -1, -1595, 13 }, - { -3213, -1, -1575, 13 }, - { -3211, -1, -1555, 13 }, - { -3208, -1, -1535, 13 }, - { -3204, -1, -1516, 13 }, - { -3198, 0, -1496, 13 }, - { -3191, 0, -1477, 13 }, - { -3184, 0, -1459, 13 }, - { -3176, 0, -1441, 13 }, - { -3167, 0, -1422, 13 }, - { -3158, 0, -1405, 13 }, - { -3149, 0, -1387, 13 }, - { -3139, -1, -1370, 14 }, - { -3129, -1, -1352, 14 }, - { -3118, -2, -1336, 14 }, - { -3106, -2, -1319, 14 }, - { -3094, -3, -1303, 14 }, - { -3082, -3, -1288, 14 }, - { -3069, -4, -1273, 14 }, - { -3055, -5, -1258, 14 }, - { -3041, -6, -1244, 14 }, - { -3026, -7, -1230, 14 }, - { -3011, -8, -1217, 14 }, - { -2995, -9, -1205, 14 }, - { -2979, -10, -1193, 14 }, - { -2963, -11, -1181, 14 }, - { -2946, -12, -1170, 14 }, - { -2930, -13, -1159, 14 }, - { -2913, -14, -1148, 14 }, - { -2897, -14, -1136, 14 }, - { -2880, -15, -1125, 14 }, - { -2864, -16, -1113, 14 }, - { -2848, -16, -1100, 14 }, - { -2833, -17, -1088, 14 }, - { -2818, -18, -1075, 14 }, - { -2804, -18, -1060, 14 }, - { -2793, -19, -1044, 14 }, - { -2783, -19, -1026, 14 }, - { -2775, -19, -1008, 14 }, - { -2769, -19, -989, 14 }, - { -2765, -19, -969, 14 }, - { -2764, -19, -949, 14 }, - { -2764, -19, -929, 14 }, - { -2766, -19, -909, 14 }, - { -2769, -19, -890, 14 }, - { -2773, -19, -870, 14 }, - { -2777, -18, -850, 14 }, - { -2782, -18, -831, 15 }, - { -2788, -18, -812, 15 }, - { -2794, -17, -793, 15 }, - { -2800, -17, -774, 15 }, - { -2808, -17, -755, 15 }, - { -2815, -16, -737, 15 }, - { -2824, -16, -719, 15 }, - { -2832, -15, -701, 15 }, - { -2842, -15, -683, 15 }, - { -2851, -14, -665, 15 }, - { -2861, -14, -648, 15 }, - { -2870, -13, -630, 15 }, - { -2880, -13, -612, 15 }, - { -2888, -12, -594, 15 }, - { -2897, -12, -576, 15 }, - { -2905, -12, -558, 15 }, - { -2913, -11, -540, 15 }, - { -2920, -11, -521, 15 }, - { -2925, -11, -501, 15 }, - { -2928, -11, -482, 15 }, - { -2930, -10, -462, 15 }, - { -2931, -10, -442, 15 }, - { -2932, -10, -422, 15 }, - { -2931, -10, -402, 15 }, - { -2931, -10, -382, 15 }, - { -2930, -9, -362, 15 }, - { -2928, -9, -342, 15 }, - { -2927, -9, -322, 15 }, - { -2925, -9, -302, 15 }, - { -2922, -9, -282, 15 }, - { -2919, -8, -262, 15 }, - { -2916, -8, -243, 15 }, - { -2912, -8, -223, 15 }, - { -2908, -8, -203, 15 }, - { -2904, -7, -184, 15 }, - { -2899, -7, -165, 16 }, - { -2893, -7, -145, 16 }, - { -2888, -7, -126, 16 }, - { -2882, -7, -107, 16 }, - { -2876, -7, -88, 16 }, - { -2869, -6, -69, 16 }, - { -2862, -6, -50, 16 }, - { -2855, -6, -32, 16 }, - { -2847, -6, -13, 16 }, - { -2840, -6, 4, 16 }, - { -2832, -5, 23, 16 }, - { -2824, -5, 41, 16 }, - { -2815, -5, 59, 16 }, - { -2807, -5, 77, 16 }, - { -2798, -5, 95, 16 }, - { -2789, -4, 113, 16 }, - { -2780, -4, 131, 16 }, - { -2770, -4, 149, 16 }, - { -2760, -4, 166, 16 }, - { -2750, -4, 183, 16 }, - { -2740, -3, 201, 16 }, - { -2730, -3, 218, 16 }, - { -2719, -3, 235, 16 }, - { -2709, -2, 252, 16 }, - { -2698, -2, 268, 16 }, - { -2687, -2, 285, 16 }, - { -2675, -2, 302, 16 }, - { -2664, -1, 318, 16 }, - { -2653, -1, 335, 16 }, - { -2641, -1, 351, 16 }, - { -2629, -1, 367, 16 }, - { -2617, -1, 383, 16 }, - { -2605, -1, 399, 16 }, - { -2592, -1, 414, 16 }, - { -2579, -1, 430, 16 }, - { -2566, 0, 445, 16 }, - { -2552, 0, 459, 16 }, - { -2538, 0, 474, 16 }, - { -2524, 0, 488, 16 }, - { -2510, 0, 502, 16 }, - { -2496, 0, 516, 16 }, - { -2482, 0, 530, 17 }, - { -2467, 0, 544, 17 }, - { -2453, 0, 557, 17 }, - { -2438, 0, 571, 17 }, - { -2424, 0, 585, 17 }, - { -2409, 0, 599, 17 }, - { -2394, 0, 612, 17 }, - { -2379, 0, 625, 17 }, - { -2363, 0, 637, 17 }, - { -2347, 0, 649, 17 }, - { -2330, 0, 660, 17 }, - { -2313, 0, 671, 17 }, - { -2296, 0, 681, 17 }, - { -2279, 0, 692, 17 }, - { -2262, 0, 701, 17 }, - { -2244, 0, 711, 17 }, - { -2227, 0, 721, 17 }, - { -2209, 0, 730, 17 }, - { -2191, 0, 739, 17 }, - { -2173, 0, 749, 18 }, - { -2156, -3, 759, 18 }, - { -2140, -5, 770, 18 }, - { -2123, -8, 781, 18 }, - { -2106, -10, 791, 18 }, - { -2089, -11, 802, 18 }, - { -2072, -12, 813, 18 }, - { -2055, -14, 823, 18 }, - { -2038, -15, 834, 18 }, - { -2021, -15, 844, 18 }, - { -2004, -16, 855, 18 }, - { -1987, -17, 866, 18 }, - { -1970, -18, 876, 18 }, - { -1953, -18, 887, 18 }, - { -1936, -19, 897, 18 }, - { -1919, -19, 908, 18 }, - { -1902, -19, 918, 18 }, - { -1885, -19, 929, 18 }, - { -1868, -18, 939, 18 }, - { -1851, -18, 950, 18 }, - { -1834, -17, 960, 18 }, - { -1817, -17, 971, 18 }, - { -1800, -16, 981, 18 }, - { -1783, -15, 992, 18 }, - { -1766, -14, 1002, 18 }, - { -1749, -13, 1013, 18 }, - { -1731, -12, 1023, 18 }, - { -1714, -11, 1033, 18 }, - { -1696, -10, 1043, 18 }, - { -1679, -7, 1052, 18 }, - { -1661, -5, 1061, 18 }, - { -1643, -2, 1070, 18 }, - { -1625, 0, 1079, 18 }, - { -1607, 0, 1087, 19 }, - { -1589, 0, 1096, 19 }, - { -1570, 0, 1104, 19 }, - { -1552, -1, 1112, 19 }, - { -1533, -1, 1119, 19 }, - { -1515, -1, 1126, 19 }, - { -1496, -2, 1134, 19 }, - { -1477, -2, 1141, 19 }, - { -1459, -2, 1147, 19 }, - { -1440, -3, 1154, 19 }, - { -1421, -3, 1160, 19 }, - { -1402, -3, 1167, 19 }, - { -1383, -4, 1172, 19 }, - { -1363, -4, 1178, 19 }, - { -1344, -4, 1183, 19 }, - { -1325, -4, 1188, 19 }, - { -1305, -2, 1193, 19 }, - { -1286, 0, 1197, 19 }, - { -1266, 1, 1200, 19 }, - { -1246, 3, 1204, 19 }, - { -1226, 6, 1206, 19 }, - { -1206, 8, 1208, 19 }, - { -1186, 11, 1209, 19 }, - { -1166, 14, 1209, 19 }, - { -1146, 16, 1208, 19 }, - { -1126, 19, 1207, 19 }, - { -1106, 22, 1205, 19 }, - { -1087, 24, 1203, 19 }, - { -1067, 26, 1201, 19 }, - { -1047, 29, 1197, 19 }, - { -1027, 31, 1194, 19 }, - { -1008, 34, 1190, 19 }, - { -988, 36, 1185, 19 }, - { -969, 39, 1180, 19 }, - { -950, 41, 1174, 19 }, - { -930, 44, 1168, 19 }, - { -912, 47, 1162, 19 }, - { -893, 52, 1154, 19 }, - { -875, 56, 1146, 19 }, - { -857, 60, 1136, 19 }, - { -840, 63, 1127, 19 }, - { -823, 66, 1116, 20 }, - { -806, 70, 1105, 20 }, - { -790, 73, 1093, 20 }, - { -774, 77, 1081, 20 }, - { -759, 80, 1068, 20 }, - { -743, 83, 1055, 20 }, - { -729, 87, 1042, 20 }, - { -714, 90, 1028, 20 }, - { -699, 94, 1015, 20 }, - { -685, 97, 1001, 20 }, - { -670, 100, 987, 20 }, - { -656, 104, 973, 20 }, - { -641, 107, 960, 20 }, - { -627, 110, 946, 20 }, - { -612, 114, 932, 20 }, - { -598, 117, 918, 20 }, - { -583, 120, 904, 20 }, - { -569, 124, 890, 20 }, - { -555, 127, 876, 20 }, - { -540, 131, 863, 20 }, - { -524, 134, 851, 20 }, - { -508, 136, 839, 20 }, - { -491, 137, 828, 20 }, - { -474, 138, 818, 20 }, - { -456, 140, 809, 20 }, - { -438, 141, 801, 20 }, - { -419, 142, 794, 20 }, - { -400, 143, 788, 20 }, - { -381, 145, 782, 20 }, - { -362, 146, 776, 20 }, - { -343, 147, 769, 20 }, - { -324, 149, 763, 20 }, - { -305, 150, 756, 20 }, - { -286, 151, 750, 20 }, - { -267, 152, 743, 20 }, - { -248, 154, 736, 20 }, - { -230, 155, 727, 20 }, - { -214, 157, 716, 20 }, - { -198, 158, 704, 20 }, - { -184, 159, 689, 20 }, - { -171, 161, 674, 20 }, - { -159, 163, 658, 20 }, - { -149, 164, 641, 20 }, - { -139, 166, 623, 1 }, - { -130, 167, 606, 1 }, - { -122, 168, 587, 1 }, - { -114, 170, 569, 1 }, - { -106, 171, 551, 1 }, - { -99, 173, 532, 1 }, - { -92, 174, 513, 1 }, - { -85, 175, 494, 1 }, - { -78, 176, 475, 1 }, - { -72, 177, 456, 1 }, - { -66, 177, 437, 1 }, - { -61, 178, 418, 1 }, - { -55, 178, 399, 1 }, - { -50, 179, 379, 1 }, - { -45, 179, 360, 1 }, - { -41, 179, 341, 1 }, - { -36, 180, 321, 1 }, - { -32, 180, 301, 1 }, - { -28, 180, 282, 1 }, - { -25, 180, 262, 1 }, - { -21, 180, 242, 1 }, - { -18, 180, 223, 1 }, - { -15, 180, 203, 1 }, - { -13, 180, 183, 1 }, - { -11, 180, 163, 1 }, - { -9, 180, 143, 1 }, - { -8, 180, 123, 1 }, - { -7, 180, 103, 1 }, - { -6, 180, 83, 1 }, - { -5, 180, 63, 1 }, - { -4, 180, 43, 1 }, - { -3, 180, 23, 1 }, - { -1, 180, 3, 1 }, - { -32768, -32768, -32768, 0 }, +#include "courses/yoshi_valley/d_course_yoshi_valley_track_path_4.inc.c" }; +#endif // 0x13958 Lights1 d_course_yoshi_valley_unknown_light1 = gdSPDefLights1(0x00, 0x1B, 0x00, 0x00, 0x6E, 0x00, 0x28, 0x28, 0x28); @@ -8861,3 +6692,30 @@ Gfx* d_course_yoshi_valley_dl_list[] = { d_course_yoshi_valley_dl_D018, d_course_yoshi_valley_dl_D3D0, d_course_yoshi_valley_dl_D1E8, d_course_yoshi_valley_dl_D540, }; + +#ifdef VERSION_JP /* VERSION_JP path order: JP puts the paths last */ +TrackPathPoint d_course_yoshi_valley_unknown_path[] = { +#include "courses/yoshi_valley/d_course_yoshi_valley_unknown_path.inc.c" +}; +TrackPathPoint d_course_yoshi_valley_unknown_path_2[] = { +#include "courses/yoshi_valley/d_course_yoshi_valley_unknown_path_2.inc.c" +}; +TrackPathPoint d_course_yoshi_valley_unknown_path_3[] = { +#include "courses/yoshi_valley/d_course_yoshi_valley_unknown_path_3.inc.c" +}; +TrackPathPoint d_course_yoshi_valley_unknown_path_4[] = { +#include "courses/yoshi_valley/d_course_yoshi_valley_unknown_path_4.inc.c" +}; +TrackPathPoint d_course_yoshi_valley_track_path[] = { +#include "courses/yoshi_valley/d_course_yoshi_valley_track_path.inc.c" +}; +TrackPathPoint d_course_yoshi_valley_track_path_2[] = { +#include "courses/yoshi_valley/d_course_yoshi_valley_track_path_2.inc.c" +}; +TrackPathPoint d_course_yoshi_valley_track_path_3[] = { +#include "courses/yoshi_valley/d_course_yoshi_valley_track_path_3.inc.c" +}; +TrackPathPoint d_course_yoshi_valley_track_path_4[] = { +#include "courses/yoshi_valley/d_course_yoshi_valley_track_path_4.inc.c" +}; +#endif diff --git a/courses/yoshi_valley/d_course_yoshi_valley_track_path.inc.c b/courses/yoshi_valley/d_course_yoshi_valley_track_path.inc.c new file mode 100644 index 0000000000..b6f021ccaf --- /dev/null +++ b/courses/yoshi_valley/d_course_yoshi_valley_track_path.inc.c @@ -0,0 +1,226 @@ + { -3, 180, -12, 1 }, { -3, 180, -32, 2 }, { -3, 180, -52, 2 }, + { -2, 180, -72, 2 }, { -3, 180, -92, 2 }, { -3, 180, -112, 2 }, + { -3, 180, -132, 2 }, { -3, 180, -152, 2 }, { -3, 180, -172, 2 }, + { -3, 180, -192, 2 }, { -3, 180, -212, 2 }, { -3, 180, -232, 2 }, + { -4, 180, -252, 2 }, { -4, 180, -272, 2 }, { -5, 180, -292, 2 }, + { -5, 180, -312, 2 }, { -6, 180, -332, 2 }, { -6, 180, -352, 2 }, + { -7, 180, -372, 2 }, { -8, 180, -392, 2 }, { -9, 180, -412, 2 }, + { -9, 180, -432, 2 }, { -10, 180, -452, 2 }, { -11, 180, -472, 2 }, + { -12, 180, -492, 2 }, { -13, 180, -512, 2 }, { -14, 180, -532, 2 }, + { -15, 180, -552, 2 }, { -16, 180, -572, 2 }, { -18, 180, -592, 2 }, + { -19, 180, -612, 2 }, { -21, 180, -632, 2 }, { -23, 180, -651, 2 }, + { -25, 180, -671, 2 }, { -27, 180, -691, 2 }, { -29, 180, -711, 2 }, + { -31, 180, -731, 2 }, { -33, 180, -751, 2 }, { -36, 180, -771, 2 }, + { -38, 180, -791, 2 }, { -41, 180, -810, 2 }, { -44, 180, -830, 2 }, + { -47, 180, -850, 2 }, { -51, 180, -870, 3 }, { -54, 180, -889, 3 }, + { -58, 180, -909, 3 }, { -62, 180, -929, 3 }, { -66, 181, -948, 3 }, + { -70, 181, -968, 3 }, { -74, 181, -988, 3 }, { -78, 181, -1007, 3 }, + { -83, 181, -1027, 3 }, { -88, 182, -1046, 3 }, { -92, 182, -1065, 3 }, + { -97, 182, -1085, 3 }, { -102, 182, -1104, 3 }, { -107, 182, -1123, 3 }, + { -113, 183, -1143, 3 }, { -118, 183, -1162, 3 }, { -123, 183, -1181, 3 }, + { -129, 183, -1201, 3 }, { -135, 184, -1220, 3 }, { -140, 184, -1239, 3 }, + { -146, 184, -1258, 3 }, { -152, 184, -1277, 3 }, { -158, 184, -1296, 3 }, + { -164, 184, -1315, 3 }, { -170, 184, -1334, 3 }, { -177, 183, -1353, 3 }, + { -183, 183, -1372, 3 }, { -190, 182, -1391, 3 }, { -197, 182, -1410, 3 }, + { -205, 181, -1428, 3 }, { -213, 181, -1447, 3 }, { -221, 180, -1465, 3 }, + { -230, 180, -1483, 3 }, { -240, 179, -1500, 3 }, { -250, 177, -1517, 3 }, + { -262, 176, -1534, 3 }, { -275, 173, -1549, 3 }, { -289, 171, -1563, 3 }, + { -304, 169, -1576, 3 }, { -320, 167, -1587, 3 }, { -338, 165, -1597, 3 }, + { -356, 163, -1605, 3 }, { -376, 160, -1610, 3 }, { -395, 158, -1615, 3 }, + { -415, 156, -1618, 3 }, { -435, 154, -1620, 3 }, { -455, 151, -1622, 3 }, + { -475, 148, -1622, 3 }, { -495, 146, -1621, 4 }, { -515, 143, -1619, 4 }, + { -534, 141, -1616, 4 }, { -554, 138, -1612, 4 }, { -573, 135, -1607, 4 }, + { -593, 132, -1602, 4 }, { -612, 128, -1596, 4 }, { -631, 125, -1590, 4 }, + { -650, 122, -1583, 4 }, { -669, 118, -1576, 4 }, { -687, 115, -1569, 4 }, + { -706, 111, -1562, 4 }, { -725, 108, -1555, 4 }, { -743, 104, -1548, 4 }, + { -762, 101, -1540, 4 }, { -780, 97, -1533, 4 }, { -799, 93, -1525, 4 }, + { -817, 90, -1517, 4 }, { -836, 86, -1510, 4 }, { -854, 82, -1502, 4 }, + { -873, 79, -1494, 4 }, { -891, 75, -1486, 4 }, { -909, 71, -1478, 4 }, + { -928, 67, -1470, 4 }, { -946, 64, -1462, 5 }, { -965, 60, -1454, 5 }, + { -983, 57, -1447, 5 }, { -1002, 53, -1440, 5 }, { -1020, 50, -1432, 5 }, + { -1039, 46, -1426, 5 }, { -1058, 43, -1419, 5 }, { -1077, 40, -1413, 5 }, + { -1096, 37, -1407, 5 }, { -1116, 34, -1403, 5 }, { -1136, 31, -1399, 5 }, + { -1155, 28, -1398, 5 }, { -1175, 26, -1399, 5 }, { -1195, 24, -1404, 5 }, + { -1214, 22, -1410, 6 }, { -1232, 20, -1419, 6 }, { -1249, 19, -1430, 6 }, + { -1265, 18, -1442, 6 }, { -1280, 16, -1454, 6 }, { -1296, 15, -1467, 6 }, + { -1312, 14, -1479, 6 }, { -1327, 12, -1491, 6 }, { -1343, 10, -1504, 6 }, + { -1359, 8, -1517, 6 }, { -1374, 7, -1529, 6 }, { -1390, 5, -1542, 6 }, + { -1405, 3, -1554, 6 }, { -1422, 3, -1566, 6 }, { -1438, 2, -1577, 6 }, + { -1455, 2, -1587, 6 }, { -1473, 1, -1597, 6 }, { -1491, 0, -1605, 6 }, + { -1510, 0, -1613, 6 }, { -1528, 0, -1620, 6 }, { -1547, 0, -1627, 6 }, + { -1566, 0, -1632, 6 }, { -1586, 0, -1637, 6 }, { -1605, 0, -1641, 6 }, + { -1625, 0, -1644, 6 }, { -1645, 0, -1645, 6 }, { -1665, 0, -1645, 6 }, + { -1685, 0, -1643, 6 }, { -1705, 0, -1639, 6 }, { -1724, -2, -1633, 6 }, + { -1742, -2, -1624, 6 }, { -1759, -2, -1614, 6 }, { -1774, -3, -1601, 6 }, + { -1788, -3, -1587, 6 }, { -1800, -4, -1571, 7 }, { -1809, -6, -1553, 7 }, + { -1816, -8, -1534, 7 }, { -1821, -10, -1515, 7 }, { -1825, -12, -1495, 7 }, + { -1827, -14, -1475, 7 }, { -1829, -18, -1455, 7 }, { -1830, -21, -1435, 7 }, + { -1830, -25, -1415, 7 }, { -1830, -28, -1395, 7 }, { -1830, -32, -1375, 7 }, + { -1829, -36, -1355, 7 }, { -1827, -39, -1335, 7 }, { -1825, -43, -1316, 7 }, + { -1823, -47, -1296, 7 }, { -1820, -51, -1276, 7 }, { -1816, -53, -1256, 7 }, + { -1811, -56, -1237, 7 }, { -1806, -58, -1218, 7 }, { -1800, -61, -1198, 7 }, + { -1793, -64, -1180, 8 }, { -1785, -67, -1161, 8 }, { -1776, -69, -1143, 8 }, + { -1767, -71, -1125, 8 }, { -1758, -73, -1108, 8 }, { -1749, -75, -1090, 8 }, + { -1740, -77, -1072, 8 }, { -1732, -79, -1054, 8 }, { -1723, -82, -1036, 8 }, + { -1714, -85, -1018, 8 }, { -1706, -87, -1000, 8 }, { -1697, -90, -982, 8 }, + { -1688, -90, -964, 8 }, { -1680, -91, -945, 8 }, { -1671, -93, -927, 8 }, + { -1663, -94, -909, 8 }, { -1655, -95, -891, 8 }, { -1646, -95, -873, 8 }, + { -1638, -96, -854, 8 }, { -1631, -97, -836, 8 }, { -1623, -97, -818, 8 }, + { -1616, -98, -799, 8 }, { -1608, -99, -780, 8 }, { -1602, -100, -761, 8 }, + { -1595, -101, -743, 8 }, { -1589, -101, -724, 8 }, { -1583, -103, -704, 8 }, + { -1578, -104, -685, 8 }, { -1573, -106, -666, 8 }, { -1569, -107, -646, 8 }, + { -1565, -108, -626, 8 }, { -1563, -109, -606, 8 }, { -1561, -108, -587, 8 }, + { -1560, -108, -567, 8 }, { -1559, -107, -547, 8 }, { -1560, -106, -527, 8 }, + { -1560, -106, -507, 8 }, { -1561, -105, -487, 8 }, { -1563, -105, -467, 8 }, + { -1565, -105, -447, 8 }, { -1568, -105, -427, 8 }, { -1571, -105, -407, 8 }, + { -1573, -105, -387, 8 }, { -1576, -105, -367, 8 }, { -1580, -115, -348, 9 }, + { -1584, -121, -328, 9 }, { -1587, -119, -308, 9 }, { -1592, -116, -289, 9 }, + { -1596, -114, -269, 9 }, { -1601, -111, -250, 9 }, { -1607, -108, -231, 9 }, + { -1613, -105, -212, 9 }, { -1619, -102, -193, 9 }, { -1626, -98, -174, 9 }, + { -1634, -95, -155, 9 }, { -1641, -91, -137, 9 }, { -1650, -87, -119, 9 }, + { -1658, -83, -101, 9 }, { -1667, -80, -83, 9 }, { -1676, -76, -65, 9 }, + { -1686, -72, -47, 9 }, { -1696, -67, -30, 9 }, { -1707, -62, -14, 9 }, + { -1720, -57, 1, 9 }, { -1733, -53, 16, 9 }, { -1748, -50, 29, 9 }, + { -1764, -47, 42, 9 }, { -1781, -44, 52, 10 }, { -1798, -42, 61, 10 }, + { -1817, -40, 69, 10 }, { -1836, -38, 75, 10 }, { -1856, -35, 79, 10 }, + { -1876, -31, 82, 10 }, { -1896, -29, 83, 10 }, { -1916, -27, 83, 10 }, + { -1936, -25, 81, 10 }, { -1955, -23, 79, 10 }, { -1975, -20, 76, 10 }, + { -1995, -16, 71, 10 }, { -2014, -13, 65, 10 }, { -2032, -10, 58, 10 }, + { -2050, -7, 49, 10 }, { -2067, -6, 39, 10 }, { -2083, -6, 27, 10 }, + { -2098, -7, 13, 10 }, { -2111, -7, -1, 10 }, { -2124, -7, -17, 10 }, + { -2135, -7, -33, 10 }, { -2145, -7, -51, 10 }, { -2154, -8, -68, 10 }, + { -2163, -9, -86, 10 }, { -2171, -10, -104, 10 }, { -2179, -10, -123, 10 }, + { -2186, -11, -142, 10 }, { -2193, -12, -160, 10 }, { -2200, -12, -179, 10 }, + { -2206, -12, -198, 10 }, { -2212, -12, -217, 10 }, { -2218, -12, -236, 10 }, + { -2223, -11, -256, 10 }, { -2227, -11, -275, 10 }, { -2231, -11, -295, 10 }, + { -2234, -10, -315, 11 }, { -2236, -10, -335, 11 }, { -2238, -10, -355, 11 }, + { -2241, -9, -374, 11 }, { -2244, -9, -394, 11 }, { -2247, -9, -414, 11 }, + { -2251, -9, -433, 11 }, { -2256, -8, -453, 11 }, { -2261, -8, -472, 11 }, + { -2266, -7, -492, 11 }, { -2272, -6, -511, 11 }, { -2278, -5, -530, 11 }, + { -2285, -5, -549, 11 }, { -2291, -4, -568, 11 }, { -2298, -3, -587, 11 }, + { -2304, -3, -605, 11 }, { -2311, -3, -624, 11 }, { -2318, -2, -643, 11 }, + { -2325, -2, -662, 11 }, { -2332, -2, -680, 11 }, { -2340, -2, -699, 11 }, + { -2348, -1, -717, 11 }, { -2356, -1, -736, 11 }, { -2364, -1, -754, 11 }, + { -2373, 0, -772, 11 }, { -2382, 0, -790, 11 }, { -2392, 0, -807, 11 }, + { -2401, 0, -825, 11 }, { -2412, 0, -842, 11 }, { -2422, 0, -859, 11 }, + { -2433, 0, -876, 11 }, { -2444, 0, -892, 11 }, { -2456, 0, -909, 11 }, + { -2468, 0, -925, 11 }, { -2480, 0, -941, 12 }, { -2492, 0, -957, 12 }, + { -2503, 0, -973, 12 }, { -2515, 0, -989, 12 }, { -2527, 0, -1006, 12 }, + { -2538, 0, -1022, 12 }, { -2550, 0, -1039, 12 }, { -2561, 0, -1055, 12 }, + { -2572, 0, -1072, 12 }, { -2583, 0, -1089, 12 }, { -2594, 0, -1105, 12 }, + { -2604, 0, -1122, 12 }, { -2614, 0, -1140, 12 }, { -2624, 0, -1157, 12 }, + { -2634, 0, -1174, 12 }, { -2644, 0, -1192, 12 }, { -2653, 0, -1210, 12 }, + { -2662, 0, -1228, 12 }, { -2670, -1, -1246, 12 }, { -2679, -1, -1264, 12 }, + { -2687, -1, -1282, 12 }, { -2695, -1, -1300, 12 }, { -2703, -1, -1319, 12 }, + { -2711, -1, -1337, 12 }, { -2719, -1, -1356, 12 }, { -2727, -1, -1374, 12 }, + { -2734, -1, -1393, 12 }, { -2742, -1, -1411, 12 }, { -2750, -1, -1429, 12 }, + { -2758, -1, -1447, 12 }, { -2767, -1, -1466, 12 }, { -2775, -1, -1484, 12 }, + { -2784, -1, -1502, 12 }, { -2793, -1, -1520, 12 }, { -2802, -1, -1538, 12 }, + { -2811, -1, -1555, 12 }, { -2821, -1, -1573, 13 }, { -2830, -1, -1590, 13 }, + { -2840, -1, -1608, 13 }, { -2850, -1, -1625, 13 }, { -2861, -1, -1642, 13 }, + { -2872, -1, -1659, 13 }, { -2884, -1, -1675, 13 }, { -2896, -1, -1691, 13 }, + { -2909, -1, -1706, 13 }, { -2924, -1, -1720, 13 }, { -2939, -1, -1733, 13 }, + { -2955, -1, -1744, 13 }, { -2973, -1, -1753, 13 }, { -2992, -1, -1761, 13 }, + { -3011, -1, -1767, 13 }, { -3030, -1, -1770, 13 }, { -3050, -1, -1772, 13 }, + { -3070, -1, -1771, 13 }, { -3090, -1, -1767, 13 }, { -3109, -1, -1761, 13 }, + { -3127, -1, -1752, 13 }, { -3143, -1, -1741, 13 }, { -3158, -1, -1727, 13 }, + { -3171, -1, -1712, 13 }, { -3183, -1, -1696, 13 }, { -3193, -1, -1679, 13 }, + { -3201, -1, -1660, 13 }, { -3207, -1, -1641, 13 }, { -3212, -1, -1622, 13 }, + { -3215, -1, -1602, 13 }, { -3217, -1, -1582, 13 }, { -3217, -1, -1562, 13 }, + { -3216, -1, -1542, 13 }, { -3214, -1, -1522, 13 }, { -3210, -1, -1503, 13 }, + { -3206, -1, -1483, 13 }, { -3201, -1, -1464, 13 }, { -3195, -1, -1445, 13 }, + { -3187, -1, -1426, 13 }, { -3177, -1, -1409, 13 }, { -3167, -1, -1391, 13 }, + { -3156, -1, -1375, 14 }, { -3145, -1, -1358, 14 }, { -3133, -2, -1342, 14 }, + { -3120, -2, -1327, 14 }, { -3107, -3, -1312, 14 }, { -3093, -3, -1297, 14 }, + { -3079, -3, -1282, 14 }, { -3065, -4, -1268, 14 }, { -3051, -5, -1254, 14 }, + { -3037, -6, -1240, 14 }, { -3022, -7, -1227, 14 }, { -3007, -8, -1214, 14 }, + { -2992, -9, -1201, 14 }, { -2976, -10, -1188, 14 }, { -2960, -12, -1176, 14 }, + { -2944, -12, -1165, 14 }, { -2927, -13, -1154, 14 }, { -2910, -14, -1143, 14 }, + { -2893, -14, -1133, 14 }, { -2876, -15, -1122, 14 }, { -2860, -16, -1110, 14 }, + { -2844, -17, -1098, 14 }, { -2828, -17, -1086, 14 }, { -2814, -18, -1072, 14 }, + { -2801, -19, -1056, 14 }, { -2790, -19, -1040, 14 }, { -2781, -19, -1022, 14 }, + { -2774, -19, -1003, 14 }, { -2769, -19, -984, 14 }, { -2766, -19, -964, 14 }, + { -2765, -19, -944, 14 }, { -2767, -19, -924, 14 }, { -2770, -19, -904, 14 }, + { -2774, -19, -885, 14 }, { -2778, -19, -865, 14 }, { -2784, -18, -846, 14 }, + { -2789, -18, -827, 15 }, { -2795, -18, -807, 15 }, { -2801, -17, -788, 15 }, + { -2807, -17, -769, 15 }, { -2814, -17, -750, 15 }, { -2820, -16, -732, 15 }, + { -2827, -16, -713, 15 }, { -2835, -15, -694, 15 }, { -2843, -15, -676, 15 }, + { -2851, -14, -658, 15 }, { -2860, -14, -640, 15 }, { -2871, -13, -623, 15 }, + { -2880, -13, -605, 15 }, { -2889, -12, -587, 15 }, { -2897, -12, -569, 15 }, + { -2904, -11, -550, 15 }, { -2911, -11, -531, 15 }, { -2916, -11, -512, 15 }, + { -2920, -11, -492, 15 }, { -2923, -10, -473, 15 }, { -2924, -10, -453, 15 }, + { -2925, -10, -433, 15 }, { -2925, -10, -413, 15 }, { -2925, -9, -393, 15 }, + { -2924, -9, -373, 15 }, { -2923, -9, -353, 15 }, { -2922, -9, -333, 15 }, + { -2920, -9, -313, 15 }, { -2919, -9, -293, 15 }, { -2916, -8, -273, 15 }, + { -2914, -8, -253, 15 }, { -2910, -8, -233, 15 }, { -2907, -8, -214, 15 }, + { -2903, -7, -194, 15 }, { -2899, -7, -175, 16 }, { -2894, -7, -155, 16 }, + { -2889, -7, -136, 16 }, { -2883, -7, -117, 16 }, { -2877, -7, -97, 16 }, + { -2871, -7, -78, 16 }, { -2864, -6, -60, 16 }, { -2858, -6, -41, 16 }, + { -2850, -6, -22, 16 }, { -2843, -6, -4, 16 }, { -2835, -5, 14, 16 }, + { -2827, -5, 32, 16 }, { -2819, -5, 50, 16 }, { -2810, -5, 69, 16 }, + { -2801, -5, 87, 16 }, { -2792, -5, 104, 16 }, { -2783, -4, 122, 16 }, + { -2774, -4, 140, 16 }, { -2765, -4, 158, 16 }, { -2755, -4, 175, 16 }, + { -2745, -3, 192, 16 }, { -2735, -3, 210, 16 }, { -2725, -3, 227, 16 }, + { -2714, -3, 244, 16 }, { -2703, -2, 261, 16 }, { -2693, -2, 278, 16 }, + { -2682, -2, 295, 16 }, { -2671, -1, 311, 16 }, { -2659, -1, 328, 16 }, + { -2648, -1, 344, 16 }, { -2636, -1, 360, 16 }, { -2624, -1, 377, 16 }, + { -2612, -1, 392, 16 }, { -2600, -1, 408, 16 }, { -2587, -1, 424, 16 }, + { -2574, 0, 439, 16 }, { -2560, 0, 453, 16 }, { -2546, 0, 467, 16 }, + { -2532, 0, 481, 16 }, { -2517, 0, 495, 16 }, { -2503, 0, 509, 16 }, + { -2488, 0, 523, 16 }, { -2474, 0, 537, 17 }, { -2459, 0, 550, 17 }, + { -2444, 0, 563, 17 }, { -2428, 0, 576, 17 }, { -2413, 0, 588, 17 }, + { -2397, 0, 600, 17 }, { -2381, 0, 612, 17 }, { -2365, 0, 624, 17 }, + { -2348, 0, 636, 17 }, { -2332, 0, 648, 17 }, { -2316, 0, 660, 17 }, + { -2300, 0, 672, 17 }, { -2284, 0, 684, 17 }, { -2268, 0, 695, 17 }, + { -2251, 0, 705, 17 }, { -2233, 0, 715, 17 }, { -2215, 0, 725, 17 }, + { -2198, 0, 734, 17 }, { -2180, 0, 744, 17 }, { -2163, -2, 754, 18 }, + { -2146, -4, 764, 18 }, { -2129, -7, 774, 18 }, { -2111, -9, 785, 18 }, + { -2094, -11, 795, 18 }, { -2077, -12, 806, 18 }, { -2060, -13, 816, 18 }, + { -2043, -14, 827, 18 }, { -2026, -15, 838, 18 }, { -2010, -16, 848, 18 }, + { -1993, -17, 859, 18 }, { -1976, -17, 870, 18 }, { -1959, -18, 880, 18 }, + { -1942, -18, 891, 18 }, { -1925, -19, 901, 18 }, { -1908, -19, 912, 18 }, + { -1891, -19, 923, 18 }, { -1874, -19, 933, 18 }, { -1857, -18, 944, 18 }, + { -1840, -18, 954, 18 }, { -1823, -17, 965, 18 }, { -1806, -16, 975, 18 }, + { -1789, -16, 986, 18 }, { -1772, -15, 996, 18 }, { -1755, -14, 1007, 18 }, + { -1738, -13, 1017, 18 }, { -1720, -11, 1028, 18 }, { -1703, -10, 1038, 18 }, + { -1686, -8, 1048, 18 }, { -1669, -6, 1059, 18 }, { -1652, -3, 1069, 18 }, + { -1634, -1, 1079, 18 }, { -1617, 0, 1088, 19 }, { -1599, 0, 1098, 19 }, + { -1581, 0, 1106, 19 }, { -1563, -1, 1114, 19 }, { -1544, -1, 1121, 19 }, + { -1525, -1, 1129, 19 }, { -1507, -2, 1135, 19 }, { -1488, -2, 1142, 19 }, + { -1469, -2, 1149, 19 }, { -1450, -2, 1156, 19 }, { -1431, -3, 1162, 19 }, + { -1412, -3, 1168, 19 }, { -1393, -3, 1174, 19 }, { -1373, -4, 1179, 19 }, + { -1354, -4, 1183, 19 }, { -1334, -4, 1187, 19 }, { -1314, -4, 1190, 19 }, + { -1295, -1, 1192, 19 }, { -1275, 0, 1194, 19 }, { -1255, 3, 1196, 19 }, + { -1235, 5, 1197, 19 }, { -1215, 7, 1198, 19 }, { -1195, 10, 1198, 19 }, + { -1175, 13, 1197, 19 }, { -1155, 15, 1197, 19 }, { -1135, 18, 1196, 19 }, + { -1115, 21, 1195, 19 }, { -1095, 23, 1194, 19 }, { -1075, 26, 1192, 19 }, + { -1055, 28, 1190, 19 }, { -1035, 31, 1188, 19 }, { -1015, 33, 1185, 19 }, + { -995, 35, 1182, 19 }, { -976, 38, 1179, 19 }, { -956, 40, 1175, 19 }, + { -937, 43, 1170, 19 }, { -918, 46, 1164, 19 }, { -899, 50, 1157, 19 }, + { -881, 55, 1149, 19 }, { -863, 58, 1139, 19 }, { -845, 62, 1129, 19 }, + { -829, 65, 1119, 20 }, { -812, 69, 1107, 20 }, { -796, 72, 1095, 20 }, + { -780, 76, 1083, 20 }, { -765, 79, 1070, 20 }, { -750, 82, 1057, 20 }, + { -735, 86, 1043, 20 }, { -721, 89, 1030, 20 }, { -706, 93, 1016, 20 }, + { -691, 96, 1002, 20 }, { -677, 99, 989, 20 }, { -662, 103, 975, 20 }, + { -648, 106, 961, 20 }, { -633, 109, 948, 20 }, { -619, 113, 934, 20 }, + { -604, 116, 920, 20 }, { -590, 119, 906, 20 }, { -575, 123, 892, 20 }, + { -561, 126, 878, 20 }, { -546, 129, 865, 20 }, { -530, 133, 853, 20 }, + { -513, 135, 842, 20 }, { -496, 137, 831, 20 }, { -479, 138, 821, 20 }, + { -461, 139, 813, 20 }, { -442, 140, 805, 20 }, { -424, 142, 798, 20 }, + { -404, 143, 792, 20 }, { -385, 144, 787, 20 }, { -366, 146, 781, 20 }, + { -347, 147, 775, 20 }, { -328, 148, 769, 20 }, { -309, 149, 762, 20 }, + { -290, 151, 756, 20 }, { -271, 152, 749, 20 }, { -252, 153, 742, 20 }, + { -234, 155, 735, 20 }, { -216, 156, 726, 20 }, { -199, 158, 715, 20 }, + { -183, 159, 703, 20 }, { -169, 161, 689, 20 }, { -157, 162, 673, 20 }, + { -145, 163, 657, 20 }, { -135, 165, 640, 1 }, { -125, 166, 622, 1 }, + { -117, 167, 604, 1 }, { -109, 169, 585, 1 }, { -102, 170, 567, 1 }, + { -95, 172, 548, 1 }, { -88, 173, 529, 1 }, { -81, 175, 511, 1 }, + { -75, 176, 492, 1 }, { -69, 176, 472, 1 }, { -63, 177, 453, 1 }, + { -58, 178, 434, 1 }, { -53, 178, 415, 1 }, { -48, 179, 395, 1 }, + { -43, 179, 376, 1 }, { -39, 179, 356, 1 }, { -36, 180, 336, 1 }, + { -32, 180, 317, 1 }, { -29, 180, 297, 1 }, { -26, 180, 277, 1 }, + { -24, 180, 257, 1 }, { -21, 180, 237, 1 }, { -19, 180, 217, 1 }, + { -17, 180, 198, 1 }, { -16, 180, 178, 1 }, { -14, 180, 158, 1 }, + { -12, 180, 138, 1 }, { -11, 180, 118, 1 }, { -10, 180, 98, 1 }, + { -8, 180, 78, 1 }, { -7, 180, 58, 1 }, { -6, 180, 38, 1 }, + { -4, 180, 18, 1 }, { -3, 180, -1, 1 }, { -32768, -32768, -32768, 0 }, diff --git a/courses/yoshi_valley/d_course_yoshi_valley_track_path_2.inc.c b/courses/yoshi_valley/d_course_yoshi_valley_track_path_2.inc.c new file mode 100644 index 0000000000..96c3c1d7d8 --- /dev/null +++ b/courses/yoshi_valley/d_course_yoshi_valley_track_path_2.inc.c @@ -0,0 +1,667 @@ + { -6, 180, -13, 1 }, + { -5, 180, -33, 2 }, + { -5, 180, -53, 2 }, + { -5, 180, -73, 2 }, + { -5, 180, -93, 2 }, + { -5, 180, -113, 2 }, + { -5, 180, -133, 2 }, + { -5, 180, -153, 2 }, + { -5, 180, -173, 2 }, + { -5, 180, -193, 2 }, + { -5, 180, -213, 2 }, + { -5, 180, -233, 2 }, + { -5, 180, -253, 2 }, + { -5, 180, -273, 2 }, + { -5, 180, -293, 2 }, + { -6, 180, -313, 2 }, + { -6, 180, -333, 2 }, + { -6, 180, -353, 2 }, + { -7, 180, -373, 2 }, + { -7, 180, -393, 2 }, + { -8, 180, -413, 2 }, + { -9, 180, -433, 2 }, + { -9, 180, -453, 2 }, + { -10, 180, -473, 2 }, + { -11, 180, -493, 2 }, + { -12, 180, -513, 2 }, + { -13, 180, -533, 2 }, + { -15, 180, -553, 2 }, + { -16, 180, -573, 2 }, + { -17, 180, -593, 2 }, + { -19, 180, -613, 2 }, + { -20, 180, -632, 2 }, + { -22, 180, -652, 2 }, + { -24, 180, -672, 2 }, + { -26, 180, -692, 2 }, + { -28, 180, -712, 2 }, + { -30, 180, -732, 2 }, + { -33, 180, -752, 2 }, + { -35, 180, -772, 2 }, + { -38, 180, -792, 2 }, + { -41, 180, -811, 2 }, + { -45, 180, -831, 2 }, + { -48, 180, -851, 2 }, + { -52, 180, -870, 3 }, + { -55, 180, -890, 3 }, + { -59, 180, -910, 3 }, + { -63, 180, -929, 3 }, + { -68, 181, -949, 3 }, + { -72, 181, -968, 3 }, + { -76, 181, -988, 3 }, + { -81, 181, -1007, 3 }, + { -86, 181, -1027, 3 }, + { -91, 182, -1046, 3 }, + { -96, 182, -1065, 3 }, + { -101, 182, -1085, 3 }, + { -107, 182, -1104, 3 }, + { -112, 182, -1123, 3 }, + { -117, 183, -1143, 3 }, + { -122, 183, -1162, 3 }, + { -128, 183, -1181, 3 }, + { -133, 183, -1201, 3 }, + { -139, 184, -1220, 3 }, + { -144, 184, -1239, 3 }, + { -150, 184, -1258, 3 }, + { -156, 184, -1277, 3 }, + { -161, 184, -1297, 3 }, + { -167, 184, -1316, 3 }, + { -173, 184, -1335, 3 }, + { -179, 183, -1354, 3 }, + { -185, 183, -1373, 3 }, + { -192, 182, -1392, 3 }, + { -199, 182, -1411, 3 }, + { -206, 181, -1429, 3 }, + { -214, 181, -1448, 3 }, + { -222, 180, -1466, 3 }, + { -231, 180, -1484, 3 }, + { -241, 179, -1501, 3 }, + { -252, 177, -1518, 3 }, + { -264, 176, -1534, 3 }, + { -277, 173, -1549, 3 }, + { -291, 171, -1563, 3 }, + { -306, 169, -1576, 3 }, + { -322, 167, -1588, 3 }, + { -340, 165, -1598, 3 }, + { -358, 163, -1607, 3 }, + { -377, 160, -1613, 3 }, + { -396, 158, -1617, 3 }, + { -416, 156, -1620, 3 }, + { -436, 153, -1623, 3 }, + { -456, 151, -1624, 3 }, + { -476, 148, -1624, 3 }, + { -496, 145, -1623, 4 }, + { -516, 143, -1621, 4 }, + { -535, 141, -1617, 4 }, + { -555, 138, -1613, 4 }, + { -574, 135, -1608, 4 }, + { -594, 132, -1602, 4 }, + { -613, 128, -1596, 4 }, + { -632, 125, -1590, 4 }, + { -650, 121, -1583, 4 }, + { -669, 118, -1576, 4 }, + { -688, 115, -1569, 4 }, + { -707, 111, -1562, 4 }, + { -725, 108, -1554, 4 }, + { -744, 104, -1547, 4 }, + { -762, 100, -1539, 4 }, + { -781, 97, -1532, 4 }, + { -799, 93, -1524, 4 }, + { -818, 89, -1516, 4 }, + { -836, 86, -1508, 4 }, + { -854, 82, -1500, 4 }, + { -873, 78, -1492, 4 }, + { -891, 75, -1484, 4 }, + { -909, 71, -1476, 4 }, + { -928, 67, -1468, 4 }, + { -946, 64, -1460, 5 }, + { -965, 60, -1452, 5 }, + { -983, 57, -1445, 5 }, + { -1002, 53, -1438, 5 }, + { -1020, 50, -1431, 5 }, + { -1039, 46, -1424, 5 }, + { -1058, 43, -1418, 5 }, + { -1077, 40, -1412, 5 }, + { -1097, 37, -1407, 5 }, + { -1116, 34, -1403, 5 }, + { -1136, 31, -1401, 5 }, + { -1156, 28, -1401, 5 }, + { -1176, 26, -1403, 5 }, + { -1195, 24, -1409, 5 }, + { -1214, 22, -1416, 6 }, + { -1232, 21, -1425, 6 }, + { -1248, 19, -1437, 6 }, + { -1263, 18, -1450, 6 }, + { -1279, 17, -1463, 6 }, + { -1294, 15, -1476, 6 }, + { -1309, 14, -1488, 6 }, + { -1325, 12, -1501, 6 }, + { -1340, 10, -1514, 6 }, + { -1356, 9, -1526, 6 }, + { -1371, 7, -1539, 6 }, + { -1387, 5, -1551, 6 }, + { -1403, 4, -1564, 6 }, + { -1419, 3, -1575, 6 }, + { -1436, 3, -1586, 6 }, + { -1453, 2, -1596, 6 }, + { -1471, 1, -1606, 6 }, + { -1489, 0, -1615, 6 }, + { -1507, 0, -1623, 6 }, + { -1526, 0, -1630, 6 }, + { -1544, 0, -1637, 6 }, + { -1564, 0, -1643, 6 }, + { -1583, 0, -1648, 6 }, + { -1602, 0, -1652, 6 }, + { -1622, 0, -1655, 6 }, + { -1642, 0, -1656, 6 }, + { -1662, 0, -1656, 6 }, + { -1682, 0, -1653, 6 }, + { -1702, 0, -1648, 6 }, + { -1720, -1, -1641, 6 }, + { -1738, -2, -1632, 6 }, + { -1755, -2, -1621, 6 }, + { -1770, -2, -1609, 6 }, + { -1784, -3, -1594, 6 }, + { -1797, -4, -1579, 6 }, + { -1807, -5, -1561, 7 }, + { -1814, -7, -1543, 7 }, + { -1820, -9, -1523, 7 }, + { -1824, -11, -1504, 7 }, + { -1827, -13, -1484, 7 }, + { -1830, -16, -1464, 7 }, + { -1832, -20, -1444, 7 }, + { -1834, -23, -1425, 7 }, + { -1836, -27, -1405, 7 }, + { -1837, -31, -1385, 7 }, + { -1838, -34, -1365, 7 }, + { -1839, -38, -1345, 7 }, + { -1842, -43, -1325, 7 }, + { -1845, -48, -1305, 7 }, + { -1851, -52, -1286, 7 }, + { -1862, -55, -1269, 7 }, + { -1878, -58, -1258, 7 }, + { -1895, -61, -1247, 28 }, + { -1913, -66, -1238, 28 }, + { -1931, -70, -1229, 28 }, + { -1948, -75, -1220, 28 }, + { -1965, -79, -1208, 28 }, + { -1980, -84, -1195, 28 }, + { -1994, -88, -1181, 28 }, + { -2007, -92, -1166, 28 }, + { -2019, -95, -1150, 28 }, + { -2031, -97, -1134, 28 }, + { -2043, -98, -1118, 28 }, + { -2055, -99, -1102, 28 }, + { -2067, -100, -1086, 28 }, + { -2079, -100, -1069, 28 }, + { -2091, -100, -1053, 28 }, + { -2103, -100, -1037, 28 }, + { -2115, -100, -1021, 28 }, + { -2127, -100, -1006, 28 }, + { -2140, -100, -990, 28 }, + { -2152, -100, -974, 28 }, + { -2164, -102, -958, 29 }, + { -2176, -105, -942, 29 }, + { -2188, -107, -926, 29 }, + { -2200, -109, -910, 29 }, + { -2212, -110, -894, 29 }, + { -2224, -110, -878, 29 }, + { -2236, -109, -862, 29 }, + { -2248, -107, -846, 29 }, + { -2260, -104, -830, 29 }, + { -2272, -101, -814, 29 }, + { -2284, -100, -798, 30 }, + { -2296, -100, -782, 30 }, + { -2308, -100, -766, 30 }, + { -2320, -100, -750, 30 }, + { -2332, -100, -734, 30 }, + { -2344, -100, -718, 30 }, + { -2356, -100, -702, 30 }, + { -2368, -100, -686, 30 }, + { -2380, -100, -670, 30 }, + { -2391, -100, -653, 30 }, + { -2403, -100, -637, 30 }, + { -2415, -99, -621, 30 }, + { -2427, -99, -605, 30 }, + { -2438, -98, -589, 30 }, + { -2450, -98, -572, 30 }, + { -2462, -98, -556, 30 }, + { -2472, -97, -539, 30 }, + { -2483, -97, -522, 30 }, + { -2493, -96, -505, 30 }, + { -2502, -94, -487, 30 }, + { -2510, -92, -469, 30 }, + { -2518, -91, -451, 30 }, + { -2525, -89, -432, 30 }, + { -2531, -88, -413, 30 }, + { -2536, -86, -393, 30 }, + { -2541, -82, -374, 30 }, + { -2544, -79, -354, 30 }, + { -2547, -75, -334, 30 }, + { -2549, -72, -314, 30 }, + { -2551, -67, -294, 30 }, + { -2552, -61, -274, 30 }, + { -2553, -55, -254, 30 }, + { -2552, -50, -234, 30 }, + { -2550, -44, -215, 30 }, + { -2547, -38, -195, 30 }, + { -2541, -33, -176, 30 }, + { -2532, -28, -158, 30 }, + { -2521, -23, -141, 30 }, + { -2507, -19, -127, 30 }, + { -2492, -15, -114, 30 }, + { -2475, -12, -103, 30 }, + { -2458, -8, -93, 30 }, + { -2440, -5, -84, 30 }, + { -2421, 0, -77, 30 }, + { -2402, 2, -71, 30 }, + { -2382, 6, -67, 30 }, + { -2362, 9, -66, 30 }, + { -2342, 11, -66, 30 }, + { -2323, 1, -69, 10 }, + { -2303, -8, -74, 10 }, + { -2284, -9, -80, 10 }, + { -2266, -11, -89, 10 }, + { -2250, -12, -100, 10 }, + { -2235, -12, -114, 10 }, + { -2223, -12, -130, 10 }, + { -2214, -12, -148, 10 }, + { -2209, -12, -167, 10 }, + { -2206, -12, -187, 10 }, + { -2205, -12, -207, 10 }, + { -2206, -12, -227, 10 }, + { -2207, -11, -247, 10 }, + { -2209, -11, -267, 10 }, + { -2212, -11, -286, 10 }, + { -2215, -10, -306, 11 }, + { -2219, -10, -326, 11 }, + { -2223, -9, -346, 11 }, + { -2227, -9, -365, 11 }, + { -2232, -9, -384, 11 }, + { -2237, -9, -404, 11 }, + { -2243, -9, -423, 11 }, + { -2249, -8, -442, 11 }, + { -2256, -8, -461, 11 }, + { -2263, -7, -480, 11 }, + { -2270, -7, -498, 11 }, + { -2277, -6, -517, 11 }, + { -2285, -5, -535, 11 }, + { -2292, -5, -554, 11 }, + { -2299, -4, -573, 11 }, + { -2306, -3, -591, 11 }, + { -2313, -3, -610, 11 }, + { -2321, -3, -629, 11 }, + { -2328, -2, -648, 11 }, + { -2335, -2, -666, 11 }, + { -2342, -2, -685, 11 }, + { -2349, -1, -704, 11 }, + { -2356, -1, -722, 11 }, + { -2364, -1, -741, 11 }, + { -2372, 0, -759, 11 }, + { -2380, 0, -778, 11 }, + { -2388, 0, -796, 11 }, + { -2397, 0, -814, 11 }, + { -2407, 0, -831, 11 }, + { -2416, 0, -849, 11 }, + { -2426, 0, -866, 11 }, + { -2437, 0, -883, 11 }, + { -2447, 0, -900, 11 }, + { -2459, 0, -917, 11 }, + { -2470, 0, -933, 11 }, + { -2482, 0, -949, 12 }, + { -2494, 0, -965, 12 }, + { -2506, 0, -981, 12 }, + { -2519, 0, -997, 12 }, + { -2531, 0, -1012, 12 }, + { -2543, 0, -1028, 12 }, + { -2555, 0, -1045, 12 }, + { -2566, 0, -1061, 12 }, + { -2577, 0, -1078, 12 }, + { -2588, 0, -1095, 12 }, + { -2598, 0, -1112, 12 }, + { -2609, 0, -1129, 12 }, + { -2619, 0, -1146, 12 }, + { -2629, 0, -1163, 12 }, + { -2639, 0, -1181, 12 }, + { -2648, 0, -1198, 12 }, + { -2658, 0, -1216, 12 }, + { -2667, -1, -1234, 12 }, + { -2677, -1, -1251, 12 }, + { -2686, -1, -1269, 12 }, + { -2695, -1, -1287, 12 }, + { -2704, -1, -1305, 12 }, + { -2713, -1, -1323, 12 }, + { -2722, -1, -1341, 12 }, + { -2731, -1, -1359, 12 }, + { -2740, -1, -1377, 12 }, + { -2748, -1, -1395, 12 }, + { -2757, -1, -1413, 12 }, + { -2765, -1, -1431, 12 }, + { -2774, 0, -1449, 12 }, + { -2783, 0, -1467, 12 }, + { -2791, 0, -1485, 12 }, + { -2800, 0, -1503, 12 }, + { -2809, 0, -1521, 12 }, + { -2818, 0, -1539, 12 }, + { -2827, 0, -1557, 13 }, + { -2837, -1, -1574, 13 }, + { -2846, -1, -1592, 13 }, + { -2856, -1, -1610, 13 }, + { -2865, -1, -1627, 13 }, + { -2875, -1, -1644, 13 }, + { -2886, -1, -1662, 13 }, + { -2896, -1, -1678, 13 }, + { -2907, -1, -1695, 13 }, + { -2919, -1, -1712, 13 }, + { -2931, -1, -1727, 13 }, + { -2945, -1, -1742, 13 }, + { -2960, -1, -1754, 13 }, + { -2979, -1, -1762, 13 }, + { -2998, -1, -1769, 13 }, + { -3017, -1, -1773, 13 }, + { -3037, -1, -1776, 13 }, + { -3057, -1, -1776, 13 }, + { -3077, -1, -1773, 13 }, + { -3096, -1, -1769, 13 }, + { -3115, -1, -1761, 13 }, + { -3132, -1, -1750, 13 }, + { -3147, -1, -1737, 13 }, + { -3161, -1, -1723, 13 }, + { -3173, -1, -1707, 13 }, + { -3184, -1, -1690, 13 }, + { -3193, -1, -1672, 13 }, + { -3200, -1, -1654, 13 }, + { -3205, -1, -1634, 13 }, + { -3209, -1, -1615, 13 }, + { -3211, -1, -1595, 13 }, + { -3212, -1, -1575, 13 }, + { -3212, -1, -1555, 13 }, + { -3210, -1, -1535, 13 }, + { -3208, -1, -1515, 13 }, + { -3205, -1, -1495, 13 }, + { -3201, -1, -1476, 13 }, + { -3196, -1, -1456, 13 }, + { -3190, -1, -1437, 13 }, + { -3182, -1, -1419, 13 }, + { -3174, -1, -1401, 13 }, + { -3165, -1, -1383, 13 }, + { -3154, -1, -1366, 14 }, + { -3143, -2, -1349, 14 }, + { -3131, -2, -1333, 14 }, + { -3119, -3, -1317, 14 }, + { -3105, -3, -1302, 14 }, + { -3092, -3, -1288, 14 }, + { -3078, -4, -1274, 14 }, + { -3063, -4, -1260, 14 }, + { -3048, -6, -1246, 14 }, + { -3033, -7, -1233, 14 }, + { -3018, -8, -1221, 14 }, + { -3002, -9, -1209, 14 }, + { -2985, -10, -1197, 14 }, + { -2969, -11, -1186, 14 }, + { -2952, -12, -1175, 14 }, + { -2935, -13, -1165, 14 }, + { -2917, -13, -1155, 14 }, + { -2900, -14, -1144, 14 }, + { -2883, -14, -1134, 14 }, + { -2867, -15, -1123, 14 }, + { -2850, -16, -1111, 14 }, + { -2834, -16, -1099, 14 }, + { -2819, -17, -1086, 14 }, + { -2805, -18, -1072, 14 }, + { -2792, -19, -1057, 14 }, + { -2782, -19, -1039, 14 }, + { -2773, -19, -1021, 14 }, + { -2767, -19, -1003, 14 }, + { -2762, -19, -983, 14 }, + { -2760, -19, -963, 14 }, + { -2762, -19, -943, 14 }, + { -2764, -19, -923, 14 }, + { -2768, -19, -904, 14 }, + { -2772, -19, -884, 14 }, + { -2777, -19, -865, 14 }, + { -2782, -18, -845, 14 }, + { -2787, -18, -826, 15 }, + { -2792, -18, -807, 15 }, + { -2797, -17, -787, 15 }, + { -2803, -17, -768, 15 }, + { -2810, -17, -749, 15 }, + { -2816, -16, -730, 15 }, + { -2824, -16, -712, 15 }, + { -2832, -15, -693, 15 }, + { -2840, -15, -675, 15 }, + { -2850, -14, -658, 15 }, + { -2861, -14, -641, 15 }, + { -2872, -13, -625, 15 }, + { -2883, -13, -608, 15 }, + { -2893, -12, -591, 15 }, + { -2902, -12, -573, 15 }, + { -2910, -12, -554, 15 }, + { -2917, -12, -536, 15 }, + { -2923, -11, -516, 15 }, + { -2927, -11, -497, 15 }, + { -2929, -10, -477, 15 }, + { -2931, -10, -457, 15 }, + { -2932, -10, -437, 15 }, + { -2932, -10, -417, 15 }, + { -2931, -10, -397, 15 }, + { -2930, -9, -377, 15 }, + { -2929, -9, -357, 15 }, + { -2927, -9, -337, 15 }, + { -2925, -9, -317, 15 }, + { -2923, -9, -297, 15 }, + { -2920, -9, -277, 15 }, + { -2917, -8, -258, 15 }, + { -2913, -8, -238, 15 }, + { -2909, -8, -218, 15 }, + { -2904, -7, -199, 15 }, + { -2900, -7, -180, 15 }, + { -2894, -7, -160, 16 }, + { -2889, -7, -141, 16 }, + { -2883, -7, -122, 16 }, + { -2876, -7, -103, 16 }, + { -2870, -6, -84, 16 }, + { -2863, -6, -65, 16 }, + { -2855, -6, -47, 16 }, + { -2848, -6, -28, 16 }, + { -2840, -6, -10, 16 }, + { -2832, -6, 8, 16 }, + { -2824, -5, 26, 16 }, + { -2816, -5, 44, 16 }, + { -2807, -5, 62, 16 }, + { -2798, -5, 80, 16 }, + { -2789, -4, 98, 16 }, + { -2780, -4, 116, 16 }, + { -2771, -4, 134, 16 }, + { -2761, -4, 151, 16 }, + { -2752, -3, 169, 16 }, + { -2742, -3, 186, 16 }, + { -2732, -3, 203, 16 }, + { -2721, -3, 221, 16 }, + { -2711, -2, 238, 16 }, + { -2700, -2, 255, 16 }, + { -2690, -2, 272, 16 }, + { -2679, -2, 288, 16 }, + { -2668, -1, 305, 16 }, + { -2657, -1, 322, 16 }, + { -2646, -1, 338, 16 }, + { -2634, -1, 355, 16 }, + { -2623, -1, 371, 16 }, + { -2611, -1, 387, 16 }, + { -2599, -1, 403, 16 }, + { -2586, -1, 419, 16 }, + { -2574, 0, 435, 16 }, + { -2561, 0, 450, 16 }, + { -2547, 0, 464, 16 }, + { -2533, 0, 479, 16 }, + { -2520, 0, 493, 16 }, + { -2506, 0, 508, 16 }, + { -2492, 0, 522, 16 }, + { -2477, 0, 536, 17 }, + { -2463, 0, 550, 17 }, + { -2448, 0, 563, 17 }, + { -2433, 0, 576, 17 }, + { -2418, 0, 589, 17 }, + { -2402, 0, 602, 17 }, + { -2386, 0, 614, 17 }, + { -2369, 0, 624, 17 }, + { -2352, 0, 635, 17 }, + { -2336, 0, 647, 17 }, + { -2320, 0, 659, 17 }, + { -2304, 0, 671, 17 }, + { -2287, 0, 682, 17 }, + { -2270, 0, 692, 17 }, + { -2253, 0, 703, 17 }, + { -2236, 0, 713, 17 }, + { -2218, 0, 723, 17 }, + { -2201, 0, 733, 17 }, + { -2183, 0, 742, 17 }, + { -2166, -1, 753, 18 }, + { -2149, -4, 763, 18 }, + { -2132, -6, 773, 18 }, + { -2115, -9, 784, 18 }, + { -2098, -10, 794, 18 }, + { -2081, -12, 805, 18 }, + { -2064, -13, 816, 18 }, + { -2047, -14, 826, 18 }, + { -2030, -15, 837, 18 }, + { -2013, -16, 847, 18 }, + { -1996, -16, 858, 18 }, + { -1979, -17, 868, 18 }, + { -1962, -18, 879, 18 }, + { -1945, -18, 890, 18 }, + { -1928, -19, 900, 18 }, + { -1911, -19, 911, 18 }, + { -1894, -19, 921, 18 }, + { -1877, -19, 932, 18 }, + { -1860, -18, 942, 18 }, + { -1843, -18, 952, 18 }, + { -1826, -17, 963, 18 }, + { -1809, -16, 973, 18 }, + { -1792, -16, 984, 18 }, + { -1774, -15, 994, 18 }, + { -1757, -14, 1004, 18 }, + { -1740, -13, 1015, 18 }, + { -1723, -11, 1025, 18 }, + { -1706, -10, 1035, 18 }, + { -1689, -9, 1046, 18 }, + { -1671, -6, 1056, 18 }, + { -1654, -4, 1066, 18 }, + { -1637, -1, 1075, 18 }, + { -1619, 0, 1085, 19 }, + { -1601, 0, 1094, 19 }, + { -1583, 0, 1103, 19 }, + { -1565, -1, 1111, 19 }, + { -1546, -1, 1118, 19 }, + { -1527, -1, 1125, 19 }, + { -1509, -2, 1132, 19 }, + { -1490, -2, 1139, 19 }, + { -1471, -2, 1146, 19 }, + { -1452, -2, 1152, 19 }, + { -1433, -3, 1159, 19 }, + { -1415, -3, 1166, 19 }, + { -1396, -3, 1173, 19 }, + { -1377, -4, 1178, 19 }, + { -1357, -4, 1184, 19 }, + { -1338, -4, 1188, 19 }, + { -1318, -4, 1192, 19 }, + { -1298, -2, 1195, 19 }, + { -1278, 0, 1197, 19 }, + { -1258, 2, 1199, 19 }, + { -1238, 4, 1200, 19 }, + { -1218, 7, 1200, 19 }, + { -1198, 9, 1200, 19 }, + { -1178, 12, 1200, 19 }, + { -1158, 15, 1199, 19 }, + { -1138, 17, 1198, 19 }, + { -1118, 20, 1196, 19 }, + { -1099, 23, 1194, 19 }, + { -1079, 25, 1191, 19 }, + { -1059, 28, 1188, 19 }, + { -1039, 30, 1185, 19 }, + { -1020, 33, 1181, 19 }, + { -1000, 35, 1176, 19 }, + { -981, 38, 1171, 19 }, + { -962, 40, 1165, 19 }, + { -943, 42, 1158, 19 }, + { -924, 45, 1151, 19 }, + { -906, 50, 1144, 19 }, + { -888, 54, 1135, 19 }, + { -870, 59, 1126, 19 }, + { -852, 62, 1116, 19 }, + { -835, 66, 1106, 20 }, + { -819, 69, 1094, 20 }, + { -803, 73, 1083, 20 }, + { -787, 76, 1070, 20 }, + { -771, 79, 1057, 20 }, + { -756, 83, 1045, 20 }, + { -741, 86, 1032, 20 }, + { -725, 90, 1019, 20 }, + { -710, 93, 1006, 20 }, + { -695, 96, 993, 20 }, + { -679, 100, 981, 20 }, + { -664, 103, 968, 20 }, + { -649, 107, 955, 20 }, + { -633, 110, 942, 20 }, + { -618, 113, 929, 20 }, + { -603, 117, 916, 20 }, + { -588, 120, 903, 20 }, + { -572, 123, 890, 20 }, + { -557, 127, 878, 20 }, + { -540, 130, 866, 20 }, + { -524, 133, 855, 20 }, + { -507, 136, 844, 20 }, + { -490, 137, 834, 20 }, + { -472, 138, 824, 20 }, + { -454, 139, 816, 20 }, + { -436, 141, 808, 20 }, + { -417, 142, 801, 20 }, + { -398, 143, 794, 20 }, + { -379, 145, 787, 20 }, + { -361, 146, 780, 20 }, + { -342, 147, 773, 20 }, + { -323, 148, 766, 20 }, + { -304, 150, 759, 20 }, + { -285, 151, 753, 20 }, + { -266, 152, 746, 20 }, + { -248, 154, 738, 20 }, + { -231, 155, 728, 20 }, + { -214, 157, 717, 20 }, + { -199, 158, 704, 20 }, + { -185, 159, 689, 20 }, + { -173, 161, 674, 20 }, + { -161, 163, 658, 20 }, + { -150, 164, 641, 20 }, + { -140, 166, 624, 1 }, + { -130, 167, 606, 1 }, + { -121, 168, 589, 1 }, + { -112, 170, 571, 1 }, + { -103, 171, 553, 1 }, + { -95, 173, 534, 1 }, + { -87, 174, 516, 1 }, + { -79, 175, 497, 1 }, + { -72, 176, 479, 1 }, + { -65, 177, 460, 1 }, + { -59, 177, 441, 1 }, + { -53, 178, 422, 1 }, + { -48, 178, 403, 1 }, + { -43, 179, 383, 1 }, + { -38, 179, 364, 1 }, + { -34, 179, 344, 1 }, + { -31, 180, 324, 1 }, + { -28, 180, 305, 1 }, + { -25, 180, 285, 1 }, + { -22, 180, 265, 1 }, + { -20, 180, 245, 1 }, + { -18, 180, 225, 1 }, + { -17, 180, 205, 1 }, + { -15, 180, 185, 1 }, + { -14, 180, 165, 1 }, + { -13, 180, 145, 1 }, + { -12, 180, 125, 1 }, + { -11, 180, 105, 1 }, + { -10, 180, 85, 1 }, + { -9, 180, 65, 1 }, + { -8, 180, 45, 1 }, + { -7, 180, 25, 1 }, + { -6, 180, 5, 1 }, + { -32768, -32768, -32768, 0 }, diff --git a/courses/yoshi_valley/d_course_yoshi_valley_track_path_3.inc.c b/courses/yoshi_valley/d_course_yoshi_valley_track_path_3.inc.c new file mode 100644 index 0000000000..94171c59ee --- /dev/null +++ b/courses/yoshi_valley/d_course_yoshi_valley_track_path_3.inc.c @@ -0,0 +1,679 @@ + { -3, 180, -11, 1 }, + { -2, 180, -31, 2 }, + { -2, 180, -51, 2 }, + { -2, 180, -71, 2 }, + { -2, 180, -91, 2 }, + { -1, 180, -111, 2 }, + { -1, 180, -131, 2 }, + { -1, 180, -151, 2 }, + { -1, 180, -171, 2 }, + { -1, 180, -191, 2 }, + { -1, 180, -211, 2 }, + { -1, 180, -231, 2 }, + { -2, 180, -251, 2 }, + { -2, 180, -271, 2 }, + { -3, 180, -291, 2 }, + { -3, 180, -311, 2 }, + { -4, 180, -331, 2 }, + { -5, 180, -351, 2 }, + { -6, 180, -371, 2 }, + { -7, 180, -391, 2 }, + { -8, 180, -411, 2 }, + { -9, 180, -431, 2 }, + { -10, 180, -451, 2 }, + { -11, 180, -471, 2 }, + { -12, 180, -491, 2 }, + { -14, 180, -510, 2 }, + { -15, 180, -530, 2 }, + { -17, 180, -550, 2 }, + { -18, 180, -570, 2 }, + { -20, 180, -590, 2 }, + { -22, 180, -610, 2 }, + { -23, 180, -630, 2 }, + { -25, 180, -650, 2 }, + { -28, 180, -670, 2 }, + { -30, 180, -690, 2 }, + { -32, 180, -710, 2 }, + { -34, 180, -730, 2 }, + { -37, 180, -750, 2 }, + { -39, 180, -769, 2 }, + { -42, 180, -789, 2 }, + { -45, 180, -809, 2 }, + { -48, 180, -829, 2 }, + { -51, 180, -849, 2 }, + { -55, 180, -868, 3 }, + { -58, 180, -888, 3 }, + { -62, 180, -908, 3 }, + { -66, 180, -927, 3 }, + { -70, 180, -947, 3 }, + { -74, 181, -966, 3 }, + { -79, 181, -986, 3 }, + { -83, 181, -1005, 3 }, + { -88, 181, -1025, 3 }, + { -92, 182, -1044, 3 }, + { -97, 182, -1064, 3 }, + { -102, 182, -1083, 3 }, + { -108, 182, -1102, 3 }, + { -113, 182, -1122, 3 }, + { -118, 183, -1141, 3 }, + { -124, 183, -1160, 3 }, + { -129, 183, -1180, 3 }, + { -135, 183, -1199, 3 }, + { -140, 184, -1218, 3 }, + { -146, 184, -1237, 3 }, + { -151, 184, -1256, 3 }, + { -157, 184, -1276, 3 }, + { -163, 184, -1295, 3 }, + { -169, 184, -1314, 3 }, + { -175, 184, -1333, 3 }, + { -181, 183, -1352, 3 }, + { -187, 183, -1371, 3 }, + { -193, 182, -1390, 3 }, + { -200, 182, -1409, 3 }, + { -207, 181, -1428, 3 }, + { -214, 181, -1446, 3 }, + { -222, 180, -1465, 3 }, + { -231, 180, -1483, 3 }, + { -241, 179, -1500, 3 }, + { -251, 177, -1517, 3 }, + { -263, 176, -1534, 3 }, + { -276, 173, -1549, 3 }, + { -290, 171, -1563, 3 }, + { -306, 169, -1575, 3 }, + { -322, 167, -1586, 3 }, + { -340, 165, -1596, 3 }, + { -359, 163, -1603, 3 }, + { -378, 160, -1609, 3 }, + { -397, 158, -1613, 3 }, + { -417, 156, -1616, 3 }, + { -437, 153, -1618, 3 }, + { -457, 150, -1619, 3 }, + { -477, 148, -1619, 3 }, + { -497, 145, -1618, 4 }, + { -517, 143, -1615, 4 }, + { -537, 140, -1612, 4 }, + { -556, 138, -1608, 4 }, + { -576, 135, -1604, 4 }, + { -595, 131, -1599, 4 }, + { -614, 128, -1594, 4 }, + { -634, 124, -1588, 4 }, + { -653, 121, -1583, 4 }, + { -672, 118, -1577, 4 }, + { -691, 114, -1570, 4 }, + { -710, 111, -1564, 4 }, + { -729, 107, -1557, 4 }, + { -748, 104, -1550, 4 }, + { -766, 100, -1543, 4 }, + { -785, 96, -1536, 4 }, + { -804, 93, -1529, 4 }, + { -822, 89, -1521, 4 }, + { -841, 85, -1514, 4 }, + { -859, 82, -1506, 4 }, + { -878, 78, -1499, 4 }, + { -896, 74, -1491, 4 }, + { -915, 70, -1483, 4 }, + { -933, 67, -1475, 4 }, + { -951, 63, -1467, 5 }, + { -970, 60, -1459, 5 }, + { -988, 56, -1450, 5 }, + { -1006, 53, -1442, 5 }, + { -1024, 49, -1433, 5 }, + { -1041, 46, -1423, 5 }, + { -1059, 42, -1414, 5 }, + { -1076, 40, -1403, 5 }, + { -1093, 37, -1393, 5 }, + { -1109, 34, -1381, 5 }, + { -1125, 32, -1369, 5 }, + { -1140, 28, -1355, 5 }, + { -1154, 25, -1341, 5 }, + { -1167, 21, -1326, 5 }, + { -1180, 17, -1311, 5 }, + { -1191, 15, -1294, 5 }, + { -1200, 12, -1276, 5 }, + { -1206, 9, -1257, 5 }, + { -1210, 6, -1237, 5 }, + { -1213, 3, -1218, 5 }, + { -1214, 0, -1198, 5 }, + { -1213, -2, -1178, 5 }, + { -1213, -5, -1158, 5 }, + { -1211, -8, -1138, 5 }, + { -1210, -10, -1118, 5 }, + { -1208, -12, -1098, 5 }, + { -1206, -15, -1078, 5 }, + { -1204, -17, -1058, 5 }, + { -1202, -20, -1038, 5 }, + { -1199, -22, -1018, 5 }, + { -1196, -25, -998, 5 }, + { -1193, -26, -979, 5 }, + { -1190, -27, -959, 5 }, + { -1187, -28, -939, 5 }, + { -1183, -29, -919, 5 }, + { -1179, -30, -900, 5 }, + { -1175, -30, -880, 5 }, + { -1171, -31, -861, 5 }, + { -1166, -31, -841, 31 }, + { -1160, -31, -822, 31 }, + { -1154, -31, -803, 31 }, + { -1147, -31, -784, 31 }, + { -1139, -31, -766, 31 }, + { -1131, -31, -748, 31 }, + { -1122, -31, -729, 31 }, + { -1115, -31, -711, 31 }, + { -1107, -31, -692, 31 }, + { -1103, -31, -673, 31 }, + { -1100, -31, -653, 31 }, + { -1098, -31, -633, 31 }, + { -1097, -30, -613, 31 }, + { -1098, -28, -593, 31 }, + { -1101, -26, -573, 31 }, + { -1105, -24, -554, 31 }, + { -1109, -22, -534, 31 }, + { -1115, -20, -515, 31 }, + { -1121, -18, -496, 31 }, + { -1128, -16, -477, 31 }, + { -1135, -13, -459, 31 }, + { -1142, -10, -440, 31 }, + { -1148, -7, -421, 31 }, + { -1155, -4, -402, 31 }, + { -1161, -1, -383, 25 }, + { -1167, -1, -364, 25 }, + { -1172, -1, -344, 25 }, + { -1176, -1, -325, 25 }, + { -1178, -1, -305, 25 }, + { -1178, -1, -285, 25 }, + { -1176, -1, -265, 25 }, + { -1172, 0, -245, 25 }, + { -1166, 0, -226, 25 }, + { -1159, 0, -208, 25 }, + { -1151, 0, -189, 25 }, + { -1144, 0, -170, 25 }, + { -1137, 0, -152, 25 }, + { -1129, 0, -133, 25 }, + { -1122, 0, -114, 25 }, + { -1115, 0, -96, 25 }, + { -1108, 0, -77, 25 }, + { -1102, 0, -58, 25 }, + { -1096, 0, -39, 25 }, + { -1090, 0, -20, 25 }, + { -1085, 0, 0, 25 }, + { -1080, 0, 18, 25 }, + { -1075, 0, 37, 25 }, + { -1070, 0, 57, 25 }, + { -1066, 0, 76, 25 }, + { -1062, 0, 96, 25 }, + { -1058, 0, 116, 25 }, + { -1055, 0, 135, 25 }, + { -1052, 0, 155, 25 }, + { -1050, 0, 175, 25 }, + { -1048, 0, 195, 25 }, + { -1048, 0, 215, 25 }, + { -1050, 0, 235, 25 }, + { -1055, 0, 254, 25 }, + { -1062, 0, 273, 25 }, + { -1072, 0, 291, 25 }, + { -1084, 0, 307, 25 }, + { -1098, 0, 320, 26 }, + { -1114, 0, 332, 26 }, + { -1132, 0, 342, 26 }, + { -1150, 0, 350, 26 }, + { -1169, 0, 357, 26 }, + { -1188, 0, 364, 26 }, + { -1207, 0, 369, 26 }, + { -1226, 0, 374, 26 }, + { -1246, 0, 379, 26 }, + { -1266, 0, 383, 26 }, + { -1285, 0, 386, 26 }, + { -1305, 0, 390, 26 }, + { -1325, 0, 392, 26 }, + { -1345, 0, 395, 26 }, + { -1365, 0, 396, 26 }, + { -1385, 0, 397, 26 }, + { -1405, 0, 397, 26 }, + { -1425, 0, 395, 26 }, + { -1444, 0, 392, 26 }, + { -1464, 0, 388, 26 }, + { -1483, 0, 383, 26 }, + { -1502, 0, 376, 26 }, + { -1520, 0, 368, 26 }, + { -1538, 0, 359, 26 }, + { -1556, 0, 350, 26 }, + { -1573, 0, 340, 26 }, + { -1590, -1, 329, 26 }, + { -1607, -1, 318, 26 }, + { -1623, -1, 306, 26 }, + { -1639, -1, 294, 26 }, + { -1654, -2, 282, 26 }, + { -1669, -2, 268, 26 }, + { -1684, -2, 254, 26 }, + { -1698, -2, 241, 26 }, + { -1713, -3, 227, 26 }, + { -1728, -3, 214, 26 }, + { -1743, -3, 201, 26 }, + { -1759, -13, 188, 10 }, + { -1775, -23, 176, 10 }, + { -1791, -27, 165, 10 }, + { -1808, -29, 153, 10 }, + { -1824, -29, 142, 10 }, + { -1840, -30, 130, 10 }, + { -1856, -31, 118, 10 }, + { -1872, -32, 105, 10 }, + { -1887, -31, 93, 10 }, + { -1903, -28, 80, 10 }, + { -1918, -26, 67, 10 }, + { -1934, -24, 55, 10 }, + { -1949, -21, 42, 10 }, + { -1964, -18, 29, 10 }, + { -1980, -14, 16, 10 }, + { -1995, -10, 3, 10 }, + { -2010, -3, -9, 255 }, + { -2025, 3, -22, 255 }, + { -2040, 1, -35, 255 }, + { -2055, 0, -49, 255 }, + { -2070, -1, -62, 255 }, + { -2085, -6, -76, 10 }, + { -2099, -7, -89, 10 }, + { -2113, -8, -104, 10 }, + { -2127, -9, -118, 10 }, + { -2141, -10, -133, 10 }, + { -2154, -11, -148, 10 }, + { -2167, -11, -163, 10 }, + { -2179, -12, -179, 10 }, + { -2190, -12, -196, 10 }, + { -2200, -12, -213, 10 }, + { -2210, -12, -231, 10 }, + { -2217, -11, -249, 10 }, + { -2223, -11, -268, 10 }, + { -2227, -11, -288, 10 }, + { -2229, -10, -308, 11 }, + { -2232, -10, -328, 11 }, + { -2235, -10, -347, 11 }, + { -2239, -9, -367, 11 }, + { -2243, -9, -387, 11 }, + { -2247, -9, -406, 11 }, + { -2251, -9, -426, 11 }, + { -2256, -8, -445, 11 }, + { -2262, -8, -464, 11 }, + { -2268, -7, -484, 11 }, + { -2274, -7, -503, 11 }, + { -2280, -6, -522, 11 }, + { -2286, -5, -541, 11 }, + { -2293, -4, -560, 11 }, + { -2299, -4, -579, 11 }, + { -2306, -3, -598, 11 }, + { -2312, -3, -616, 11 }, + { -2319, -3, -635, 11 }, + { -2325, -2, -654, 11 }, + { -2332, -2, -673, 11 }, + { -2339, -2, -692, 11 }, + { -2346, -1, -711, 11 }, + { -2353, -1, -729, 11 }, + { -2360, -1, -748, 11 }, + { -2368, 0, -767, 11 }, + { -2375, 0, -785, 11 }, + { -2383, 0, -804, 11 }, + { -2391, 0, -822, 11 }, + { -2399, 0, -840, 11 }, + { -2408, 0, -858, 11 }, + { -2417, 0, -876, 11 }, + { -2427, 0, -893, 11 }, + { -2438, 0, -910, 11 }, + { -2449, 0, -927, 11 }, + { -2461, 0, -943, 11 }, + { -2474, 0, -958, 12 }, + { -2487, 0, -973, 12 }, + { -2501, 0, -987, 12 }, + { -2516, 0, -1001, 12 }, + { -2530, 0, -1016, 12 }, + { -2543, 0, -1030, 12 }, + { -2557, 0, -1045, 12 }, + { -2569, 0, -1061, 12 }, + { -2582, 0, -1076, 12 }, + { -2594, 0, -1092, 12 }, + { -2606, 0, -1108, 12 }, + { -2617, 0, -1125, 12 }, + { -2628, 0, -1142, 12 }, + { -2638, 0, -1159, 12 }, + { -2648, 0, -1176, 12 }, + { -2657, 0, -1194, 12 }, + { -2666, 0, -1212, 12 }, + { -2675, -1, -1230, 12 }, + { -2683, -1, -1248, 12 }, + { -2691, -1, -1267, 12 }, + { -2698, -1, -1285, 12 }, + { -2706, -1, -1304, 12 }, + { -2713, -1, -1322, 12 }, + { -2720, -1, -1341, 12 }, + { -2727, -1, -1360, 12 }, + { -2734, -1, -1379, 12 }, + { -2741, -1, -1398, 12 }, + { -2748, -1, -1416, 12 }, + { -2755, -1, -1435, 12 }, + { -2763, -1, -1453, 12 }, + { -2771, -1, -1472, 12 }, + { -2778, -1, -1490, 12 }, + { -2787, -1, -1508, 12 }, + { -2795, -1, -1527, 12 }, + { -2804, -1, -1545, 12 }, + { -2812, -1, -1563, 13 }, + { -2822, -1, -1580, 13 }, + { -2831, -1, -1598, 13 }, + { -2841, -1, -1615, 13 }, + { -2851, -1, -1633, 13 }, + { -2862, -1, -1649, 13 }, + { -2873, -1, -1666, 13 }, + { -2885, -1, -1682, 13 }, + { -2898, -1, -1697, 13 }, + { -2912, -1, -1712, 13 }, + { -2927, -1, -1725, 13 }, + { -2943, -1, -1737, 13 }, + { -2961, -1, -1746, 13 }, + { -2979, -1, -1754, 13 }, + { -2998, -1, -1761, 13 }, + { -3018, -1, -1765, 13 }, + { -3037, -1, -1768, 13 }, + { -3057, -1, -1768, 13 }, + { -3077, -1, -1765, 13 }, + { -3097, -1, -1760, 13 }, + { -3115, -1, -1753, 13 }, + { -3133, -1, -1743, 13 }, + { -3150, -1, -1732, 13 }, + { -3165, -1, -1720, 13 }, + { -3179, -1, -1705, 13 }, + { -3190, -1, -1688, 13 }, + { -3199, -1, -1670, 13 }, + { -3206, -1, -1652, 13 }, + { -3211, -1, -1632, 13 }, + { -3214, -1, -1613, 13 }, + { -3216, -1, -1593, 13 }, + { -3217, -1, -1573, 13 }, + { -3216, -1, -1553, 13 }, + { -3214, -1, -1533, 13 }, + { -3211, -1, -1513, 13 }, + { -3206, -1, -1494, 13 }, + { -3201, -1, -1474, 13 }, + { -3195, -1, -1455, 13 }, + { -3187, -1, -1437, 13 }, + { -3179, -1, -1419, 13 }, + { -3169, -1, -1401, 13 }, + { -3158, -1, -1384, 13 }, + { -3147, -1, -1368, 14 }, + { -3135, -1, -1352, 14 }, + { -3122, -2, -1336, 14 }, + { -3109, -2, -1321, 14 }, + { -3096, -3, -1306, 14 }, + { -3082, -3, -1292, 14 }, + { -3068, -4, -1278, 14 }, + { -3053, -4, -1264, 14 }, + { -3039, -6, -1250, 14 }, + { -3024, -7, -1236, 14 }, + { -3009, -8, -1223, 14 }, + { -2994, -9, -1210, 14 }, + { -2979, -10, -1197, 14 }, + { -2963, -11, -1185, 14 }, + { -2947, -12, -1173, 14 }, + { -2931, -13, -1161, 14 }, + { -2914, -13, -1150, 14 }, + { -2898, -14, -1139, 14 }, + { -2881, -15, -1127, 14 }, + { -2865, -16, -1115, 14 }, + { -2849, -16, -1103, 14 }, + { -2834, -17, -1090, 14 }, + { -2819, -18, -1076, 14 }, + { -2805, -18, -1062, 14 }, + { -2793, -19, -1047, 14 }, + { -2782, -19, -1030, 14 }, + { -2773, -19, -1012, 14 }, + { -2767, -19, -993, 14 }, + { -2765, -19, -973, 14 }, + { -2767, -19, -953, 14 }, + { -2770, -19, -933, 14 }, + { -2774, -19, -914, 14 }, + { -2778, -19, -894, 14 }, + { -2783, -19, -875, 14 }, + { -2788, -19, -855, 14 }, + { -2794, -18, -836, 15 }, + { -2799, -18, -817, 15 }, + { -2804, -18, -798, 15 }, + { -2810, -17, -778, 15 }, + { -2816, -17, -759, 15 }, + { -2823, -17, -740, 15 }, + { -2829, -16, -721, 15 }, + { -2836, -16, -703, 15 }, + { -2844, -15, -684, 15 }, + { -2852, -14, -666, 15 }, + { -2861, -14, -648, 15 }, + { -2872, -14, -631, 15 }, + { -2882, -13, -614, 15 }, + { -2891, -13, -596, 15 }, + { -2899, -12, -578, 15 }, + { -2906, -12, -559, 15 }, + { -2912, -11, -540, 15 }, + { -2917, -11, -520, 15 }, + { -2920, -11, -501, 15 }, + { -2922, -10, -481, 15 }, + { -2923, -10, -461, 15 }, + { -2924, -10, -441, 15 }, + { -2924, -10, -421, 15 }, + { -2923, -9, -401, 15 }, + { -2923, -9, -381, 15 }, + { -2922, -9, -361, 15 }, + { -2921, -9, -341, 15 }, + { -2919, -9, -321, 15 }, + { -2918, -9, -301, 15 }, + { -2915, -8, -281, 15 }, + { -2913, -8, -261, 15 }, + { -2910, -8, -241, 15 }, + { -2906, -8, -222, 15 }, + { -2903, -7, -202, 15 }, + { -2898, -7, -182, 15 }, + { -2893, -7, -163, 16 }, + { -2888, -7, -144, 16 }, + { -2883, -7, -125, 16 }, + { -2877, -7, -105, 16 }, + { -2870, -6, -86, 16 }, + { -2863, -6, -68, 16 }, + { -2856, -6, -49, 16 }, + { -2849, -6, -30, 16 }, + { -2841, -6, -12, 16 }, + { -2833, -6, 5, 16 }, + { -2825, -5, 24, 16 }, + { -2816, -5, 42, 16 }, + { -2808, -5, 60, 16 }, + { -2799, -5, 78, 16 }, + { -2790, -4, 96, 16 }, + { -2781, -4, 113, 16 }, + { -2771, -4, 131, 16 }, + { -2762, -4, 149, 16 }, + { -2752, -3, 166, 16 }, + { -2742, -3, 184, 16 }, + { -2732, -3, 201, 16 }, + { -2722, -3, 218, 16 }, + { -2712, -2, 235, 16 }, + { -2701, -2, 252, 16 }, + { -2690, -2, 269, 16 }, + { -2680, -2, 286, 16 }, + { -2669, -1, 303, 16 }, + { -2658, -1, 320, 16 }, + { -2647, -1, 336, 16 }, + { -2635, -1, 353, 16 }, + { -2624, -1, 369, 16 }, + { -2612, -1, 385, 16 }, + { -2600, -1, 401, 16 }, + { -2587, -1, 417, 16 }, + { -2575, 0, 432, 16 }, + { -2562, 0, 448, 16 }, + { -2548, 0, 462, 16 }, + { -2534, 0, 477, 16 }, + { -2520, 0, 491, 16 }, + { -2506, 0, 505, 16 }, + { -2491, 0, 518, 16 }, + { -2476, 0, 531, 17 }, + { -2460, 0, 544, 17 }, + { -2444, 0, 555, 17 }, + { -2427, 0, 566, 17 }, + { -2411, 0, 578, 17 }, + { -2395, 0, 590, 17 }, + { -2379, 0, 603, 17 }, + { -2364, 0, 615, 17 }, + { -2348, 0, 628, 17 }, + { -2332, 0, 640, 17 }, + { -2316, 0, 652, 17 }, + { -2301, 0, 664, 17 }, + { -2285, 0, 677, 17 }, + { -2269, 0, 689, 17 }, + { -2253, 0, 700, 17 }, + { -2236, 0, 711, 17 }, + { -2218, 0, 721, 17 }, + { -2201, 0, 731, 17 }, + { -2183, 0, 741, 17 }, + { -2166, -1, 751, 18 }, + { -2149, -4, 762, 18 }, + { -2133, -6, 773, 18 }, + { -2116, -9, 783, 18 }, + { -2099, -10, 794, 18 }, + { -2082, -12, 805, 18 }, + { -2065, -13, 815, 18 }, + { -2048, -14, 826, 18 }, + { -2031, -15, 837, 18 }, + { -2014, -16, 847, 18 }, + { -1997, -16, 858, 18 }, + { -1980, -17, 869, 18 }, + { -1963, -18, 879, 18 }, + { -1946, -18, 890, 18 }, + { -1929, -19, 901, 18 }, + { -1912, -19, 911, 18 }, + { -1895, -19, 922, 18 }, + { -1879, -19, 932, 18 }, + { -1862, -18, 943, 18 }, + { -1845, -18, 954, 18 }, + { -1828, -17, 964, 18 }, + { -1811, -16, 975, 18 }, + { -1794, -16, 986, 18 }, + { -1777, -15, 996, 18 }, + { -1760, -14, 1007, 18 }, + { -1743, -13, 1017, 18 }, + { -1726, -12, 1028, 18 }, + { -1709, -10, 1039, 18 }, + { -1692, -9, 1049, 18 }, + { -1675, -6, 1059, 18 }, + { -1657, -4, 1069, 18 }, + { -1640, -1, 1079, 18 }, + { -1622, 0, 1089, 19 }, + { -1605, 0, 1098, 19 }, + { -1587, 0, 1107, 19 }, + { -1568, -1, 1114, 19 }, + { -1549, -1, 1121, 19 }, + { -1530, -1, 1127, 19 }, + { -1511, -1, 1134, 19 }, + { -1492, -2, 1140, 19 }, + { -1473, -2, 1147, 19 }, + { -1454, -2, 1153, 19 }, + { -1435, -3, 1159, 19 }, + { -1416, -3, 1165, 19 }, + { -1397, -3, 1170, 19 }, + { -1377, -4, 1175, 19 }, + { -1358, -4, 1179, 19 }, + { -1338, -4, 1183, 19 }, + { -1318, -4, 1186, 19 }, + { -1299, -2, 1188, 19 }, + { -1279, 0, 1190, 19 }, + { -1259, 2, 1192, 19 }, + { -1239, 4, 1193, 19 }, + { -1219, 7, 1194, 19 }, + { -1199, 9, 1194, 19 }, + { -1179, 12, 1194, 19 }, + { -1159, 15, 1194, 19 }, + { -1139, 17, 1193, 19 }, + { -1119, 20, 1192, 19 }, + { -1099, 23, 1191, 19 }, + { -1079, 25, 1190, 19 }, + { -1059, 28, 1189, 19 }, + { -1039, 30, 1187, 19 }, + { -1019, 33, 1185, 19 }, + { -999, 35, 1182, 19 }, + { -979, 37, 1179, 19 }, + { -960, 40, 1176, 19 }, + { -940, 42, 1171, 19 }, + { -921, 45, 1166, 19 }, + { -902, 50, 1160, 19 }, + { -883, 54, 1152, 19 }, + { -865, 58, 1143, 19 }, + { -848, 61, 1133, 19 }, + { -831, 65, 1122, 20 }, + { -815, 68, 1111, 20 }, + { -799, 71, 1099, 20 }, + { -784, 75, 1086, 20 }, + { -769, 78, 1073, 20 }, + { -754, 82, 1059, 20 }, + { -740, 85, 1045, 20 }, + { -725, 88, 1031, 20 }, + { -711, 92, 1017, 20 }, + { -697, 95, 1003, 20 }, + { -682, 99, 989, 20 }, + { -668, 102, 975, 20 }, + { -653, 105, 961, 20 }, + { -639, 109, 948, 20 }, + { -625, 112, 934, 20 }, + { -610, 115, 920, 20 }, + { -595, 119, 906, 20 }, + { -581, 122, 893, 20 }, + { -566, 125, 879, 20 }, + { -551, 129, 866, 20 }, + { -535, 132, 854, 20 }, + { -518, 135, 843, 20 }, + { -501, 136, 832, 20 }, + { -484, 138, 823, 20 }, + { -466, 139, 814, 20 }, + { -448, 140, 805, 20 }, + { -429, 141, 798, 20 }, + { -410, 143, 791, 20 }, + { -391, 144, 785, 20 }, + { -372, 145, 778, 20 }, + { -353, 147, 772, 20 }, + { -335, 148, 765, 20 }, + { -316, 149, 758, 20 }, + { -297, 150, 751, 20 }, + { -278, 152, 744, 20 }, + { -260, 153, 737, 20 }, + { -241, 154, 729, 20 }, + { -223, 156, 720, 20 }, + { -207, 158, 709, 20 }, + { -191, 159, 696, 20 }, + { -177, 160, 682, 20 }, + { -164, 162, 667, 20 }, + { -152, 164, 651, 20 }, + { -142, 165, 634, 1 }, + { -133, 166, 616, 1 }, + { -124, 168, 598, 1 }, + { -117, 169, 579, 1 }, + { -109, 170, 561, 1 }, + { -102, 172, 542, 1 }, + { -95, 173, 523, 1 }, + { -88, 175, 505, 1 }, + { -81, 176, 486, 1 }, + { -75, 176, 467, 1 }, + { -69, 177, 447, 1 }, + { -63, 177, 428, 1 }, + { -58, 178, 409, 1 }, + { -53, 179, 390, 1 }, + { -48, 179, 370, 1 }, + { -44, 179, 351, 1 }, + { -40, 180, 331, 1 }, + { -36, 180, 311, 1 }, + { -33, 180, 292, 1 }, + { -30, 180, 272, 1 }, + { -27, 180, 252, 1 }, + { -24, 180, 232, 1 }, + { -22, 180, 212, 1 }, + { -20, 180, 193, 1 }, + { -18, 180, 173, 1 }, + { -16, 180, 153, 1 }, + { -14, 180, 133, 1 }, + { -12, 180, 113, 1 }, + { -11, 180, 93, 1 }, + { -9, 180, 73, 1 }, + { -7, 180, 53, 1 }, + { -6, 180, 33, 1 }, + { -4, 180, 13, 1 }, + { -3, 180, -6, 1 }, + { -32768, -32768, -32768, 0 }, diff --git a/courses/yoshi_valley/d_course_yoshi_valley_track_path_4.inc.c b/courses/yoshi_valley/d_course_yoshi_valley_track_path_4.inc.c new file mode 100644 index 0000000000..d32bb41b2b --- /dev/null +++ b/courses/yoshi_valley/d_course_yoshi_valley_track_path_4.inc.c @@ -0,0 +1,793 @@ + { -1, 180, -9, 1 }, + { 0, 180, -29, 2 }, + { 0, 180, -49, 2 }, + { 0, 180, -69, 2 }, + { 0, 180, -89, 2 }, + { 0, 180, -109, 2 }, + { 0, 180, -129, 2 }, + { -1, 180, -149, 2 }, + { -1, 180, -169, 2 }, + { -1, 180, -189, 2 }, + { -2, 180, -209, 2 }, + { -2, 180, -229, 2 }, + { -3, 180, -249, 2 }, + { -3, 180, -269, 2 }, + { -4, 180, -289, 2 }, + { -4, 180, -309, 2 }, + { -5, 180, -329, 2 }, + { -6, 180, -349, 2 }, + { -7, 180, -369, 2 }, + { -8, 180, -389, 2 }, + { -9, 180, -409, 2 }, + { -10, 180, -429, 2 }, + { -10, 180, -449, 2 }, + { -11, 180, -469, 2 }, + { -13, 180, -489, 2 }, + { -14, 180, -509, 2 }, + { -15, 180, -529, 2 }, + { -16, 180, -549, 2 }, + { -18, 180, -569, 2 }, + { -19, 180, -589, 2 }, + { -21, 180, -609, 2 }, + { -23, 180, -629, 2 }, + { -25, 180, -649, 2 }, + { -27, 180, -669, 2 }, + { -29, 180, -689, 2 }, + { -31, 180, -708, 2 }, + { -34, 180, -728, 2 }, + { -36, 180, -748, 2 }, + { -39, 180, -768, 2 }, + { -42, 180, -788, 2 }, + { -45, 180, -808, 2 }, + { -48, 180, -827, 2 }, + { -51, 180, -847, 2 }, + { -55, 180, -867, 3 }, + { -58, 180, -886, 3 }, + { -62, 180, -906, 3 }, + { -66, 180, -926, 3 }, + { -70, 180, -945, 3 }, + { -74, 181, -965, 3 }, + { -79, 181, -984, 3 }, + { -83, 181, -1004, 3 }, + { -87, 181, -1023, 3 }, + { -92, 182, -1043, 3 }, + { -97, 182, -1062, 3 }, + { -102, 182, -1082, 3 }, + { -107, 182, -1101, 3 }, + { -112, 182, -1120, 3 }, + { -117, 183, -1140, 3 }, + { -123, 183, -1159, 3 }, + { -128, 183, -1178, 3 }, + { -133, 183, -1198, 3 }, + { -139, 184, -1217, 3 }, + { -144, 184, -1236, 3 }, + { -150, 184, -1255, 3 }, + { -156, 184, -1274, 3 }, + { -162, 184, -1294, 3 }, + { -167, 184, -1313, 3 }, + { -174, 184, -1332, 3 }, + { -180, 183, -1351, 3 }, + { -186, 183, -1370, 3 }, + { -193, 182, -1389, 3 }, + { -199, 182, -1408, 3 }, + { -206, 181, -1426, 3 }, + { -214, 181, -1445, 3 }, + { -222, 180, -1463, 3 }, + { -231, 180, -1481, 3 }, + { -241, 179, -1499, 3 }, + { -251, 177, -1516, 3 }, + { -263, 176, -1532, 3 }, + { -276, 174, -1547, 3 }, + { -290, 171, -1561, 3 }, + { -305, 169, -1574, 3 }, + { -322, 167, -1585, 3 }, + { -340, 165, -1595, 3 }, + { -358, 163, -1603, 3 }, + { -377, 160, -1609, 3 }, + { -396, 158, -1613, 3 }, + { -416, 156, -1616, 3 }, + { -436, 153, -1618, 3 }, + { -456, 151, -1619, 3 }, + { -476, 148, -1619, 3 }, + { -496, 145, -1618, 4 }, + { -516, 143, -1616, 4 }, + { -536, 141, -1612, 4 }, + { -555, 138, -1608, 4 }, + { -575, 135, -1604, 4 }, + { -594, 131, -1598, 4 }, + { -613, 128, -1592, 4 }, + { -632, 125, -1586, 4 }, + { -651, 121, -1579, 4 }, + { -670, 118, -1572, 4 }, + { -688, 114, -1565, 4 }, + { -707, 111, -1558, 4 }, + { -726, 107, -1550, 4 }, + { -744, 104, -1543, 4 }, + { -763, 100, -1535, 4 }, + { -781, 96, -1527, 4 }, + { -800, 93, -1519, 4 }, + { -818, 89, -1512, 4 }, + { -836, 85, -1504, 4 }, + { -855, 82, -1496, 4 }, + { -873, 78, -1488, 4 }, + { -892, 74, -1480, 4 }, + { -910, 71, -1472, 4 }, + { -928, 67, -1464, 4 }, + { -947, 63, -1456, 5 }, + { -965, 60, -1448, 5 }, + { -983, 56, -1441, 5 }, + { -1002, 53, -1433, 5 }, + { -1021, 49, -1426, 5 }, + { -1040, 46, -1419, 5 }, + { -1059, 42, -1413, 5 }, + { -1078, 39, -1407, 5 }, + { -1097, 37, -1402, 5 }, + { -1117, 34, -1398, 5 }, + { -1137, 31, -1395, 5 }, + { -1157, 28, -1395, 5 }, + { -1176, 26, -1397, 5 }, + { -1196, 23, -1401, 5 }, + { -1215, 21, -1407, 6 }, + { -1233, 20, -1416, 6 }, + { -1250, 19, -1426, 6 }, + { -1266, 18, -1438, 6 }, + { -1283, 16, -1450, 6 }, + { -1299, 15, -1460, 6 }, + { -1316, 13, -1471, 6 }, + { -1334, 12, -1481, 6 }, + { -1351, 10, -1491, 6 }, + { -1368, 8, -1501, 6 }, + { -1386, 6, -1511, 6 }, + { -1403, 4, -1521, 6 }, + { -1421, 3, -1530, 6 }, + { -1438, 3, -1540, 6 }, + { -1456, 2, -1549, 6 }, + { -1474, 1, -1559, 6 }, + { -1492, 1, -1568, 6 }, + { -1509, 0, -1577, 6 }, + { -1527, 0, -1586, 6 }, + { -1545, 0, -1596, 6 }, + { -1562, 0, -1605, 6 }, + { -1580, 0, -1614, 6 }, + { -1598, 0, -1623, 6 }, + { -1616, 0, -1632, 6 }, + { -1634, 0, -1642, 6 }, + { -1651, 0, -1651, 6 }, + { -1669, 0, -1660, 6 }, + { -1687, 0, -1669, 6 }, + { -1705, 0, -1678, 6 }, + { -1723, 0, -1687, 6 }, + { -1741, 0, -1696, 6 }, + { -1759, 0, -1705, 6 }, + { -1777, 0, -1713, 21 }, + { -1795, 1, -1722, 21 }, + { -1813, 3, -1731, 21 }, + { -1831, 5, -1740, 21 }, + { -1848, 6, -1749, 21 }, + { -1866, 8, -1759, 21 }, + { -1883, 10, -1769, 21 }, + { -1901, 11, -1779, 21 }, + { -1918, 13, -1789, 21 }, + { -1935, 15, -1800, 21 }, + { -1952, 17, -1810, 21 }, + { -1968, 19, -1822, 21 }, + { -1985, 21, -1833, 21 }, + { -2002, 23, -1843, 21 }, + { -2019, 25, -1853, 21 }, + { -2037, 27, -1862, 21 }, + { -2055, 29, -1870, 21 }, + { -2074, 31, -1877, 21 }, + { -2093, 34, -1883, 21 }, + { -2113, 36, -1886, 21 }, + { -2133, 38, -1888, 21 }, + { -2153, 41, -1889, 21 }, + { -2173, 44, -1889, 21 }, + { -2193, 46, -1888, 21 }, + { -2213, 49, -1884, 21 }, + { -2232, 50, -1878, 21 }, + { -2249, 51, -1869, 21 }, + { -2265, 53, -1856, 21 }, + { -2279, 54, -1842, 21 }, + { -2290, 54, -1826, 21 }, + { -2300, 52, -1808, 21 }, + { -2308, 50, -1790, 21 }, + { -2315, 48, -1771, 21 }, + { -2320, 46, -1752, 21 }, + { -2323, 43, -1732, 21 }, + { -2326, 39, -1712, 21 }, + { -2327, 37, -1692, 21 }, + { -2327, 32, -1672, 21 }, + { -2327, 29, -1652, 21 }, + { -2326, 25, -1632, 21 }, + { -2324, 22, -1612, 21 }, + { -2321, 20, -1592, 21 }, + { -2318, 17, -1572, 21 }, + { -2315, 15, -1553, 21 }, + { -2311, 13, -1533, 21 }, + { -2307, 11, -1514, 21 }, + { -2302, 9, -1494, 22 }, + { -2297, 8, -1475, 22 }, + { -2292, 6, -1456, 22 }, + { -2286, 5, -1436, 22 }, + { -2280, 4, -1417, 22 }, + { -2273, 3, -1398, 22 }, + { -2267, 2, -1379, 22 }, + { -2260, 0, -1361, 22 }, + { -2253, 0, -1342, 22 }, + { -2245, 0, -1323, 22 }, + { -2238, 0, -1305, 22 }, + { -2230, -1, -1287, 22 }, + { -2222, -2, -1268, 22 }, + { -2214, -3, -1250, 22 }, + { -2206, -4, -1232, 22 }, + { -2197, -5, -1213, 22 }, + { -2189, -6, -1195, 22 }, + { -2180, -7, -1177, 22 }, + { -2172, -7, -1159, 22 }, + { -2163, -7, -1141, 22 }, + { -2154, -7, -1123, 22 }, + { -2145, -7, -1105, 22 }, + { -2136, -6, -1087, 22 }, + { -2127, -6, -1070, 22 }, + { -2117, -5, -1052, 22 }, + { -2108, -5, -1034, 22 }, + { -2098, -4, -1017, 22 }, + { -2089, -3, -999, 22 }, + { -2079, -2, -982, 22 }, + { -2069, -2, -964, 22 }, + { -2060, -1, -946, 22 }, + { -2050, 0, -929, 22 }, + { -2041, 0, -911, 22 }, + { -2031, 0, -894, 22 }, + { -2021, 0, -876, 22 }, + { -2011, 0, -859, 22 }, + { -2002, 0, -841, 22 }, + { -1992, 0, -824, 22 }, + { -1982, 0, -807, 22 }, + { -1972, 0, -789, 22 }, + { -1962, 0, -772, 22 }, + { -1952, 0, -755, 22 }, + { -1941, 0, -738, 22 }, + { -1931, 0, -721, 22 }, + { -1920, 0, -704, 22 }, + { -1908, 0, -688, 22 }, + { -1897, 0, -671, 23 }, + { -1885, 0, -655, 23 }, + { -1873, 0, -639, 23 }, + { -1860, 0, -624, 23 }, + { -1848, 0, -608, 23 }, + { -1835, 0, -593, 23 }, + { -1822, 0, -578, 23 }, + { -1808, 0, -563, 23 }, + { -1795, 0, -548, 23 }, + { -1781, 0, -534, 23 }, + { -1767, 0, -520, 23 }, + { -1752, 0, -506, 23 }, + { -1736, 0, -493, 23 }, + { -1721, 0, -481, 23 }, + { -1704, 0, -470, 23 }, + { -1686, -1, -461, 23 }, + { -1668, -1, -452, 23 }, + { -1650, -1, -444, 23 }, + { -1631, -1, -437, 23 }, + { -1612, -2, -430, 24 }, + { -1594, -2, -423, 24 }, + { -1574, -2, -417, 24 }, + { -1555, -2, -411, 24 }, + { -1536, -2, -406, 24 }, + { -1517, -2, -400, 24 }, + { -1498, -1, -395, 24 }, + { -1478, -1, -390, 24 }, + { -1459, 0, -385, 24 }, + { -1439, 0, -381, 24 }, + { -1420, 0, -377, 24 }, + { -1400, 0, -373, 24 }, + { -1380, 0, -369, 24 }, + { -1361, 0, -366, 24 }, + { -1341, 0, -362, 24 }, + { -1322, 0, -356, 24 }, + { -1303, 0, -350, 24 }, + { -1284, 0, -342, 24 }, + { -1266, 0, -333, 24 }, + { -1250, 0, -322, 24 }, + { -1235, 0, -309, 25 }, + { -1221, 0, -295, 25 }, + { -1208, 0, -279, 25 }, + { -1197, 0, -263, 25 }, + { -1186, 0, -246, 25 }, + { -1176, 0, -229, 25 }, + { -1166, 0, -211, 25 }, + { -1157, 0, -193, 25 }, + { -1148, 0, -175, 25 }, + { -1140, 0, -157, 25 }, + { -1132, 0, -139, 25 }, + { -1125, 0, -120, 25 }, + { -1118, 0, -101, 25 }, + { -1111, 0, -82, 25 }, + { -1105, 0, -63, 25 }, + { -1099, 0, -44, 25 }, + { -1094, 0, -25, 25 }, + { -1088, 0, -6, 25 }, + { -1083, 0, 13, 25 }, + { -1078, 0, 32, 25 }, + { -1073, 0, 51, 25 }, + { -1068, 0, 71, 25 }, + { -1064, 0, 90, 25 }, + { -1059, 0, 110, 25 }, + { -1055, 0, 129, 25 }, + { -1052, 0, 149, 25 }, + { -1048, 0, 169, 25 }, + { -1046, 0, 189, 25 }, + { -1044, 0, 209, 25 }, + { -1045, 0, 229, 25 }, + { -1048, 0, 248, 25 }, + { -1055, 0, 267, 25 }, + { -1065, 0, 284, 25 }, + { -1077, 0, 300, 25 }, + { -1092, 0, 314, 26 }, + { -1108, 0, 326, 26 }, + { -1125, 0, 336, 26 }, + { -1143, 0, 345, 26 }, + { -1161, 0, 352, 26 }, + { -1180, 0, 359, 26 }, + { -1199, 0, 366, 26 }, + { -1218, 0, 371, 26 }, + { -1238, 0, 377, 26 }, + { -1257, 0, 381, 26 }, + { -1277, 0, 386, 26 }, + { -1296, 0, 391, 26 }, + { -1316, 0, 395, 26 }, + { -1335, 0, 398, 26 }, + { -1355, 0, 401, 26 }, + { -1375, 0, 404, 26 }, + { -1395, 0, 405, 26 }, + { -1415, 0, 405, 26 }, + { -1435, 0, 403, 26 }, + { -1455, 0, 400, 26 }, + { -1474, 0, 394, 26 }, + { -1493, 0, 387, 26 }, + { -1511, 0, 379, 26 }, + { -1528, 0, 369, 26 }, + { -1545, 0, 358, 26 }, + { -1562, 0, 347, 26 }, + { -1578, 0, 336, 26 }, + { -1595, -1, 324, 26 }, + { -1611, -1, 312, 26 }, + { -1627, -1, 300, 26 }, + { -1642, -1, 288, 26 }, + { -1658, -2, 276, 26 }, + { -1674, -2, 263, 26 }, + { -1690, -2, 251, 26 }, + { -1705, -2, 239, 26 }, + { -1721, -2, 226, 26 }, + { -1737, -3, 214, 26 }, + { -1752, -3, 201, 26 }, + { -1768, -13, 189, 10 }, + { -1783, -23, 176, 10 }, + { -1799, -28, 163, 10 }, + { -1815, -29, 151, 10 }, + { -1831, -29, 140, 10 }, + { -1848, -30, 129, 10 }, + { -1866, -30, 119, 10 }, + { -1883, -30, 110, 10 }, + { -1901, -29, 102, 10 }, + { -1920, -27, 94, 10 }, + { -1938, -25, 86, 10 }, + { -1957, -22, 79, 10 }, + { -1976, -19, 72, 10 }, + { -1994, -16, 64, 10 }, + { -2012, -12, 55, 10 }, + { -2029, -9, 45, 10 }, + { -2046, -6, 33, 10 }, + { -2062, -6, 22, 10 }, + { -2077, -6, 9, 10 }, + { -2092, -6, -4, 10 }, + { -2106, -6, -18, 10 }, + { -2120, -6, -32, 10 }, + { -2133, -7, -47, 10 }, + { -2146, -8, -63, 10 }, + { -2157, -9, -79, 10 }, + { -2168, -9, -96, 10 }, + { -2178, -10, -113, 10 }, + { -2188, -11, -131, 10 }, + { -2196, -11, -149, 10 }, + { -2203, -12, -168, 10 }, + { -2210, -12, -187, 10 }, + { -2215, -12, -206, 10 }, + { -2219, -12, -226, 10 }, + { -2222, -11, -245, 10 }, + { -2226, -11, -265, 10 }, + { -2229, -11, -285, 10 }, + { -2232, -10, -305, 11 }, + { -2235, -10, -324, 11 }, + { -2238, -10, -344, 11 }, + { -2241, -10, -364, 11 }, + { -2243, -9, -384, 11 }, + { -2246, -9, -404, 11 }, + { -2248, -9, -424, 11 }, + { -2252, -8, -443, 11 }, + { -2256, -8, -463, 11 }, + { -2261, -7, -482, 11 }, + { -2267, -6, -501, 11 }, + { -2274, -6, -520, 11 }, + { -2281, -5, -539, 11 }, + { -2289, -5, -557, 11 }, + { -2298, -4, -575, 11 }, + { -2306, -3, -593, 11 }, + { -2314, -3, -612, 11 }, + { -2321, -3, -630, 11 }, + { -2328, -2, -649, 11 }, + { -2335, -2, -668, 11 }, + { -2342, -2, -687, 11 }, + { -2349, -1, -705, 11 }, + { -2355, -1, -724, 11 }, + { -2362, -1, -743, 11 }, + { -2368, 0, -762, 11 }, + { -2375, 0, -781, 11 }, + { -2383, 0, -800, 11 }, + { -2391, 0, -818, 11 }, + { -2399, 0, -836, 11 }, + { -2408, 0, -854, 11 }, + { -2418, 0, -872, 11 }, + { -2428, 0, -889, 11 }, + { -2439, 0, -906, 11 }, + { -2450, 0, -922, 11 }, + { -2462, 0, -938, 11 }, + { -2475, 0, -953, 12 }, + { -2488, 0, -968, 12 }, + { -2501, 0, -984, 12 }, + { -2514, 0, -999, 12 }, + { -2527, 0, -1015, 12 }, + { -2539, 0, -1030, 12 }, + { -2552, 0, -1046, 12 }, + { -2564, 0, -1061, 12 }, + { -2576, 0, -1077, 12 }, + { -2589, 0, -1093, 12 }, + { -2601, 0, -1109, 12 }, + { -2613, 0, -1125, 12 }, + { -2624, 0, -1142, 12 }, + { -2635, 0, -1159, 12 }, + { -2645, 0, -1176, 12 }, + { -2654, 0, -1193, 12 }, + { -2664, 0, -1211, 12 }, + { -2673, 0, -1229, 12 }, + { -2681, -1, -1247, 12 }, + { -2690, -1, -1265, 12 }, + { -2697, -1, -1284, 12 }, + { -2705, -1, -1302, 12 }, + { -2713, -1, -1321, 12 }, + { -2720, -1, -1339, 12 }, + { -2727, -1, -1358, 12 }, + { -2734, -1, -1377, 12 }, + { -2741, -1, -1395, 12 }, + { -2749, -1, -1414, 12 }, + { -2756, -1, -1432, 12 }, + { -2764, -1, -1451, 12 }, + { -2772, -1, -1469, 12 }, + { -2780, -1, -1488, 12 }, + { -2788, -1, -1506, 12 }, + { -2796, -1, -1524, 12 }, + { -2805, -1, -1542, 12 }, + { -2813, -1, -1560, 13 }, + { -2822, -1, -1578, 13 }, + { -2831, -1, -1596, 13 }, + { -2840, -1, -1614, 13 }, + { -2850, -1, -1632, 13 }, + { -2860, -1, -1649, 13 }, + { -2871, -1, -1666, 13 }, + { -2882, -1, -1682, 13 }, + { -2894, -1, -1698, 13 }, + { -2907, -1, -1713, 13 }, + { -2922, -1, -1727, 13 }, + { -2937, -1, -1740, 13 }, + { -2955, -1, -1750, 13 }, + { -2973, -1, -1757, 13 }, + { -2992, -1, -1764, 13 }, + { -3012, -1, -1768, 13 }, + { -3031, -1, -1771, 13 }, + { -3051, -1, -1771, 13 }, + { -3071, -1, -1769, 13 }, + { -3091, -1, -1764, 13 }, + { -3109, -1, -1756, 13 }, + { -3126, -1, -1746, 13 }, + { -3142, -1, -1734, 13 }, + { -3156, -1, -1720, 13 }, + { -3170, -1, -1705, 13 }, + { -3182, -1, -1689, 13 }, + { -3192, -1, -1672, 13 }, + { -3200, -1, -1653, 13 }, + { -3206, -1, -1634, 13 }, + { -3210, -1, -1615, 13 }, + { -3212, -1, -1595, 13 }, + { -3213, -1, -1575, 13 }, + { -3211, -1, -1555, 13 }, + { -3208, -1, -1535, 13 }, + { -3204, -1, -1516, 13 }, + { -3198, 0, -1496, 13 }, + { -3191, 0, -1477, 13 }, + { -3184, 0, -1459, 13 }, + { -3176, 0, -1441, 13 }, + { -3167, 0, -1422, 13 }, + { -3158, 0, -1405, 13 }, + { -3149, 0, -1387, 13 }, + { -3139, -1, -1370, 14 }, + { -3129, -1, -1352, 14 }, + { -3118, -2, -1336, 14 }, + { -3106, -2, -1319, 14 }, + { -3094, -3, -1303, 14 }, + { -3082, -3, -1288, 14 }, + { -3069, -4, -1273, 14 }, + { -3055, -5, -1258, 14 }, + { -3041, -6, -1244, 14 }, + { -3026, -7, -1230, 14 }, + { -3011, -8, -1217, 14 }, + { -2995, -9, -1205, 14 }, + { -2979, -10, -1193, 14 }, + { -2963, -11, -1181, 14 }, + { -2946, -12, -1170, 14 }, + { -2930, -13, -1159, 14 }, + { -2913, -14, -1148, 14 }, + { -2897, -14, -1136, 14 }, + { -2880, -15, -1125, 14 }, + { -2864, -16, -1113, 14 }, + { -2848, -16, -1100, 14 }, + { -2833, -17, -1088, 14 }, + { -2818, -18, -1075, 14 }, + { -2804, -18, -1060, 14 }, + { -2793, -19, -1044, 14 }, + { -2783, -19, -1026, 14 }, + { -2775, -19, -1008, 14 }, + { -2769, -19, -989, 14 }, + { -2765, -19, -969, 14 }, + { -2764, -19, -949, 14 }, + { -2764, -19, -929, 14 }, + { -2766, -19, -909, 14 }, + { -2769, -19, -890, 14 }, + { -2773, -19, -870, 14 }, + { -2777, -18, -850, 14 }, + { -2782, -18, -831, 15 }, + { -2788, -18, -812, 15 }, + { -2794, -17, -793, 15 }, + { -2800, -17, -774, 15 }, + { -2808, -17, -755, 15 }, + { -2815, -16, -737, 15 }, + { -2824, -16, -719, 15 }, + { -2832, -15, -701, 15 }, + { -2842, -15, -683, 15 }, + { -2851, -14, -665, 15 }, + { -2861, -14, -648, 15 }, + { -2870, -13, -630, 15 }, + { -2880, -13, -612, 15 }, + { -2888, -12, -594, 15 }, + { -2897, -12, -576, 15 }, + { -2905, -12, -558, 15 }, + { -2913, -11, -540, 15 }, + { -2920, -11, -521, 15 }, + { -2925, -11, -501, 15 }, + { -2928, -11, -482, 15 }, + { -2930, -10, -462, 15 }, + { -2931, -10, -442, 15 }, + { -2932, -10, -422, 15 }, + { -2931, -10, -402, 15 }, + { -2931, -10, -382, 15 }, + { -2930, -9, -362, 15 }, + { -2928, -9, -342, 15 }, + { -2927, -9, -322, 15 }, + { -2925, -9, -302, 15 }, + { -2922, -9, -282, 15 }, + { -2919, -8, -262, 15 }, + { -2916, -8, -243, 15 }, + { -2912, -8, -223, 15 }, + { -2908, -8, -203, 15 }, + { -2904, -7, -184, 15 }, + { -2899, -7, -165, 16 }, + { -2893, -7, -145, 16 }, + { -2888, -7, -126, 16 }, + { -2882, -7, -107, 16 }, + { -2876, -7, -88, 16 }, + { -2869, -6, -69, 16 }, + { -2862, -6, -50, 16 }, + { -2855, -6, -32, 16 }, + { -2847, -6, -13, 16 }, + { -2840, -6, 4, 16 }, + { -2832, -5, 23, 16 }, + { -2824, -5, 41, 16 }, + { -2815, -5, 59, 16 }, + { -2807, -5, 77, 16 }, + { -2798, -5, 95, 16 }, + { -2789, -4, 113, 16 }, + { -2780, -4, 131, 16 }, + { -2770, -4, 149, 16 }, + { -2760, -4, 166, 16 }, + { -2750, -4, 183, 16 }, + { -2740, -3, 201, 16 }, + { -2730, -3, 218, 16 }, + { -2719, -3, 235, 16 }, + { -2709, -2, 252, 16 }, + { -2698, -2, 268, 16 }, + { -2687, -2, 285, 16 }, + { -2675, -2, 302, 16 }, + { -2664, -1, 318, 16 }, + { -2653, -1, 335, 16 }, + { -2641, -1, 351, 16 }, + { -2629, -1, 367, 16 }, + { -2617, -1, 383, 16 }, + { -2605, -1, 399, 16 }, + { -2592, -1, 414, 16 }, + { -2579, -1, 430, 16 }, + { -2566, 0, 445, 16 }, + { -2552, 0, 459, 16 }, + { -2538, 0, 474, 16 }, + { -2524, 0, 488, 16 }, + { -2510, 0, 502, 16 }, + { -2496, 0, 516, 16 }, + { -2482, 0, 530, 17 }, + { -2467, 0, 544, 17 }, + { -2453, 0, 557, 17 }, + { -2438, 0, 571, 17 }, + { -2424, 0, 585, 17 }, + { -2409, 0, 599, 17 }, + { -2394, 0, 612, 17 }, + { -2379, 0, 625, 17 }, + { -2363, 0, 637, 17 }, + { -2347, 0, 649, 17 }, + { -2330, 0, 660, 17 }, + { -2313, 0, 671, 17 }, + { -2296, 0, 681, 17 }, + { -2279, 0, 692, 17 }, + { -2262, 0, 701, 17 }, + { -2244, 0, 711, 17 }, + { -2227, 0, 721, 17 }, + { -2209, 0, 730, 17 }, + { -2191, 0, 739, 17 }, + { -2173, 0, 749, 18 }, + { -2156, -3, 759, 18 }, + { -2140, -5, 770, 18 }, + { -2123, -8, 781, 18 }, + { -2106, -10, 791, 18 }, + { -2089, -11, 802, 18 }, + { -2072, -12, 813, 18 }, + { -2055, -14, 823, 18 }, + { -2038, -15, 834, 18 }, + { -2021, -15, 844, 18 }, + { -2004, -16, 855, 18 }, + { -1987, -17, 866, 18 }, + { -1970, -18, 876, 18 }, + { -1953, -18, 887, 18 }, + { -1936, -19, 897, 18 }, + { -1919, -19, 908, 18 }, + { -1902, -19, 918, 18 }, + { -1885, -19, 929, 18 }, + { -1868, -18, 939, 18 }, + { -1851, -18, 950, 18 }, + { -1834, -17, 960, 18 }, + { -1817, -17, 971, 18 }, + { -1800, -16, 981, 18 }, + { -1783, -15, 992, 18 }, + { -1766, -14, 1002, 18 }, + { -1749, -13, 1013, 18 }, + { -1731, -12, 1023, 18 }, + { -1714, -11, 1033, 18 }, + { -1696, -10, 1043, 18 }, + { -1679, -7, 1052, 18 }, + { -1661, -5, 1061, 18 }, + { -1643, -2, 1070, 18 }, + { -1625, 0, 1079, 18 }, + { -1607, 0, 1087, 19 }, + { -1589, 0, 1096, 19 }, + { -1570, 0, 1104, 19 }, + { -1552, -1, 1112, 19 }, + { -1533, -1, 1119, 19 }, + { -1515, -1, 1126, 19 }, + { -1496, -2, 1134, 19 }, + { -1477, -2, 1141, 19 }, + { -1459, -2, 1147, 19 }, + { -1440, -3, 1154, 19 }, + { -1421, -3, 1160, 19 }, + { -1402, -3, 1167, 19 }, + { -1383, -4, 1172, 19 }, + { -1363, -4, 1178, 19 }, + { -1344, -4, 1183, 19 }, + { -1325, -4, 1188, 19 }, + { -1305, -2, 1193, 19 }, + { -1286, 0, 1197, 19 }, + { -1266, 1, 1200, 19 }, + { -1246, 3, 1204, 19 }, + { -1226, 6, 1206, 19 }, + { -1206, 8, 1208, 19 }, + { -1186, 11, 1209, 19 }, + { -1166, 14, 1209, 19 }, + { -1146, 16, 1208, 19 }, + { -1126, 19, 1207, 19 }, + { -1106, 22, 1205, 19 }, + { -1087, 24, 1203, 19 }, + { -1067, 26, 1201, 19 }, + { -1047, 29, 1197, 19 }, + { -1027, 31, 1194, 19 }, + { -1008, 34, 1190, 19 }, + { -988, 36, 1185, 19 }, + { -969, 39, 1180, 19 }, + { -950, 41, 1174, 19 }, + { -930, 44, 1168, 19 }, + { -912, 47, 1162, 19 }, + { -893, 52, 1154, 19 }, + { -875, 56, 1146, 19 }, + { -857, 60, 1136, 19 }, + { -840, 63, 1127, 19 }, + { -823, 66, 1116, 20 }, + { -806, 70, 1105, 20 }, + { -790, 73, 1093, 20 }, + { -774, 77, 1081, 20 }, + { -759, 80, 1068, 20 }, + { -743, 83, 1055, 20 }, + { -729, 87, 1042, 20 }, + { -714, 90, 1028, 20 }, + { -699, 94, 1015, 20 }, + { -685, 97, 1001, 20 }, + { -670, 100, 987, 20 }, + { -656, 104, 973, 20 }, + { -641, 107, 960, 20 }, + { -627, 110, 946, 20 }, + { -612, 114, 932, 20 }, + { -598, 117, 918, 20 }, + { -583, 120, 904, 20 }, + { -569, 124, 890, 20 }, + { -555, 127, 876, 20 }, + { -540, 131, 863, 20 }, + { -524, 134, 851, 20 }, + { -508, 136, 839, 20 }, + { -491, 137, 828, 20 }, + { -474, 138, 818, 20 }, + { -456, 140, 809, 20 }, + { -438, 141, 801, 20 }, + { -419, 142, 794, 20 }, + { -400, 143, 788, 20 }, + { -381, 145, 782, 20 }, + { -362, 146, 776, 20 }, + { -343, 147, 769, 20 }, + { -324, 149, 763, 20 }, + { -305, 150, 756, 20 }, + { -286, 151, 750, 20 }, + { -267, 152, 743, 20 }, + { -248, 154, 736, 20 }, + { -230, 155, 727, 20 }, + { -214, 157, 716, 20 }, + { -198, 158, 704, 20 }, + { -184, 159, 689, 20 }, + { -171, 161, 674, 20 }, + { -159, 163, 658, 20 }, + { -149, 164, 641, 20 }, + { -139, 166, 623, 1 }, + { -130, 167, 606, 1 }, + { -122, 168, 587, 1 }, + { -114, 170, 569, 1 }, + { -106, 171, 551, 1 }, + { -99, 173, 532, 1 }, + { -92, 174, 513, 1 }, + { -85, 175, 494, 1 }, + { -78, 176, 475, 1 }, + { -72, 177, 456, 1 }, + { -66, 177, 437, 1 }, + { -61, 178, 418, 1 }, + { -55, 178, 399, 1 }, + { -50, 179, 379, 1 }, + { -45, 179, 360, 1 }, + { -41, 179, 341, 1 }, + { -36, 180, 321, 1 }, + { -32, 180, 301, 1 }, + { -28, 180, 282, 1 }, + { -25, 180, 262, 1 }, + { -21, 180, 242, 1 }, + { -18, 180, 223, 1 }, + { -15, 180, 203, 1 }, + { -13, 180, 183, 1 }, + { -11, 180, 163, 1 }, + { -9, 180, 143, 1 }, + { -8, 180, 123, 1 }, + { -7, 180, 103, 1 }, + { -6, 180, 83, 1 }, + { -5, 180, 63, 1 }, + { -4, 180, 43, 1 }, + { -3, 180, 23, 1 }, + { -1, 180, 3, 1 }, + { -32768, -32768, -32768, 0 }, diff --git a/courses/yoshi_valley/d_course_yoshi_valley_unknown_path.inc.c b/courses/yoshi_valley/d_course_yoshi_valley_unknown_path.inc.c new file mode 100644 index 0000000000..42456f0251 --- /dev/null +++ b/courses/yoshi_valley/d_course_yoshi_valley_unknown_path.inc.c @@ -0,0 +1,19 @@ + { -3, 0, -4, 0 }, { -3, 0, -20, 0 }, { -3, 0, -261, 0 }, { -18, 0, -642, 0 }, + { -62, 0, -955, 0 }, { -155, 0, -1297, 0 }, { -232, 0, -1502, 0 }, { -317, 0, -1596, 0 }, + { -432, 0, -1625, 0 }, { -554, 0, -1619, 0 }, { -765, 0, -1542, 0 }, { -1069, 0, -1409, 0 }, + { -1198, 0, -1391, 0 }, { -1313, 0, -1479, 0 }, { -1467, 0, -1606, 0 }, { -1668, 0, -1660, 0 }, + { -1796, 0, -1600, 0 }, { -1836, 0, -1475, 0 }, { -1822, 0, -1231, 0 }, { -1731, 0, -1055, 0 }, + { -1598, 0, -769, 0 }, { -1551, 0, -574, 0 }, { -1580, 0, -327, 0 }, { -1629, 0, -156, 0 }, + { -1724, 0, 26, 0 }, { -1861, 0, 92, 0 }, { -2037, 0, 69, 0 }, { -2140, 0, -22, 0 }, + { -2228, 0, -248, 0 }, { -2243, 0, -401, 0 }, { -2274, 0, -525, 0 }, { -2382, 0, -811, 0 }, + { -2553, 0, -1038, 0 }, { -2663, 0, -1219, 0 }, { -2779, 0, -1501, 0 }, { -2899, 0, -1710, 0 }, + { -3007, 0, -1775, 0 }, { -3119, 0, -1769, 0 }, { -3201, 0, -1684, 0 }, { -3225, 0, -1553, 0 }, + { -3183, 0, -1392, 0 }, { -2997, 0, -1195, 0 }, { -2828, 0, -1095, 0 }, { -2770, 0, -1012, 0 }, + { -2762, 0, -912, 0 }, { -2836, 0, -680, 0 }, { -2899, 0, -578, 0 }, { -2933, 0, -451, 0 }, + { -2908, 0, -165, 0 }, { -2793, 0, 121, 0 }, { -2616, 0, 400, 0 }, { -2485, 0, 528, 0 }, + { -2429, 0, 577, 0 }, { -2372, 0, 620, 0 }, { -2318, 0, 659, 0 }, { -2278, 0, 691, 0 }, + { -2224, 0, 721, 0 }, { -2178, 0, 746, 0 }, { -2110, 0, 786, 0 }, { -1903, 0, 916, 0 }, + { -1626, 0, 1087, 0 }, { -1546, 0, 1123, 0 }, { -1322, 0, 1201, 0 }, { -1033, 0, 1195, 0 }, + { -850, 0, 1148, 0 }, { -652, 0, 967, 0 }, { -503, 0, 821, 0 }, { -319, 0, 768, 0 }, + { -163, 0, 709, 0 }, { -75, 0, 506, 0 }, { -24, 0, 295, 0 }, { -3, 0, 24, 0 }, + { -32768, 0, 0, 0 }, diff --git a/courses/yoshi_valley/d_course_yoshi_valley_unknown_path_2.inc.c b/courses/yoshi_valley/d_course_yoshi_valley_unknown_path_2.inc.c new file mode 100644 index 0000000000..348d6f0909 --- /dev/null +++ b/courses/yoshi_valley/d_course_yoshi_valley_unknown_path_2.inc.c @@ -0,0 +1,19 @@ + { -6, 0, -5, 1 }, { -6, 0, -21, 1 }, { -5, 0, -434, 1 }, { -37, 0, -841, 1 }, + { -150, 0, -1267, 1 }, { -228, 0, -1498, 1 }, { -328, 0, -1603, 1 }, { -439, 0, -1627, 1 }, + { -548, 0, -1621, 1 }, { -759, 0, -1544, 1 }, { -1078, 0, -1402, 1 }, { -1207, 0, -1400, 1 }, + { -1314, 0, -1494, 1 }, { -1470, 0, -1617, 1 }, { -1670, 0, -1673, 1 }, { -1804, 0, -1594, 1 }, + { -1834, 0, -1463, 1 }, { -1842, 0, -1286, 1 }, { -1883, 0, -1253, 1 }, { -1969, 0, -1212, 1 }, + { -2023, 0, -1148, 1 }, { -2099, 0, -1042, 1 }, { -2156, 0, -971, 1 }, { -2219, 0, -885, 1 }, + { -2312, 0, -763, 1 }, { -2414, 0, -624, 1 }, { -2492, 0, -515, 1 }, { -2543, 0, -394, 1 }, + { -2559, 0, -212, 1 }, { -2518, 0, -125, 1 }, { -2395, 0, -60, 1 }, { -2280, 0, -75, 1 }, + { -2210, 0, -135, 1 }, { -2203, 0, -239, 1 }, { -2234, 0, -406, 1 }, { -2293, 0, -555, 1 }, + { -2411, 0, -866, 1 }, { -2617, 0, -1115, 1 }, { -2905, 0, -1727, 1 }, { -3020, 0, -1784, 1 }, + { -3138, 0, -1763, 1 }, { -3222, 0, -1633, 1 }, { -3197, 0, -1408, 1 }, { -3037, 0, -1223, 1 }, + { -2819, 0, -1099, 1 }, { -2762, 0, -1008, 1 }, { -2760, 0, -924, 1 }, { -2825, 0, -690, 1 }, + { -2906, 0, -581, 1 }, { -2940, 0, -455, 1 }, { -2911, 0, -179, 1 }, { -2786, 0, 121, 1 }, + { -2611, 0, 397, 1 }, { -2498, 0, 518, 1 }, { -2440, 0, 572, 1 }, { -2386, 0, 616, 1 }, + { -2354, 0, 633, 1 }, { -2309, 0, 669, 1 }, { -2256, 0, 702, 1 }, { -2207, 0, 730, 1 }, + { -2164, 0, 754, 1 }, { -1893, 0, 923, 1 }, { -1616, 0, 1091, 1 }, { -1532, 0, 1125, 1 }, + { -1275, 0, 1216, 1 }, { -909, 0, 1171, 1 }, { -669, 0, 973, 1 }, { -510, 0, 836, 1 }, + { -340, 0, 772, 1 }, { -198, 0, 723, 1 }, { -92, 0, 542, 1 }, { -23, 0, 328, 1 }, + { -2, 0, 33, 1 }, { -32768, 0, 0, 0 }, diff --git a/courses/yoshi_valley/d_course_yoshi_valley_unknown_path_3.inc.c b/courses/yoshi_valley/d_course_yoshi_valley_unknown_path_3.inc.c new file mode 100644 index 0000000000..37ff6f8e38 --- /dev/null +++ b/courses/yoshi_valley/d_course_yoshi_valley_unknown_path_3.inc.c @@ -0,0 +1,21 @@ + { -3, 0, -3, 4 }, { -3, 0, -19, 4 }, { 0, 0, -268, 4 }, { -21, 0, -638, 4 }, + { -66, 0, -952, 4 }, { -162, 0, -1297, 4 }, { -232, 0, -1502, 4 }, { -318, 0, -1594, 4 }, + { -434, 0, -1624, 4 }, { -562, 0, -1612, 4 }, { -768, 0, -1547, 4 }, { -1081, 0, -1412, 4 }, + { -1186, 0, -1313, 4 }, { -1215, 0, -1238, 4 }, { -1213, 0, -1135, 4 }, { -1198, 0, -998, 4 }, + { -1172, 0, -856, 4 }, { -1145, 0, -777, 4 }, { -1117, 0, -718, 4 }, { -1101, 0, -674, 4 }, + { -1096, 0, -594, 4 }, { -1114, 0, -515, 4 }, { -1149, 0, -424, 4 }, { -1179, 0, -326, 4 }, + { -1179, 0, -257, 4 }, { -1142, 0, -166, 4 }, { -1091, 0, -31, 4 }, { -1053, 0, 136, 4 }, + { -1045, 0, 241, 4 }, { -1089, 0, 323, 4 }, { -1187, 0, 368, 4 }, { -1364, 0, 402, 4 }, + { -1490, 0, 389, 4 }, { -1632, 0, 307, 4 }, { -1740, 0, 200, 4 }, { -1869, 0, 113, 4 }, + { -2214, 0, -186, 4 }, { -2239, 0, -382, 4 }, { -2275, 0, -510, 4 }, { -2375, 0, -794, 4 }, + { -2450, 0, -939, 4 }, { -2567, 0, -1050, 4 }, { -2672, 0, -1206, 4 }, { -2781, 0, -1510, 4 }, + { -2898, 0, -1715, 4 }, { -3015, 0, -1774, 4 }, { -3117, 0, -1761, 4 }, { -3203, 0, -1689, 4 }, + { -3225, 0, -1545, 4 }, { -3171, 0, -1382, 4 }, { -2990, 0, -1199, 4 }, { -2836, 0, -1099, 4 }, + { -2762, 0, -1010, 4 }, { -2770, 0, -919, 4 }, { -2837, 0, -687, 4 }, { -2906, 0, -578, 4 }, + { -2930, 0, -455, 4 }, { -2908, 0, -171, 4 }, { -2788, 0, 115, 4 }, { -2610, 0, 399, 4 }, + { -2485, 0, 529, 4 }, { -2419, 0, 572, 4 }, { -2363, 0, 617, 4 }, { -2305, 0, 662, 4 }, + { -2256, 0, 700, 4 }, { -2213, 0, 725, 4 }, { -2178, 0, 744, 4 }, { -2115, 0, 785, 4 }, + { -1898, 0, 921, 4 }, { -1627, 0, 1091, 4 }, { -1551, 0, 1122, 4 }, { -1326, 0, 1196, 4 }, + { -1034, 0, 1193, 4 }, { -848, 0, 1151, 4 }, { -657, 0, 964, 4 }, { -509, 0, 825, 4 }, + { -327, 0, 764, 4 }, { -170, 0, 701, 4 }, { -84, 0, 505, 4 }, { -29, 0, 300, 4 }, + { -6, 0, 21, 4 }, { -32768, 0, 0, 0 }, diff --git a/courses/yoshi_valley/d_course_yoshi_valley_unknown_path_4.inc.c b/courses/yoshi_valley/d_course_yoshi_valley_unknown_path_4.inc.c new file mode 100644 index 0000000000..b3fd511437 --- /dev/null +++ b/courses/yoshi_valley/d_course_yoshi_valley_unknown_path_4.inc.c @@ -0,0 +1,22 @@ + { -2, 0, -1, 7 }, { 0, 0, -18, 7 }, { -2, 0, -268, 7 }, { -21, 0, -653, 7 }, + { -70, 0, -965, 7 }, { -162, 0, -1303, 7 }, { -235, 0, -1506, 7 }, { -324, 0, -1596, 7 }, + { -438, 0, -1624, 7 }, { -571, 0, -1611, 7 }, { -773, 0, -1533, 7 }, { -1077, 0, -1399, 7 }, + { -1206, 0, -1392, 7 }, { -1312, 0, -1474, 7 }, { -1686, 0, -1670, 7 }, { -1892, 0, -1769, 7 }, + { -2057, 0, -1883, 7 }, { -2199, 0, -1894, 7 }, { -2273, 0, -1860, 7 }, { -2324, 0, -1765, 7 }, + { -2331, 0, -1621, 7 }, { -2286, 0, -1417, 7 }, { -2175, 0, -1158, 7 }, { -2033, 0, -896, 7 }, + { -1913, 0, -684, 7 }, { -1753, 0, -497, 7 }, { -1643, 0, -437, 7 }, { -1458, 0, -383, 7 }, + { -1288, 0, -354, 7 }, { -1202, 0, -283, 7 }, { -1114, 0, -108, 7 }, { -1041, 0, 178, 7 }, + { -1049, 0, 277, 7 }, { -1133, 0, 350, 7 }, { -1351, 0, 406, 7 }, { -1460, 0, 406, 7 }, + { -1559, 0, 354, 7 }, { -1731, 0, 220, 7 }, { -1860, 0, 114, 7 }, { -2052, 0, 47, 7 }, + { -2202, 0, -127, 7 }, { -2237, 0, -327, 7 }, { -2256, 0, -487, 7 }, { -2323, 0, -626, 7 }, + { -2405, 0, -871, 7 }, { -2537, 0, -1025, 7 }, { -2665, 0, -1193, 7 }, { -2775, 0, -1486, 7 }, + { -2897, 0, -1725, 7 }, { -3021, 0, -1779, 7 }, { -3124, 0, -1760, 7 }, { -3212, 0, -1657, 7 }, + { -3214, 0, -1502, 7 }, { -3076, 0, -1257, 7 }, { -2852, 0, -1108, 7 }, { -2782, 0, -1039, 7 }, + { -2756, 0, -940, 7 }, { -2800, 0, -758, 7 }, { -2901, 0, -578, 7 }, { -2940, 0, -462, 7 }, + { -2914, 0, -179, 7 }, { -2794, 0, 122, 7 }, { -2618, 0, 392, 7 }, { -2489, 0, 526, 7 }, + { -2446, 0, 564, 7 }, { -2400, 0, 609, 7 }, { -2358, 0, 643, 7 }, { -2316, 0, 670, 7 }, + { -2275, 0, 695, 7 }, { -2224, 0, 723, 7 }, { -2176, 0, 747, 7 }, { -2135, 0, 774, 7 }, + { -1896, 0, 923, 7 }, { -1623, 0, 1091, 7 }, { -1272, 0, 1213, 7 }, { -1050, 0, 1206, 7 }, + { -834, 0, 1139, 7 }, { -640, 0, 960, 7 }, { -496, 0, 818, 7 }, { -324, 0, 765, 7 }, + { -176, 0, 708, 7 }, { -75, 0, 483, 7 }, { -13, 0, 223, 7 }, { 0, 0, 16, 7 }, + { -32768, 0, 0, 0 }, diff --git a/data/other_textures.s b/data/other_textures.s index 31670f1988..8379cff0e5 100644 --- a/data/other_textures.s +++ b/data/other_textures.s @@ -1147,7 +1147,12 @@ glabel gTexture68DEC0 glabel gTexture68E2D0 .incbin "textures/standalone/texture_68E2D0.rgba16.mio0" +/* JP aligns the green shell group to 16 (8 extra zero bytes here) */ +.ifdef VERSION_JP +.balign 16, 0x00 +.else .balign 4, 0x00 +.endif glabel texture_green_shell_0 .incbin "assets/greenshell/texture_green_shell_0.mio0" diff --git a/data/sound_data/audiobanks.s b/data/sound_data/audiobanks.s index 5cac710a02..7389f93781 100644 --- a/data/sound_data/audiobanks.s +++ b/data/sound_data/audiobanks.s @@ -9,6 +9,10 @@ .ifdef VERSION_EU_V10 .incbin "bin/audiobanks.eu.bin" +.else +.ifdef VERSION_JP + .incbin "bin/audiobanks.jp.v11.bin" .else .incbin "bin/audiobanks.us.bin" .endif +.endif diff --git a/data/sound_data/audiotables.s b/data/sound_data/audiotables.s index b481e3bd3f..efcb0a2f0c 100644 --- a/data/sound_data/audiotables.s +++ b/data/sound_data/audiotables.s @@ -5,5 +5,9 @@ .section .data +.ifdef VERSION_JP +.incbin "bin/audiotables.jp.v11.bin" # JP sample bank (0x190 larger) +.else .incbin "bin/audiotables.bin" # Audiotables and data +.endif diff --git a/data/sound_data/sequences.s b/data/sound_data/sequences.s index 824b427dea..4776c74143 100644 --- a/data/sound_data/sequences.s +++ b/data/sound_data/sequences.s @@ -44,11 +44,19 @@ glabel music_sequence_table_end .align 4, 0x00 glabel seq_00 +.ifdef VERSION_JP +.incbin "music/00_seq_00.jp.v11.m64" +.else .incbin "music/00_seq_00.m64" +.endif glabel seq_00_end glabel seq_01 +.ifdef VERSION_JP +.incbin "music/01_title_screen.jp.v11.m64" +.else .incbin "music/01_title_screen.m64" +.endif glabel seq_01_end glabel seq_02 @@ -60,11 +68,19 @@ glabel seq_03 glabel seq_03_end glabel seq_04 +.ifdef VERSION_JP +.incbin "music/04_moo_moo_fame_yoshi_valley.jp.v11.m64" +.else .incbin "music/04_moo_moo_fame_yoshi_valley.m64" +.endif glabel seq_04_end glabel seq_05 +.ifdef VERSION_JP +.incbin "music/05_choco_mountain.jp.v11.m64" +.else .incbin "music/05_choco_mountain.m64" +.endif glabel seq_05_end glabel seq_06 @@ -76,7 +92,11 @@ glabel seq_07 glabel seq_07_end glabel seq_08 +.ifdef VERSION_JP +.incbin "music/08_seq_08.jp.v11.m64" +.else .incbin "music/08_seq_08.m64" +.endif glabel seq_08_end glabel seq_09 diff --git a/data/texture_tkmk00.s b/data/texture_tkmk00.s index 648dc12523..f26a32d13f 100644 --- a/data/texture_tkmk00.s +++ b/data/texture_tkmk00.s @@ -5,6 +5,11 @@ .data +# JP replaces the character nameplates and course title plates with +# Japanese-text TKMK00 blobs. There is no TKMK00 compressor, so (exactly +# as upstream does for the US blobs) the JP blobs are checked in under +# bin/jp.v11/ and selected with .ifdef VERSION_JP. + glabel texture_player_select .incbin "bin/texture_player_select.rgba16.tkmk00" glabel texture_player_select_end @@ -14,115 +19,227 @@ glabel texture_option glabel texture_option_end glabel texture_name_dk +.ifdef VERSION_JP +.incbin "bin/jp.v11/texture_name_dk.rgba16.tkmk00" +.else .incbin "bin/texture_name_dk.rgba16.tkmk00" +.endif glabel texture_name_dk_end glabel texture_name_toad +.ifdef VERSION_JP +.incbin "bin/jp.v11/texture_name_toad.rgba16.tkmk00" +.else .incbin "bin/texture_name_toad.rgba16.tkmk00" +.endif glabel texture_name_toad_end glabel texture_name_bowser +.ifdef VERSION_JP +.incbin "bin/jp.v11/texture_name_bowser.rgba16.tkmk00" +.else .incbin "bin/texture_name_bowser.rgba16.tkmk00" +.endif glabel texture_name_bowser_end glabel texture_name_luigi +.ifdef VERSION_JP +.incbin "bin/jp.v11/texture_name_luigi.rgba16.tkmk00" +.else .incbin "bin/texture_name_luigi.rgba16.tkmk00" +.endif glabel texture_name_luigi_end glabel texture_name_mario +.ifdef VERSION_JP +.incbin "bin/jp.v11/texture_name_mario.rgba16.tkmk00" +.else .incbin "bin/texture_name_mario.rgba16.tkmk00" +.endif glabel texture_name_mario_end glabel texture_name_peach +.ifdef VERSION_JP +.incbin "bin/jp.v11/texture_name_peach.rgba16.tkmk00" +.else .incbin "bin/texture_name_peach.rgba16.tkmk00" +.endif glabel texture_name_peach_end glabel texture_name_wario +.ifdef VERSION_JP +.incbin "bin/jp.v11/texture_name_wario.rgba16.tkmk00" +.else .incbin "bin/texture_name_wario.rgba16.tkmk00" +.endif glabel texture_name_wario_end glabel texture_name_yoshi +.ifdef VERSION_JP +.incbin "bin/jp.v11/texture_name_yoshi.rgba16.tkmk00" +.else .incbin "bin/texture_name_yoshi.rgba16.tkmk00" +.endif glabel texture_name_yoshi_end glabel gTextureTitleMarioRaceway +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleMarioRaceway.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleMarioRaceway.rgba16.tkmk00" +.endif glabel gTextureTitleMarioRaceway_end glabel gTextureTitleChocoMountain +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleChocoMountain.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleChocoMountain.rgba16.tkmk00" +.endif glabel gTextureTitleChocoMountain_end glabel gTextureTitleBowsersCastle +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleBowsersCastle.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleBowsersCastle.rgba16.tkmk00" +.endif glabel gTextureTitleBowsersCastle_end glabel gTextureTitleBansheeBoardwalk +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleBansheeBoardwalk.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleBansheeBoardwalk.rgba16.tkmk00" +.endif glabel gTextureTitleBansheeBoardwalk_end glabel gTextureTitleYoshiValley +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleYoshiValley.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleYoshiValley.rgba16.tkmk00" +.endif glabel gTextureTitleYoshiValley_end glabel gTextureTitleFrappeSnowland +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleFrappeSnowland.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleFrappeSnowland.rgba16.tkmk00" +.endif glabel gTextureTitleFrappeSnowland_end glabel gTextureTitleKoopaTroopaBeach +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleKoopaTroopaBeach.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleKoopaTroopaBeach.rgba16.tkmk00" +.endif glabel gTextureTitleKoopaTroopaBeach_end glabel gTextureTitleRoyalRaceway +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleRoyalRaceway.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleRoyalRaceway.rgba16.tkmk00" +.endif glabel gTextureTitleRoyalRaceway_end glabel gTextureTitleLuigiRaceway +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleLuigiRaceway.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleLuigiRaceway.rgba16.tkmk00" +.endif glabel gTextureTitleLuigiRaceway_end glabel gTextureTitleMooMooFarm +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleMooMooFarm.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleMooMooFarm.rgba16.tkmk00" +.endif glabel gTextureTitleMooMooFarm_end glabel gTextureTitleToadsTurnpike +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleToadsTurnpike.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleToadsTurnpike.rgba16.tkmk00" +.endif glabel gTextureTitleToadsTurnpike_end glabel gTextureTitleKalimariDesert +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleKalimariDesert.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleKalimariDesert.rgba16.tkmk00" +.endif glabel gTextureTitleKalimariDesert_end glabel gTextureTitleSherbetLand +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleSherbetLand.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleSherbetLand.rgba16.tkmk00" +.endif glabel gTextureTitleSherbetLand_end glabel gTextureTitleRainbowRoad +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleRainbowRoad.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleRainbowRoad.rgba16.tkmk00" +.endif glabel gTextureTitleRainbowRoad_end glabel gTextureTitleWarioStadium +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleWarioStadium.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleWarioStadium.rgba16.tkmk00" +.endif glabel gTextureTitleWarioStadium_end glabel gTextureTitleBlockFort +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleBlockFort.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleBlockFort.rgba16.tkmk00" +.endif glabel gTextureTitleBlockFort_end glabel gTextureTitleSkyscraper +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleSkyscraper.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleSkyscraper.rgba16.tkmk00" +.endif glabel gTextureTitleSkyscraper_end glabel gTextureTitleDoubleDeck +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleDoubleDeck.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleDoubleDeck.rgba16.tkmk00" +.endif glabel gTextureTitleDoubleDeck_end glabel gTextureTitleDKsJungleParkway +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleDKsJungleParkway.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleDKsJungleParkway.rgba16.tkmk00" +.endif glabel gTextureTitleDKsJungleParkway_end glabel gTextureTitleBigDonut +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureTitleBigDonut.rgba16.tkmk00" +.else .incbin "bin/gTextureTitleBigDonut.rgba16.tkmk00" +.endif glabel gTextureTitleBigDonut_end glabel gTextureMapSelect @@ -134,7 +251,11 @@ glabel gTextureMenuFlowerCup glabel gTextureMenuFlowerCup_end glabel gTextureMenuMushroomCup +.ifdef VERSION_JP +.incbin "bin/jp.v11/gTextureMenuMushroomCup.rgba16.tkmk00" +.else .incbin "bin/gTextureMenuMushroomCup.rgba16.tkmk00" +.endif glabel gTextureMenuMushroomCup_end glabel gTextureMenuStarCup @@ -166,27 +287,51 @@ glabel texture_menu_4p_game glabel texture_menu_4p_game_end glabel texture_mode_battle +.ifdef VERSION_JP +.incbin "bin/jp.v11/texture_mode_battle.rgba16.tkmk00" +.else .incbin "bin/texture_mode_battle.rgba16.tkmk00" +.endif glabel texture_mode_battle_end glabel texture_mode_time_trials +.ifdef VERSION_JP +.incbin "bin/jp.v11/texture_mode_time_trials.rgba16.tkmk00" +.else .incbin "bin/texture_mode_time_trials.rgba16.tkmk00" +.endif glabel texture_mode_time_trials_end glabel texture_mode_mario_gp +.ifdef VERSION_JP +.incbin "bin/jp.v11/texture_mode_mario_gp.rgba16.tkmk00" +.else .incbin "bin/texture_mode_mario_gp.rgba16.tkmk00" +.endif glabel texture_mode_mario_gp_end glabel texture_mode_vs +.ifdef VERSION_JP +.incbin "bin/jp.v11/texture_mode_vs.rgba16.tkmk00" +.else .incbin "bin/texture_mode_vs.rgba16.tkmk00" +.endif glabel texture_mode_vs_end glabel texture_l_option +.ifdef VERSION_JP +.incbin "bin/jp.v11/texture_l_option.rgba16.tkmk00" +.else .incbin "bin/texture_l_option.rgba16.tkmk00" +.endif glabel texture_l_option_end glabel texture_r_data +.ifdef VERSION_JP +.incbin "bin/jp.v11/texture_r_data.rgba16.tkmk00" +.else .incbin "bin/texture_r_data.rgba16.tkmk00" +.endif glabel texture_r_data_end glabel texture_50cc @@ -202,7 +347,11 @@ glabel texture_150cc glabel texture_150cc_end glabel texture_extra +.ifdef VERSION_JP +.incbin "bin/jp.v11/texture_extra.rgba16.tkmk00" +.else .incbin "bin/texture_extra.rgba16.tkmk00" +.endif glabel texture_extra_end glabel gTextureMenuWithoutItem @@ -214,15 +363,27 @@ glabel gTextureMenuWithItem glabel gTextureMenuWithItem_end glabel texture_begin +.ifdef VERSION_JP +.incbin "bin/jp.v11/texture_begin.rgba16.tkmk00" +.else .incbin "bin/texture_begin.rgba16.tkmk00" +.endif glabel texture_begin_end glabel texture_menu_ghost +.ifdef VERSION_JP +.incbin "bin/jp.v11/texture_menu_ghost.rgba16.tkmk00" +.else .incbin "bin/texture_menu_ghost.rgba16.tkmk00" +.endif glabel texture_menu_ghost_end glabel texture_data +.ifdef VERSION_JP +.incbin "bin/jp.v11/texture_data.rgba16.tkmk00" +.else .incbin "bin/texture_data.rgba16.tkmk00" +.endif glabel texture_data_end glabel texture_ok diff --git a/include/PR/abi.h b/include/PR/abi.h index 25cbf9f1cf..2f953b73cb 100644 --- a/include/PR/abi.h +++ b/include/PR/abi.h @@ -42,7 +42,7 @@ #define A_INTERLEAVE 13 #define A_SETLOOP 15 -#if !(defined(VERSION_SH) || defined(VERSION_US) || defined(VERSION_EU)) +#if !(defined(VERSION_SH) || defined(VERSION_US) || defined(VERSION_EU) || defined(VERSION_JP)) #define A_ENVMIXER 3 #define A_LOADBUFF 4 @@ -636,7 +636,7 @@ typedef short ENVMIX_STATE[40]; _a->words.w1 = (uintptr_t) (tr); \ } -#if defined(VERSION_SH) || defined(VERSION_US) || defined(VERSION_EU) +#if defined(VERSION_SH) || defined(VERSION_US) || defined(VERSION_EU) || defined(VERSION_JP) #undef aLoadBuffer #undef aSaveBuffer #undef aMix diff --git a/mk64.ld b/mk64.ld index 151f1db815..bab782b56e 100644 --- a/mk64.ld +++ b/mk64.ld @@ -48,6 +48,16 @@ SECTIONS BUILD_DIR/src/main.o(.text*); BUILD_DIR/src/code_800029B0.o(.text*); BUILD_DIR/src/profiler.o(.text*); +#ifdef VERSION_JP // TODO: Arrange these in data, rodata and bss + BUILD_DIR/src/replays.o(.text*); + BUILD_DIR/src/camera.o(.text*); + BUILD_DIR/src/cpu_vehicles_camera_path.jp.o(.text*); + BUILD_DIR/asm/unused/unused_jp_utils.o(.text*); + BUILD_DIR/src/animation.o(.text*); + BUILD_DIR/src/render_player.o(.text*); + BUILD_DIR/src/crash_screen.o(.text*); + BUILD_DIR/src/kart_dma.o(.text*); +#else BUILD_DIR/src/crash_screen.o(.text*); BUILD_DIR/src/animation.o(.text*); BUILD_DIR/src/replays.o(.text*); @@ -56,6 +66,7 @@ SECTIONS BUILD_DIR/src/camera.o(.text*); BUILD_DIR/src/render_player.o(.text*); BUILD_DIR/src/kart_dma.o(.text*); +#endif BUILD_DIR/src/player_controller.o(.text*); BUILD_DIR/src/spawn_players.o(.text*); BUILD_DIR/src/code_8003DC40.o(.text*); @@ -102,6 +113,10 @@ SECTIONS BUILD_DIR/src/os/osViBlack.o(.text*); BUILD_DIR/src/os/osViSetSpecialFeatures.o(.text*); BUILD_DIR/src/os/osCreatePiManager.o(.text*); + #ifdef VERSION_JP + /* real JP has 0x40 of zero padding here (verified: real 0xcd050-0xcd090) */ + . += 0x40; + #endif BUILD_DIR/src/os/osSetThreadPri.o(.text*); BUILD_DIR/src/os/osCreateMesgQueue.o(.text*); BUILD_DIR/src/os/osViSetEvent.o(.text*); @@ -124,8 +139,14 @@ SECTIONS #if GCC BUILD_DIR/asm/os/llmuldiv_gcc.o(.text); #endif + #ifdef VERSION_JP + /* JP links sqrtf before __osGetCurrFaultedThread (57 call sites agree) */ + BUILD_DIR/asm/os/sqrtf.o(.text); + BUILD_DIR/src/os/__osGetCurrFaultedThread.o(.text*); + #else BUILD_DIR/src/os/__osGetCurrFaultedThread.o(.text*); BUILD_DIR/asm/os/sqrtf.o(.text); + #endif BUILD_DIR/src/os/guOrthoF.o(.text*); BUILD_DIR/src/os/osSetTime.o(.text*); BUILD_DIR/src/os/osEepromProbe.o(.text*); @@ -214,14 +235,26 @@ SECTIONS BUILD_DIR/src/os/_Ldtob.o(.text*); BUILD_DIR/src/os/ldiv.o(.text*); BUILD_DIR/data/rsp.o(.text); - BUILD_DIR/src/main.o(.data*); - BUILD_DIR/src/code_800029B0.o(.data*); - BUILD_DIR/src/profiler.o(.data*); - BUILD_DIR/src/crash_screen.o(.data*); - BUILD_DIR/src/replays.o(.data*); - BUILD_DIR/src/data/path_spawn_metadata.o(.data*); - BUILD_DIR/src/camera.o(.data*); - BUILD_DIR/src/render_player.o(.data*); + #ifdef VERSION_JP + /* JP .data head order recovered by content-anchor scan vs real ROM */ + BUILD_DIR/src/main.o(.data*); + BUILD_DIR/src/code_800029B0.o(.data*); + BUILD_DIR/src/profiler.o(.data*); + BUILD_DIR/src/replays.o(.data*); + BUILD_DIR/src/camera.o(.data*); + BUILD_DIR/src/data/path_spawn_metadata.o(.data*); + BUILD_DIR/src/render_player.o(.data*); + BUILD_DIR/src/crash_screen.o(.data*); + #else + BUILD_DIR/src/main.o(.data*); + BUILD_DIR/src/code_800029B0.o(.data*); + BUILD_DIR/src/profiler.o(.data*); + BUILD_DIR/src/crash_screen.o(.data*); + BUILD_DIR/src/replays.o(.data*); + BUILD_DIR/src/data/path_spawn_metadata.o(.data*); + BUILD_DIR/src/camera.o(.data*); + BUILD_DIR/src/render_player.o(.data*); + #endif BUILD_DIR/src/kart_dma.o(.data*); BUILD_DIR/src/data/kart_attributes.o(.data*); BUILD_DIR/src/player_controller.o(.data*); @@ -236,6 +269,10 @@ SECTIONS BUILD_DIR/src/code_800AF9B0.o(.data*); BUILD_DIR/src/menus.o(.data*); BUILD_DIR/src/save.o(.data*); + #ifdef VERSION_JP + /* JP links the audio data tables before the 800E8700 assets */ + BUILD_DIR/src/audio/data.o(.data*); + #endif BUILD_DIR/ASSET_CODE_DIR/data_800E8700/data_800E8700.o(.data*); BUILD_DIR/src/audio/synthesis.o(.data*); BUILD_DIR/src/audio/heap.o(.data*); @@ -269,8 +306,14 @@ SECTIONS BUILD_DIR/src/main.o(.rodata*); BUILD_DIR/src/animation.o(.rodata*); BUILD_DIR/src/code_800029B0.o(.rodata*); - BUILD_DIR/src/cpu_vehicles_camera_path.jp.o(.rodata*); - BUILD_DIR/src/camera.o(.rodata*); + #ifdef VERSION_JP + /* JP orders camera.o rodata before the cpu_vehicles float pools */ + BUILD_DIR/src/camera.o(.rodata*); + BUILD_DIR/src/cpu_vehicles_camera_path.jp.o(.rodata*); + #else + BUILD_DIR/src/cpu_vehicles_camera_path.jp.o(.rodata*); + BUILD_DIR/src/camera.o(.rodata*); + #endif BUILD_DIR/src/render_player.o(.rodata*); BUILD_DIR/src/player_controller.o(.rodata*); BUILD_DIR/src/spawn_players.o(.rodata*); @@ -317,21 +360,37 @@ SECTIONS BUILD_DIR/asm/os/osSetIntMask.o(.rodata); BUILD_DIR/src/os/_Ldtob.o(.rodata*); BUILD_DIR/data/rsp.o(.data*); + #ifndef VERSION_JP BUILD_DIR/src/audio/data.o(.data*); + #endif } END_SEG(main) BEGIN_NOLOAD(main) { BUILD_DIR/src/main.o(.bss*); - BUILD_DIR/src/code_800029B0.o(.bss*); - BUILD_DIR/src/profiler.o(.bss*); - BUILD_DIR/src/crash_screen.o(.bss*); - BUILD_DIR/src/animation.o(.bss*); - BUILD_DIR/src/replays.o(.bss*); - BUILD_DIR/src/cpu_vehicles_camera_path.jp.o(.bss*); - BUILD_DIR/src/camera.o(.bss*); - BUILD_DIR/src/render_player.o(.bss*); - BUILD_DIR/src/spawn_players.o(.bss*); + #ifdef VERSION_JP + /* JP bss order recovered from code-reloc anchor mining vs real ROM */ + BUILD_DIR/src/code_800029B0.o(.bss*); + BUILD_DIR/src/profiler.o(.bss*); + BUILD_DIR/src/replays.o(.bss*); + . += 0x10; /* real JP aligns cameras to 0x8015f000 */ + BUILD_DIR/src/camera.o(.bss*); + BUILD_DIR/src/cpu_vehicles_camera_path.jp.o(.bss*); + BUILD_DIR/src/animation.o(.bss*); + BUILD_DIR/src/render_player.o(.bss*); + BUILD_DIR/src/crash_screen.o(.bss*); + BUILD_DIR/src/spawn_players.o(.bss*); + #else + BUILD_DIR/src/code_800029B0.o(.bss*); + BUILD_DIR/src/profiler.o(.bss*); + BUILD_DIR/src/crash_screen.o(.bss*); + BUILD_DIR/src/animation.o(.bss*); + BUILD_DIR/src/replays.o(.bss*); + BUILD_DIR/src/cpu_vehicles_camera_path.jp.o(.bss*); + BUILD_DIR/src/camera.o(.bss*); + BUILD_DIR/src/render_player.o(.bss*); + BUILD_DIR/src/spawn_players.o(.bss*); + #endif BUILD_DIR/src/code_80057C60.o(.bss*); BUILD_DIR/src/code_80057C60_var.o(.bss*); BUILD_DIR/src/effects.o(.bss*); @@ -412,6 +471,13 @@ SECTIONS BUILD_DIR/src/racing/actors.o(.bss*); BUILD_DIR/src/racing/memory.o(.bss*); BUILD_DIR/src/buffers/random.o(.bss*); + #ifdef VERSION_JP + /* JP's racing overlay reserves 0x40 more bss than US. It cannot be in + ROM (racing's ROM size only differs by the 0x10 of unmatched code), + and no symbol past gActorHotAirBalloonItemBox is lui/lo16-referenced, + so the owning variable is not yet identified. */ + . += 0x40; + #endif . = ALIGN(0x10); } END_NOLOAD(racing) @@ -439,6 +505,21 @@ SECTIONS BUILD_DIR/src/ending/code_80281780.o(.text*); BUILD_DIR/src/ending/code_80281C40.o(.text*); BUILD_DIR/src/ending/ceremony_and_credits.o(.text*); + #ifdef VERSION_JP + /* JP puts credits first in both .data and .rodata */ + BUILD_DIR/src/ending/credits.jp.o(.data*); + BUILD_DIR/src/ending/podium_ceremony_actors.o(.data*); + BUILD_DIR/src/ending/code_80281780.o(.data*); + BUILD_DIR/src/ending/dl_unk_80284EE0.o(.data*); + BUILD_DIR/src/ending/ceremony_and_credits.o(.data*); + BUILD_DIR/src/ending/code_80280000.o(.rodata*); + BUILD_DIR/src/ending/credits.jp.o(.rodata*); + BUILD_DIR/src/ending/podium_ceremony_actors.o(.rodata*); + BUILD_DIR/src/ending/camera_junk.o(.rodata*); + BUILD_DIR/src/ending/code_80281780.o(.rodata*); + BUILD_DIR/src/ending/code_80281C40.o(.rodata*); + BUILD_DIR/src/ending/ceremony_and_credits.o(.rodata*); + #else BUILD_DIR/src/ending/podium_ceremony_actors.o(.data*); BUILD_DIR/src/ending/code_80281780.o(.data*); BUILD_DIR/src/ending/dl_unk_80284EE0.o(.data*); @@ -451,6 +532,7 @@ SECTIONS BUILD_DIR/src/ending/code_80281C40.o(.rodata*); BUILD_DIR/src/ending/credits.jp.o(.rodata*); BUILD_DIR/src/ending/ceremony_and_credits.o(.rodata*); + #endif } END_SEG(ending) @@ -481,6 +563,24 @@ SECTIONS } END_SEG(common_textures) + #ifdef VERSION_JP + /* JP packs ceremonyData + startupLogo before the kart band, + and trigTables directly after it (US keeps them later). */ + BEGIN_SEG(ceremonyData, 0x0B000000) + { + BUILD_DIR/ASSET_CODE_DIR/ceremony_data/ceremony_data.mio0.o(.data); + . = ALIGN(0x10); + } + END_SEG(ceremonyData) + + BEGIN_SEG(startupLogo, 0x06000000) + { + BUILD_DIR/ASSET_CODE_DIR/startup_logo/startup_logo.mio0.o(.data); + . = ALIGN(0x10); + } + END_SEG(startupLogo) + #endif + /* 0x0F000000 145470-63E278 [4F8E08] */ /* compressed kart textures and palettes */ BEGIN_SEG(kart_textures, 0x0F000000) SUBALIGN(0x10) @@ -497,6 +597,16 @@ SECTIONS } END_SEG(kart_textures) + #ifdef VERSION_JP + /* JP: trigTables sit between the kart band and other_textures */ + BEGIN_SEG(trigTables, _buffersSegmentNoloadStart) + { + BUILD_DIR/src/buffers/trig_tables.o(.data); + . = ALIGN(0x10); + } + END_SEG(trigTables) + #endif + /* 0x0F000000: 641F70-724220 */ BEGIN_SEG(other_textures, 0x0F000000) { @@ -505,6 +615,7 @@ SECTIONS } END_SEG(other_textures) + #ifndef VERSION_JP /* 0x802BA370 724220-729A30 [0x5810] */ BEGIN_SEG(trigTables, _buffersSegmentNoloadStart) { @@ -512,6 +623,7 @@ SECTIONS . = ALIGN(0x10); } END_SEG(trigTables) + #endif /* 0x0A000000 729A30-7E684F [BCE20] */ BEGIN_SEG(textures_0a, 0x0A000000) @@ -530,6 +642,7 @@ SECTIONS } END_SEG(textures_0b) + #ifndef VERSION_JP /* TODO: 0x825800 -> 0x8028B230 (0x100) ... 0x828400 -> 0x8028DE30 (0xD0) */ BEGIN_SEG(ceremonyData, 0x0B000000) @@ -545,6 +658,7 @@ SECTIONS . = ALIGN(0x10); } END_SEG(startupLogo) + #endif /* Segment Six Course Data (Displaylists, models, textures, course paths, etc.) */ @@ -644,12 +758,22 @@ SECTIONS BUILD_DIR/data/sound_data/audiobanks.o(.data); } END_SEG(audio_banks) + /* JP's audiobanks blob is 0x80 larger and its sample bank 0x180 larger, so + both of these ROM-space bases move. */ + #ifdef VERSION_JP + BEGIN_SEG(audio_tables, 0x138C0) + #else BEGIN_SEG(audio_tables, 0x13840) + #endif { BUILD_DIR/data/sound_data/audiotables.o(.data); } END_SEG(audio_tables) + #ifdef VERSION_JP + BEGIN_SEG(sequences, 0x25FF00) + #else BEGIN_SEG(sequences, 0x25FD00) + #endif { #ifdef VERSION_EU BUILD_DIR/data/sound_data/sequences_eu.o(.data); diff --git a/src/actors.c b/src/actors.c new file mode 100644 index 0000000000..e69de29bb2 diff --git a/src/actors/trees/render.inc.c b/src/actors/trees/render.inc.c index f7b6cea3ac..a4bbcad3a5 100644 --- a/src/actors/trees/render.inc.c +++ b/src/actors/trees/render.inc.c @@ -173,7 +173,14 @@ void func_80299864(Camera* camera, Mat4 arg1, struct Actor* arg2) { // Based on the TLUT being loaded above, this ought to be be another // tree related DL, presumably one found in a course other than Moo Moo farm // 0x0600FC70 +#ifdef VERSION_JP + /* Segment 6 is per-course, so in US this address is BOTH symbols and the + choice was arbitrary. JP's luigi offsets moved, and the cart follows + the luigi symbol - so that is the one the original source named. */ + gSPDisplayList(gDisplayListHead++, d_course_luigi_raceway_dl_FC70); +#else gSPDisplayList(gDisplayListHead++, d_course_moo_moo_farm_mole_tlut); +#endif } } diff --git a/src/audio/data.h b/src/audio/data.h index 827c952db9..4f26ede625 100644 --- a/src/audio/data.h +++ b/src/audio/data.h @@ -8,7 +8,7 @@ #define AUDIO_LOCK_LOADING 0x19710515 #define NUMAIBUFFERS 3 -#ifdef VERSION_EU +#if defined(VERSION_EU) || defined(VERSION_JP) #define AIBUFFER_LEN (0xaa * 16) #else #define AIBUFFER_LEN (0xa0 * 16) diff --git a/src/audio/external.c b/src/audio/external.c index cf1e55becd..55f6db60f6 100644 --- a/src/audio/external.c +++ b/src/audio/external.c @@ -136,12 +136,12 @@ UNUSED u32 external_unused_u32s[] = { 0xff000000, 0xff000000, 0x00000000 }; char external_unused_string11[] = "FX MIX %d\n"; char external_unused_string12[] = "************** Seq Fadeout ***************\n"; char external_unused_string13[] = "SEQ FADE OUT TIME %d\n"; -#ifdef VERSION_EU +#if defined(VERSION_EU) || defined(VERSION_JP) char external_unused_string_eu_02[] = "************** SE Fadeout ***************\n"; char external_unused_string_eu_03[] = "SE FADE OUT TIME %d\n"; #endif -#ifdef VERSION_EU +#if defined(VERSION_EU) || defined(VERSION_JP) #define AUDIO_LEFT_TYRE FRONT_LEFT #define AUDIO_RIGHT_TYRE FRONT_RIGHT #else @@ -924,7 +924,7 @@ u8 func_800C357C(s32 arg0) { return var_v1; } -#ifdef VERSION_EU +#if defined(VERSION_EU) || defined(VERSION_JP) u8 func_800C357C_eu(s32 arg0, s32 arg1) { u8 var_v1; u8 i; @@ -1093,12 +1093,18 @@ void func_800C3724(void) { } } if (D_801930D0[seqPlayerIndex].unk_041) { -#ifdef VERSION_EU +#if defined(VERSION_EU) || defined(VERSION_JP) if (func_800C357C_eu(-0x10000000, -0x10000000) == 0) { D_801930D0[seqPlayerIndex].unk_041 = 0; return; } #endif +#ifdef VERSION_JP + if (D_801930D0[seqPlayerIndex].unk_040 != 0) { + D_801930D0[seqPlayerIndex].unk_040--; + } else if (gSequencePlayers[seqPlayerIndex].enabled == 0) { + for (j = 0; j < D_801930D0[seqPlayerIndex].unk_041; j++) { +#else if (D_801930D0[seqPlayerIndex].unk_040 != 0) { D_801930D0[seqPlayerIndex].unk_040--; continue; @@ -1109,6 +1115,7 @@ void func_800C3724(void) { } for (j = 0; j < D_801930D0[seqPlayerIndex].unk_041; j++) { +#endif setupOp = (D_801930D0[seqPlayerIndex].unk_02C[j] & 0xF00000) >> 0x14; targetSeqPlayerIndex = (D_801930D0[seqPlayerIndex].unk_02C[j] & 0xF0000) >> 0x10; setupVal2 = (D_801930D0[seqPlayerIndex].unk_02C[j] & 0xFF00) >> 8; @@ -1156,6 +1163,9 @@ void func_800C3724(void) { } D_801930D0[seqPlayerIndex].unk_041 = 0; +#ifdef VERSION_JP + } +#endif } } } @@ -1943,7 +1953,7 @@ void func_800C6108(u8 playerId) { D_800E9EB4[playerId] -= D_800E9DF4[playerId]; } D_800E9EE4[playerId] = D_800E9EB4[playerId] - D_800E9EC4[playerId]; -#ifdef VERSION_EU +#if defined(VERSION_EU) || defined(VERSION_JP) if ((D_800E9EE4[playerId] > 0.5f) || (D_800E9EE4[playerId] < -0.5f)) #else if ((D_800E9EE4[playerId] > 0.5f) || (D_800E9EE4[playerId] < 0.5f)) @@ -1954,7 +1964,7 @@ void func_800C6108(u8 playerId) { } else { D_800E9F7C[playerId].unk_0C = D_800E9EB4[playerId] + D_800E9F34[playerId]; } -#ifdef VERSION_EU +#if defined(VERSION_EU) || defined(VERSION_JP) if (D_800E9F7C[playerId].unk_0C < 0.0f) { D_800E9F7C[playerId].unk_0C = 0.0f; } @@ -2501,7 +2511,7 @@ void func_800C76C0(u8 playerId) { if ((D_800EA104 == 0) && (D_800EA0EC[playerId] == 1)) { func_800C3448(0x100100FF); func_800C3448(0x110100FF); -#ifdef VERSION_EU +#if defined(VERSION_EU) || defined(VERSION_JP) play_sequence2(SEQ_EVENT_RACE_FINISH_FIRST); #else play_sequences(SEQ_EVENT_RACE_FINISH_FIRST, SEQ_MENU_RESULTS_SCREEN_WIN_VS); @@ -2509,7 +2519,7 @@ void func_800C76C0(u8 playerId) { D_800EA104 = 1; } else if ((D_800EA104 == 1) && (D_800EA0EC[playerId] == 1)) { func_800C5278(5U); -#ifndef VERSION_EU +#if !defined(VERSION_EU) && !defined(VERSION_JP) if (func_800C3508(1) != 0x000D) #endif { @@ -2533,7 +2543,7 @@ void func_800C76C0(u8 playerId) { D_800EA104 = 2; } else if ((D_800EA104 == 2) && (D_800EA0EC[playerId] == 1)) { func_800C5278(5U); -#ifndef VERSION_EU +#if !defined(VERSION_EU) && !defined(VERSION_JP) if (func_800C3508(1) != 0x000E) #endif { diff --git a/src/audio/load.c b/src/audio/load.c index 4277e02d99..7ece1b351f 100644 --- a/src/audio/load.c +++ b/src/audio/load.c @@ -795,6 +795,9 @@ void audio_init(void) { #ifdef VERSION_EU D_803B7178 = 20.03042f; gRefreshRate = 50; +#elif defined(VERSION_JP) + D_803B7178 = 16.713f; + gRefreshRate = 60; #else // US switch (osTvType) { case TV_TYPE_PAL: diff --git a/src/audio/playback.c b/src/audio/playback.c index 22c2b6d4dd..475e0b9f20 100644 --- a/src/audio/playback.c +++ b/src/audio/playback.c @@ -231,7 +231,7 @@ void process_notes(void) { } #endif -#ifdef VERSION_EU_V10 +#if defined(VERSION_EU_V10) || defined(VERSION_JP) // Just threw these in here. They are probably wrong place and variables. stubbed_printf("----------------------Double-Error CH: %x %f\n", ¬e, note->parentLayer->seqChannel); stubbed_printf("----------------------Double-Error NT: %x\n", ¬e); diff --git a/src/audio/seqplayer.c b/src/audio/seqplayer.c index ff203d8485..0ced4c1ba4 100644 --- a/src/audio/seqplayer.c +++ b/src/audio/seqplayer.c @@ -24,7 +24,7 @@ char seqplayer_unused_string02[] = "Audio:Track: Warning :SUBTRACK had been stol char seqplayer_unused_string03[] = "SEQID %d,BANKID %d\n"; char seqplayer_unused_string04[] = "ERR:SUBTRACK %d NOT ALLOCATED\n"; char seqplayer_unused_string05[] = "Error:Same List Add\n"; -#ifdef VERSION_EU_V10 +#if defined(VERSION_EU_V10) || defined(VERSION_JP) char seqplayer_unused_string_eu_01[] = "Wait Time out!\n"; #endif char seqplayer_unused_string06[] = "Macro Level Over Error!\n"; @@ -360,9 +360,17 @@ void seq_channel_layer_process_script(struct SequenceChannelLayer* layer) { return; } +#ifdef VERSION_JP if (!layer->continuousNotes) { seq_channel_layer_note_decay(layer); + } else if (layer->note != NULL && layer->note->wantedParentLayer == layer) { + seq_channel_layer_note_decay(layer); } +#else + if (!layer->continuousNotes) { + seq_channel_layer_note_decay(layer); + } +#endif #ifdef VERSION_EU_V10 else { if ((layer->note != 0) && (layer == layer->note->wantedParentLayer)) { diff --git a/src/code_80091440.c b/src/code_80091440.c index 87a888a3e4..91d435e66f 100644 --- a/src/code_80091440.c +++ b/src/code_80091440.c @@ -6,6 +6,7 @@ #include "math_util.h" #include "collision.h" +#ifndef VERSION_JP void func_800914A0(void) { D_80152308 = gPlayerOneCopy->unk_006 + 7; if ((s32) D_8015F6F8 < D_80152308) { @@ -60,3 +61,4 @@ UNUSED void func_800914E0(void) { camera->rot[0] = atan2s(sqrtf((sp38 * sp38) + (sp30 * sp30)), sp34); camera->rot[2] = 0; } +#endif diff --git a/src/cpu_vehicles_camera_path.c b/src/cpu_vehicles_camera_path.c index 042f6642d6..d3674b1459 100644 --- a/src/cpu_vehicles_camera_path.c +++ b/src/cpu_vehicles_camera_path.c @@ -32,10 +32,18 @@ #include "data/path_spawn_metadata.h" #include "math_util_2.h" +#ifdef VERSION_JP +s32 unk_cpu_vehicles_camera_path_pad[14]; +s16 D_801633E0[12]; +#else s32 unk_cpu_vehicles_camera_path_pad[24]; +#endif Collision D_80162E70; s16 D_80162EB0; // Possibly a float. s16 D_80162EB2; // possibly [3] +#ifdef VERSION_JP +s16 gTrainSmokeTimer; +#endif CPUBehaviour* gCoursesCPUBehaviour[NUM_COURSES - 1]; @@ -49,9 +57,14 @@ s16 D_80162F50[30]; s32 D_80162F90[4]; Vec3f gOffsetPosition; +#ifdef VERSION_JP +s16 gFerrySmokeTimer; +#endif Vec3f D_80162FB0; Vec3f D_80162FC0; +#ifndef VERSION_JP s16 gTrainSmokeTimer; +#endif s16 sSomeNearestPathPoint; s16 D_80162FD0; f32 gCourseCompletionPercentByRank[NUM_PLAYERS]; @@ -61,6 +74,9 @@ to be 8 entries long (enough for each player). But some are 10 or even 12 long. Its plausible that this is just some decompilation artifact? Or maybe at some point in development they had plans for more players? */ +#ifdef VERSION_JP +s16 sVehicleSoundRenderCounter; +#endif s16 D_80162FF8[12]; s16 D_80163010[12]; f32 cpu_TargetSpeed[10]; @@ -71,13 +87,17 @@ bool gIsPlayerInCurve[10]; u16 gCurrentNearestPathPoint; s16 gIsPlayerNewPathPoint; s16 D_801630E8[10]; +#ifndef VERSION_JP s16 gFerrySmokeTimer; +#endif s32 D_80163100[10]; s32 D_80163128[10]; s32 D_80163150[10]; f32 gPreviousPlayerAiOffsetX[10]; f32 gPreviousPlayerAiOffsetZ[10]; +#ifndef VERSION_JP s16 sVehicleSoundRenderCounter; +#endif s32 D_801631CC; TrackPathPoint* gCurrentTrackLeftPath; TrackPathPoint* gCurrentTrackRightPath; @@ -110,7 +130,9 @@ s16 gCurrentPlayerLookAhead[12]; s16 D_80163398[12]; s16 D_801633B0[12]; s16 gPositionSwapTimer[12]; +#ifndef VERSION_JP s16 D_801633E0[12]; +#endif s16 D_801633F8[12]; s16 D_80163410[4]; f32 D_80163418[4]; @@ -131,6 +153,9 @@ s16 cpu_enteringPathIntersection[12]; s16 cpu_exitingPathIntersection[12]; s16 D_801634C0[12]; s16 bStopAICrossing[10]; +#ifdef VERSION_JP +s32 D_80163DD8[4]; +#endif s16 D_801634EC; s32 D_801634F0; s32 D_801634F4; @@ -145,10 +170,17 @@ VehicleStuff gBoxTruckList[NUM_RACE_BOX_TRUCKS]; VehicleStuff gSchoolBusList[NUM_RACE_SCHOOL_BUSES]; VehicleStuff gTankerTruckList[NUM_RACE_TANKER_TRUCKS]; VehicleStuff gCarList[NUM_RACE_CARS]; +#ifndef VERSION_JP s32 D_80163DD8[4]; +#endif BombKart gBombKarts[NUM_BOMB_KARTS_MAX]; Collision D_80164038[NUM_BOMB_KARTS_MAX]; struct unexpiredActors gUnexpiredActorsList[8]; +#ifdef VERSION_JP +/* JP declares this BEFORE cpu_ItemStrategy; the array's 8-byte alignment then + supplies the 4 bytes of padding after it. */ +s32 D_8016448C; +#endif CpuItemStrategyData cpu_ItemStrategy[NUM_PLAYERS]; s16 D_80164358; s16 D_8016435A; @@ -163,11 +195,23 @@ u16 gSelectedPathCount; u16 gNearestPathPointByPlayerId[12]; s32 gNumPathPointsTraversed[10]; s16 gGetPlayerByCharacterId[10]; +#ifndef VERSION_JP s32 D_8016448C; +#endif TrackPathPoint* gCurrentTrackPath; f32 D_80164498[4]; +#ifdef VERSION_JP +s32 D_801645D0[4]; +s32 D_801645E8[4]; +#endif f32 gLapCompletionPercentByPlayerId[10]; // D_801644A8 +#ifdef VERSION_JP +s32 D_80164608[4]; +#endif f32 gCourseCompletionPercentByPlayerId[10]; // D_801644D0 +#ifdef VERSION_JP +s32 D_80164628[4]; +#endif s16 bInMultiPathSection[12]; f32 gPlayerPathY[10]; s16 D_80164538[12]; @@ -179,13 +223,21 @@ s16* gPathExpectedRotation[4]; s16* gTrackConsecutiveCurveCounts[4]; u16 gPathIndexByPlayerId[12]; // D_801645B0 u16 gPathCountByPathIndex[4]; // D_801645C8 +#ifndef VERSION_JP s32 D_801645D0[4]; +#endif s16* gCurrentTrackConsecutiveCurveCountsPath; +#ifndef VERSION_JP s32 D_801645E8[4]; +#endif f32 D_801645F8[4]; +#ifndef VERSION_JP s32 D_80164608[4]; +#endif f32 D_80164618[4]; +#ifndef VERSION_JP s32 D_80164628[4]; +#endif f32 D_80164638[4]; f32 D_80164648[4]; f32 D_80164658[4]; @@ -209,8 +261,10 @@ s32 D_801646BC; s16 D_801646C0[4]; u32 D_801646C8; u16 D_801646CC; + UnkStruct_46D0 D_801646D0[4]; + // Strings, presented by google translate! // Note that these are EUC-JP encoded, see: // https://en.wikipedia.org/wiki/Extended_Unix_Code#EUC-JP @@ -221,13 +275,19 @@ char* D_800EB710 = "ゴール直後の強制ソート\n"; char* D_800EB728 = "2PGPで片方がゴール直後の強制ソート\n"; // rank calculation error char* D_800EB74C = "順位計算エラー!! (num %d) (rank %d) (e_rank %d)\n"; +#ifndef VERSION_JP // Bypass switching error!!!(num %d org_bipas %d bipas %d) char* D_800EB780 = "バイパス切り替え エラー!!!(num %d org_bipas %d bipas %d)\n"; +#endif char* D_800EB7BC = "(%d) rap %3d rate_count_F %10.2f rap_count_F %10.2f area %5d \n"; +#ifdef VERSION_JP +char* D_800EB800 = "MAP 4 enemy bipas No. change (%d: line %d)\n"; +#else // Enter the maze! enemy %d (%d --> %d) char* D_800EB800 = "迷路に突入! enemy %d (%d --> %d)\n"; // Out of the maze! enemy %d (%d --> %d) char* D_800EB824 = "迷路から出た! enemy %d (%d --> %d)\n"; +#endif char* D_800EB84C = "enemy voice set (%d slip_flag %x weapon %x)\n"; // Spin Voice! ! (%d , name %d) char* D_800EB87C = "スピンヴォイス!!(%d , name %d)\n"; @@ -250,10 +310,19 @@ char* D_800EB9DC = "get_oga_area_sub_BP() ... エリアが見つからないッ // Status: (%d, %d, %d) char* D_800EBA20 = " 状況: (%d, %d, %d) \n"; char* D_800EBA38 = "<%d> (%d, %d, %d) [%d] lng %f\n"; +#ifdef VERSION_JP +// Choco Mountain misstep!!! (area %d, y %7.2f) +char* D_800EBA3C = "チョコマウンテン踏み外し!!! (area %d, y %7.2f)\n"; +#endif // Wario Stadium Jump failed! ! ! (area %d, y %7.2f) char* D_800EBA58 = "ワリオスタジアム ジャンプ失敗!!! (area %d, y %7.2f)\n"; +#ifdef VERSION_JP +char* D_800EBA94 = "水に落ちた!! センターラインに強制移動しました (num %d: area %d : kart %d) (%d,%d,%d)\n"; +#else // I fell in the water! ! Forced to centerline (num %d: area %d ) (%d,%d,%d) char* D_800EBA94 = "水に落ちた!! センターラインに強制移動しました (num %d: area %d ) (%d,%d,%d)\n"; +#endif +#ifndef VERSION_JP // Course match! ! (Slacking: with bump) Forced move to center line (num %d: area %d ==>%d) (group %d) (%d,%d,%d) char* D_800EBAE4 = "こーすあうと!!(手抜き中:バンプ有り) センターラインに強制移動しました (num %d: area %d ==>%d) " "(group %d) (%d,%d,%d)\n"; @@ -262,6 +331,7 @@ char* D_800EBB60 = "こーすあうと!!(手抜き中:バンプ無し) "(group %d) (%d,%d,%d)\n"; // Course match! ! ! Recalculated area (num %d: area %d ==>%d) char* D_800EBBDC = "こーすあうと!!! エリアを再計算しました (num %d: area %d ==>%d)\n"; +#endif // Direct BOM(%d) (%7.2f, %7.2f, %7.2f) char* D_800EBC24 = "直接指定のBOM(%d) (%7.2f, %7.2f, %7.2f) \n"; char* D_800EBC50 = "BOM HIT CHECK\n"; @@ -548,7 +618,9 @@ char* D_800ECF30 = "道路に到着\n"; char* D_800ECF3C = "4位の人終了\n"; // OGA commendation move end char* D_800ECF4C = "OGA 表彰 move 終了\n"; +#ifndef VERSION_JP char* D_800ECF60 = "OGAWA DEBUG DRAW\n"; +#endif // utils function path, cpu, vehicle @@ -1099,6 +1171,7 @@ void set_current_path(s32 pathIndex) { gSelectedPathCount = gPathCountByPathIndex[pathIndex]; } +#ifndef VERSION_JP s32 update_player_path_selection(s32 payerId, s32 pathIndex) { f32 posX; f32 posY; @@ -1122,7 +1195,24 @@ s32 update_player_path_selection(s32 payerId, s32 pathIndex) { if (stackPadding) {}; return pathIndex; } +#endif + +#ifdef VERSION_JP +void update_player_completion(s32 playerId) { + s32 lap; + u16 pathIndex = gPathIndexByPlayerId[playerId]; + + // calculate completion in percent + gLapCompletionPercentByPlayerId[playerId] = + (f32) gNearestPathPointByPlayerId[playerId] / (f32) gPathCountByPathIndex[pathIndex]; + lap = gLapCountByPlayerId[playerId]; + // arbitrary score calculation + gNumPathPointsTraversed[playerId] = (lap * gPathCountByPathIndex[0]) + gNearestPathPointByPlayerId[playerId]; + gCourseCompletionPercentByPlayerId[playerId] = + ((f32) gNearestPathPointByPlayerId[playerId] / (f32) gPathCountByPathIndex[pathIndex]) + lap; +} +#else void update_player_completion(s32 playerId) { f32 percent; @@ -1136,7 +1226,9 @@ void update_player_completion(s32 playerId) { gCourseCompletionPercentByPlayerId[playerId] = percent; gCourseCompletionPercentByPlayerId[playerId] += gLapCountByPlayerId[playerId]; } +#endif +#ifndef VERSION_JP void yoshi_valley_cpu_path(s32 playerId) { s16 previous; @@ -1198,6 +1290,7 @@ void update_cpu_path_completion(s32 playerId, Player* player) { cpu_exitingPathIntersection[playerId] = 0; } } +#endif /** * Helps calculate time since player last touched finishline. @@ -1293,12 +1386,14 @@ void update_player_path_completion(s32 playerId, Player* player) { } } gPreviousPlayerZ[playerId] = playerZ; +#ifndef VERSION_JP if ((gCurrentCourseId == COURSE_YOSHI_VALLEY) && (gIsPlayerNewPathPoint == true)) { yoshi_valley_cpu_path(playerId); if (((player->type & PLAYER_HUMAN) == 0) || (player->type & PLAYER_CPU)) { update_cpu_path_completion(playerId, player); } } +#endif if ((player->type & PLAYER_HUMAN) && !(player->type & PLAYER_CPU)) { detect_wrong_player_direction(playerId, player); if ((gModeSelection == GRAND_PRIX) && (gPlayerCount == 2) && (playerId == 0)) { @@ -1309,6 +1404,15 @@ void update_player_path_completion(s32 playerId, Player* player) { } } } else { +#ifdef VERSION_JP + // JP randomizes the CPU path on Yoshi Valley at the finish line; the US + // revision replaced this with the yoshi_valley_cpu_path machinery. + if ((gCrossedFinishLine[playerId] == 1) && (gLapCountByPlayerId[playerId] >= 0) && + (gCurrentCourseId == COURSE_YOSHI_VALLEY)) { + gPlayerPathIndex = random_int(4); + gPathIndexByPlayerId[playerId] = gPlayerPathIndex; + } +#endif //???? } update_player_position_factor(playerId, sSomeNearestPathPoint, gPlayerPathIndex); @@ -1374,7 +1478,11 @@ void play_cpu_sound_effect(s32 arg0, Player* player) { void update_player_timer_sound(s32 playerId, UNUSED Player* unused) { s32 otherPlayerId; +#ifdef VERSION_JP + if (gPositionSwapTimer[playerId] >= 0xC9) { +#else if (gPositionSwapTimer[playerId] >= 0x65) { +#endif for (otherPlayerId = 0; otherPlayerId < gPlayerCount; otherPlayerId++) { // detect swap of positions if ((gGPCurrentRaceRankByPlayerId[playerId] < gGPCurrentRaceRankByPlayerId[otherPlayerId]) && @@ -1398,8 +1506,15 @@ void update_player_timer_sound(s32 playerId, UNUSED Player* unused) { void update_player(s32 playerId) { UNUSED s32 pad[14]; +#ifdef VERSION_JP + /* JP declares these in the opposite order, which moves var_a0_2's slot to 0x94. */ + s16 prevSteering; + s16 newAngle; + s16 var_a0_2; +#else s16 var_a0_2; s16 newAngle; +#endif u16 pathIndex; f32 distX; @@ -1430,6 +1545,7 @@ void update_player(s32 playerId) { gLapCompletionPercentByPlayerId[playerId] = -1000.0f; return; } +#ifndef VERSION_JP D_801633E0[playerId] = 0; // clang-format off if (player->pos[0] < gCourseMinX) { D_801633E0[playerId] = 1; } @@ -1437,6 +1553,7 @@ void update_player(s32 playerId) { if (player->pos[2] < gCourseMinZ) { D_801633E0[playerId] = 3; } if (gCourseMaxZ < player->pos[2]) { D_801633E0[playerId] = 4; } // clang-format on +#endif if (!(player->lakituProps & HELD_BY_LAKITU) && !(player->lakituProps & LAKITU_SCENE)) { gPlayerPathIndex = gPathIndexByPlayerId[playerId]; @@ -1471,7 +1588,11 @@ void update_player(s32 playerId) { set_places(); } if (player->type & PLAYER_CPU) { +#ifdef VERSION_JP + if (gCurrentCourseId != COURSE_AWARD_CEREMONY) { +#else if ((gIsPlayerNewPathPoint == true) && (gCurrentCourseId != COURSE_AWARD_CEREMONY)) { +#endif cpu_behaviour(playerId); } // one update it try to use an item, the other it doesn't @@ -1545,7 +1666,9 @@ void update_player(s32 playerId) { } else { gPreviousCpuTargetSpeed[playerId] = GET_COURSE_cpu_NormalTargetSpeed(gCCSelection); } +#ifndef VERSION_JP check_ai_crossing_distance(playerId); +#endif cpu_track_position_factor(playerId); determine_ideal_cpu_position_offset(playerId, gCurrentNearestPathPoint); distX = gOffsetPosition[0] - player->pos[0]; @@ -1606,6 +1729,9 @@ void update_player(s32 playerId) { if (steeringSensitivity > 5) { D_801630E8[playerId] = 0; player->effects &= ~DRIFTING_EFFECT; +#ifdef VERSION_JP + if (steeringSensitivity) {} // fake match +#endif } break; case 1: @@ -1620,7 +1746,12 @@ void update_player(s32 playerId) { } if ((playerId & 1) != (gIncrementUpdatePlayer & 1)) { +#ifdef VERSION_JP + prevSteering = gPreviousAngleSteering[playerId]; + apply_cpu_turn(player, prevSteering); +#else apply_cpu_turn(player, gPreviousAngleSteering[playerId]); +#endif regulate_cpu_speed(playerId, gPreviousCpuTargetSpeed[playerId], player); return; } @@ -1749,7 +1880,9 @@ void update_player(s32 playerId) { gCurrentCpuTargetSpeed = cpu_TargetSpeed[playerId]; player->effects &= ~CPU_FAST_EFFECT; gPreviousCpuTargetSpeed[playerId] = gCurrentCpuTargetSpeed; +#ifndef VERSION_JP check_ai_crossing_distance(playerId); +#endif regulate_cpu_speed(playerId, gCurrentCpuTargetSpeed, player); } } @@ -3889,6 +4022,11 @@ void cpu_use_item_strategy(s32 playerId) { TrackPathPoint* pathPoint; bool isValidBanana1; bool isValidBanana2; +#ifdef VERSION_JP + /* JP's frame is 8 bytes larger; the space is never addressed through sp, + so it is an unreferenced local rather than any change to the code. */ + UNUSED s32 cpu_use_item_pad_jp[2]; +#endif // Only used in this function #define BANANA_ACTOR(actor) ((struct BananaActor*)(actor)) @@ -3951,7 +4089,12 @@ void cpu_use_item_strategy(s32 playerId) { } } else if (cpuStrategy->branch == CPU_STRATEGY_ITEM_BANANA) { cpuStrategy->actorIndex = use_banana_item(player); +#ifdef VERSION_JP + if ((cpuStrategy->actorIndex >= 0) && (cpuStrategy->actorIndex < 100) && + (gTrackPositionFactor[playerId] > -1.0) && (gTrackPositionFactor[playerId] < 1.0)) { +#else if ((cpuStrategy->actorIndex >= 0) && (cpuStrategy->actorIndex < 100)) { +#endif player->triggers |= DRAG_ITEM_EFFECT; cpuStrategy->branch = CPU_STRATEGY_HOLD_BANANA; cpuStrategy->timer = 0; @@ -4587,6 +4730,7 @@ void render_bomb_karts_wrap(s32 cameraId) { } UNUSED void func_8001C42C(void) { +#ifndef VERSION_JP if (D_800DDB20 == 0) { if ((gControllerThree->buttonPressed & L_TRIG) != 0) { D_800DDB20 = 1; @@ -4599,4 +4743,5 @@ UNUSED void func_8001C42C(void) { gSPDisplayList(gDisplayListHead++, D_0D0076F8); func_80057CE4(); } +#endif } diff --git a/src/cpu_vehicles_camera_path/cpu_item_strategy.inc.c b/src/cpu_vehicles_camera_path/cpu_item_strategy.inc.c index 1da40aa367..e8c89575eb 100644 --- a/src/cpu_vehicles_camera_path/cpu_item_strategy.inc.c +++ b/src/cpu_vehicles_camera_path/cpu_item_strategy.inc.c @@ -36,10 +36,20 @@ void cpu_decisions_branch_item(UNUSED s32 playerId, s16* branch, s32 itemId) { case ITEM_MUSHROOM: value = CPU_STRATEGY_ITEM_MUSHROOM; break; +#ifdef VERSION_JP + // JP also gives CPUs a strategy for double/triple mushrooms case ITEM_DOUBLE_MUSHROOM: + value = CPU_STRATEGY_ITEM_DOUBLE_MUSHROOM; break; case ITEM_TRIPLE_MUSHROOM: + value = CPU_STRATEGY_ITEM_TRIPLE_MUSHROOM; break; +#else + case ITEM_DOUBLE_MUSHROOM: + break; + case ITEM_TRIPLE_MUSHROOM: + break; +#endif case ITEM_SUPER_MUSHROOM: break; } diff --git a/src/cpu_vehicles_camera_path/cpu_speed_control.inc.c b/src/cpu_vehicles_camera_path/cpu_speed_control.inc.c index 217312aa3d..818addb835 100644 --- a/src/cpu_vehicles_camera_path/cpu_speed_control.inc.c +++ b/src/cpu_vehicles_camera_path/cpu_speed_control.inc.c @@ -133,94 +133,114 @@ void regulate_cpu_speed(s32 playerId, f32 targetSpeed, Player* player) { s32 var_a1; speed = player->speed; - if (!(player->effects & BANANA_SPINOUT_EFFECT) && !(player->effects & DRIVING_SPINOUT_EFFECT) && - !(player->effects & LIGHTNING_STRIKE_EFFECT) && !(player->triggers & VERTICAL_TUMBLE_TRIGGER) && - !(player->triggers & HIT_BY_STAR_TRIGGER) && !(player->triggers & HIGH_TUMBLE_TRIGGER) && - !(player->triggers & LOW_TUMBLE_TRIGGER)) { - if (gCurrentCourseId == COURSE_AWARD_CEREMONY) { - func_80007FA4(playerId, player, speed); - } else if ((bStopAICrossing[playerId] == true) && !(player->effects & (STAR_EFFECT | BOO_EFFECT))) { - player_decelerate_alternative(player, 10.0f); - if (player->currentSpeed == 0.0) { - player->velocity[0] = 0.0f; - player->velocity[2] = 0.0f; + + if (player->effects & 0x80 || player->effects & 0x40 || player->effects & 0x20000) { + return; + } + + if (player->triggers & 0x400000 || player->triggers & 0x01000000) { + return; + } + + if (player->triggers & 2 || player->triggers & 4) { + return; + } + + if (gCurrentCourseId == COURSE_AWARD_CEREMONY) { + func_80007FA4(playerId, player, speed); + return; + } + +#ifdef VERSION_JP + check_ai_crossing_distance(playerId); +#endif + + if ((bStopAICrossing[playerId] == true) && !(player->effects & (STAR_EFFECT | BOO_EFFECT))) { +#ifdef VERSION_JP + player->effects &= ~CPU_FAST_EFFECT; +#endif + player_decelerate_alternative(player, 10.0f); + if (player->currentSpeed == 0.0) { + player->velocity[0] = 0.0f; + player->velocity[2] = 0.0f; + } + } else { + var_f0 = 3.3333333f; + switch (gCCSelection) { /* irregular */ + case CC_100: + case CC_EXTRA: + break; + case CC_50: + var_f0 = 2.5f; + break; + case CC_150: + var_f0 = 3.75f; + break; + } + if (speed < var_f0) { +#ifndef VERSION_JP + player->effects &= ~CPU_FAST_EFFECT; +#endif + player_accelerate_alternative(player); + } else if (player->type & PLAYER_CINEMATIC_MODE) { + if (speed < targetSpeed) { + player->effects &= ~CPU_FAST_EFFECT; + player_accelerate_alternative(player); + } else { + player->effects &= ~CPU_FAST_EFFECT; + player_decelerate_alternative(player, 1.0f); + } + } else if ((D_801631E0[playerId] == true) && (D_80163330[playerId] != 1)) { + if (func_800088D8(playerId, gLapCountByPlayerId[playerId], gGPCurrentRaceRankByPlayerIdDup[playerId]) == + 1) { + player->effects |= CPU_FAST_EFFECT; + player_accelerate_alternative(player); + } else { + player->effects &= ~CPU_FAST_EFFECT; + player_decelerate_alternative(player, 1.0f); } } else { - var_f0 = 3.3333333f; - switch (gCCSelection) { /* irregular */ - case CC_100: - case CC_EXTRA: + var_a1 = 1; + switch (gSpeedCPUBehaviour[playerId]) { /* switch 1; irregular */ + case SPEED_CPU_BEHAVIOUR_FAST: /* switch 1 */ + player->effects &= ~CPU_FAST_EFFECT; + player_accelerate_alternative(player); break; - case CC_50: - var_f0 = 2.5f; + case SPEED_CPU_BEHAVIOUR_MAX: /* switch 1 */ + player->effects |= CPU_FAST_EFFECT; + player_accelerate_alternative(player); + break; + case SPEED_CPU_BEHAVIOUR_SLOW: /* switch 1 */ + if (((speed / 18.0f) * 216.0f) > 20.0f) { + targetSpeed = 1.6666666f; + } + var_a1 = 0; break; - case CC_150: - var_f0 = 3.75f; + case SPEED_CPU_BEHAVIOUR_NORMAL: /* switch 1 */ + default: /* switch 1 */ + var_a1 = 0; break; } - if (speed < var_f0) { - player->effects &= ~CPU_FAST_EFFECT; - player_accelerate_alternative(player); - } else if (player->type & PLAYER_CINEMATIC_MODE) { + if (var_a1 != 1) { if (speed < targetSpeed) { - player->effects &= ~CPU_FAST_EFFECT; - player_accelerate_alternative(player); - } else { - player->effects &= ~CPU_FAST_EFFECT; - player_decelerate_alternative(player, 1.0f); - } - } else if ((D_801631E0[playerId] == true) && (D_80163330[playerId] != 1)) { - if (func_800088D8(playerId, gLapCountByPlayerId[playerId], gGPCurrentRaceRankByPlayerIdDup[playerId]) == - 1) { - player->effects |= CPU_FAST_EFFECT; - player_accelerate_alternative(player); - } else { - player->effects &= ~CPU_FAST_EFFECT; - player_decelerate_alternative(player, 1.0f); - } - } else { - var_a1 = 1; - switch (gSpeedCPUBehaviour[playerId]) { /* switch 1; irregular */ - case SPEED_CPU_BEHAVIOUR_FAST: /* switch 1 */ - player->effects &= ~CPU_FAST_EFFECT; + if ((gDemoMode == 1) && (gCurrentCourseId != COURSE_AWARD_CEREMONY)) { player_accelerate_alternative(player); - break; - case SPEED_CPU_BEHAVIOUR_MAX: /* switch 1 */ + } else if (D_80163330[playerId] == 1) { + func_80007D04(playerId, player); + } else if (func_800088D8(playerId, gLapCountByPlayerId[playerId], + gGPCurrentRaceRankByPlayerIdDup[playerId]) == true) { player->effects |= CPU_FAST_EFFECT; player_accelerate_alternative(player); - break; - case SPEED_CPU_BEHAVIOUR_SLOW: /* switch 1 */ - if (((speed / 18.0f) * 216.0f) > 20.0f) { - targetSpeed = 1.6666666f; - } - var_a1 = 0; - break; - case SPEED_CPU_BEHAVIOUR_NORMAL: /* switch 1 */ - default: /* switch 1 */ - var_a1 = 0; - break; - } - if (var_a1 != 1) { - if (speed < targetSpeed) { - if ((gDemoMode == 1) && (gCurrentCourseId != COURSE_AWARD_CEREMONY)) { - player_accelerate_alternative(player); - } else if (D_80163330[playerId] == 1) { - func_80007D04(playerId, player); - } else if (func_800088D8(playerId, gLapCountByPlayerId[playerId], - gGPCurrentRaceRankByPlayerIdDup[playerId]) == true) { - player->effects |= CPU_FAST_EFFECT; - player_accelerate_alternative(player); - } else { - player->effects &= ~CPU_FAST_EFFECT; - player_decelerate_alternative(player, 1.0f); - } } else { player->effects &= ~CPU_FAST_EFFECT; - if (targetSpeed > 1.0f) { - player_decelerate_alternative(player, 2.0f); - } else { - player_decelerate_alternative(player, 5.0f); - } + player_decelerate_alternative(player, 1.0f); + } + } else { + player->effects &= ~CPU_FAST_EFFECT; + if (targetSpeed > 1.0f) { + player_decelerate_alternative(player, 2.0f); + } else { + player_decelerate_alternative(player, 5.0f); } } } diff --git a/src/cpu_vehicles_camera_path/path_utils.inc.c b/src/cpu_vehicles_camera_path/path_utils.inc.c index 8ca802bc1a..4bd63329e1 100644 --- a/src/cpu_vehicles_camera_path/path_utils.inc.c +++ b/src/cpu_vehicles_camera_path/path_utils.inc.c @@ -338,6 +338,51 @@ s16 update_path_index_with_track(f32 posX, f32 posY, f32 posZ, s16 pathPointInde return nearestPathPointIndex; } +#ifdef VERSION_JP +/** + * Finds the path point nearest to (posX, posY, posZ), seeded with the distance + * to pathPointIndex itself so it always returns a valid index. The US revision + * replaced its callers with the update_path_index recovery chains. + * Looks 3 path behind and 6 path ahead of pathPointIndex + **/ +s16 find_nearest_path_point(f32 posX, f32 posY, f32 posZ, s16 pathPointIndex, s32 pathIndex) { + s16 nearestPathPointIndex; + s16 searchIndex; + s16 considerIndex; + s32 pathPathPointCount; + f32 x_dist; + f32 y_dist; + f32 z_dist; + f32 minimumDistance; + f32 squaredDistance; + TrackPathPoint* pathPathPoints; + TrackPathPoint* considerPathPoint; + + nearestPathPointIndex = pathPointIndex; + pathPathPointCount = gPathCountByPathIndex[pathIndex]; + pathPathPoints = gTrackPaths[pathIndex]; + considerIndex = (pathPointIndex + pathPathPointCount) % pathPathPointCount; + considerPathPoint = &pathPathPoints[considerIndex]; + x_dist = considerPathPoint->posX - posX; + y_dist = considerPathPoint->posY - posY; + z_dist = considerPathPoint->posZ - posZ; + minimumDistance = (x_dist * x_dist) + (y_dist * y_dist) + (z_dist * z_dist); + for (searchIndex = pathPointIndex - 3; searchIndex < pathPointIndex + 7; searchIndex++) { + considerIndex = (searchIndex + pathPathPointCount) % pathPathPointCount; + considerPathPoint = &pathPathPoints[considerIndex]; + x_dist = considerPathPoint->posX - posX; + y_dist = considerPathPoint->posY - posY; + z_dist = considerPathPoint->posZ - posZ; + squaredDistance = (x_dist * x_dist) + (y_dist * y_dist) + (z_dist * z_dist); + if (squaredDistance < minimumDistance) { + minimumDistance = squaredDistance; + nearestPathPointIndex = considerIndex; + } + } + return nearestPathPointIndex; +} +#endif + /** * Tries to find the path point nearest to (posX, posY, posZ) * Only considers path within 400 units of (posX, posY, posZ) @@ -392,6 +437,29 @@ s16 update_path_index(f32 posX, f32 posY, f32 posZ, s16 pathPointIndex, s32 path return nearestPathPointIndex; } +#ifdef VERSION_JP +void tweak_path_index_wario_stadium(f32 posX, f32 posY, f32 posZ, s16* pathPointIndex, UNUSED s32 arg4) { + s16 var_v0; + + var_v0 = *pathPointIndex; + // JP also rescues CPUs that fall short of Choco Mountain's canyon jump (above 50cc) + switch (gCurrentCourseId) { + case COURSE_CHOCO_MOUNTAIN: + if (gCCSelection > 0) { + if ((var_v0 >= 0x1D7) && (var_v0 < 0x206) && (posY < 10.0f)) { + var_v0 = func_8000BD94(posX, posY, posZ, 0); + } + } + break; + case COURSE_WARIO_STADIUM: + if ((var_v0 >= 0x475) && (var_v0 < 0x480) && (posY < 0.0f)) { + var_v0 = 0x0398; + } + break; + } + *pathPointIndex = var_v0; +} +#else void tweak_path_index_wario_stadium(UNUSED f32 posX, f32 posY, UNUSED f32 posZ, s16* pathPointIndex, UNUSED s32 arg4) { s16 var_v0; @@ -401,6 +469,7 @@ void tweak_path_index_wario_stadium(UNUSED f32 posX, f32 posY, UNUSED f32 posZ, } *pathPointIndex = var_v0; } +#endif void adjust_path_at_start_line(UNUSED f32 posX, UNUSED f32 posY, f32 posZ, s16* pathPointIndex, s32 pathIndex) { s16 pathPoint; @@ -442,6 +511,36 @@ s16 update_path_index_track_section(f32 posX, f32 posY, f32 posZ, Player* player * @param pathIndex Current track path index * @return New pathPoint index or -1 if invalid */ +#ifdef VERSION_JP +s16 update_player_path(f32 posX, f32 posY, f32 posZ, s16 pathPointIndex, Player* player, s32 playerId, s32 pathIndex) { + s16 newPathPoint; + TrackPathPoint* temp_v1; + + // Human player handling (non-AI controlled) + if ((player->type & PLAYER_HUMAN) && !(player->type & PLAYER_CPU)) { + newPathPoint = update_path_index_with_track(posX, posY, posZ, pathPointIndex, pathIndex, + (u16) get_track_section_id(player->collision.meshIndexZX)); + if (newPathPoint == -1) { + newPathPoint = update_path_index_track_section(posX, posY, posZ, player, playerId, &pathIndex); + } + } else { // AI or special case player handling + if (D_801631E0[playerId] == true) { + if (player->lakituProps & LAKITU_RETRIEVAL) { + temp_v1 = &gTrackPaths[pathIndex][pathPointIndex]; + player->pos[0] = (f32) temp_v1->posX; + player->pos[1] = (f32) temp_v1->posY; + player->pos[2] = (f32) temp_v1->posZ; + player->lakituProps &= ~LAKITU_RETRIEVAL; + return pathPointIndex; + } + } + newPathPoint = find_nearest_path_point(posX, posY, posZ, pathPointIndex, pathIndex); + tweak_path_index_wario_stadium(posX, posY, posZ, &newPathPoint, pathIndex); + } + adjust_path_at_start_line(posX, posY, posZ, &newPathPoint, pathIndex); + return newPathPoint; +} +#else s16 update_player_path(f32 posX, f32 posY, f32 posZ, s16 pathPointIndex, Player* player, s32 playerId, s32 pathIndex) { s16 newPathPoint; UNUSED s16 stackPadding0; @@ -509,6 +608,8 @@ s16 update_player_path(f32 posX, f32 posY, f32 posZ, s16 pathPointIndex, Player* return newPathPoint; } +#endif + s16 find_closest_vehicles_path_point(f32 xPos, UNUSED f32 yPos, f32 zPos, s16 pathPointIndex) { f32 xdiff; f32 zdiff; @@ -542,6 +643,7 @@ s16 find_closest_vehicles_path_point(f32 xPos, UNUSED f32 yPos, f32 zPos, s16 pa return minimumIndex; } +#ifndef VERSION_JP s16 func_8000D24C(f32 posX, f32 posY, f32 posZ, s32* pathIndex) { UNUSED s32 pad; Collision sp24; @@ -549,7 +651,21 @@ s16 func_8000D24C(f32 posX, f32 posY, f32 posZ, s32* pathIndex) { check_bounding_collision(&sp24, 10.0f, posX, posY, posZ); return find_closest_path_point_track_section(posX, posY, posZ, get_track_section_id(sp24.meshIndexZX), pathIndex); } +#endif + +#ifdef VERSION_JP +s16 func_8000D2B4(f32 posX, f32 posY, f32 posZ, s16 pathPointIndex, s32 pathIndex) { + s16 pathPoint; + + pathPoint = find_nearest_path_point(posX, posY, posZ, pathPointIndex, pathIndex); + adjust_path_at_start_line(posX, posY, posZ, &pathPoint, pathIndex); + return pathPoint; +} +s16 func_8000D33C(f32 posX, f32 posY, f32 posZ, s16 pathPointIndex, s32 pathIndex) { + return find_nearest_path_point(posX, posY, posZ, pathPointIndex, pathIndex); +} +#else s16 func_8000D2B4(f32 posX, f32 posY, f32 posZ, s16 pathPointIndex, s32 pathIndex) { s16 pathPoint; @@ -570,6 +686,7 @@ s16 func_8000D33C(f32 posX, f32 posY, f32 posZ, s16 pathPointIndex, s32 pathInde } return pathPoint; } +#endif f32 cpu_track_position_factor(s32 playerId) { TrackPositionFactorInstruction* temp_v0; diff --git a/src/data/some_data.c b/src/data/some_data.c index 372d255044..299b70dcfd 100644 --- a/src/data/some_data.c +++ b/src/data/some_data.c @@ -182,7 +182,11 @@ Vtx gBalloonVertexPlane2[] = { }; u8 D_800E52D0[] = { +#ifdef VERSION_JP +#include "assets/onomatopoeia/gTLUTOnomatopoeia.jp.inc.c" +#else #include "assets/onomatopoeia/gTLUTOnomatopoeia.inc.c" +#endif }; u8* gCourseOutlineTextures[] = { diff --git a/src/data/textures.c b/src/data/textures.c index 647988d164..75ff0e034c 100644 --- a/src/data/textures.c +++ b/src/data/textures.c @@ -1241,6 +1241,16 @@ MenuTexture D_020015A4[2] = { * @brief MenuTexture of select record ? * */ +#ifdef VERSION_JP +/* The JP text graphics are different widths, so these are placed differently. */ +MenuTexture D_020015CC[5] = { + { 3, gTextureSelectRecord, 52, 10, 83, 74, 0x359, 0 }, + { 3, gTextureTextEnd, 32, 10, 194, 74, 0x1f8, 0 }, + { 3, gTextureTextErase, 20, 10, 100, 204, 0x160, 0 }, + { 3, gTextureTextQuit, 32, 10, 194, 204, 0x1db, 0 }, + { 0, NULL, 0, 0, 0, 0, 0, 0 }, +}; +#else MenuTexture D_020015CC[5] = { { 3, gTextureSelectRecord, 68, 10, 75, 74, 0x378, 0 }, { 3, gTextureTextEnd, 20, 10, 200, 74, 0x12f, 0 }, @@ -1248,20 +1258,39 @@ MenuTexture D_020015CC[5] = { { 3, gTextureTextQuit, 24, 10, 198, 204, 0x149, 0 }, { 0, NULL, 0, 0, 0, 0, 0, 0 }, }; +#endif /** * @brief MenuTexture of select record ? * */ +#ifdef VERSION_JP +/* JP text graphics are different widths, so these are placed differently. */ +MenuTexture D_02001630[2] = { + { 3, gTextureTableOfContents, 88, 10, 116, 94, 0x33c, 0 }, + { 0, NULL, 0, 0, 0, 0, 0, 0 }, +}; +#else MenuTexture D_02001630[2] = { { 3, gTextureTableOfContents, 88, 10, 116, 94, 0x42d, 0 }, { 0, NULL, 0, 0, 0, 0, 0, 0 }, }; +#endif /** * @brief MenuTexture of select record ? * */ +#ifdef VERSION_JP +/* JP text graphics are different widths, so these are placed differently. */ +MenuTexture D_02001658[5] = { + { 3, gTextureTextHash, 20, 10, 42, 108, 0x120, 0 }, + { 3, gTextureTextGameData, 60, 10, 130, 108, 0x502, 0 }, + { 3, gTextureTextPages, 32, 10, 252, 108, 0x144, 0 }, + { 3, gTextureTextPagesFree, 20, 10, 150, 184, 0x14d, 0 }, + { 0, NULL, 0, 0, 0, 0, 0, 0 }, +}; +#else MenuTexture D_02001658[5] = { { 3, gTextureTextHash, 8, 10, 48, 108, 0x07e, 0 }, { 3, gTextureTextGameData, 56, 10, 132, 108, 0x2c4, 0 }, @@ -1269,6 +1298,7 @@ MenuTexture D_02001658[5] = { { 3, gTextureTextPagesFree, 56, 10, 132, 184, 0x2c2, 0 }, { 0, NULL, 0, 0, 0, 0, 0, 0 }, }; +#endif /** * @brief MenuTexture of a small font texture of number 0 @@ -1383,7 +1413,11 @@ MenuTexture D_02001874[2] = { * */ MenuTexture D_0200189C[2] = { +#ifdef VERSION_JP + { 3, gTextureN64ControllerPakDataSelect, 180, 32, 70, 29, 0x116a, 0 }, +#else { 3, gTextureN64ControllerPakDataSelect, 180, 32, 70, 29, 0x1128, 0 }, +#endif { 0, NULL, 0, 0, 0, 0, 0, 0 }, }; @@ -1392,7 +1426,11 @@ MenuTexture D_0200189C[2] = { * */ MenuTexture D_020018C4[2] = { +#ifdef VERSION_JP + { 3, gTextureEraseDataRecordConfirmation, 180, 32, 70, 29, 0xfe6, 0 }, +#else { 3, gTextureEraseDataRecordConfirmation, 180, 32, 70, 29, 0xff4, 0 }, +#endif { 0, NULL, 0, 0, 0, 0, 0, 0 }, }; @@ -1401,7 +1439,11 @@ MenuTexture D_020018C4[2] = { * */ MenuTexture D_020018EC[2] = { +#ifdef VERSION_JP + { 3, gTextureRecordNotErased, 180, 32, 70, 29, 0xbf8, 0 }, +#else { 3, gTextureRecordNotErased, 180, 32, 70, 29, 0x8d1, 0 }, +#endif { 0, NULL, 0, 0, 0, 0, 0, 0 }, }; @@ -1410,7 +1452,11 @@ MenuTexture D_020018EC[2] = { * */ MenuTexture D_02001914[2] = { +#ifdef VERSION_JP + { 3, gTexturePlaceN64ControllerPakIntoController1, 180, 32, 70, 29, 0xaa3, 0 }, +#else { 3, gTexturePlaceN64ControllerPakIntoController1, 180, 32, 70, 29, 0xc4a, 0 }, +#endif { 0, NULL, 0, 0, 0, 0, 0, 0 }, }; @@ -1419,7 +1465,11 @@ MenuTexture D_02001914[2] = { * */ MenuTexture D_0200193C[2] = { +#ifdef VERSION_JP + { 3, gTexturePleaseReinsertOriginalN64ControllerPak, 180, 32, 70, 29, 0xb7d, 0 }, +#else { 3, gTexturePleaseReinsertOriginalN64ControllerPak, 180, 32, 70, 29, 0xcd6, 0 }, +#endif { 0, NULL, 0, 0, 0, 0, 0, 0 }, }; @@ -1428,7 +1478,11 @@ MenuTexture D_0200193C[2] = { * */ MenuTexture D_02001964[2] = { +#ifdef VERSION_JP + { 3, gTextureErasingSelectedRecord, 180, 32, 70, 29, 0xdd3, 0 }, +#else { 3, gTextureErasingSelectedRecord, 180, 32, 70, 29, 0xc02, 0 }, +#endif { 0, NULL, 0, 0, 0, 0, 0, 0 }, }; diff --git a/src/effects.c b/src/effects.c index 0317fe117c..c08caef115 100644 --- a/src/effects.c +++ b/src/effects.c @@ -1643,7 +1643,7 @@ void course_update_path_point(Player* player, s8 playerId) { break; case COURSE_FRAPPE_SNOWLAND: pathPoint = gNearestPathPointByPlayerId[playerId]; -#ifdef VERSION_EU +#if defined(VERSION_EU) || defined(VERSION_JP) if (((pathPoint >= 0xF0) && (pathPoint < 0x11E)) || ((gCopyNearestPathPointByPlayerId[playerId] >= 0xF0) && (gCopyNearestPathPointByPlayerId[playerId] < 0x11E))) #else diff --git a/src/ending/credits.c b/src/ending/credits.c index 70ce14b443..74ab988bbc 100644 --- a/src/ending/credits.c +++ b/src/ending/credits.c @@ -41,9 +41,15 @@ CreditsRenderInfo gCreditsTextRenderInfo[] = { { 0.90f, 520, 180, 160, 180, SLIDE_LEFT, TEXT_GREEN, 0 }, { 0.90f, 620, 210, 160, 210, SLIDE_LEFT, TEXT_BLUE, 0 }, { 0.80f, -200, 38, 160, 30, SLIDE_RIGHT, TEXT_BLUE_GREEN_RED_CYCLE_1, 0 }, +#ifdef VERSION_JP + { 0.65f, 520, 175, 100, 175, SLIDE_LEFT, TEXT_YELLOW, 0 }, + { 0.65f, 720, 175, 220, 175, SLIDE_LEFT, TEXT_GREEN, 0 }, + { 0.65f, 620, 195, 100, 195, SLIDE_LEFT, TEXT_GREEN, 0 }, +#else { 0.80f, 520, 175, 160, 175, SLIDE_LEFT, TEXT_GREEN, 0 }, { 0.80f, 620, 195, 160, 195, SLIDE_LEFT, TEXT_BLUE, 0 }, { 0.80f, 720, 215, 160, 215, SLIDE_LEFT, TEXT_YELLOW, 0 }, +#endif { 0.65f, 820, 195, 220, 195, SLIDE_LEFT, TEXT_BLUE, 0 }, { 0.65f, 720, 215, 100, 215, SLIDE_LEFT, TEXT_BLUE, 0 }, { 0.65f, 920, 215, 220, 215, SLIDE_LEFT, TEXT_RED, 0 }, @@ -62,7 +68,11 @@ CreditsRenderInfo gCreditsTextRenderInfo[] = { { 0.70f, 520, 150, 160, 150, SLIDE_LEFT, TEXT_BLUE, 0 }, { 0.70f, 520, 170, 160, 170, SLIDE_LEFT, TEXT_YELLOW, 0 }, { 0.70f, 520, 190, 160, 190, SLIDE_LEFT, TEXT_RED, 0 }, +#ifdef VERSION_JP + { 0.70f, 520, 210, 160, 210, SLIDE_LEFT, TEXT_GREEN, 0 }, +#else { 0.45f, 520, 207, 160, 207, SLIDE_LEFT, TEXT_GREEN, 0 }, +#endif { 2.00f, 2925, 210, 150, 210, SLIDE_LEFT, TEXT_BLUE_GREEN_RED_CYCLE_1, 0 }, { 0.90f, 520, 130, 160, 130, SLIDE_LEFT, TEXT_YELLOW, 0 }, }; @@ -72,14 +82,27 @@ char* gCreditsText[] = { "executive producer", "hiroshi yamauchi", "producer", "shigeru miyamoto", "director", "hideki konno", "assistant director", "yasuyuki oyagi", "programmer", "masato kimura", "kenji yamamoto", "yasuhiro kawaguchi", "yuzuru ogawa", "masahiro kawano", "hirohito yoshimoto", "demo sequence programmer", "", "hajime yajima", +#ifdef VERSION_JP + "takumi kawagoe", "visual director", "tadashi sugiyama", "cg.character designer", "", "tomoaki kuroume", + "hiroaki takenaka", "tokihiko toyoda", "shigefumi hino", "masanao arimoto", "hisashi nogami", "cg.map designer", + "makoto miyanaga", "naoki mori", "hiroyasu kuwabara", "music composer", "kenta nagata", "sound programmer", + "taro bando", "yoji inagaki", "sampling voice", "asako kozuki", "tomoko maruno", "charles martinee", + "julien bardakoff", "thomas spindlor", "john huraton", +#else "takumi kawagoe", "visual director", "tadashi sugiyama", "c.g.character designer", "", "tomoaki kuroume", "hiroaki takenaka", "tokihiko toyoda", "shigefumi hino", "masanao arimoto", "hisashi nogami", "c.g.map designer", "makoto miyanaga", "naoki mori", "hiroyasu kuwabara", "music composer", "kenta nagata", "sound programmer", "taro bando", "yoji inagaki", "sampling voice", "charles martinet", "leslie swan", "isaac marshall", "", "", "", +#endif "technical support", "takao sawano", "tsuyoshi takahashi", "hirohito yada", "progress management", "kimiyoshi fukui", "keizo kato", "special thanks", "yasuhiro sakai", "yoshitaka nishikawa", "hideki fujii", +#ifdef VERSION_JP + "yusuke nakano", "wataru yamaguchi", "nintendo e.a.d.", "super mario club", + "rare ltd.", "the end", "mariokart64 staff", +#else "yusuke nakano", "wataru yamaguchi", "phil sandhop", "super mario club", "Donkey Kong 3-D Model Provided Courtesy of Rare U.K.", "the end", "mariokart64 staff", +#endif // Japanese Credits // Note that these are EUC-JP encoded, see: // https://en.wikipedia.org/wiki/Extended_Unix_Code#EUC-JP @@ -90,7 +113,11 @@ char* gCreditsText[] = { "すぎやま ただし", "cg キャラクター デザイナー", "", "くろうめ ともあき", "たけなか ひろあき", "とよだ ときひこ", "ひの しげふみ", "ありもと まさなお", "のがみ ひさし", "cg マップ デザイナー", "みやなが まこと", "もり なおき", "くわばら ひろやす", "ミュージック コンポーザー", "ながた けんた", "サウンド プログラマー", "ばんどう たろう", +#ifdef VERSION_JP + "いながき ようじ", "サンプリング ボイス", "こうづき あさこ", "まるの ともこ", "ちゃーるず まるてぃね", +#else "いながき ようじ", "サンプリンング ボイス", "こうづき あさこ", "まるの ともこ", "ちゃーるず まるてぃね", +#endif "じゅりあん ばるだこふ", "とます すぴんどらー", "じょん ひゅーらとん", "テクニカル サポート", "さわの たかお", "たかはし つよし", "やだ ひろひと", "プログレス マネージメント", "ふくい きみよし", "かとう けいぞう", "スペシャル サンクス", "さかい やすひろ", "にしかわ よしたか", "ふじい ひでき", "なかの ゆうすけ", diff --git a/src/ending/credits.h b/src/ending/credits.h index 28bc69f79f..54067d763c 100644 --- a/src/ending/credits.h +++ b/src/ending/credits.h @@ -23,5 +23,9 @@ typedef struct { extern CreditsRenderInfo gCreditsTextRenderInfo[]; // gCreditsTextRenderInfo extern char* gCreditsText[]; +#ifdef VERSION_JP +// Extra (mirror) mode shows an alternate credits text table in JP +extern char* gCreditsTextExtra[]; +#endif #endif diff --git a/src/main.c b/src/main.c index 0826f42acb..e9a566b544 100644 --- a/src/main.c +++ b/src/main.c @@ -80,7 +80,11 @@ Player* gPlayerTwoCopy = &gPlayers[1]; UNUSED Player* gPlayerThreeCopy = &gPlayers[2]; UNUSED Player* gPlayerFourCopy = &gPlayers[3]; +#ifdef VERSION_JP +UNUSED s32 D_800FD850[1]; +#else UNUSED s32 D_800FD850[3]; +#endif struct GfxPool gGfxPools[2]; struct GfxPool* gGfxPool; @@ -219,6 +223,8 @@ void thread1_idle(void* arg) { osCreateViManager(OS_PRIORITY_VIMGR); #ifdef VERSION_EU osViSetMode(&osViModeTable[OS_VI_PAL_LAN1]); +#elif VERSION_JP + osViSetMode(&osViModeTable[OS_VI_NTSC_LAN1]); #else // VERSION_US if (osTvType == TV_TYPE_NTSC) { osViSetMode(&osViModeTable[OS_VI_NTSC_LAN1]); diff --git a/src/main.h b/src/main.h index 3398ce8856..390f41a6c2 100644 --- a/src/main.h +++ b/src/main.h @@ -37,7 +37,11 @@ #define MTX_EFFECT_POOL_SIZE_MAX MTX_EFFECT_POOL_SIZE + 100 #endif +#ifdef VERSION_JP +#define GFX_POOL_SIZE 6720 +#else #define GFX_POOL_SIZE 7500 +#endif struct GfxPool { /* 0x00000 */ Mtx mtxScreen; // Matrix for skybox and startup logo diff --git a/src/menu_items.c b/src/menu_items.c index f8dba496e9..96e47c20b0 100644 --- a/src/menu_items.c +++ b/src/menu_items.c @@ -83,6 +83,12 @@ s8 gTextColor; s32 D_8018E864_pad; OSPfs gControllerPak1FileHandle; OSPfs gControllerPak2FileHandle; +#ifdef VERSION_JP +/* JP puts sIntroModelTimer at the head of this file's bss instead of next to + D_8018ED91, which is what moves func_800A66A8's statics down to 0x8018b55c. */ +s32 sIntroModelTimer; +s32 menu_item_bss_padjp0; +#endif OSPfsState pfsState[16]; s32 pfsError[16]; // 0 = Ok, anything else = error. s32 gControllerPak1NumFilesUsed; @@ -96,7 +102,9 @@ ALIGNED8 SaveData gSaveData; u8 D_8018ED90; u8 D_8018ED91; +#ifndef VERSION_JP s32 sIntroModelTimer; +#endif Unk_D_800E70A0 D_800E70A0[] = { { 0x3d, 0x11, 0x00, 0x00 }, { 0x15, 0x3e, 0x00, 0x00 }, { 0x5c, 0x3e, 0x00, 0x00 }, @@ -211,42 +219,84 @@ Unk_D_800E70A0 D_800E7300[] = { }; // Versus menu coordinates +#ifdef VERSION_JP +Unk_D_800E70A0 D_800E7360[] = { + { 0x75, 0xa7, 0x00, 0x00 }, { 0x75, 0xb6, 0x00, 0x00 }, { 0x75, 0xc5, 0x00, 0x00 }, { 0x75, 0xd4, 0x00, 0x00 }, +}; +#else Unk_D_800E70A0 D_800E7360[] = { { 0x61, 0xa7, 0x00, 0x00 }, { 0x61, 0xb6, 0x00, 0x00 }, { 0x61, 0xc5, 0x00, 0x00 }, { 0x61, 0xd4, 0x00, 0x00 }, }; +#endif +#ifdef VERSION_JP +Unk_D_800E70A0 D_800E7380[] = { + { 0x23, 0x4b, 0x00, 0x00 }, + { 0xf5, 0x4b, 0x00, 0x00 }, +}; +#else Unk_D_800E70A0 D_800E7380[] = { { 0x30, 0x4b, 0x00, 0x00 }, { 0x109, 0x4b, 0x00, 0x00 }, }; +#endif +#ifdef VERSION_JP +Unk_D_800E70A0 D_800E7390[] = { + { 0xb4, 0x8e, 0x00, 0x00 }, { 0xb4, 0x9b, 0x00, 0x00 }, { 0xb4, 0xa8, 0x00, 0x00 }, + { 0xb4, 0xb5, 0x00, 0x00 }, { 0xb4, 0xc2, 0x00, 0x00 }, { 0xb4, 0xcf, 0x00, 0x00 }, +}; +#else Unk_D_800E70A0 D_800E7390[] = { { 0xad, 0x8d, 0x00, 0x00 }, { 0xad, 0x9a, 0x00, 0x00 }, { 0xad, 0xa7, 0x00, 0x00 }, { 0xad, 0xb4, 0x00, 0x00 }, { 0xad, 0xc1, 0x00, 0x00 }, { 0xad, 0xce, 0x00, 0x00 }, }; +#endif +#ifdef VERSION_JP +Unk_D_800E70A0 D_800E73C0[] = { + { 0xaf, 0xa4, 0x00, 0x00 }, + { 0xaf, 0xc2, 0x00, 0x00 }, +}; +#else Unk_D_800E70A0 D_800E73C0[] = { { 0xac, 0xa5, 0x00, 0x00 }, { 0xac, 0xc3, 0x00, 0x00 }, }; +#endif Unk_D_800E70A0 D_800E73D0[] = { { 0xc0, 0xb3, 0x00, 0x00 }, { 0xc0, 0xc2, 0x00, 0x00 }, }; +#ifdef VERSION_JP +Unk_D_800E70A0 D_800E73E0[] = { + { 0x6c, 0x94, 0x00, 0x00 }, { 0x6c, 0xa1, 0x00, 0x00 }, { 0x6c, 0xae, 0x00, 0x00 }, { 0x6c, 0xbb, 0x00, 0x00 }, + + { 0x6c, 0xc8, 0x00, 0x00 }, { 0x6c, 0xd5, 0x00, 0x00 }, +}; +#else Unk_D_800E70A0 D_800E73E0[] = { { 0x61, 0x94, 0x00, 0x00 }, { 0x61, 0xa1, 0x00, 0x00 }, { 0x61, 0xae, 0x00, 0x00 }, { 0x61, 0xbb, 0x00, 0x00 }, { 0x61, 0xc8, 0x00, 0x00 }, { 0x61, 0xd5, 0x00, 0x00 }, }; +#endif +#ifdef VERSION_JP +Unk_D_800E70A0 D_800E7410[] = { + { 0x66, 0x90, 0x00, 0x00 }, + { 0x66, 0xa4, 0x00, 0x00 }, +}; +#else Unk_D_800E70A0 D_800E7410[] = { { 0x52, 0x90, 0x00, 0x00 }, { 0x52, 0xa4, 0x00, 0x00 }, }; +#endif Unk_D_800E70A0 D_800E7420[] = { { 0x76, 0x95, 0x00, 0x00 }, @@ -287,7 +337,11 @@ RGBA16 gBackgroundColor[] = { const s16 gGlyphDisplayWidth[] = { 0x000c, 0x000d, 0x000b, 0x000b, 0x000a, 0x000b, 0x000b, 0x000d, 0x0007, 0x000a, 0x000c, 0x000a, 0x0012, 0x000d, +#ifdef VERSION_JP + 0x000c, 0x000c, 0x000c, 0x000c, 0x000b, 0x000d, 0x000c, 0x000c, 0x0012, 0x000c, 0x000c, 0x000c, 0x000a, 0x000a, +#else 0x000c, 0x000c, 0x000c, 0x000c, 0x000b, 0x000d, 0x000c, 0x000c, 0x0012, 0x000d, 0x000c, 0x000c, 0x000a, 0x000a, +#endif 0x000a, 0x0006, 0x001e, 0x0006, 0x000a, 0x0008, 0x000b, 0x000c, 0x000c, 0x000d, 0x000a, 0x000b, 0x000a, 0x000a, 0x0008, 0x001c, 0x000a, 0x0010, 0x000f, 0x0010, 0x000f, 0x000f, 0x000f, 0x000f, 0x000f, 0x000f, 0x000f, 0x000f, 0x000f, 0x000f, 0x000f, 0x000f, 0x000f, 0x000f, 0x000f, 0x000f, 0x000f, 0x000f, 0x000f, 0x000f, 0x000f, 0x000f, @@ -306,33 +360,56 @@ const s16 gGlyphDisplayWidth[] = { }; char* gCupNames[] = { +#ifdef VERSION_JP + "kinoko cup", +#else "mushroom cup", +#endif "flower cup", "star cup", "special cup", "battle", +#ifdef VERSION_JP + "キノコ カップ", + "フラワー カップ", + "スター カップ", + "スペシャル カップ", +#else // ???? "mushroom cup", "flower cup", "star cup", "special cup", +#endif }; #if !ENABLE_CUSTOM_COURSE_ENGINE // Displays at beginning of course char* gCourseNames[] = { +#ifdef VERSION_JP +#include "assets/course_metadata/gCourseNames.jp1.inc.c" +#else #include "assets/course_metadata/gCourseNames.inc.c" +#endif }; char* gCourseNamesDup[] = { +#ifdef VERSION_JP +#include "assets/course_metadata/gCourseNames.jp2.inc.c" +#else #include "assets/course_metadata/gCourseNames.inc.c" +#endif }; #else #endif char* gCourseNamesDup2[] = { +#ifdef VERSION_JP +#include "assets/course_metadata/gCourseNames.jp3.inc.c" +#else #include "assets/course_metadata/gCourseNames.inc.c" +#endif }; #if !ENABLE_CUSTOM_COURSE_ENGINE @@ -368,10 +445,29 @@ char* gDebugCharacterNames[] = { }; char* D_800E76A8[] = { +#ifdef VERSION_JP + "マリオ", "ルイージ", "ヨッシー", "キノピオ", "D.コング", "ワリオ", "ピーチ", "クッパ", +#else "MARIO", "LUIGI", "YOSHI", "TOAD", "D.K.", "WARIO", "PEACH", "BOWSER", +#endif "ーーーー", // NOT HYPHENS!!! These are EUC-JP characters (0xa1 0xbc) }; +#ifdef VERSION_JP +char* D_800E76CC[] = { + "50(", + "100(", + "150(", + " おまけ", +}; + +char* D_800E76DC[] = { + "50(", + "100(", + "150(", + " おまけ", +}; +#else char* D_800E76CC[] = { "50(", "100(", @@ -385,6 +481,7 @@ char* D_800E76DC[] = { "150(", "extra", }; +#endif char* gDebugScreenModeNames[] = { "1p", "2players UD", "2players LR", "3players", "4players", @@ -397,27 +494,58 @@ char* gDebugSoundModeNames[] = { "monaural", }; +#ifdef VERSION_JP +char* gSoundModeNames[NUM_SOUND_MODES] = { "ステレオ", "ヘッドホン", "", "モノラル" }; +#else char* gSoundModeNames[NUM_SOUND_MODES] = { "STEREO", "HEADPHONE", "", "MONO" }; +#endif +#ifdef VERSION_JP +char* gWinLoseText[] = { + "かち!", + "まけ!", +}; +#else char* gWinLoseText[] = { "WINNER!", "LOSER!", }; +#endif +#ifdef VERSION_JP +char* gBestTimeText[] = { + "ベストレコード", + "ベストラップ", +}; +#else char* gBestTimeText[] = { "BEST RECORDS", "BEST LAP", }; +#endif // Might need a const? +#ifdef VERSION_JP +char* gLapTimeText = "ラップタイム"; +#else char* gLapTimeText = "LAP TIME"; +#endif +#ifdef VERSION_JP +char* gPrefixTimeText[] = { + "ラップ 1", + "ラップ 2", + "ラップ 3", + "トータル", +}; +#else char* gPrefixTimeText[] = { "LAP 1", "LAP 2", "LAP 3", "TOTAL", }; +#endif char* D_800E7744[] = { // The s/n/r/t here are not ASCII, they are EUC-JP characters @@ -425,79 +553,194 @@ char* D_800E7744[] = { "1 s", "2 n", "3 r", "4 t", "5 t", " ", }; +#ifdef VERSION_JP +char* gTextPauseButton[] = { + "ゲームをつづける", "リトライ", "コースチェンジ", "ドライバーチェンジ", "ゲームをやめる", "リプレイ", "ゴーストのセーブ", +}; +#else char* gTextPauseButton[] = { "CONTINUE GAME", "RETRY", "COURSE CHANGE", "DRIVER CHANGE", "QUIT", "REPLAY", "SAVE GHOST", }; +#endif +#ifdef VERSION_JP +char* D_800E7778[] = { + "VSマッチ ランキング", + "バトル ランキング", +}; +#else char* D_800E7778[] = { "VS MATCH RANKING", "BATTLE RANKING", }; +#endif // This is plain data, it should not end up in rodata +#ifdef VERSION_JP +char gTextMenuAnnounceGhost[] = "CHALLENGER COMES!!!"; +#else char gTextMenuAnnounceGhost[] = "NOW-MEET THE COURSE GHOST!!!"; +#endif +#ifdef VERSION_JP +char* gTextNoController[] = { "1P のコントローラをせつぞくして", "でんげんをいれなおしてください" }; +#else char* gTextNoController[] = { "CONNECT A CONTROLLER TO SOCKET 1,", "THEN POWER ON AGAIN" }; +#endif +#ifdef VERSION_JP +char* gTextBattleIntroduction[] = { + "バトルゲーム", + "たいせんプレイヤーのふうせんをとばそう", + "3つのふうせんがなくなったらマケ!", +}; +#else char* gTextBattleIntroduction[] = { "BATTLE GAME", "POP OPPOSING PLAYER'S BALLOONS", "WHEN ALL 3 ARE GONE,THEY ARE OUT!", }; +#endif // This is plain data, it should not end up in rodata +#ifdef VERSION_JP +char gTextMenuData[] = "a ボタン*データをみる B ボタン*もどる"; +#else char gTextMenuData[] = "a BUTTON*SEE DATA B BUTTON*EXIT"; +#endif // This is plain data, it should not end up in rodata +#ifdef VERSION_JP +char gTextDistance[] = "ぜんちょう"; +#else char gTextDistance[] = "distance"; +#endif char* sCourseLengths[] = { #include "assets/course_metadata/sCourseLengths.inc.c" }; +#ifdef VERSION_JP +char* gTextMenuOption[] = { + "メニューにもどる", + "このコースのきろくをけす", + "このコースのゴーストをけす", +}; +#else char* gTextMenuOption[] = { "return to menu", "erase records for this course", "erase ghost from this course", }; +#endif +#ifdef VERSION_JP +char* D_800E7840[] = { + "やめる", + "けす", +}; +#else char* D_800E7840[] = { "quit", "erase", }; +#endif // Why oh why is this array flat? It should be gEraseBestGhostText[][3] +#ifdef VERSION_JP +char* gEraseBestGhostText[] = { + "このコースのベストレコードと", + "ベストラップがきえてしまいますが", + "よろしいですか?", + "このコースのゴーストの", + "データがきえてしまいますが", + "よろしいですか?", +}; +#else char* gEraseBestGhostText[] = { "THE BEST RECORDS AND BEST", "LAP FOR THIS COURSE WILL BE", "ERASED. IS THIS OK?", "GHOST DATA FOR THIS", "COURSE WILL BE ERASED.", "IS THIS OK?", }; +#endif +#ifdef VERSION_JP +char* D_800E7860[] = { + "ゴーストをけすことが", + "できませんでした。", +}; +#else char* D_800E7860[] = { "UNABLE TO ERASE ", "GHOST DATA", }; +#endif +#ifdef VERSION_JP +char* gTextOptionMenu[] = { + "ゲームセレクトにもどる", + "サウンドモード", + "コントローラパックのコピー", + "データをすべてけす", +}; +#else char* gTextOptionMenu[] = { "RETURN TO GAME SELECT", "SOUND MODE", "COPY N64 CONTROLLER PAK", "ERASE ALL DATA", }; +#endif +#ifdef VERSION_JP +char* D_800E7878[] = { + "カセットにセーブされている", + "すべてのデータがきえてしまいますが", + "ほんとうによろしいですか?", +}; +#else char* D_800E7878[] = { "ALL SAVED DATA WILL BE", "PERMANENTLY ERASED.", "ARE YOU REALLY SURE?", }; +#endif +#ifdef VERSION_JP +char* D_800E7884[] = { + "カセットにセーブされている", + "すべてのデータが", + "しょうきょされました", +}; +#else char* D_800E7884[] = { "", "ALL SAVED DATA", "HAS BEEN NOW ERASED.", }; +#endif // In a perfect world this would be `char *D_800E7890[][4]` +#ifdef VERSION_JP +char* D_800E7890[] = { + "1P のコントローラパックが", + "セットされていません", + "", + "", + "1P のコントローラパックの", + "データをよみこめませんでした", + "", + "", + "1P のコントローラパックに", + "ゲームノートがつくれません", + "", + "", + "1P のコントローラパックの", + "のこりページがたりないので", + "ゴーストをコピーすることが", + "できません", +}; +#else char* D_800E7890[] = { "CONTROLLER 1 DOES NOT HAVE ", "N64 CONTROLLER PAK", @@ -519,8 +762,25 @@ char* D_800E7890[] = { "IN CONTROLLER 1 ", "N64 CONTROLLER PAK", }; +#endif // In a perfect world this would be `char *D_800E78D0[][3]` +#ifdef VERSION_JP +char* D_800E78D0[] = { + "2P のコントローラパックには", + "ゴーストデータはありません", + "", + "2P のコントローラパックには", + "マリオカート64 のゲームノートは", + "ありません", + "2P のコントローラパックが", + "セットされていません", + "", + "2P のコントローラパックの", + "データをよみこめませんでした", + "", +}; +#else char* D_800E78D0[] = { "NO GHOST DATA ", "IN CONTROLLER 2 ", "N64 CONTROLLER PAK", @@ -530,40 +790,105 @@ char* D_800E78D0[] = { "UNABLE TO READ DATA ", "FROM CONTROLLER 2 ", "N64 CONTROLLER PAK", }; +#endif // In a perfect world this would be `char *D_800E7900[][4]` +#ifdef VERSION_JP +char* D_800E7900[] = { + "1p のコントローラパックに", + "データをコピーできませんでした", + "2p のコントローラパックの", + "データをよみこめませんでした", +}; +#else char* D_800E7900[] = { "UNABLE TO COPY DATA ", "FROM CONTROLLER 1 ", "N64 CONTROLLER PAK", "UNABLE TO READ DATA ", "FROM CONTROLLER 2 ", "N64 CONTROLLER PAK", }; +#endif +#ifdef VERSION_JP +char* D_800E7918[] = { + "パック1", + "パック2", +}; +#else char* D_800E7918[] = { "CONTROLLER 1", "CONTROLLER 2", }; +#endif +#ifdef VERSION_JP +char* D_800E7920[] = { + "どのファイルをコピーしますか?", + "どのファイルにコピーしますか?", +}; +#else char* D_800E7920[] = { "WHICH FILE DO YOU WANT TO MAKE A COPY OF?", "TO WHICH FILE DO YOU WANT TO COPY?", }; +#endif +#ifdef VERSION_JP +char* D_800E7928[] = { + "まえのデータはきえてしまいますが", + "よろしいですか?", +}; +#else char* D_800E7928[] = { "CURRENT DATA WILL BE ERASED,", "IS THIS OK?", }; +#endif +#ifdef VERSION_JP +char* D_800E7930[] = { + "やめる", + "コピーする", +}; +#else char* D_800E7930[] = { "QUIT", "COPY", }; +#endif +#ifdef VERSION_JP +char* D_800E7938[] = { + "データをコピーちゅうです", + "データのコピーがおわりました", +}; +#else char* D_800E7938[] = { "COPYING", "DATA COPY COMPLETED", }; +#endif // In a perfect world this would be `char *D_800E7940[][4]` +#ifdef VERSION_JP +char* D_800E7940[] = { + "コントローラパックがセットされていません。", + "ゴーストデータをセーブしたいときは,1P の", + "コントローラにパックをセットしてください。", + "", + "コントローラパックのデータを", + "よみこめませんでした。", + "", + "", + "コントローラパックのデータがこわれているので", + "ゴーストがでません。あたらしいゴーストを", + "セーブするか,データがめんでゴーストを", + "けしてください。", + "コントローラパックののこりページが", + "たりません。 このゲームのノートをつくるには", + "121 ページひつようです。 くわしくは,", + "せつめいしょをおよみください。", +}; +#else char* D_800E7940[] = { "NO N64 CONTROLLER PAK DETECTED", "TO SAVE GHOST DATA, ", @@ -585,15 +910,58 @@ char* D_800E7940[] = { "GAME DATA, PLEASE FREE 121 PAGES.", "SEE INSTRUCTION BOOKLET FOR DETAILS.", }; +#endif // Unused? +#ifdef VERSION_JP +char* D_800E7980[] = { + "ゴーストをセーブするためには", + "コントローラ1にコントローラパックを", + "セットしてください", +}; +#else char* D_800E7980[] = { "TO SAVE GHOST DATA, ", "INSERT N64 CONTROLLER PAK ", "INTO CONTROLLER 1", }; +#endif // In a perfect world this would be `char *D_800E798C[][7]` +#ifdef VERSION_JP +char* D_800E798C[] = { + "コントローラパックが", + "セットされていないので", + "ゴーストを", + "セーブすることは", + "できません。", + "ゴーストのセーブが", + "できませんでした", + "", + "", + "", + "パックいじょう", + "", + "", + "", + "", + "コントローラパックの", + "のこりページが", + "たりないのでゴーストを", + "セーブすることが", + "できません。", + "ゲームノートが", + "つくれません。", + "", + "", + "", + "このゴーストは", + "すでに", + "セーブされています。", + "", + "", +}; +#else char* D_800E798C[] = { "N64 CONTROLLER PAK ", "NOT DETECTED. ", @@ -643,60 +1011,130 @@ char* D_800E798C[] = { "", "", }; +#endif +#ifdef VERSION_JP +char* D_800E7A34[] = { + "このプレイデータは、", + "ゴーストには できません", +}; +#else char* D_800E7A34[] = { "RACE DATA CANNOT ", "BE SAVED FOR GHOST", }; +#endif +#ifdef VERSION_JP +char* D_800E7A3C[] = { + "セーブするファイルを", + "えらんでください", +}; +#else char* D_800E7A3C[] = { "SELECT THE FILE ", "YOU WANT TO SAVE", }; +#endif // Might need a const? char* D_800E7A44 = "NO DATA"; +#ifdef VERSION_JP +char* D_800E7A48[] = { + "MARIOKART64 の", + "ゲームノートを", + "つくっています", +}; +#else char* D_800E7A48[] = { "CREATING ", "MARIO KART 64 ", "GAME DATA", }; +#endif +#ifdef VERSION_JP +char* D_800E7A54[] = { + "ゲームノートが", + "つくれません", + "", +}; +#else char* D_800E7A54[] = { "CANNOT CREATE GAME DATA", "", "", }; +#endif +#ifdef VERSION_JP +char* D_800E7A60[] = { + "まえのデータは", + "きえてしまいますが", + "よろしいですか?", +}; +#else char* D_800E7A60[] = { "THE PREVIOUS DATA ", "WILL BE ERASED, ", "IS THIS OK?", }; +#endif +#ifdef VERSION_JP +char* D_800E7A6C[] = { + "やめる", + "セーブする", +}; +#else char* D_800E7A6C[] = { "QUIT", "SAVE", }; +#endif +#ifdef VERSION_JP +char* D_800E7A74[] = { + "ゴーストを", + "セーブしています", + "しばらくおまちください", +}; +#else char* D_800E7A74[] = { "SAVING GHOST DATA", "", "PLEASE WAIT", }; +#endif +#ifdef VERSION_JP +char* D_800E7A80[] = { + "ゴーストのセーブが", + "できませんでした", +}; +#else char* D_800E7A80[] = { "UNABLE TO SAVE ", "THE GHOST", }; +#endif +#ifdef VERSION_JP +char* D_800E7A88[] = { + "YOU ARE AWARDED THE", + "GOLD CUP.", + "SILVER CUP.", + "BRONZE CUP.", +}; +#else char* D_800E7A88[] = { "YOU ARE AWARDED THE", "GOLD CUP", "SILVER CUP", "BRONZE CUP", }; +#endif // Might need a const? char* D_800E7A98 = "MAYBE NEXT TIME!"; @@ -706,9 +1144,23 @@ char* D_800E7A9C[] = { "WHAT A PITY!", }; +#ifdef VERSION_JP +char* gPlaceText[] = { + "YOU ARE IN", + " st.", + " nd.", + " rd.", + " th.", + " th.", + " th.", + " th.", + " th.", +}; +#else char* gPlaceText[] = { "YOU PLACED", " st", " nd", " rd", " th", " th", " th", " th", " th", }; +#endif const s8 gGPPointRewards[] = { 9, 6, 3, 1 }; const s8 D_800F0B1C[] = { @@ -1123,9 +1575,24 @@ f32 sIntroModelMotionSpeed = 0.0f; // Speed of the intro logo model f32 sIntroModelSpeed = 3.0f; +#ifdef VERSION_JP +Unk_D_800E70A0 D_800E8538[] = { { 0x73, 0x9b, 0x00, 0x00 } }; +#else Unk_D_800E70A0 D_800E8538[] = { { 0x69, 0x9b, 0x00, 0x00 } }; +#endif // In a perfect world this would be `Unk_D_800E70A0 D_800E8540[][4]` +#ifdef VERSION_JP +Unk_D_800E70A0 D_800E8540[] = { + { 0x82, 0x64, 0x00, 0x00 }, { 0x82, 0x64, 0x00, 0x00 }, { 0x82, 0x64, 0x00, 0x00 }, { 0x82, 0x64, 0x00, 0x00 }, + + { 0x78, 0x28, 0x00, 0x00 }, { 0x78, 0xa0, 0x00, 0x00 }, { 0x78, 0x28, 0x00, 0x00 }, { 0x78, 0xa0, 0x00, 0x00 }, + + { 0x2b, 0x64, 0x00, 0x00 }, { 0xbc, 0x64, 0x00, 0x00 }, { 0x2b, 0x64, 0x00, 0x00 }, { 0xbc, 0x64, 0x00, 0x00 }, + + { 0x2b, 0x28, 0x00, 0x00 }, { 0xbc, 0x28, 0x00, 0x00 }, { 0x2b, 0xa0, 0x00, 0x00 }, { 0xbc, 0xa0, 0x00, 0x00 }, +}; +#else Unk_D_800E70A0 D_800E8540[] = { { 0x82, 0x64, 0x00, 0x00 }, { 0x82, 0x64, 0x00, 0x00 }, { 0x82, 0x64, 0x00, 0x00 }, { 0x82, 0x64, 0x00, 0x00 }, @@ -1135,15 +1602,35 @@ Unk_D_800E70A0 D_800E8540[] = { { 0x28, 0x28, 0x00, 0x00 }, { 0xb2, 0x28, 0x00, 0x00 }, { 0x28, 0xa0, 0x00, 0x00 }, { 0xb2, 0xa0, 0x00, 0x00 }, }; +#endif // In a perfect world this would be `Unk_D_800E70A0 D_800E85C0[][4]` +#ifdef VERSION_JP +Unk_D_800E70A0 D_800E85C0[] = { + { 0x78, 0x8c, 0x00, 0x00 }, { 0x78, 0x64, 0x00, 0x00 }, { 0x78, 0x64, 0x00, 0x00 }, { 0x78, 0x64, 0x00, 0x00 }, + + { 0x78, 0x55, 0x00, 0x00 }, { 0x78, 0xcd, 0x00, 0x00 }, { 0x78, 0x28, 0x00, 0x00 }, { 0x78, 0xa0, 0x00, 0x00 }, +}; +#else Unk_D_800E70A0 D_800E85C0[] = { { 0x69, 0x8c, 0x00, 0x00 }, { 0x78, 0x64, 0x00, 0x00 }, { 0x78, 0x64, 0x00, 0x00 }, { 0x78, 0x64, 0x00, 0x00 }, { 0x69, 0x55, 0x00, 0x00 }, { 0x69, 0xcd, 0x00, 0x00 }, { 0x78, 0x28, 0x00, 0x00 }, { 0x78, 0xa0, 0x00, 0x00 }, }; +#endif // In a perfect world this would be `Unk_D_800E70A0 D_800E8600[][4]` +#ifdef VERSION_JP +Unk_D_800E70A0 D_800E8600[] = { + { 0x78, 0x64, 0x00, 0x00 }, { 0x78, 0x64, 0x00, 0x00 }, { 0x78, 0x64, 0x00, 0x00 }, { 0x78, 0x64, 0x00, 0x00 }, + + { 0x78, 0x28, 0x00, 0x00 }, { 0x78, 0xa0, 0x00, 0x00 }, { 0x78, 0x28, 0x00, 0x00 }, { 0x78, 0xa0, 0x00, 0x00 }, + + { 0x2b, 0x64, 0x00, 0x00 }, { 0xbc, 0x64, 0x00, 0x00 }, { 0x2b, 0x64, 0x00, 0x00 }, { 0xbc, 0x64, 0x00, 0x00 }, + + { 0x2b, 0x28, 0x00, 0x00 }, { 0xbc, 0x28, 0x00, 0x00 }, { 0x2b, 0xa0, 0x00, 0x00 }, { 0xbc, 0xa0, 0x00, 0x00 }, +}; +#else Unk_D_800E70A0 D_800E8600[] = { { 0x78, 0x64, 0x00, 0x00 }, { 0x78, 0x64, 0x00, 0x00 }, { 0x78, 0x64, 0x00, 0x00 }, { 0x78, 0x64, 0x00, 0x00 }, @@ -1153,6 +1640,7 @@ Unk_D_800E70A0 D_800E8600[] = { { 0x28, 0x28, 0x00, 0x00 }, { 0xb2, 0x28, 0x00, 0x00 }, { 0x28, 0xa0, 0x00, 0x00 }, { 0xb2, 0xa0, 0x00, 0x00 }, }; +#endif f64 exponent_by_squaring(f64 base, s32 exponent) { s32 positive_exponent; @@ -2211,7 +2699,9 @@ void func_80093C98(s32 arg0) { if (arg0 == 0) { func_800A54EC(); func_8009CA6C(4); +#ifndef VERSION_JP D_80165754 = gMatrixEffectCount; +#endif gMatrixEffectCount = 0; } } @@ -3001,7 +3491,14 @@ Gfx* func_800963F0(Gfx* displayListHead, s8 arg1, s32 arg2, s32 arg3, f32 arg4, return displayListHead; } +#ifdef VERSION_JP +/* JP's copy of this segment-0B texture sits 0x100 earlier. */ +extern u8 D_0B002900[]; +#define sStaticNoiseTexture D_0B002900 +#else extern u8 D_0B002A00[]; +#define sStaticNoiseTexture D_0B002A00 +#endif /** * * This function is responsible for drawing a near unnoticeable static pattern @@ -3089,7 +3586,7 @@ Gfx* func_80096CD8(Gfx* displayListHead, s32 xPos, s32 yPos, u32 width, u32 heig } else rectXoffset = tileWidth; - gDPLoadTextureTile(displayListHead++, (D_0B002A00 + random_int(128) * 2), G_IM_FMT_IA, G_IM_SIZ_16b, width, + gDPLoadTextureTile(displayListHead++, (sStaticNoiseTexture + random_int(128) * 2), G_IM_FMT_IA, G_IM_SIZ_16b, width, height, x, y, x + rectXoffset, y + rectYoffset, 0, G_TX_WRAP, G_TX_WRAP, masks, maskt, G_TX_NOLOD, G_TX_NOLOD); gSPTextureRectangle(displayListHead++, x << 2, y << 2, (x + rectXoffset) << 2, (y + rectYoffset) << 2, @@ -3175,7 +3672,7 @@ Gfx* func_80097274(Gfx* displayListHead, s8 arg1, s32 arg2, s32 arg3, s32 arg4, gDPLoadMultiTile(displayListHead++, argA, 0, G_TX_RENDERTILE, arg1, G_IM_SIZ_16b, argB, argC, var_a1_2, var_s3, var_a1_2 + var_s2, var_s3 + var_s4, 0, G_TX_WRAP, G_TX_WRAP, sp68, sp64, G_TX_NOLOD, G_TX_NOLOD); - gDPLoadMultiTile(displayListHead++, D_0B002A00 + random_int(128) * 2, 256, G_TX_RENDERTILE + 1, arg1, + gDPLoadMultiTile(displayListHead++, sStaticNoiseTexture + random_int(128) * 2, 256, G_TX_RENDERTILE + 1, arg1, G_IM_SIZ_16b, argB, argC, var_a1_2, var_s3, var_a1_2 + var_s2, var_s3 + var_s4, 0, G_TX_WRAP, G_TX_WRAP, sp68, sp64, G_TX_NOLOD, G_TX_NOLOD); gSPTextureRectangle(displayListHead++, arg8 * 4, arg9 * 4, (arg8 + var_s2) * 4, (arg9 + var_s4) * 4, 0, @@ -5846,7 +6343,11 @@ void render_menus(MenuItem* arg0) { s32 temp_v1; UNUSED s32 pad2; char sp80[3]; +#ifdef VERSION_JP + f32 why = 0.8f; +#else f32 why = 0.75f; +#endif s32 one = 1; UNUSED s32 pad3; @@ -5914,7 +6415,11 @@ void render_menus(MenuItem* arg0) { gDisplayListHead = draw_box(gDisplayListHead, 0xA0 - strWidth, 0x0000007B, strWidth + 0xA0, 0x000000A4, 0, 0, 0, 0x00000096); set_text_color(TEXT_GREEN); +#ifdef VERSION_JP + print_text1_center_mode_1(0x000000A0, 0x0000008C, gCourseNamesDup[0], 0, 0.9f, 0.9f); +#else print_text1_center_mode_1(0x0000009B, 0x0000008C, gCourseNamesDup[0], 0, 0.9f, 0.9f); +#endif temp_v1 = func_800B4EB4(0, 7) & 0xFFFFF; if (temp_v1 < 0x1EAA) { set_text_color((s32) gGlobalTimer % 2); @@ -5941,15 +6446,25 @@ void render_menus(MenuItem* arg0) { if (strWidth < temp_v1) { strWidth = temp_v1; } +#ifdef VERSION_JP + temp_t2 = (s32) ((strWidth + 30) * why) / 2; +#else temp_t2 = (s32) (strWidth * why) / 2; +#endif temp_t5 = (s32) (((why * 2) + 0.5) * 16.0) / 2; gDisplayListHead = draw_box(gDisplayListHead, 0xA0 - temp_t2, 0xB6 - temp_t5, temp_t2 + 0xA0, temp_t5 + 0xB6, 0, 0, 0, 0x00000096); set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_1); for (strWidth = 0; strWidth < 2; strWidth++) { +#ifdef VERSION_JP + print_text1_center_mode_1(0xA0 * one - 3 * why, + (s32) (0xB4 * one + ((f32) (strWidth * 0x12) * why)), + gTextNoController[strWidth], 0, why, why); +#else print_text1_center_mode_1(0xA0 * one - 1 * why, (s32) (0xB4 * one + ((f32) (strWidth * 0x12) * why)), gTextNoController[strWidth], 0, why, why); +#endif } break; } @@ -6147,6 +6662,11 @@ void render_menus(MenuItem* arg0) { break; case MENU_ITEM_TYPE_065: /* switch 6 */ case MENU_ITEM_TYPE_066: { +#ifdef VERSION_JP + func_800A86E8(arg0); + set_text_color(TEXT_YELLOW); + print_text_mode_1(arg0->column + 8, arg0->row + 0x10, gBestTimeText[arg0->type - 0x65], 0, 0.8f, 0.8f); +#else f32 scaleX; if (arg0->type == MENU_ITEM_TYPE_065) { scaleX = 0.6f; @@ -6157,6 +6677,7 @@ void render_menus(MenuItem* arg0) { set_text_color(TEXT_YELLOW); print_text_mode_1(arg0->column + 8, arg0->row + 0x10, gBestTimeText[arg0->type - 0x65], 0, scaleX, 0.8f); +#endif func_800A874C(arg0); break; } @@ -6200,7 +6721,11 @@ void render_menus(MenuItem* arg0) { } gDisplayListHead = render_menu_textures(gDisplayListHead, seg2_data_texture, arg0->column, arg0->row); set_text_color(TEXT_YELLOW); +#ifdef VERSION_JP + print_text1_left(0x00000128, 0x0000001C, gTextMenuData, 0, 0.65f, 0.65f); +#else print_text1_left(0x00000125, 0x0000001C, gTextMenuData, 0, 0.55f, 0.55f); +#endif break; case MENU_ITEM_TYPE_08D: /* switch 6 */ func_800A1780(arg0); @@ -6401,9 +6926,12 @@ void func_800A08D8(u8 arg0, s32 column, s32 row) { if (arg0 >= 0x10) { arg0 -= 0x10; if (arg0 < 0x85) { +#ifndef VERSION_JP + // JP's glyph table has all 0x85 entries; US clamps what it removed if (arg0 >= 0x32) { arg0 = 0x2B; } +#endif gDisplayListHead = render_menu_textures(gDisplayListHead, segmented_to_virtual_dupe(D_800E7AF8[arg0]), column, row); } @@ -6573,7 +7101,11 @@ void func_800A10CC(MenuItem* arg0) { set_text_color(TEXT_YELLOW); for (var_s1 = 0; var_s1 < 4; var_s1++) { // In a perfect world this would be `D_800E7940[index][var_s1]` +#ifdef VERSION_JP + print_text_mode_1(0x00000023, 0x41 + (0xD * var_s1), D_800E7940[(index * 4) + var_s1], 0, 0.75f, 0.75f); +#else print_text_mode_1(0x00000023, 0x41 + (0xD * var_s1), D_800E7940[(index * 4) + var_s1], 0, 0.65f, 0.65f); +#endif } break; default: @@ -6735,12 +7267,21 @@ void render_menu_item_data_course_info(MenuItem* arg0) { arg0->column = 0x14; // name of the course set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_1); +#ifdef VERSION_JP + print_text1_center_mode_1(0x5A, arg0->row + 0x19, gCourseNamesDup[courseId], 0, 0.75f, 0.75f); +#else print_text1_center_mode_1(0x69, arg0->row + 0x19, gCourseNamesDup[courseId], 0, 0.75f, 0.75f); +#endif // distance set_text_color(TEXT_RED); +#ifdef VERSION_JP + print_text_mode_1(0x23, arg0->row + 0x28, (char*) &gTextDistance, 0, 0.75f, 0.75f); + print_text1_left(0x91, arg0->row + 0x28, sCourseLengths[courseId], 1, 0.75f, 0.75f); +#else print_text_mode_1(0x2D, arg0->row + 0x28, (char*) &gTextDistance, 0, 0.75f, 0.75f); print_text1_left(0xA5, arg0->row + 0x28, sCourseLengths[courseId], 1, 0.75f, 0.75f); +#endif // best lap record set_text_color(TEXT_YELLOW); @@ -6793,14 +7334,27 @@ void menu_item_data_course_selectable(MenuItem* arg0) { if (var_s1 != 0) { set_text_color(TEXT_BLUE); gDPSetPrimColor(gDisplayListHead++, 0, 0, 0x00, 0x00, 0x00, 0x96); +#ifdef VERSION_JP + print_text_mode_2(0x00000025, 0x46 + (0xD * i), gTextMenuOption[i], 0, 0.75f, 0.75f); + } else { + set_text_color(var_s2); + print_text_mode_1(0x00000025, 0x46 + (0xD * i), gTextMenuOption[i], 0, 0.75f, 0.75f); + } +#else print_text_mode_2(0x00000025, 0x3F + (0xD * i), gTextMenuOption[i], 0, 0.6f, 0.6f); } else { set_text_color(var_s2); print_text_mode_1(0x00000025, 0x3F + (0xD * i), gTextMenuOption[i], 0, 0.6f, 0.6f); } +#endif } +#ifdef VERSION_JP + sp78.column = 0x001D; + sp78.row = (gCourseRecordsMenuSelection * 0xD) + 0x3E; +#else sp78.column = 0x001F; sp78.row = (gCourseRecordsMenuSelection * 0xD) + 0x3A; +#endif func_800A66A8(arg0, (Unk_D_800E70A0*) &sp78); } @@ -6820,8 +7374,13 @@ void func_800A1DE0(MenuItem* arg0) { // Removing `wut` introduces counter intuitive changes to how this loop is handled // Also, in a perfect world this would be `gEraseBestGhostText[gCourseRecordsMenuSelection - 1][var_s1]` wut = gEraseBestGhostText[(gCourseRecordsMenuSelection - 1) * 3 + var_s1]; +#ifdef VERSION_JP + print_text_mode_1(0x0000001B, 0x3C + (0xD * var_s1), + gEraseBestGhostText[(gCourseRecordsMenuSelection - 1) * 3 + var_s1], 0, 0.75f, 0.75f); +#else print_text_mode_1(0x0000001B, 0x3C + (0xD * var_s1), gEraseBestGhostText[(gCourseRecordsMenuSelection - 1) * 3 + var_s1], 0, 0.65f, 0.65f); +#endif } for (var_s1 = 0; var_s1 < ARRAY_COUNT(D_800E7840); var_s1++) { @@ -6832,7 +7391,11 @@ void func_800A1DE0(MenuItem* arg0) { var_a0 = 1; } set_text_color(var_a0); +#ifdef VERSION_JP + print_text_mode_1(0x00000043, 0x6E + (0xD * var_s1), D_800E7840[var_s1], 0, 0.75f, 0.75f); +#else print_text_mode_1(0x00000043, 0x6E + (0xD * var_s1), D_800E7840[var_s1], 0, 0.65f, 0.65f); +#endif } sp58.column = 0x003B; @@ -6844,18 +7407,39 @@ void func_800A1F30(UNUSED MenuItem* unused) { s32 row; s32 text; +#ifdef VERSION_JP + set_text_color(TEXT_GREEN); + for (row = 0x3C, text = 0; row < 0x56; row += 0xD, text++) { + print_text_mode_1(0x1B, row, D_800E7860[text], 0, 0.75f, 0.75f); + } +#else set_text_color(TEXT_RED); for (row = 0x49, text = 0; row < 0x69; row += 0x10, text++) { print_text_mode_1(0x2A, row, D_800E7860[text], 0, 0.75f, 0.75f); } +#endif } +#ifdef VERSION_JP void func_800A1FB0(MenuItem* arg0) { Unk_D_800E70A0 spE0; s32 var_s1; +#ifndef VERSION_JP /* JP's frame is 0x10 smaller */ +#ifndef VERSION_JP /* JP frame */ UNUSED s32 pad[2]; +#endif +#endif UNUSED s32 temp; +#ifndef VERSION_JP /* JP's frame is 0x10 smaller */ +#ifndef VERSION_JP /* JP frame */ UNUSED s32 pad2[2]; +#endif +#endif + /* Declaration order is the frame layout here: IDO hands out a stack slot per + declared local, downwards from the top, so pad4 belongs up here and sp98 + down after baseY. */ + char** promptText; + UNUSED s32 pad4[3]; s32 var_s5; s32 var_s4; s32 j; @@ -6863,10 +7447,21 @@ void func_800A1FB0(MenuItem* arg0) { UNUSED s32 pad3[2]; s32 i; char spA8[3]; - UNUSED s32 pad4[3]; - char sp98[3]; struct_8018EE10_entry* var_v1; + f32 someScale; +#ifndef VERSION_JP + f32 someScale2; +#endif + s32 baseY; + char sp98[3]; + s32 promptCol; +#ifndef VERSION_JP + f32 someScale3; +#endif +#ifndef VERSION_JP + someScale3 = 1.0f; +#endif gDisplayListHead = draw_box(gDisplayListHead, 0, 0, 0x00000140, 0x000000F0, 0, 0, 0, 0x00000064); switch (gSubMenuSelection) { case SUB_MENU_OPTION_RETURN_GAME_SELECT: @@ -6875,9 +7470,9 @@ void func_800A1FB0(MenuItem* arg0) { case SUB_MENU_OPTION_ERASE_ALL_DATA: for (i = 0; i < ARRAY_COUNT(gTextOptionMenu); i++) { set_text_color_rainbow_if_selected(gSubMenuSelection - SUB_MENU_OPTION_MIN, i, 3); - print_text_mode_1(0x00000032, 0x55 + (0x23 * i), gTextOptionMenu[i], 0, 0.9f, 1.0f); + print_text_mode_1(0x00000046, 0x55 + (0x23 * i), gTextOptionMenu[i], 0, 1.0f, 1.0f); if (i == (gSubMenuSelection - SUB_MENU_OPTION_MIN)) { - spE0.column = 0x0032; + spE0.column = 0x0046; spE0.row = 0x55 + (0x23 * i); } } @@ -6888,13 +7483,13 @@ void func_800A1FB0(MenuItem* arg0) { case SUB_MENU_ERASE_ERASE: set_text_color(TEXT_YELLOW); for (i = 0; i < ARRAY_COUNT(D_800E7878); i++) { - print_text_mode_1(0x00000028, 0x55 + (0x14 * i), D_800E7878[i], 0, 1.0f, 1.0f); + print_text_mode_1(0x0000001E, 0x55 + (0x14 * i), D_800E7878[i], 0, 1.0f, 1.0f); } for (i = 0; i < ARRAY_COUNT(D_800E7840); i++) { set_text_color_rainbow_if_selected(gSubMenuSelection - SUB_MENU_ERASE_MIN, i, 1); - print_text_mode_1(0x00000084, 0x96 + (0x19 * i), D_800E7840[i], 0, 1.0f, 1.0f); + print_text_mode_1(0x00000096, 0x96 + (0x19 * i), D_800E7840[i], 0, 1.0f, 1.0f); if (i == (gSubMenuSelection - SUB_MENU_ERASE_MIN)) { - spE0.column = 0x0084; + spE0.column = 0x0096; spE0.row = 0x96 + (0x19 * i); } } @@ -6910,9 +7505,10 @@ void func_800A1FB0(MenuItem* arg0) { case SUB_MENU_COPY_PAK_ERROR_NO_PAK_2P: case SUB_MENU_COPY_PAK_ERROR_BAD_READ_2P: set_text_color(TEXT_RED); + someScale = 1.0f; var_s1 = gSubMenuSelection - SUB_MENU_COPY_PAK_ERROR_2P_MIN; for (i = 0; i < ARRAY_COUNT(D_800E78D0) / 4; i++) { // 12 / 4 = 3 - print_text_mode_1(0x00000032, 0x55 + (0x14 * i), D_800E78D0[(var_s1 * 3) + i], 0, 0.9f, 0.9f); + print_text_mode_1(0x00000032, 0x55 + (0x14 * i), D_800E78D0[(var_s1 * 3) + i], 0, someScale, someScale); } break; case SUB_MENU_COPY_PAK_ERROR_NO_PAK_1P: @@ -6922,20 +7518,29 @@ void func_800A1FB0(MenuItem* arg0) { j++; j--; // FAKE set_text_color(TEXT_RED); +#ifdef VERSION_JP + someScale = 1.0f; +#else + someScale = someScale3; +#endif var_s1 = gSubMenuSelection - SUB_MENU_COPY_PAK_ERROR_1P_MIN; for (i = 0; i < ARRAY_COUNT(D_800E7890) / 4; i++) { // 16 / 4 = 4 - print_text_mode_1(0x00000023, 0x55 + (0x14 * i), D_800E7890[(var_s1 * 4) + i], 0, 0.8f, 0.8f); + print_text_mode_1(0x00000041, 0x55 + (i * 0x14), D_800E7890[(var_s1 * 4) + i], 0, someScale, someScale); } break; case SUB_MENU_COPY_PAK_UNABLE_COPY_FROM_1P: case SUB_MENU_COPY_PAK_UNABLE_READ_FROM_2P: set_text_color(TEXT_RED); + someScale = 1.0f; var_s1 = gSubMenuSelection - SUB_MENU_COPY_PAK_UNABLE_ERROR_MIN; - for (i = 0; i < ARRAY_COUNT(D_800E7900) / 2; i++) { // 6 / 2 = 3 - print_text_mode_1(0x00000041, 0x55 + (0x14 * i), D_800E7900[(var_s1 * 3) + i], 0, 0.9f, 0.9f); + for (i = 0; i < 2; i++) { + print_text_mode_1(0x00000032, 0x55 + (0x14 * i), D_800E7900[(var_s1 * 2) + i], 0, someScale, someScale); } break; case SUB_MENU_COPY_PAK_CREATE_GAME_DATA_INIT: +#ifndef VERSION_JP + someScale3 = 0.6f; +#endif case SUB_MENU_COPY_PAK_CREATE_GAME_DATA_DONE: set_text_color(TEXT_YELLOW); for (i = 0; i < ARRAY_COUNT(D_800E7A48); i++) { @@ -6961,15 +7566,20 @@ void func_800A1FB0(MenuItem* arg0) { } temp = var_s4; // only semi-fake set_text_color(temp + 1); - print_text1_center_mode_1(0x000000A0, 0x00000055, D_800E7920[temp], 0, 0.6f, 0.6f); + someScale = 1.0f; +#ifndef VERSION_JP + someScale = 0.75f; +#endif + baseY = 0x96; + print_text1_center_mode_1(0x000000A0, 0x00000055, D_800E7920[temp], 0, someScale, someScale); for (i = 0; i < ARRAY_COUNT(D_800E7918); i++) { set_text_color(TEXT_YELLOW); - print_text1_center_mode_1(0x5C + (0x82 * i), 0x0000007D, D_800E7918[i], 0, 0.75f, 0.75f); + print_text1_center_mode_1(0x64 + (0x78 * i), 0x0000007D, D_800E7918[i], 0, someScale, someScale); for (j = 0; j < 2; j++) { if (i != temp) { text_rainbow_effect(gSubMenuSelection - var_s5, j, TEXT_GREEN); if (j == (gSubMenuSelection - var_s5)) { - spE0.column = 0x20 + (0x89 * i); + spE0.column = 0x23 + (0x87 * i); spE0.row = 0x96 + (0x1E * j); } } else if ((temp != 0) && (j == arg0->param2)) { @@ -6978,19 +7588,24 @@ void func_800A1FB0(MenuItem* arg0) { set_text_color(TEXT_GREEN); } convert_number_to_ascii(j + 1, &spB8[0]); - print_text_mode_1(0x20 + (0x89 * i), 0x96 + (0x1E * j), &spB8[1], 0, 0.6f, 0.6f); +#ifdef VERSION_JP + print_text_mode_1(0x23 + (0x87 * i), baseY + (0x1E * j), &spB8[1], 0, 0.75, 0.75); +#else + someScale2 = 0.75f; + print_text_mode_1(0x23 + (0x87 * i), baseY + (0x1E * j), &spB8[1], 0, someScale2, someScale2); +#endif if (i == 0) { var_v1 = &D_8018EE10[j]; } else { var_v1 = &((struct_8018EE10_entry*) gSomeDLBuffer)[j]; } if (var_v1->ghostDataSaved == 0) { - print_text_mode_1(0x2A + (i * 0x89), 0x96 + (0x1E * j), D_800E7A44, 0, 0.5f, 0.5f); + print_text_mode_1(0x32 + (i * 0x87), baseY + (0x1E * j), D_800E7A44, 0, 0.75, 0.75); } else { print_text_mode_1( - 0x2A + (i * 0x89), 0x96 + (0x1E * j), + 0x32 + (i * 0x87), baseY + (0x1E * j), gCourseNamesDup2[gCupCourseOrder[var_v1->courseIndex / 4][var_v1->courseIndex % 4]], 0, - 0.5f, 0.5f); + 0.75, 0.75); } } } @@ -6998,12 +7613,13 @@ void func_800A1FB0(MenuItem* arg0) { case SUB_MENU_COPY_PAK_PROMPT_QUIT: case SUB_MENU_COPY_PAK_PROMPT_COPY: set_text_color(TEXT_RED); + someScale = 1.0f; for (i = 0; i < ARRAY_COUNT(D_800E7928); i++) { - print_text1_center_mode_1(0x000000A0, 0x4D + (0x14 * i), D_800E7928[i], 0, 0.8f, 0.8f); + print_text1_center_mode_1(0x000000A0, 0x4D + (0x14 * i), D_800E7928[i], 0, someScale, someScale); } for (i = 0; i < ARRAY_COUNT(D_800E7918); i++) { set_text_color(TEXT_YELLOW); - print_text1_center_mode_1(0x5C + (0x82 * i), 0x0000007D, D_800E7918[i], 0, 0.75f, 0.75f); + print_text1_center_mode_1(0x64 + (0x78 * i), 0x0000007D, D_800E7918[i], 0, someScale, someScale); for (j = 0; j != 2; j++) { if (i == 0) { if (j == arg0->param1) { @@ -7017,7 +7633,11 @@ void func_800A1FB0(MenuItem* arg0) { set_text_color(TEXT_GREEN); } convert_number_to_ascii(j + 1, &spA8[0]); - print_text_mode_1(0x20 + (0x89 * i), 0x96 + (0x1E * j), &spA8[1], 0, 0.6f, 0.6f); +#ifdef VERSION_JP + print_text_mode_1(0x23 + (0x87 * i), 0x96 + (0x1E * j), &spA8[1], 0, 0.75, 0.75); +#else + print_text_mode_1(0x23 + (0x87 * i), 0x96 + (0x1E * j), &spA8[1], 0, someScale3, someScale3); +#endif if (i == 0) { do { } while (0); // FAKE @@ -7026,22 +7646,28 @@ void func_800A1FB0(MenuItem* arg0) { var_v1 = &((struct_8018EE10_entry*) gSomeDLBuffer)[j]; } if (var_v1->ghostDataSaved == 0) { - print_text_mode_1(0x2A + (i * 0x89), 0x96 + (0x1E * j), D_800E7A44, 0, 0.5f, 0.5f); + print_text_mode_1(0x32 + (i * 0x87), 0x96 + (0x1E * j), D_800E7A44, 0, 0.75, 0.75); } else { print_text_mode_1( - 0x2A + (i * 0x89), 0x96 + (0x1E * j), + 0x32 + (i * 0x87), 0x96 + (0x1E * j), gCourseNamesDup2[gCupCourseOrder[var_v1->courseIndex / 4][var_v1->courseIndex % 4]], 0, - 0.5f, 0.5f); + 0.75, 0.75); } } } for (i = 0; i < ARRAY_COUNT(D_800E7930); i++) { + promptCol = 0x32 * i; if (i == (gSubMenuSelection - SUB_MENU_COPY_PAK_PROMPT_MIN)) { - spE0.column = 0x6E + (0x32 * i); + spE0.column = 0x6E + promptCol; spE0.row = 0x00D2; } text_rainbow_effect((gSubMenuSelection - SUB_MENU_COPY_PAK_PROMPT_MIN), j, TEXT_YELLOW); - print_text_mode_1(0x6E + (0x32 * i), 0x000000D2, D_800E7930[i], 0, 0.75f, 0.75f); +#ifdef VERSION_JP + promptText = D_800E7930; + print_text_mode_1(0x6E + (0x32 * i), 0x000000D2, promptText[i], 0, 0.75, 0.75); +#else + print_text_mode_1(0x6E + (0x32 * i), 0x000000D2, D_800E7930[i], 0, someScale, someScale); +#endif } break; case SUB_MENU_COPY_PAK_START: @@ -7049,10 +7675,12 @@ void func_800A1FB0(MenuItem* arg0) { case SUB_MENU_COPY_PAK_COMPLETED: var_s5 = (gSubMenuSelection - SUB_MENU_COPY_PAK_ACTION_MIN) / 2; set_text_color(TEXT_RED); + someScale = 0.75f; print_text1_center_mode_1(0x000000A0, 0x00000055, D_800E7938[var_s5], 0, 1.0f, 1.0f); + someScale = 1.0f; for (i = 0; i < ARRAY_COUNT(D_800E7918); i++) { set_text_color(TEXT_YELLOW); - print_text1_center_mode_1(0x5C + (0x82 * i), 0x0000007D, D_800E7918[i], 0, 0.75f, 0.75f); + print_text1_center_mode_1(0x64 + (0x78 * i), 0x0000007D, D_800E7918[i], 0, someScale, someScale); for (j = 0; j < 2; j++) { if (i == 0) { if (j == arg0->param1) { @@ -7070,19 +7698,23 @@ void func_800A1FB0(MenuItem* arg0) { set_text_color(TEXT_GREEN); } convert_number_to_ascii(j + 1, &sp98[0]); - print_text_mode_1(0x20 + (0x89 * i), 0x96 + (0x1E * j), &sp98[1], 0, 0.6f, 0.6f); +#ifdef VERSION_JP + print_text_mode_1(0x23 + (0x87 * i), 0x96 + (0x1E * j), &sp98[1], 0, 0.75, 0.75); +#else + print_text_mode_1(0x23 + (0x87 * i), 0x96 + (0x1E * j), &sp98[1], 0, someScale3, someScale3); +#endif if (i == 0) { var_v1 = &D_8018EE10[j]; } else { var_v1 = &((struct_8018EE10_entry*) gSomeDLBuffer)[j]; } if (var_v1->ghostDataSaved == 0) { - print_text_mode_1(0x2A + (i * 0x89), 0x96 + (0x1E * j), D_800E7A44, 0, 0.5f, 0.5f); + print_text_mode_1(0x32 + (i * 0x87), 0x96 + (0x1E * j), D_800E7A44, 0, 0.75, 0.75); } else { print_text_mode_1( - 0x2A + (i * 0x89), 0x96 + (0x1E * j), + 0x32 + (i * 0x87), 0x96 + (0x1E * j), gCourseNamesDup2[gCupCourseOrder[var_v1->courseIndex / 4][var_v1->courseIndex % 4]], 0, - 0.5f, 0.5f); + 0.75, 0.75); } } } @@ -7105,131 +7737,498 @@ void func_800A1FB0(MenuItem* arg0) { } func_800A66A8(arg0, (Unk_D_800E70A0*) &spE0); } +#else +void func_800A1FB0(MenuItem* arg0) { + Unk_D_800E70A0 spE0; + s32 var_s1; + UNUSED s32 pad[2]; + UNUSED s32 temp; + UNUSED s32 pad2[2]; + s32 var_s5; + s32 var_s4; + s32 j; + char spB8[3]; + UNUSED s32 pad3[2]; + s32 i; + char spA8[3]; + UNUSED s32 pad4[3]; + char sp98[3]; + struct_8018EE10_entry* var_v1; -void func_800A2D1C(MenuItem* arg0) { - switch (D_80164A28) { - case 1: - gDisplayListHead = func_80098FC8(gDisplayListHead, 0, 0, 0x13F, 0x28); - gDisplayListHead = func_80098FC8(gDisplayListHead, 0, 0xC7, 0x13F, 0xEF); - arg0->param1 = 0x28; - break; - case 2: - arg0->param1 -= 2; - if (arg0->param1 > 0) { - gDisplayListHead = func_80098FC8(gDisplayListHead, 0, 0, 0x13F, arg0->param1); - gDisplayListHead = func_80098FC8(gDisplayListHead, 0, 0xEF - arg0->param1, 0x13F, 0xEF); - } else { - arg0->type = 0; + gDisplayListHead = draw_box(gDisplayListHead, 0, 0, 0x00000140, 0x000000F0, 0, 0, 0, 0x00000064); + switch (gSubMenuSelection) { + case SUB_MENU_OPTION_RETURN_GAME_SELECT: + case SUB_MENU_OPTION_SOUND_MODE: + case SUB_MENU_OPTION_COPY_CONTROLLER_PAK: + case SUB_MENU_OPTION_ERASE_ALL_DATA: + for (i = 0; i < ARRAY_COUNT(gTextOptionMenu); i++) { + set_text_color_rainbow_if_selected(gSubMenuSelection - SUB_MENU_OPTION_MIN, i, 3); + print_text_mode_1(0x00000032, 0x55 + (0x23 * i), gTextOptionMenu[i], 0, 0.9f, 1.0f); + if (i == (gSubMenuSelection - SUB_MENU_OPTION_MIN)) { + spE0.column = 0x0032; + spE0.row = 0x55 + (0x23 * i); + } } + set_text_color(TEXT_GREEN); + print_text1_center_mode_1(0x000000E6, 0x55 + 0x23, gSoundModeNames[gSoundMode], 0, 1.0f, 1.0f); break; - default: - if ((gModeSelection != GRAND_PRIX) || (gPlayerCountSelection1 != 1) || (gDemoUseController != 0)) { - arg0->type = 0; - } else { - arg0->param1 -= 2; - if (arg0->param1 > 0) { - gDisplayListHead = func_80098FC8(gDisplayListHead, 0, 0, 0x13F, arg0->param1); - gDisplayListHead = func_80098FC8(gDisplayListHead, 0, 0xEF - arg0->param1, 0x13F, 0xEF); - } else { - arg0->type = 0; + case SUB_MENU_ERASE_QUIT: + case SUB_MENU_ERASE_ERASE: + set_text_color(TEXT_YELLOW); + for (i = 0; i < ARRAY_COUNT(D_800E7878); i++) { + print_text_mode_1(0x00000028, 0x55 + (0x14 * i), D_800E7878[i], 0, 1.0f, 1.0f); + } + for (i = 0; i < ARRAY_COUNT(D_800E7840); i++) { + set_text_color_rainbow_if_selected(gSubMenuSelection - SUB_MENU_ERASE_MIN, i, 1); + print_text_mode_1(0x00000084, 0x96 + (0x19 * i), D_800E7840[i], 0, 1.0f, 1.0f); + if (i == (gSubMenuSelection - SUB_MENU_ERASE_MIN)) { + spE0.column = 0x0084; + spE0.row = 0x96 + (0x19 * i); } } break; - } -} - -void func_800A2EB8(MenuItem* arg0) { - s8 sp70[8]; - UNUSED s32 stackPadding0; - char sp68[3]; - s32 temp_s0; - s32 var_a0; - s32 var_s2; - - for (var_s2 = 0; var_s2 < NUM_PLAYERS; var_s2++) { - sp70[var_s2] = gPlayers[gGPCurrentRacePlayerIdByRank[var_s2]].characterId; - } - set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_1); - print_text_mode_1(arg0->column + 0x1E, arg0->row + 0x19, "results", 0, 1.0f, 1.0f); - set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_2); - print_text_mode_1(arg0->column + 0x2C, arg0->row + 0x28, "round", 0, 0.7f, 0.7f); - convert_number_to_ascii(gCourseIndexInCup + 1, sp68); - print_text_mode_1(arg0->column + 0x57, arg0->row + 0x28, &sp68[1], 0, 0.7f, 0.7f); - for (var_s2 = 0; var_s2 < 4; var_s2++) { - if (gGPCurrentRacePlayerIdByRank[var_s2] < gPlayerCount) { - var_a0 = (s32) gGlobalTimer % 3; - } else { - var_a0 = TEXT_YELLOW; - } - set_text_color(var_a0); - func_800A32B4(arg0->column + 7, arg0->row + (0x10 * var_s2) + 0x38, (s32) sp70[var_s2], var_s2); - } - for (var_s2 = 4; var_s2 < 8; var_s2++) { - if (gGPCurrentRacePlayerIdByRank[var_s2] < gPlayerCount) { - var_a0 = (s32) gGlobalTimer % 3; - } else { - var_a0 = TEXT_YELLOW; - } - set_text_color(var_a0); - func_800A32B4(0xBE - arg0->column, arg0->row + (0x10 * var_s2) + 0x5A, sp70[var_s2], var_s2); - } - set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_2); - temp_s0 = (s32) (((f32) (get_string_width(gCupNames[gCupSelection]) + 8) * 0.6f) / 2); - print_text1_center_mode_1( - (-(s32) (((f32) (get_string_width(D_800E76CC[gCCSelection]) + 8) * 0.6f) / 2) - arg0->column) + 0xF5, - arg0->row + 0xE1, gCupNames[D_800DC540], 0, 0.6f, 0.6f); - print_text1_center_mode_1( - (temp_s0 - arg0->column) + 0xF5, arg0->row + 0xE1, - D_800E76CC[gGameModeSubMenuColumn[gPlayerCount - 1][gGameModeMenuColumn[gPlayerCount - 1]]], 0, 0.6f, 0.6f); -} - -void func_800A32B4(s32 arg0, s32 arg1, s32 characterId, s32 rank) { - UNUSED s32 stackPadding0; - f32 sp50; - UNUSED s32 stackPadding1; - UNUSED s32 stackPadding2; - UNUSED s32 stackPadding3; - UNUSED s32 stackPadding4; - char sp3C[4]; - - sp50 = gTimePlayerLastTouchedFinishLine[gGPCurrentRacePlayerIdByRank[rank]]; - convert_number_to_ascii(rank + 1, sp3C); - sp3C[2] = '.'; - sp3C[3] = '\0'; - func_800939C8(arg0 - 1, arg1, &sp3C[1], -4, 0.7f, 0.7f); - print_text_mode_1(arg0 + 0xA, arg1, D_800E76A8[characterId], 0, 0.65f, 0.7f); - convert_number_to_ascii((s32) (sp50 / 60.0f), sp3C); - func_800939C8(arg0 + 0x42, arg1, sp3C, 0, 0.7f, 0.7f); - convert_number_to_ascii((s32) sp50 % 60, sp3C); - print_text_mode_1(arg0 + 0x4E, arg1, "'", 0, 0.7f, 0.7f); - func_800939C8(arg0 + 0x56, arg1, sp3C, 0, 0.7f, 0.7f); - convert_number_to_ascii((s32) ((f64) sp50 * 100.0) % 100, sp3C); - print_text_mode_1(arg0 + 0x62, arg1, "\"", 0, 0.7f, 0.7f); - func_800939C8(arg0 + 0x6A, arg1, sp3C, 0, 0.7f, 0.7f); -} - -void func_800A34A8(MenuItem* arg0) { - s8 sp80[8]; - UNUSED s32 stackPadding0; - char sp78[3]; - UNUSED s32 stackPadding1; - s32 var_a0; - s32 var_v0; - s32 var_v1; - UNUSED s32 stackPadding2; - s32 temp_s0_3; - s32 rank; - s32 test; - - if (arg0->state != 0) { - if (arg0->state < 9) { - for (rank = 0; rank < NUM_PLAYERS; rank++) { - sp80[rank] = gPlayers[gGPCurrentRacePlayerIdByRank[rank]].characterId; + case SUB_MENU_SAVE_DATA_ERASED: + set_text_color(TEXT_YELLOW); + for (i = 0; i < ARRAY_COUNT(D_800E7884); i++) { + print_text_mode_1(0x00000032, 0x55 + (0x14 * i), D_800E7884[i], 0, 1.0f, 1.0f); } - } else { - func_800A3A10(sp80); - func_800A3A10(gCharacterIdByGPOverallRank); - } + break; + case SUB_MENU_COPY_PAK_ERROR_NO_GHOST_DATA: + case SUB_MENU_COPY_PAK_ERROR_NO_GAME_DATA: + case SUB_MENU_COPY_PAK_ERROR_NO_PAK_2P: + case SUB_MENU_COPY_PAK_ERROR_BAD_READ_2P: + set_text_color(TEXT_RED); + var_s1 = gSubMenuSelection - SUB_MENU_COPY_PAK_ERROR_2P_MIN; + for (i = 0; i < ARRAY_COUNT(D_800E78D0) / 4; i++) { // 12 / 4 = 3 + print_text_mode_1(0x00000032, 0x55 + (0x14 * i), D_800E78D0[(var_s1 * 3) + i], 0, 0.9f, 0.9f); + } + break; + case SUB_MENU_COPY_PAK_ERROR_NO_PAK_1P: + case SUB_MENU_COPY_PAK_ERROR_BAD_READ_1P: + case SUB_MENU_COPY_PAK_ERROR_CANT_CREATE_1P: + case SUB_MENU_COPY_PAK_ERROR_NO_PAGES_1P: + j++; + j--; // FAKE + set_text_color(TEXT_RED); + var_s1 = gSubMenuSelection - SUB_MENU_COPY_PAK_ERROR_1P_MIN; + for (i = 0; i < ARRAY_COUNT(D_800E7890) / 4; i++) { // 16 / 4 = 4 + print_text_mode_1(0x00000023, 0x55 + (0x14 * i), D_800E7890[(var_s1 * 4) + i], 0, 0.8f, 0.8f); + } + break; + case SUB_MENU_COPY_PAK_UNABLE_COPY_FROM_1P: + case SUB_MENU_COPY_PAK_UNABLE_READ_FROM_2P: + set_text_color(TEXT_RED); + var_s1 = gSubMenuSelection - SUB_MENU_COPY_PAK_UNABLE_ERROR_MIN; + for (i = 0; i < ARRAY_COUNT(D_800E7900) / 2; i++) { // 6 / 2 = 3 + print_text_mode_1(0x00000041, 0x55 + (0x14 * i), D_800E7900[(var_s1 * 3) + i], 0, 0.9f, 0.9f); + } + break; + case SUB_MENU_COPY_PAK_CREATE_GAME_DATA_INIT: + case SUB_MENU_COPY_PAK_CREATE_GAME_DATA_DONE: + set_text_color(TEXT_YELLOW); + for (i = 0; i < ARRAY_COUNT(D_800E7A48); i++) { + print_text_mode_1(0x00000050, 0x55 + (0x14 * i), D_800E7A48[i], 0, 1.0f, 1.0f); + } + break; + case SUB_MENU_COPY_PAK_FROM_GHOST1_1P: + case SUB_MENU_COPY_PAK_FROM_GHOST2_1P: + case SUB_MENU_COPY_PAK_TO_GHOST1_2P: + case SUB_MENU_COPY_PAK_TO_GHOST2_2P: + switch (gSubMenuSelection) { + case SUB_MENU_COPY_PAK_FROM_GHOST1_1P: + case SUB_MENU_COPY_PAK_FROM_GHOST2_1P: + var_s5 = SUB_MENU_COPY_PAK_FROM_GHOST_MIN; + var_s4 = 0; + break; + case SUB_MENU_COPY_PAK_TO_GHOST1_2P: + case SUB_MENU_COPY_PAK_TO_GHOST2_2P: + var_s5 = SUB_MENU_COPY_PAK_TO_GHOST_MIN; + var_s4 = 1; + default: + break; + } + temp = var_s4; // only semi-fake + set_text_color(temp + 1); + print_text1_center_mode_1(0x000000A0, 0x00000055, D_800E7920[temp], 0, 0.6f, 0.6f); + for (i = 0; i < ARRAY_COUNT(D_800E7918); i++) { + set_text_color(TEXT_YELLOW); + print_text1_center_mode_1(0x5C + (0x82 * i), 0x0000007D, D_800E7918[i], 0, 0.75f, 0.75f); + for (j = 0; j < 2; j++) { + if (i != temp) { + text_rainbow_effect(gSubMenuSelection - var_s5, j, TEXT_GREEN); + if (j == (gSubMenuSelection - var_s5)) { + spE0.column = 0x20 + (0x89 * i); + spE0.row = 0x96 + (0x1E * j); + } + } else if ((temp != 0) && (j == arg0->param2)) { + set_text_color((s32) gGlobalTimer % 3); + } else { + set_text_color(TEXT_GREEN); + } + convert_number_to_ascii(j + 1, &spB8[0]); + print_text_mode_1(0x20 + (0x89 * i), 0x96 + (0x1E * j), &spB8[1], 0, 0.6f, 0.6f); + if (i == 0) { + var_v1 = &D_8018EE10[j]; + } else { + var_v1 = &((struct_8018EE10_entry*) gSomeDLBuffer)[j]; + } + if (var_v1->ghostDataSaved == 0) { + print_text_mode_1(0x2A + (i * 0x89), 0x96 + (0x1E * j), D_800E7A44, 0, 0.5f, 0.5f); + } else { + print_text_mode_1( + 0x2A + (i * 0x89), 0x96 + (0x1E * j), + gCourseNamesDup2[gCupCourseOrder[var_v1->courseIndex / 4][var_v1->courseIndex % 4]], 0, + 0.5f, 0.5f); + } + } + } + break; + case SUB_MENU_COPY_PAK_PROMPT_QUIT: + case SUB_MENU_COPY_PAK_PROMPT_COPY: + set_text_color(TEXT_RED); + for (i = 0; i < ARRAY_COUNT(D_800E7928); i++) { + print_text1_center_mode_1(0x000000A0, 0x4D + (0x14 * i), D_800E7928[i], 0, 0.8f, 0.8f); + } + for (i = 0; i < ARRAY_COUNT(D_800E7918); i++) { + set_text_color(TEXT_YELLOW); + print_text1_center_mode_1(0x5C + (0x82 * i), 0x0000007D, D_800E7918[i], 0, 0.75f, 0.75f); + for (j = 0; j != 2; j++) { + if (i == 0) { + if (j == arg0->param1) { + set_text_color((s32) gGlobalTimer % 3); + } else { + set_text_color(TEXT_GREEN); + } + } else if (j == arg0->param2) { + set_text_color((s32) gGlobalTimer % 3); + } else { + set_text_color(TEXT_GREEN); + } + convert_number_to_ascii(j + 1, &spA8[0]); + print_text_mode_1(0x20 + (0x89 * i), 0x96 + (0x1E * j), &spA8[1], 0, 0.6f, 0.6f); + if (i == 0) { + do { + } while (0); // FAKE + var_v1 = &D_8018EE10[j]; + } else { + var_v1 = &((struct_8018EE10_entry*) gSomeDLBuffer)[j]; + } + if (var_v1->ghostDataSaved == 0) { + print_text_mode_1(0x2A + (i * 0x89), 0x96 + (0x1E * j), D_800E7A44, 0, 0.5f, 0.5f); + } else { + print_text_mode_1( + 0x2A + (i * 0x89), 0x96 + (0x1E * j), + gCourseNamesDup2[gCupCourseOrder[var_v1->courseIndex / 4][var_v1->courseIndex % 4]], 0, + 0.5f, 0.5f); + } + } + } + for (i = 0; i < ARRAY_COUNT(D_800E7930); i++) { + if (i == (gSubMenuSelection - SUB_MENU_COPY_PAK_PROMPT_MIN)) { + spE0.column = 0x6E + (0x32 * i); + spE0.row = 0x00D2; + } + text_rainbow_effect((gSubMenuSelection - SUB_MENU_COPY_PAK_PROMPT_MIN), j, TEXT_YELLOW); + print_text_mode_1(0x6E + (0x32 * i), 0x000000D2, D_800E7930[i], 0, 0.75f, 0.75f); + } + break; + case SUB_MENU_COPY_PAK_START: + case SUB_MENU_COPY_PAK_COPYING: + case SUB_MENU_COPY_PAK_COMPLETED: + var_s5 = (gSubMenuSelection - SUB_MENU_COPY_PAK_ACTION_MIN) / 2; + set_text_color(TEXT_RED); + print_text1_center_mode_1(0x000000A0, 0x00000055, D_800E7938[var_s5], 0, 1.0f, 1.0f); + for (i = 0; i < ARRAY_COUNT(D_800E7918); i++) { + set_text_color(TEXT_YELLOW); + print_text1_center_mode_1(0x5C + (0x82 * i), 0x0000007D, D_800E7918[i], 0, 0.75f, 0.75f); + for (j = 0; j < 2; j++) { + if (i == 0) { + if (j == arg0->param1) { + if (var_s5 == 0) { + set_text_color(TEXT_RED); + } else { + set_text_color(gGlobalTimer % 3); + } + } else { + set_text_color(TEXT_GREEN); + } + } else if (j == arg0->param2) { + set_text_color(TEXT_RED); + } else { + set_text_color(TEXT_GREEN); + } + convert_number_to_ascii(j + 1, &sp98[0]); + print_text_mode_1(0x20 + (0x89 * i), 0x96 + (0x1E * j), &sp98[1], 0, 0.6f, 0.6f); + if (i == 0) { + var_v1 = &D_8018EE10[j]; + } else { + var_v1 = &((struct_8018EE10_entry*) gSomeDLBuffer)[j]; + } + if (var_v1->ghostDataSaved == 0) { + print_text_mode_1(0x2A + (i * 0x89), 0x96 + (0x1E * j), D_800E7A44, 0, 0.5f, 0.5f); + } else { + print_text_mode_1( + 0x2A + (i * 0x89), 0x96 + (0x1E * j), + gCourseNamesDup2[gCupCourseOrder[var_v1->courseIndex / 4][var_v1->courseIndex % 4]], 0, + 0.5f, 0.5f); + } + } + } + break; + } + switch (gSubMenuSelection) { /* switch 2 */ + case SUB_MENU_COPY_PAK_FROM_GHOST1_1P: /* switch 2 */ + case SUB_MENU_COPY_PAK_FROM_GHOST2_1P: /* switch 2 */ + case SUB_MENU_COPY_PAK_TO_GHOST1_2P: /* switch 2 */ + case SUB_MENU_COPY_PAK_TO_GHOST2_2P: /* switch 2 */ + case SUB_MENU_COPY_PAK_PROMPT_QUIT: /* switch 2 */ + case SUB_MENU_COPY_PAK_PROMPT_COPY: /* switch 2 */ + spE0.column -= 5; + spE0.row -= 6; + break; + default: /* switch 2 */ + spE0.column -= 0xA; + spE0.row -= 8; + break; + } + func_800A66A8(arg0, (Unk_D_800E70A0*) &spE0); +} +#endif +void func_800A2D1C(MenuItem* arg0) { + switch (D_80164A28) { + case 1: + gDisplayListHead = func_80098FC8(gDisplayListHead, 0, 0, 0x13F, 0x28); + gDisplayListHead = func_80098FC8(gDisplayListHead, 0, 0xC7, 0x13F, 0xEF); + arg0->param1 = 0x28; + break; + case 2: + arg0->param1 -= 2; + if (arg0->param1 > 0) { + gDisplayListHead = func_80098FC8(gDisplayListHead, 0, 0, 0x13F, arg0->param1); + gDisplayListHead = func_80098FC8(gDisplayListHead, 0, 0xEF - arg0->param1, 0x13F, 0xEF); + } else { + arg0->type = 0; + } + break; + default: + if ((gModeSelection != GRAND_PRIX) || (gPlayerCountSelection1 != 1) || (gDemoUseController != 0)) { + arg0->type = 0; + } else { + arg0->param1 -= 2; + if (arg0->param1 > 0) { + gDisplayListHead = func_80098FC8(gDisplayListHead, 0, 0, 0x13F, arg0->param1); + gDisplayListHead = func_80098FC8(gDisplayListHead, 0, 0xEF - arg0->param1, 0x13F, 0xEF); + } else { + arg0->type = 0; + } + } + break; + } +} + +void func_800A2EB8(MenuItem* arg0) { + s8 sp70[8]; + UNUSED s32 stackPadding0; + char sp68[3]; + s32 temp_s0; + s32 var_a0; + s32 var_s2; + + for (var_s2 = 0; var_s2 < NUM_PLAYERS; var_s2++) { + sp70[var_s2] = gPlayers[gGPCurrentRacePlayerIdByRank[var_s2]].characterId; + } + set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_1); +#ifdef VERSION_JP + print_text_mode_1(arg0->column + 0x25, arg0->row + 0x19, "result", 0, 1.0f, 1.0f); +#else + print_text_mode_1(arg0->column + 0x1E, arg0->row + 0x19, "results", 0, 1.0f, 1.0f); +#endif + set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_2); + print_text_mode_1(arg0->column + 0x2C, arg0->row + 0x28, "round", 0, 0.7f, 0.7f); + convert_number_to_ascii(gCourseIndexInCup + 1, sp68); + print_text_mode_1(arg0->column + 0x57, arg0->row + 0x28, &sp68[1], 0, 0.7f, 0.7f); + for (var_s2 = 0; var_s2 < 4; var_s2++) { + if (gGPCurrentRacePlayerIdByRank[var_s2] < gPlayerCount) { + var_a0 = (s32) gGlobalTimer % 3; + } else { + var_a0 = TEXT_YELLOW; + } + set_text_color(var_a0); + func_800A32B4(arg0->column + 7, arg0->row + (0x10 * var_s2) + 0x38, (s32) sp70[var_s2], var_s2); + } + for (var_s2 = 4; var_s2 < 8; var_s2++) { + if (gGPCurrentRacePlayerIdByRank[var_s2] < gPlayerCount) { + var_a0 = (s32) gGlobalTimer % 3; + } else { + var_a0 = TEXT_YELLOW; + } + set_text_color(var_a0); + func_800A32B4(0xBE - arg0->column, arg0->row + (0x10 * var_s2) + 0x5A, sp70[var_s2], var_s2); + } + set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_2); +#ifdef VERSION_JP + print_text_mode_1(0xC3 - arg0->column, arg0->row + 0xE1, gCupNames[D_800DC540], 0, 0.7f, 0.7f); + print_text_mode_1(0x113 - arg0->column, arg0->row + 0xE1, + D_800E76CC[gGameModeSubMenuColumn[gPlayerCount - 1][gGameModeMenuColumn[gPlayerCount - 1]]], 0, + 0.7f, 0.7); +#else + temp_s0 = (s32) (((f32) (get_string_width(gCupNames[gCupSelection]) + 8) * 0.6f) / 2); + print_text1_center_mode_1( + (-(s32) (((f32) (get_string_width(D_800E76CC[gCCSelection]) + 8) * 0.6f) / 2) - arg0->column) + 0xF5, + arg0->row + 0xE1, gCupNames[D_800DC540], 0, 0.6f, 0.6f); + print_text1_center_mode_1( + (temp_s0 - arg0->column) + 0xF5, arg0->row + 0xE1, + D_800E76CC[gGameModeSubMenuColumn[gPlayerCount - 1][gGameModeMenuColumn[gPlayerCount - 1]]], 0, 0.6f, 0.6f); +#endif +} + +void func_800A32B4(s32 arg0, s32 arg1, s32 characterId, s32 rank) { + UNUSED s32 stackPadding0; + f32 sp50; + UNUSED s32 stackPadding1; + UNUSED s32 stackPadding2; + UNUSED s32 stackPadding3; + UNUSED s32 stackPadding4; + char sp3C[4]; + + sp50 = gTimePlayerLastTouchedFinishLine[gGPCurrentRacePlayerIdByRank[rank]]; + convert_number_to_ascii(rank + 1, sp3C); + sp3C[2] = '.'; + sp3C[3] = '\0'; + func_800939C8(arg0 - 1, arg1, &sp3C[1], -4, 0.7f, 0.7f); +#ifdef VERSION_JP + print_text_mode_1(arg0 + 0xA, arg1, D_800E76A8[characterId], 0, 0.7f, 0.7f); +#else + print_text_mode_1(arg0 + 0xA, arg1, D_800E76A8[characterId], 0, 0.65f, 0.7f); +#endif + convert_number_to_ascii((s32) (sp50 / 60.0f), sp3C); + func_800939C8(arg0 + 0x42, arg1, sp3C, 0, 0.7f, 0.7f); + convert_number_to_ascii((s32) sp50 % 60, sp3C); + print_text_mode_1(arg0 + 0x4E, arg1, "'", 0, 0.7f, 0.7f); + func_800939C8(arg0 + 0x56, arg1, sp3C, 0, 0.7f, 0.7f); + convert_number_to_ascii((s32) ((f64) sp50 * 100.0) % 100, sp3C); + print_text_mode_1(arg0 + 0x62, arg1, "\"", 0, 0.7f, 0.7f); + func_800939C8(arg0 + 0x6A, arg1, sp3C, 0, 0.7f, 0.7f); +} + +#ifdef VERSION_JP +void func_800A34A8(MenuItem* arg0) { + s8 sp80[8]; + UNUSED s32 stackPadding0; + char sp78[3]; +#ifndef VERSION_JP /* JP's frame is 8 bytes smaller here */ + UNUSED s32 stackPadding1; +#endif + /* JP declares test here, which is what puts its spill slot at 0x58 not 0x5c. */ + s32 test; + s32 var_a0; + s32 var_v0; + s32 var_v1; +#ifndef VERSION_JP /* JP's frame is 8 bytes smaller here */ + UNUSED s32 stackPadding2; +#endif + s32 rank; + + if (arg0->state != 0) { + if (arg0->state < 9) { + for (rank = 0; rank < NUM_PLAYERS; rank++) { + sp80[rank] = gPlayers[gGPCurrentRacePlayerIdByRank[rank]].characterId; + } + } else { + func_800A3A10(sp80); + func_800A3A10(gCharacterIdByGPOverallRank); + } + set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_1); + print_text_mode_1(arg0->column + 0x1E, 0x19 - arg0->row, "driver's point", 0, 0.8, 0.8); + set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_2); + print_text_mode_1(arg0->column + 0x36, 0x28 - arg0->row, "round", 0, 0.7, 0.7); + convert_number_to_ascii(gCourseIndexInCup + 1, sp78); + print_text_mode_1(arg0->column + 0x61, (0x28 & 0xFFFFFFFF) - arg0->row, &sp78[1], 0, 0.7, 0.7); + for (rank = 0; rank < 4; rank++) { + test = arg0->state; + if ((test != 8) && (test != 9)) { + var_v0 = 0; + } else { + if ((rank * 5) < arg0->param1) { + var_v0 = 1; + } else { + var_v0 = 0; + } + } + if (var_v0 == 0) { + if (arg0->state < 9) { + var_v0 = gGPCurrentRacePlayerIdByRank[rank]; + var_v1 = 0; + } else { + var_v1 = 0x0000000D; + var_v0 = gGetPlayerByCharacterId[sp80[rank]]; + } + if (var_v0 < gPlayerCount) { + var_a0 = (s32) gGlobalTimer % 3; + } else { + var_a0 = 3; + } + set_text_color(var_a0); + func_800A3ADC(arg0, arg0->column + var_v1 + 0x1C, ((rank * 0x10) - arg0->row) + 0x38, sp80[rank], rank, + sp80); + } + } + for (rank = 4; rank < NUM_PLAYERS; rank++) { + test = arg0->state; + if ((test != 8) && (test != 9)) { + var_v0 = 0; + } else { + if ((rank * 5) < arg0->param1) { + var_v0 = 1; + } else { + var_v0 = 0; + } + } + if (var_v0 == 0) { + if (arg0->state < 9) { + var_v0 = gGPCurrentRacePlayerIdByRank[rank]; + } else { + var_v0 = gGetPlayerByCharacterId[sp80[rank]]; + } + if (var_v0 < gPlayerCount) { + var_a0 = (s32) gGlobalTimer % 3; + } else { + var_a0 = 3; + } + set_text_color(var_a0); + func_800A3ADC(arg0, 0xBE - arg0->column, arg0->row + (rank * 0x10) + 0x5A, sp80[rank], rank, sp80); + } + } + set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_2); + print_text_mode_1(0xAF - arg0->column, arg0->row + 0xE1, gCupNames[D_800DC540], 0, 0.7f, 0.7f); + print_text_mode_1(0x104 - arg0->column, arg0->row + 0xE1, + D_800E76CC[gGameModeSubMenuColumn[gPlayerCount - 1][gGameModeMenuColumn[gPlayerCount - 1]]], + 0, 0.7, 0.7); + } +} +#else +void func_800A34A8(MenuItem* arg0) { + s8 sp80[8]; + UNUSED s32 stackPadding0; + char sp78[3]; + UNUSED s32 stackPadding1; + s32 var_a0; + s32 var_v0; + s32 var_v1; + UNUSED s32 stackPadding2; + s32 temp_s0_3; + s32 rank; + s32 test; + + if (arg0->state != 0) { + if (arg0->state < 9) { + for (rank = 0; rank < NUM_PLAYERS; rank++) { + sp80[rank] = gPlayers[gGPCurrentRacePlayerIdByRank[rank]].characterId; + } + } else { + func_800A3A10(sp80); + func_800A3A10(gCharacterIdByGPOverallRank); + } set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_1); print_text_mode_1(arg0->column + 0x19, 0x19 - arg0->row, "driver's points", 0, 0.8f, 0.8f); set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_2); @@ -7246,630 +8245,1220 @@ void func_800A34A8(MenuItem* arg0) { } else { var_v0 = 0; } - } - if (var_v0 == 0) { - if (arg0->state < 9) { - var_v0 = gGPCurrentRacePlayerIdByRank[rank]; - var_v1 = 0; + } + if (var_v0 == 0) { + if (arg0->state < 9) { + var_v0 = gGPCurrentRacePlayerIdByRank[rank]; + var_v1 = 0; + } else { + var_v1 = 0x0000000D; + var_v0 = gGetPlayerByCharacterId[sp80[rank]]; + } + if (var_v0 < gPlayerCount) { + var_a0 = (s32) gGlobalTimer % 3; + } else { + var_a0 = 3; + } + set_text_color(var_a0); + func_800A3ADC(arg0, arg0->column + var_v1 + 0x1C, ((rank * 0x10) - arg0->row) + 0x38, sp80[rank], rank, + sp80); + } + } + for (rank = 4; rank < NUM_PLAYERS; rank++) { + test = arg0->state; + if ((test != 8) && (test != 9)) { + var_v0 = 0; + } else { + if ((rank * 5) < arg0->param1) { + var_v0 = 1; + } else { + var_v0 = 0; + } + } + if (var_v0 == 0) { + if (arg0->state < 9) { + var_v0 = gGPCurrentRacePlayerIdByRank[rank]; + } else { + var_v0 = gGetPlayerByCharacterId[sp80[rank]]; + } + if (var_v0 < gPlayerCount) { + var_a0 = (s32) gGlobalTimer % 3; + } else { + var_a0 = 3; + } + set_text_color(var_a0); + func_800A3ADC(arg0, 0xBE - arg0->column, arg0->row + (rank * 0x10) + 0x5A, sp80[rank], rank, sp80); + } + } + set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_2); + temp_s0_3 = ((get_string_width(gCupNames[gCupSelection]) + 8) * 0.6f) / 2; + print_text1_center_mode_1( + (-(s32) (((get_string_width(D_800E76CC[gCCSelection]) + 8) * 0.6f) / 2) - arg0->column) + 0xE6, + arg0->row + 0xE1, gCupNames[D_800DC540], 0, 0.6f, 0.6f); + print_text1_center_mode_1( + (temp_s0_3 - arg0->column) + 0xE6, arg0->row + 0xE1, + D_800E76CC[gGameModeSubMenuColumn[gPlayerCount - 1][gGameModeMenuColumn[gPlayerCount - 1]]], 0, 0.6f, 0.6f); + } +} +#endif + +void func_800A3A10(s8* arg0) { + s32 temp_a3; + s32 temp_t1; + s32 var_a1; + s32 var_v0; + UNUSED s32 thing1; + UNUSED s8* new_var; + + for (var_v0 = 0; var_v0 < 8; var_v0++) { + arg0[var_v0] = var_v0; + for (var_a1 = var_v0; var_a1 > 0; var_a1--) { + new_var = &arg0[var_a1]; + temp_a3 = arg0[var_a1 - 1]; + thing1 = gGPPointsByCharacterId[temp_a3]; + temp_t1 = arg0[var_a1]; + if (gGPPointsByCharacterId[temp_a3] < gGPPointsByCharacterId[temp_t1]) { + arg0[var_a1] = temp_a3; + arg0[var_a1 - 1] = temp_t1; + } else if (gGPPointsByCharacterId[temp_t1] == gGPPointsByCharacterId[temp_a3]) { + if ((gGetPlayerByCharacterId[temp_t1] < gPlayerCount) && + (gGetPlayerByCharacterId[temp_t1] < gGetPlayerByCharacterId[temp_a3])) { + arg0[var_a1] = temp_a3; + arg0[var_a1 - 1] = temp_t1; + } else { + break; + } + } else { + break; + } + } + } +} + +void func_800A3ADC(MenuItem* arg0, s32 arg1, s32 arg2, s32 characterId, s32 arg4, s8* arg5) { + UNUSED s32 stackPadding0; + s32 wut; + char sp34[4]; + s32 phi_v1; + + if (arg0->state < 9) { + convert_number_to_ascii(arg4 + 1, sp34); + } else { + for (phi_v1 = arg4; phi_v1 > 0; phi_v1--) { + wut = phi_v1 - 1; + if (gGPPointsByCharacterId[arg5[phi_v1]] != gGPPointsByCharacterId[arg5[wut]]) { + break; + } + } + convert_number_to_ascii(phi_v1 + 1, sp34); + } + sp34[2] = '.'; + sp34[3] = '\0'; + func_800939C8(arg1, arg2, &sp34[1], -4, 0.7f, 0.7f); + print_text_mode_1(arg1 + 0xA, arg2, D_800E76A8[characterId], 0, 0.7f, 0.7f); + convert_number_to_ascii(gGPPointsByCharacterId[characterId], sp34); + func_800939C8(arg1 + 0x47, arg2, sp34, 0, 0.7f, 0.7f); + if ((arg4 < ARRAY_COUNT(gGPPointRewards)) && (arg0->state < 9)) { + convert_number_to_ascii(sGPPointsCopy[arg4], sp34); + sp34[0] = '+'; + print_text_mode_1(arg1 + 0x5A, arg2, sp34, 0, 0.7f, 0.7f); + } +} + +void time_trials_finish_text_render(MenuItem* arg0) { + s32 recordType; + s32 rowOffset; + + // name of the course + set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_1); +#ifdef VERSION_JP + print_text1_center_mode_1(arg0->column + 0x46, arg0->row + 0x19, + gCourseNamesDup[gCupCourseOrder[gCupSelection][gCourseIndexInCup]], 0, 0.75f, 0.75f); +#else + print_text1_center_mode_1(arg0->column + 0x43, arg0->row + 0x19, + gCourseNamesDup[gCupCourseOrder[gCupSelection][gCourseIndexInCup]], 0, 0.6f, 0.6f); +#endif + + // lap time text + set_text_color(TEXT_YELLOW); + print_text1_center_mode_1(arg0->column + 0x46, arg0->row + 0x28, gLapTimeText, 0, 0.75f, 0.75f); + + // lap time + for (recordType = 0, rowOffset = 0; recordType < TIME_TRIAL_3LAP_RECORD_5; recordType += 1, rowOffset += 0xF) { + render_lap_time(recordType, arg0->column + 0x17, arg0->row + rowOffset + 0x37); + } + + // best record text + set_text_color(TEXT_YELLOW); + print_text_mode_1(0xB4 - arg0->column, arg0->row + 0x86, gBestTimeText[0], 0, 0.75f, 0.75f); + + // best record + for (recordType = 0, rowOffset = 0; recordType < TIME_TRIAL_1LAP_RECORD; recordType += 1, rowOffset += 0xD) { + set_text_color(TEXT_RED); + render_lap_times(recordType, 0xAA - arg0->column, arg0->row + rowOffset + 0x92); + } + set_text_color(TEXT_YELLOW); + print_text_mode_1(0xB4 - arg0->column, arg0->row + 0xD5, gBestTimeText[1], 0, 0.75f, 0.75f); + render_lap_times(TIME_TRIAL_1LAP_RECORD, 0xAA - arg0->column, arg0->row + 0xE1); +} + +#ifdef VERSION_JP +void func_800A3E60(MenuItem* arg0) { + UNUSED s32 stackPadding0; + Unk_D_800E70A0 sp84; +#ifndef VERSION_JP /* JP frame */ + UNUSED s32 stackPadding1; +#endif +#ifndef VERSION_JP /* JP frame */ + UNUSED s32 stackPadding2; +#endif +#ifndef VERSION_JP /* JP frame */ + UNUSED s32 stackPadding3; +#endif +#ifndef VERSION_JP /* JP frame */ + UNUSED s32 stackPadding4; +#endif + /* IDO gives every declared local a stack slot, handed out downwards from the + top of the frame in declaration order, so this order is what puts sp60 at + 0x60 and var_v1 at 0x6c. */ + s32 var_s1; + Unk_D_800E70A0* var_v0_5; + f32 someScale = 0.75f; + f32 someScale2; + f32 someScale3; + s32 var_v1; + s32* rowPtr; + s32 var_v0; + char sp60[3]; + + var_v0 = arg0->state; + if ((var_v0 == 0) || (var_v0 == 0x0000001F)) { + return; + } + + someScale2 = someScale; + set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_1); + print_text1_center_mode_1(arg0->column + 0x55, 0x19 - arg0->row, + gCourseNamesDup[gCupCourseOrder[gCupSelection][gCourseIndexInCup]], 0, someScale, someScale); + set_text_color(TEXT_YELLOW); + print_text1_center_mode_1(arg0->column + 0x55, 0x28 - arg0->row, gLapTimeText, 0, someScale, someScale); + for (var_s1 = 0; var_s1 < 4; var_s1++) { + render_lap_time(var_s1, arg0->column + 0x26, ((0xF * var_s1) - arg0->row) + 0x37); + } + switch (arg0->state) { + case 1: + case 5: + case 6: + case 7: + case 8: + case 9: + case 10: + case 30: + for (var_s1 = 0; var_s1 < 6; var_s1++) { + var_v1 = 0; + text_rainbow_effect(arg0->state - 5, var_s1, 1); + switch (var_s1) { /* switch 3; irregular */ + case 4: /* switch 3 */ + if (gPostTimeTrialReplayCannotSave == 1) { + var_v1 = 1; + } + break; + case 5: /* switch 3 */ + if (bPlayerGhostDisabled != 0) { + var_v1 = 2; + } + break; + } + if (var_v1 != 0) { + set_text_color(TEXT_BLUE); + gDPSetPrimColor(gDisplayListHead++, 0, 0, 0x00, 0x00, 0x00, 0x96); +#ifdef VERSION_JP + rowPtr = &arg0->row; + print_text_mode_2(0xB9 - arg0->column, *rowPtr + (0xD * var_s1) + 0x93, + gTextPauseButton[var_s1 + 1], 0, someScale, someScale); } else { - var_v1 = 0x0000000D; - var_v0 = gGetPlayerByCharacterId[sp80[rank]]; + print_text_mode_1(0xB9 - arg0->column, arg0->row + (0xD * var_s1) + 0x93, + gTextPauseButton[var_s1 + 1], 0, someScale, someScale); } - if (var_v0 < gPlayerCount) { - var_a0 = (s32) gGlobalTimer % 3; +#else + print_text_mode_2(0xB2 - arg0->column, arg0->row + (0xD * var_s1) + 0x93, + gTextPauseButton[var_s1 + 1], 0, someScale, someScale); } else { - var_a0 = 3; + print_text_mode_1(0xB2 - arg0->column, arg0->row + (0xD * var_s1) + 0x93, + gTextPauseButton[var_s1 + 1], 0, someScale, someScale); } - set_text_color(var_a0); - func_800A3ADC(arg0, arg0->column + var_v1 + 0x1C, ((rank * 0x10) - arg0->row) + 0x38, sp80[rank], rank, - sp80); +#endif } - } - for (rank = 4; rank < NUM_PLAYERS; rank++) { - test = arg0->state; - if ((test != 8) && (test != 9)) { - var_v0 = 0; - } else { - if ((rank * 5) < arg0->param1) { - var_v0 = 1; + break; + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + set_text_color(TEXT_YELLOW); + var_v1 = arg0->state - 11; + for (var_s1 = 0; var_s1 < 5; var_s1++) { + print_text_mode_1(0x000000AA, 0x93 + (0xD * var_s1), D_800E798C[(var_v1 * 5) + var_s1], 0, someScale2, + someScale2); + } + break; + case 17: + case 18: + set_text_color(TEXT_GREEN); + for (var_s1 = 0; var_s1 < 2; var_s1++) { + print_text_mode_1(0x000000AA, arg0->row + (0xD * var_s1) + 0x8C, D_800E7A3C[var_s1], 0, someScale, + someScale); + } + someScale3 = 0.7f; + for (var_s1 = 0; var_s1 < 2; var_s1++) { + text_rainbow_effect(arg0->state - 0x11, var_s1, 1); + convert_number_to_ascii(var_s1 + 1, sp60); + print_text_mode_1(0xB4 - arg0->column, 0xAA + (0x1E * var_s1), &sp60[1], 0, someScale2, someScale2); + if (D_8018EE10[var_s1].ghostDataSaved == 0) { + someScale2 = someScale; + print_text_mode_1(0xC3 - arg0->column, 0xAA + (0x1E * var_s1), D_800E7A44, 0, someScale, someScale); } else { - var_v0 = 0; + someScale2 = someScale3; + print_text_mode_1(0xC3 - arg0->column, 0xAA + (0x1E * var_s1), + gCourseNamesDup2[gCupCourseOrder[D_8018EE10[var_s1].courseIndex / 4] + [D_8018EE10[var_s1].courseIndex % 4]], + 0, someScale3, someScale3); + goto skip_ghost_name; // fake + skip_ghost_name:; + } + } + break; + case 19: + set_text_color(TEXT_YELLOW); + for (var_s1 = 0; var_s1 < 3; var_s1++) { + print_text_mode_1(0x000000AA, (0xD * var_s1) + 0x93, D_800E7A48[var_s1], 0, someScale, someScale); + } + break; + case 20: + case 21: + if (var_s1 && var_s1) {} + set_text_color(TEXT_YELLOW); + for (var_s1 = 0; var_s1 < 3; var_s1++) { +#ifdef VERSION_JP + print_text_mode_1(0x000000AF, arg0->row + (0xD * var_s1) + 0x8C, D_800E7A60[var_s1], 0, someScale2, + someScale2); +#else + print_text_mode_1(0x000000A3, arg0->row + (0xD * var_s1) + 0x8C, D_800E7A60[var_s1], 0, someScale2, + someScale2); +#endif + } + for (var_s1 = 0; var_s1 < 2; var_s1++) { + text_rainbow_effect(arg0->state - 0x14, var_s1, 1); + print_text_mode_1(0xC8 - arg0->column, 0xB9 + (0xF * var_s1), D_800E7A6C[var_s1], 0, someScale, someScale); + } + break; + case 25: + set_text_color(TEXT_YELLOW); + for (var_s1 = 0; var_s1 < 3; var_s1++) { +#ifdef VERSION_JP + print_text_mode_1(0x000000AA, (0xD * var_s1) + 0x93, D_800E7A74[var_s1], 0, someScale2, someScale2); +#else + print_text_mode_1(0x000000A3, (0xD * var_s1) + 0x93, D_800E7A74[var_s1], 0, someScale2, someScale2); +#endif + } + break; + case 26: + set_text_color(TEXT_YELLOW); + for (var_s1 = 0; var_s1 < 2; var_s1++) { + print_text_mode_1(0x000000AA, (0xD * var_s1) + 0x93, D_800E7A80[var_s1], 0, someScale, someScale); + } + break; + } + switch (arg0->state) { /* switch 2 */ + case 5: /* switch 2 */ + case 6: /* switch 2 */ + case 7: /* switch 2 */ + case 8: /* switch 2 */ + case 9: /* switch 2 */ + case 10: /* switch 2 */ + var_v0_5 = &D_800E7390[arg0->state - 5]; + break; + case 17: /* switch 2 */ + case 18: /* switch 2 */ + var_v0_5 = &D_800E73C0[arg0->state - 17]; + break; + case 20: /* switch 2 */ + case 21: /* switch 2 */ + var_v0_5 = &D_800E73D0[arg0->state - 20]; + break; + case 30: /* switch 2 */ + var_v0_5 = &D_800E7390[arg0->param1 - 5]; + break; + default: + return; + } + sp84.column = var_v0_5->column - arg0->column; + sp84.row = var_v0_5->row + arg0->row; + func_800A66A8(arg0, &sp84); +} +#else +void func_800A3E60(MenuItem* arg0) { + UNUSED s32 stackPadding0; + Unk_D_800E70A0 sp84; + UNUSED s32 stackPadding1; + UNUSED s32 stackPadding2; + UNUSED s32 stackPadding3; + UNUSED s32 stackPadding4; + s32 var_v0; + s32 var_v1; + s32 var_s1; + Unk_D_800E70A0* var_v0_5; + char sp60[3]; + + var_v0 = arg0->state; + if (var_v0 == 0) { + return; + } + if (var_v0 == 0x0000001F) { + return; + } + + set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_1); + print_text1_center_mode_1(arg0->column + 0x55, 0x19 - arg0->row, + gCourseNamesDup[gCupCourseOrder[gCupSelection][gCourseIndexInCup]], 0, 0.6f, 0.6f); + set_text_color(TEXT_YELLOW); + print_text1_center_mode_1(arg0->column + 0x55, 0x28 - arg0->row, gLapTimeText, 0, 0.75f, 0.75f); + for (var_s1 = 0; var_s1 < 4; var_s1++) { + render_lap_time(var_s1, arg0->column + 0x26, ((0xF * var_s1) - arg0->row) + 0x37); + } + switch (arg0->state) { + case 1: + case 5: + case 6: + case 7: + case 8: + case 9: + case 10: + case 30: + for (var_s1 = 0; var_s1 < 6; var_s1++) { + var_v1 = 0; + text_rainbow_effect(arg0->state - 5, var_s1, 1); + switch (var_s1) { /* switch 3; irregular */ + case 4: /* switch 3 */ + if (gPostTimeTrialReplayCannotSave == 1) { + var_v1 = 1; + } + break; + case 5: /* switch 3 */ + if (bPlayerGhostDisabled != 0) { + var_v1 = 2; + } + break; } - } - if (var_v0 == 0) { - if (arg0->state < 9) { - var_v0 = gGPCurrentRacePlayerIdByRank[rank]; + if (var_v1 != 0) { + set_text_color(TEXT_BLUE); + gDPSetPrimColor(gDisplayListHead++, 0, 0, 0x00, 0x00, 0x00, 0x96); + print_text_mode_2(0xB2 - arg0->column, arg0->row + (0xD * var_s1) + 0x93, + gTextPauseButton[var_s1 + 1], 0, 0.75f, 0.75f); } else { - var_v0 = gGetPlayerByCharacterId[sp80[rank]]; + print_text_mode_1(0xB2 - arg0->column, arg0->row + (0xD * var_s1) + 0x93, + gTextPauseButton[var_s1 + 1], 0, 0.75f, 0.75f); } - if (var_v0 < gPlayerCount) { - var_a0 = (s32) gGlobalTimer % 3; + } + break; + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + set_text_color(TEXT_YELLOW); + var_v1 = arg0->state - 11; + for (var_s1 = 0; var_s1 < 7; var_s1++) { + print_text_mode_1(0x000000A2, 0x8C + (0xD * var_s1), D_800E798C[(var_v1 * 7) + var_s1], 0, 0.6f, 0.6f); + } + break; + case 17: + case 18: + set_text_color(TEXT_GREEN); + for (var_s1 = 0; var_s1 < 2; var_s1++) { + print_text_mode_1(0x000000A5, arg0->row + (0xD * var_s1) + 0x8C, D_800E7A3C[var_s1], 0, 0.7f, 0.7f); + } + for (var_s1 = 0; var_s1 < 2; var_s1++) { + text_rainbow_effect(arg0->state - 0x11, var_s1, 1); + convert_number_to_ascii(var_s1 + 1, sp60); + print_text_mode_1(0xB1 - arg0->column, 0xAA + (0x1E * var_s1), &sp60[1], 0, 0.6f, 0.6f); + if (D_8018EE10[var_s1].ghostDataSaved == 0) { + print_text_mode_1(0xBB - arg0->column, 0xAA + (0x1E * var_s1), D_800E7A44, 0, 0.45f, 0.45f); } else { - var_a0 = 3; + print_text_mode_1(0xBB - arg0->column, 0xAA + (0x1E * var_s1), + gCourseNamesDup2[gCupCourseOrder[D_8018EE10[var_s1].courseIndex / 4] + [D_8018EE10[var_s1].courseIndex % 4]], + 0, 0.45f, 0.45f); } - set_text_color(var_a0); - func_800A3ADC(arg0, 0xBE - arg0->column, arg0->row + (rank * 0x10) + 0x5A, sp80[rank], rank, sp80); } - } - set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_2); - temp_s0_3 = ((get_string_width(gCupNames[gCupSelection]) + 8) * 0.6f) / 2; - print_text1_center_mode_1( - (-(s32) (((get_string_width(D_800E76CC[gCCSelection]) + 8) * 0.6f) / 2) - arg0->column) + 0xE6, - arg0->row + 0xE1, gCupNames[D_800DC540], 0, 0.6f, 0.6f); - print_text1_center_mode_1( - (temp_s0_3 - arg0->column) + 0xE6, arg0->row + 0xE1, - D_800E76CC[gGameModeSubMenuColumn[gPlayerCount - 1][gGameModeMenuColumn[gPlayerCount - 1]]], 0, 0.6f, 0.6f); + break; + case 19: + set_text_color(TEXT_YELLOW); + for (var_s1 = 0; var_s1 < 3; var_s1++) { + print_text_mode_1(0x000000AA, (0xD * var_s1) + 0x93, D_800E7A48[var_s1], 0, 0.8f, 0.8f); + } + break; + case 20: + case 21: + if (var_s1 && var_s1) {} + set_text_color(TEXT_YELLOW); + for (var_s1 = 0; var_s1 < 3; var_s1++) { + print_text_mode_1(0x000000A3, arg0->row + (0xD * var_s1) + 0x8C, D_800E7A60[var_s1], 0, 0.67f, 0.67f); + } + for (var_s1 = 0; var_s1 < 2; var_s1++) { + text_rainbow_effect(arg0->state - 0x14, var_s1, 1); + print_text_mode_1(0xC8 - arg0->column, 0xB9 + (0xF * var_s1), D_800E7A6C[var_s1], 0, 0.75f, 0.75f); + } + break; + case 25: + set_text_color(TEXT_YELLOW); + for (var_s1 = 0; var_s1 < 3; var_s1++) { + print_text_mode_1(0x000000A3, (0xD * var_s1) + 0x93, D_800E7A74[var_s1], 0, 0.67f, 0.67f); + } + break; + case 26: + set_text_color(TEXT_YELLOW); + for (var_s1 = 0; var_s1 < 2; var_s1++) { + print_text_mode_1(0x000000AA, (0xD * var_s1) + 0x93, D_800E7A80[var_s1], 0, 0.75f, 0.75f); + } + break; + } + switch (arg0->state) { /* switch 2 */ + case 5: /* switch 2 */ + case 6: /* switch 2 */ + case 7: /* switch 2 */ + case 8: /* switch 2 */ + case 9: /* switch 2 */ + case 10: /* switch 2 */ + var_v0_5 = &D_800E7390[arg0->state - 5]; + break; + case 17: /* switch 2 */ + case 18: /* switch 2 */ + var_v0_5 = &D_800E73C0[arg0->state - 17]; + break; + case 20: /* switch 2 */ + case 21: /* switch 2 */ + var_v0_5 = &D_800E73D0[arg0->state - 20]; + break; + case 30: /* switch 2 */ + var_v0_5 = &D_800E7390[arg0->param1 - 5]; + break; + default: + return; } + sp84.column = var_v0_5->column - arg0->column; + sp84.row = var_v0_5->row + arg0->row; + func_800A66A8(arg0, &sp84); } +#endif -void func_800A3A10(s8* arg0) { - s32 temp_a3; - s32 temp_t1; - s32 var_a1; - s32 var_v0; - UNUSED s32 thing1; - UNUSED s8* new_var; +void render_lap_time(s32 lapNumber, s32 column, s32 row) { + UNUSED s32 stackPadding0; + s32 time; + UNUSED s32 stackPadding1; + s32 textColor; + char sp34[3]; + MenuItem* temp_v0_2; - for (var_v0 = 0; var_v0 < 8; var_v0++) { - arg0[var_v0] = var_v0; - for (var_a1 = var_v0; var_a1 > 0; var_a1--) { - new_var = &arg0[var_a1]; - temp_a3 = arg0[var_a1 - 1]; - thing1 = gGPPointsByCharacterId[temp_a3]; - temp_t1 = arg0[var_a1]; - if (gGPPointsByCharacterId[temp_a3] < gGPPointsByCharacterId[temp_t1]) { - arg0[var_a1] = temp_a3; - arg0[var_a1 - 1] = temp_t1; - } else if (gGPPointsByCharacterId[temp_t1] == gGPPointsByCharacterId[temp_a3]) { - if ((gGetPlayerByCharacterId[temp_t1] < gPlayerCount) && - (gGetPlayerByCharacterId[temp_t1] < gGetPlayerByCharacterId[temp_a3])) { - arg0[var_a1] = temp_a3; - arg0[var_a1 - 1] = temp_t1; - } else { - break; - } - } else { - break; - } + if (lapNumber < 3) { + time = playerHUD[PLAYER_ONE].lapDurations[lapNumber]; + set_text_color(TEXT_RED); + } else { + time = playerHUD[PLAYER_ONE].someTimer; + set_text_color(TEXT_GREEN); + } + print_text1_left(column + 0x21, row, gPrefixTimeText[lapNumber], 0, 0.7f, 0.7f); + temp_v0_2 = find_menu_items_dupe(MENU_ITEM_TYPE_0BB); + if (lapNumber < 3) { + if (temp_v0_2->param2 & (1 << lapNumber)) { // best lap + textColor = (s32) gGlobalTimer % 3; + } else { + textColor = TEXT_YELLOW; + } + } else { + if (temp_v0_2->param1 >= 0) { + textColor = (s32) gGlobalTimer % 3; + } else { + textColor = TEXT_YELLOW; } } + set_text_color(textColor); + get_time_record_minutes(time, sp34); + func_800939C8(column + 0x2C, row, sp34, 0, 0.7f, 0.7f); + print_text_mode_1(column + 0x37, row, "'", 0, 0.7f, 0.7f); + get_time_record_seconds(time, sp34); + func_800939C8(column + 0x40, row, sp34, 0, 0.7f, 0.7f); + print_text_mode_1(column + 0x4B, row, "\"", 0, 0.7f, 0.7f); + get_time_record_centiseconds(time, sp34); + func_800939C8(column + 0x55, row, sp34, 0, 0.7f, 0.7f); } -void func_800A3ADC(MenuItem* arg0, s32 arg1, s32 arg2, s32 characterId, s32 arg4, s8* arg5) { - UNUSED s32 stackPadding0; - s32 wut; - char sp34[4]; - s32 phi_v1; +void render_lap_times(s32 recordType, s32 column, s32 row) { + UNUSED s32 pad; + u32 timeRecord; + UNUSED s32 pad2; + s32 textColor; + s32 temp_t0; + char sp38[3]; + MenuItem* item; + s32 sp30; - if (arg0->state < 9) { - convert_number_to_ascii(arg4 + 1, sp34); + if (gGamestate == RACING) { + sp30 = 0; } else { - for (phi_v1 = arg4; phi_v1 > 0; phi_v1--) { - wut = phi_v1 - 1; - if (gGPPointsByCharacterId[arg5[phi_v1]] != gGPPointsByCharacterId[arg5[wut]]) { - break; + sp30 = 1; + } + if (recordType < 5) { + if (sp30 == 0) { + timeRecord = func_800B4E24(recordType); + } else { + timeRecord = func_800B4EB4(recordType, gTimeTrialDataCourseIndex); + } + set_text_color(TEXT_GREEN); + } else { + if (sp30 == 0) { + timeRecord = func_800B4F2C(); + } else { + timeRecord = func_800B4FB0(gTimeTrialDataCourseIndex); + } + } + func_800939C8(column + 0x14, row, D_800E7744[recordType], 2, 0.65f, 0.65f); + if (sp30 == 0) { + item = find_menu_items_dupe(0x000000BB); + if (recordType < 5) { + if (recordType == item->param1) { + textColor = gGlobalTimer % 3; + } else { + textColor = TEXT_YELLOW; } + } else if (item->param2 != 0) { + textColor = gGlobalTimer % 3; + } else { + textColor = TEXT_YELLOW; } - convert_number_to_ascii(phi_v1 + 1, sp34); + } else { + textColor = TEXT_YELLOW; } - sp34[2] = '.'; - sp34[3] = '\0'; - func_800939C8(arg1, arg2, &sp34[1], -4, 0.7f, 0.7f); - print_text_mode_1(arg1 + 0xA, arg2, D_800E76A8[characterId], 0, 0.7f, 0.7f); - convert_number_to_ascii(gGPPointsByCharacterId[characterId], sp34); - func_800939C8(arg1 + 0x47, arg2, sp34, 0, 0.7f, 0.7f); - if ((arg4 < ARRAY_COUNT(gGPPointRewards)) && (arg0->state < 9)) { - convert_number_to_ascii(sGPPointsCopy[arg4], sp34); - sp34[0] = '+'; - print_text_mode_1(arg1 + 0x5A, arg2, sp34, 0, 0.7f, 0.7f); + set_text_color(textColor); + temp_t0 = timeRecord & 0xFFFFF; + get_time_record_minutes(temp_t0, sp38); + func_800939C8(column + 0x27, row, sp38, 0, 0.65f, 0.65f); + print_text_mode_1(column + 0x32, row, "'", 0, 0.65f, 0.65f); + get_time_record_seconds(temp_t0, sp38); + func_800939C8(column + 0x3B, row, sp38, 0, 0.65f, 0.65f); + print_text_mode_1(column + 0x46, row, "\"", 0, 0.65f, 0.65f); + get_time_record_centiseconds(temp_t0, sp38); + func_800939C8(column + 0x50, row, sp38, 0, 0.65f, 0.65f); + if ((u32) temp_t0 < 600000U) { + textColor = timeRecord >> 0x14; + } else { + textColor = 8; } + print_text1_center_mode_1(column + 0x78, row, D_800E76A8[textColor], 0, 0.65f, 0.65f); } -void time_trials_finish_text_render(MenuItem* arg0) { - s32 recordType; - s32 rowOffset; +#ifdef VERSION_JP +void render_menu_item_announce_ghost(MenuItem* arg0) { + UNUSED s32 stackPadding0; + s32 temp_t0; + s32 temp_t1; + s32 temp_t2; + f32 someMultiplier = 1.0f; + s32 thing = (someMultiplier + 0.5) * 16.0; - // name of the course + temp_t0 = 0x140 - arg0->column; + temp_t1 = arg0->row; + temp_t2 = (get_string_width(gTextMenuAnnounceGhost) + 30) / 2; + gDisplayListHead = draw_box(gDisplayListHead, temp_t0 - temp_t2, (temp_t1 - thing) + 4, temp_t2 + temp_t0, + temp_t1 + 4, 0, 0, 0, 0x00000064); set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_1); - print_text1_center_mode_1(arg0->column + 0x43, arg0->row + 0x19, - gCourseNamesDup[gCupCourseOrder[gCupSelection][gCourseIndexInCup]], 0, 0.6f, 0.6f); - - // lap time text - set_text_color(TEXT_YELLOW); - print_text1_center_mode_1(arg0->column + 0x46, arg0->row + 0x28, gLapTimeText, 0, 0.75f, 0.75f); - - // lap time - for (recordType = 0, rowOffset = 0; recordType < TIME_TRIAL_3LAP_RECORD_5; recordType += 1, rowOffset += 0xF) { - render_lap_time(recordType, arg0->column + 0x17, arg0->row + rowOffset + 0x37); - } + print_text1_center_mode_1(arg0->column - 3, arg0->row, gTextMenuAnnounceGhost, 0, 1.0f, 1.0f); +} +#else +void render_menu_item_announce_ghost(MenuItem* arg0) { + UNUSED s32 stackPadding0; + s32 temp_t0; + s32 temp_t1; + s32 temp_t2; + f32 someMultiplier = 0.85f; + s32 thing = 24.0f * someMultiplier; - // best record text - set_text_color(TEXT_YELLOW); - print_text_mode_1(0xB4 - arg0->column, arg0->row + 0x86, gBestTimeText[0], 0, 0.75f, 0.75f); + temp_t0 = 0x140 - arg0->column; + temp_t1 = arg0->row; + temp_t2 = (s32) ((get_string_width(gTextMenuAnnounceGhost) + 8) * someMultiplier) / 2; + gDisplayListHead = draw_box(gDisplayListHead, temp_t0 - temp_t2, (temp_t1 - thing) + 4, temp_t2 + temp_t0, + temp_t1 + 4, 0, 0, 0, 0x00000064); + set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_1); + print_text1_center_mode_1(arg0->column - 3, arg0->row, gTextMenuAnnounceGhost, 0, 0.85f, 0.85f); +} +#endif - // best record - for (recordType = 0, rowOffset = 0; recordType < TIME_TRIAL_1LAP_RECORD; recordType += 1, rowOffset += 0xD) { - set_text_color(TEXT_RED); - render_lap_times(recordType, 0xAA - arg0->column, arg0->row + rowOffset + 0x92); +void render_pause_menu(MenuItem* arg0) { + if (gIsGamePaused != 0) { + switch (gModeSelection) { + case TIME_TRIALS: + render_pause_menu_time_trials(arg0); + break; + case VERSUS: + render_pause_menu_versus(arg0); + break; + case GRAND_PRIX: + render_pause_grand_prix(arg0); + break; + case BATTLE: + render_pause_battle(arg0); + break; + } } - set_text_color(TEXT_YELLOW); - print_text_mode_1(0xB4 - arg0->column, arg0->row + 0xD5, gBestTimeText[1], 0, 0.75f, 0.75f); - render_lap_times(TIME_TRIAL_1LAP_RECORD, 0xAA - arg0->column, arg0->row + 0xE1); } -void func_800A3E60(MenuItem* arg0) { +void render_pause_menu_time_trials(MenuItem* arg0) { UNUSED s32 stackPadding0; - Unk_D_800E70A0 sp84; UNUSED s32 stackPadding1; UNUSED s32 stackPadding2; - UNUSED s32 stackPadding3; - UNUSED s32 stackPadding4; - s32 var_v0; - s32 var_v1; - s32 var_s1; - Unk_D_800E70A0* var_v0_5; - char sp60[3]; - - var_v0 = arg0->state; - if (var_v0 == 0) { - return; - } - if (var_v0 == 0x0000001F) { - return; - } + char sp68[3]; + s32 temp_a0; + s32 var_s0; + s32 zero = 0; // ? - set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_1); - print_text1_center_mode_1(arg0->column + 0x55, 0x19 - arg0->row, - gCourseNamesDup[gCupCourseOrder[gCupSelection][gCourseIndexInCup]], 0, 0.6f, 0.6f); + gDisplayListHead = draw_box(gDisplayListHead, 0, 0, 0x0000013F, 0x000000EF, 0, 0, 0, 0x0000008C); set_text_color(TEXT_YELLOW); - print_text1_center_mode_1(arg0->column + 0x55, 0x28 - arg0->row, gLapTimeText, 0, 0.75f, 0.75f); - for (var_s1 = 0; var_s1 < 4; var_s1++) { - render_lap_time(var_s1, arg0->column + 0x26, ((0xF * var_s1) - arg0->row) + 0x37); + print_text1_center_mode_1(0x000000A0, 0x00000050, + gCourseNamesDup[gCupCourseOrder[gCupSelection][gCourseIndexInCup]], 0, 1.0f, 1.0f); + set_text_color(TEXT_RED); +#ifdef VERSION_JP + print_text1_center_mode_1(0x000000A0, 0x00000060, gBestTimeText[0], 0, 0.8f, 0.8f); +#else + print_text1_center_mode_1(0x0000009D, 0x00000060, gBestTimeText[0], 0, 0.8f, 0.8f); +#endif + temp_a0 = func_800B4E24(TIME_TRIAL_3LAP_RECORD_1); + temp_a0 &= 0xFFFFF; + get_time_record_minutes(temp_a0, sp68); + func_800939C8(0x0000007F, 0x0000006D, sp68, 0, 0.8f, 0.8f); + print_text_mode_1(0x0000008E, 0x0000006D, "'", 0, 0.8f, 0.8f); + get_time_record_seconds(temp_a0, sp68); + func_800939C8(0x00000098, 0x0000006D, sp68, 0, 0.8f, 0.8f); + print_text_mode_1(0x000000A7, 0x0000006D, "\"", 0, 0.8f, 0.8f); + get_time_record_centiseconds(temp_a0, sp68); + func_800939C8(0x000000B3, 0x0000006D, sp68, 0, 0.8f, 0.8f); +#ifdef VERSION_JP + print_text1_center_mode_1(0x000000A0, 0x0000007C, gBestTimeText[1], 0, 0.8f, 0.8f); +#else + print_text1_center_mode_1(0x0000009D, 0x0000007C, gBestTimeText[1], 0, 0.8f, 0.8f); +#endif + temp_a0 = func_800B4F2C(); + temp_a0 &= 0xFFFFF; + get_time_record_minutes(temp_a0, sp68); + func_800939C8(0x0000007F, 0x00000089, sp68, 0, 0.8f, 0.8f); + print_text_mode_1(0x0000008E, 0x00000089, "'", 0, 0.8f, 0.8f); + get_time_record_seconds(temp_a0, sp68); + func_800939C8(0x00000098, 0x00000089, sp68, 0, 0.8f, 0.8f); + print_text_mode_1(0x000000A7, 0x00000089, "\"", 0, 0.8f, 0.8f); + get_time_record_centiseconds(temp_a0, sp68); + func_800939C8(0x000000B3, 0x00000089, sp68, 0, 0.8f, 0.8f); + for (var_s0 = 0; var_s0 < 5; var_s0++) { + text_rainbow_effect(arg0->state - 11, var_s0, TEXT_GREEN); + print_text_mode_1(D_800E8538[zero].column, D_800E8538[zero].row + (13 * var_s0), gTextPauseButton[var_s0], 0, + 0.75f, 0.75f); } - switch (arg0->state) { - case 1: - case 5: - case 6: - case 7: - case 8: - case 9: - case 10: - case 30: - for (var_s1 = 0; var_s1 < 6; var_s1++) { - var_v1 = 0; - text_rainbow_effect(arg0->state - 5, var_s1, 1); - switch (var_s1) { /* switch 3; irregular */ - case 4: /* switch 3 */ - if (gPostTimeTrialReplayCannotSave == 1) { - var_v1 = 1; - } - break; - case 5: /* switch 3 */ - if (bPlayerGhostDisabled != 0) { - var_v1 = 2; - } - break; - } - if (var_v1 != 0) { - set_text_color(TEXT_BLUE); - gDPSetPrimColor(gDisplayListHead++, 0, 0, 0x00, 0x00, 0x00, 0x96); - print_text_mode_2(0xB2 - arg0->column, arg0->row + (0xD * var_s1) + 0x93, - gTextPauseButton[var_s1 + 1], 0, 0.75f, 0.75f); - } else { - print_text_mode_1(0xB2 - arg0->column, arg0->row + (0xD * var_s1) + 0x93, - gTextPauseButton[var_s1 + 1], 0, 0.75f, 0.75f); - } - } - break; - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - set_text_color(TEXT_YELLOW); - var_v1 = arg0->state - 11; - for (var_s1 = 0; var_s1 < 7; var_s1++) { - print_text_mode_1(0x000000A2, 0x8C + (0xD * var_s1), D_800E798C[(var_v1 * 7) + var_s1], 0, 0.6f, 0.6f); - } - break; - case 17: - case 18: - set_text_color(TEXT_GREEN); - for (var_s1 = 0; var_s1 < 2; var_s1++) { - print_text_mode_1(0x000000A5, arg0->row + (0xD * var_s1) + 0x8C, D_800E7A3C[var_s1], 0, 0.7f, 0.7f); - } - for (var_s1 = 0; var_s1 < 2; var_s1++) { - text_rainbow_effect(arg0->state - 0x11, var_s1, 1); - convert_number_to_ascii(var_s1 + 1, sp60); - print_text_mode_1(0xB1 - arg0->column, 0xAA + (0x1E * var_s1), &sp60[1], 0, 0.6f, 0.6f); - if (D_8018EE10[var_s1].ghostDataSaved == 0) { - print_text_mode_1(0xBB - arg0->column, 0xAA + (0x1E * var_s1), D_800E7A44, 0, 0.45f, 0.45f); - } else { - print_text_mode_1(0xBB - arg0->column, 0xAA + (0x1E * var_s1), - gCourseNamesDup2[gCupCourseOrder[D_8018EE10[var_s1].courseIndex / 4] - [D_8018EE10[var_s1].courseIndex % 4]], - 0, 0.45f, 0.45f); - } - } - break; - case 19: - set_text_color(TEXT_YELLOW); - for (var_s1 = 0; var_s1 < 3; var_s1++) { - print_text_mode_1(0x000000AA, (0xD * var_s1) + 0x93, D_800E7A48[var_s1], 0, 0.8f, 0.8f); - } - break; - case 20: - case 21: - if (var_s1 && var_s1) {} - set_text_color(TEXT_YELLOW); - for (var_s1 = 0; var_s1 < 3; var_s1++) { - print_text_mode_1(0x000000A3, arg0->row + (0xD * var_s1) + 0x8C, D_800E7A60[var_s1], 0, 0.67f, 0.67f); - } - for (var_s1 = 0; var_s1 < 2; var_s1++) { - text_rainbow_effect(arg0->state - 0x14, var_s1, 1); - print_text_mode_1(0xC8 - arg0->column, 0xB9 + (0xF * var_s1), D_800E7A6C[var_s1], 0, 0.75f, 0.75f); - } - break; - case 25: - set_text_color(TEXT_YELLOW); - for (var_s1 = 0; var_s1 < 3; var_s1++) { - print_text_mode_1(0x000000A3, (0xD * var_s1) + 0x93, D_800E7A74[var_s1], 0, 0.67f, 0.67f); - } - break; - case 26: - set_text_color(TEXT_YELLOW); - for (var_s1 = 0; var_s1 < 2; var_s1++) { - print_text_mode_1(0x000000AA, (0xD * var_s1) + 0x93, D_800E7A80[var_s1], 0, 0.75f, 0.75f); - } - break; +} + +void render_pause_menu_versus(MenuItem* arg0) { + s16 temp_t0; + s16 temp_v1; + s32 temp_t3; + s32 temp_t4; + s32 var_s0; + s32 var_s1; + Unk_D_800E70A0* temp_s3; + struct UnkStruct_800DC5EC* temp_v0; + + temp_v0 = &D_8015F480[gIsGamePaused - 1]; + temp_v1 = temp_v0->screenStartX; + temp_t0 = temp_v0->screenStartY; + temp_t3 = temp_v0->screenWidth / 2; + temp_t4 = temp_v0->screenHeight / 2; + gDisplayListHead = draw_box(gDisplayListHead, temp_v1 - temp_t3, temp_t0 - temp_t4, temp_v1 + temp_t3, + temp_t0 + temp_t4, 0, 0, 0, 0x0000008C); + temp_s3 = &D_800E8540[(gScreenModeSelection * 4) + (gIsGamePaused - 1)]; + for (var_s0 = 0; var_s0 < 4; var_s0++) { + if (var_s0 > 0) { + var_s1 = var_s0 + 1; + } else { + var_s1 = var_s0; + } + text_rainbow_effect(arg0->state - 0x15, var_s0, TEXT_YELLOW); +#ifdef VERSION_JP + print_text_mode_1(temp_s3->column, temp_s3->row + (13 * var_s0), gTextPauseButton[var_s1], 0, 0.75f, 0.75f); +#else + print_text_mode_1(temp_s3->column - 2, temp_s3->row + (13 * var_s0), gTextPauseButton[var_s1], 0, 0.75f, 0.75f); +#endif } - switch (arg0->state) { /* switch 2 */ - case 5: /* switch 2 */ - case 6: /* switch 2 */ - case 7: /* switch 2 */ - case 8: /* switch 2 */ - case 9: /* switch 2 */ - case 10: /* switch 2 */ - var_v0_5 = &D_800E7390[arg0->state - 5]; +} + +void render_pause_grand_prix(MenuItem* arg0) { + s32 temp_t0; + s32 temp_v1; + s32 temp_s0; + s32 temp_s1; + s32 temp_t3; + s32 temp_t4; + s32 var_s0; + Unk_D_800E70A0* temp_s3; + struct UnkStruct_800DC5EC* temp_v0; + f32 one = 1.0f; + + temp_v0 = &D_8015F480[gIsGamePaused - 1]; + temp_v1 = temp_v0->screenStartX; + temp_t0 = temp_v0->screenStartY; + temp_t3 = temp_v0->screenWidth / 2; + temp_t4 = temp_v0->screenHeight / 2; + gDisplayListHead = draw_box(gDisplayListHead, temp_v1 - temp_t3, temp_t0 - temp_t4, temp_v1 + temp_t3, + temp_t0 + temp_t4, 0, 0, 0, 140); + temp_s3 = &D_800E85C0[(gScreenModeSelection * 4) + (gIsGamePaused - 1)]; + temp_s0 = ((get_string_width(gCupNames[gCupSelection]) * one) + 10.0f) / 2; + temp_s1 = ((get_string_width(D_800E76CC[gCCSelection]) * one) + 10.0f) / 2; + set_text_color(TEXT_YELLOW); + print_text1_center_mode_1(160 - temp_s1, temp_s3->row - 50, gCupNames[gCupSelection], 0, 1.0f, 1.0f); + set_text_color(TEXT_YELLOW); + print_text1_center_mode_1(160 + temp_s0, temp_s3->row - 50, D_800E76CC[gCCSelection], 0, 1.0f, 1.0f); + set_text_color(TEXT_YELLOW); + print_text1_center_mode_1(160, temp_s3->row - 30, + gCourseNamesDup[gCupCourseOrder[gCupSelection][gCourseIndexInCup]], 0, 1.0f, 1.0f); + for (var_s0 = 0; var_s0 < 2; var_s0++) { + text_rainbow_effect(arg0->state - 31, var_s0, TEXT_YELLOW); + print_text_mode_1(temp_s3->column, temp_s3->row + (var_s0 * 13), gTextPauseButton[var_s0 * 4], 0, 0.75f, 0.75f); + } +} + +void render_pause_battle(MenuItem* arg0) { + struct UnkStruct_800DC5EC* temp_v0; + s16 temp_t0; + s16 temp_v1; + s32 temp_t3; + s32 temp_t4; + s32 var_a1; + s32 var_s1; + Unk_D_800E70A0* temp_s3; + + temp_v0 = &D_8015F480[gIsGamePaused - 1]; + temp_v1 = temp_v0->screenStartX; + temp_t0 = temp_v0->screenStartY; + temp_t3 = temp_v0->screenWidth / 2; + temp_t4 = temp_v0->screenHeight / 2; + gDisplayListHead = draw_box(gDisplayListHead, temp_v1 - temp_t3, temp_t0 - temp_t4, temp_v1 + temp_t3, + temp_t0 + temp_t4, 0, 0, 0, 0x0000008C); + temp_s3 = &D_800E8600[(gScreenModeSelection * 4) + (gIsGamePaused - 1)]; + for (var_a1 = 0; var_a1 < 4; var_a1++) { + if (var_a1 > 0) { + var_s1 = var_a1 + 1; + } else { + var_s1 = var_a1; + } + text_rainbow_effect(arg0->state - 0x29, var_a1, TEXT_YELLOW); +#ifdef VERSION_JP + print_text_mode_1(temp_s3->column, temp_s3->row + 13 * var_a1, gTextPauseButton[var_s1], 0, 0.75f, 0.75f); +#else + print_text_mode_1(temp_s3->column - 2, temp_s3->row + 13 * var_a1, gTextPauseButton[var_s1], 0, 0.75f, 0.75f); +#endif + } +} + +void func_800A54EC(void) { + Unk_D_800E70A0 sp50; + Unk_D_800E70A0* var_v1; + MenuItem* sp48; + s32 whyTheSequel; + s32 why; + UNUSED Unk_D_800E70A0* huh; + + if (gIsGamePaused == 0) { + return; + } + + why = gModeSelection; + sp48 = find_menu_items(MENU_ITEM_PAUSE); + if (why) {} // ????? + gSPViewport(gDisplayListHead++, VIRTUAL_TO_PHYSICAL(D_802B8880)); + guOrtho(&gGfxPool->mtxEffect[gMatrixEffectCount], 0.0f, 319.0f, 239.0f, 0.0f, -100.0f, 100.0f, 1.0f); + gSPMatrix(gDisplayListHead++, VIRTUAL_TO_PHYSICAL(&gGfxPool->mtxEffect[gMatrixEffectCount++]), + G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_PROJECTION); + switch (why) { /* irregular */ + default: break; - case 17: /* switch 2 */ - case 18: /* switch 2 */ - var_v0_5 = &D_800E73C0[arg0->state - 17]; + case 1: + var_v1 = &D_800E8538[0]; break; - case 20: /* switch 2 */ - case 21: /* switch 2 */ - var_v0_5 = &D_800E73D0[arg0->state - 20]; + case 2: + var_v1 = &D_800E8540[(gScreenModeSelection * 4) + (gIsGamePaused - 1)]; break; - case 30: /* switch 2 */ - var_v0_5 = &D_800E7390[arg0->param1 - 5]; + case 0: + var_v1 = &D_800E85C0[(gScreenModeSelection * 4) + (gIsGamePaused - 1)]; + break; + case 3: + var_v1 = &D_800E8600[(gScreenModeSelection * 4) + (gIsGamePaused - 1)]; break; - default: - return; } - sp84.column = var_v0_5->column - arg0->column; - sp84.row = var_v0_5->row + arg0->row; - func_800A66A8(arg0, &sp84); + whyTheSequel = D_800F0B50[why]; + sp50.column = var_v1->column - 8; + sp50.row = (var_v1->row + ((sp48->state - whyTheSequel) * 0xD)) - 8; + func_800A66A8(sp48, &sp50); } -void render_lap_time(s32 lapNumber, s32 column, s32 row) { +#ifdef VERSION_JP +#ifdef VERSION_JP +void render_menu_item_end_course_option(MenuItem* arg0) { + Unk_D_800E70A0 sp98; +#ifndef VERSION_JP /* JP frame */ UNUSED s32 stackPadding0; - s32 time; +#endif UNUSED s32 stackPadding1; - s32 textColor; - char sp34[3]; - MenuItem* temp_v0_2; + UNUSED s32 stackPadding2; + f32 why; + f32 someScale; + char sp84[3]; +#ifndef VERSION_JP /* JP frame */ + UNUSED s32 stackPadding3; +#endif + UNUSED s32 stackPadding4; + s32 temp_a0; + UNUSED s32 var_v1; + s32 var_s1; + s32 var_s2; + s32 temp_v0; + s32 zero = 0; + Unk_D_800E70A0* var_v0_9; + /* JP hoists the seconds mark into a variable, which is what puts the + sp84/sp5C block 4 bytes lower in the frame. */ + char* secondMark; + char sp5C[3]; - if (lapNumber < 3) { - time = playerHUD[PLAYER_ONE].lapDurations[lapNumber]; - set_text_color(TEXT_RED); - } else { - time = playerHUD[PLAYER_ONE].someTimer; - set_text_color(TEXT_GREEN); - } - print_text1_left(column + 0x21, row, gPrefixTimeText[lapNumber], 0, 0.7f, 0.7f); - temp_v0_2 = find_menu_items_dupe(MENU_ITEM_TYPE_0BB); - if (lapNumber < 3) { - if (temp_v0_2->param2 & (1 << lapNumber)) { // best lap - textColor = (s32) gGlobalTimer % 3; - } else { - textColor = TEXT_YELLOW; + if (arg0->state == 0) { + if ((arg0->param1 >= 0x1E) && ((gGlobalTimer / 16) % 2)) { + someScale = get_string_width(gTextPauseButton[REPLAY]) * 0.8f; + gDisplayListHead = + draw_box(gDisplayListHead, 0x000000C0, 0x00000022, (s32) (someScale) + 0xC6, 0x00000033, 0, 0, 0, 0x00000096); + set_text_color(TEXT_GREEN); + print_text_mode_1(0x000000C3, 0x00000030, gTextPauseButton[REPLAY], 0, 0.8f, 0.8f); } } else { - if (temp_v0_2->param1 >= 0) { - textColor = (s32) gGlobalTimer % 3; + if (arg0->state == 1) { + var_s1 = arg0->param1; + var_s2 = (s32) (arg0->param1 * 0xFF) / 140; } else { - textColor = TEXT_YELLOW; + var_s1 = 0x0000008C; + var_s2 = 0x000000FF; + } + gDisplayListHead = draw_box(gDisplayListHead, 0, 0, 0x0000013F, 0x000000EF, 0, 0, 0, var_s1); + gDPSetPrimColor(gDisplayListHead++, 0, 0, 0x00, 0x00, 0x00, var_s2); + set_text_color(TEXT_YELLOW); + print_text1_center_mode_2(0x000000A0, 0x00000050, + gCourseNamesDup[gCupCourseOrder[gCupSelection][gCourseIndexInCup]], 0, 1.0f, 1.0f); + someScale = 0.8f; + why = someScale; + switch (arg0->state) { + case 1: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + set_text_color(TEXT_RED); + print_text1_center_mode_2(0x000000A0, 0x00000060, gBestTimeText[0], 0, someScale, someScale); + temp_a0 = func_800B4E24(0); + temp_a0 &= 0xFFFFF; + get_time_record_minutes(temp_a0, sp84); + text_draw(0x0000007F, 0x0000006D, sp84, 0, someScale, someScale); + print_text_mode_2(0x0000008E, 0x0000006D, "'", 0, someScale, someScale); + secondMark = "\""; + get_time_record_seconds(temp_a0, sp84); + text_draw(0x00000098, 0x0000006D, sp84, 0, someScale, someScale); + print_text_mode_2(0x000000A7, 0x0000006D, secondMark, 0, someScale, someScale); + get_time_record_centiseconds(temp_a0, sp84); + text_draw(0x000000B3, 0x0000006D, sp84, 0, someScale, someScale); + print_text1_center_mode_2(0x000000A0, 0x0000007C, gBestTimeText[1], 0, someScale, someScale); + temp_a0 = func_800B4F2C(); + temp_a0 &= 0xFFFFF; + get_time_record_minutes(temp_a0, sp84); + text_draw(0x0000007F, 0x00000089, sp84, 0, someScale, someScale); + print_text_mode_2(0x0000008E, 0x00000089, "'", 0, someScale, someScale); + get_time_record_seconds(temp_a0, sp84); + text_draw(0x00000098, 0x00000089, sp84, 0, someScale, someScale); + secondMark = "\""; + print_text_mode_2(0x000000A7, 0x00000089, secondMark, 0, someScale, someScale); + get_time_record_centiseconds(temp_a0, sp84); + text_draw(0x000000B3, 0x00000089, sp84, 0, someScale, someScale); + someScale = 0.75f; + for (var_s1 = 0; var_s1 < 6; var_s1++) { + text_rainbow_effect(arg0->state - 0xB, var_s1, TEXT_GREEN); + print_text_mode_2(D_800E8538[zero].column, D_800E8538[zero].row + (0xD * var_s1), + gTextPauseButton[var_s1 + 1], 0, someScale, someScale); + } + break; + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + set_text_color(TEXT_YELLOW); + temp_v0 = arg0->state - 0x15; + for (var_s1 = 0; var_s1 < 5; var_s1++) { + print_text_mode_1(0x00000064, 0x6E + (0xD * var_s1), D_800E798C[(temp_v0 * 5) + var_s1], 0, + someScale, someScale); + } + break; + case 30: + case 31: + set_text_color(TEXT_GREEN); + for (var_s1 = 0; var_s1 < 2; var_s1++) { + print_text_mode_1(0x00000064, arg0->row + (0xD * var_s1) + 0x6E, D_800E7A3C[var_s1], 0, someScale, + someScale); + } + someScale = 0.75f; + for (var_s1 = 0; var_s1 < 2; var_s1++) { + text_rainbow_effect(arg0->state - 0x1E, var_s1, TEXT_GREEN); + convert_number_to_ascii(var_s1 + 1, sp5C); + print_text_mode_1(0x6E - arg0->column, (0x96 + (0x14 * var_s1)), &sp5C[1], 0, why, why); + why = someScale; + if (D_8018EE10[var_s1].ghostDataSaved == 0) { + print_text_mode_1(0x7D - arg0->column, (0x96 + (0x14 * var_s1)), D_800E7A44, 0, someScale, + someScale); + } else { + print_text_mode_1(0x7D - arg0->column, (0x96 + (0x14 * var_s1)), + gCourseNamesDup2[gCupCourseOrder[D_8018EE10[var_s1].courseIndex / 4] + [D_8018EE10[var_s1].courseIndex % 4]], + 0, someScale, someScale); + } + } + break; + case 32: + set_text_color(TEXT_YELLOW); + for (var_s1 = 0; var_s1 < 3; var_s1++) { + print_text_mode_1(0x00000064, (0xD * var_s1) + 0x6E, D_800E7A48[var_s1], 0, someScale, someScale); + } + break; + case 35: + case 36: + set_text_color(TEXT_YELLOW); + for (var_s1 = 0; var_s1 < 3; var_s1++) { + print_text_mode_1(0x00000064, arg0->row + (0xD * var_s1) + 0x6E, D_800E7A60[var_s1], 0, someScale, someScale); + } + for (var_s1 = 0; var_s1 < 2; var_s1++) { + text_rainbow_effect(arg0->state - 0x23, var_s1, TEXT_GREEN); + print_text_mode_1(0x7D - arg0->column, 0x9B + (0xF * var_s1), D_800E7A6C[var_s1], 0, someScale, someScale); + } + break; + case 40: + set_text_color(TEXT_YELLOW); + for (var_s1 = 0; var_s1 < 3; var_s1++) { + print_text_mode_1(0x00000064, (0xD * var_s1) + 0x6E, D_800E7A74[var_s1], 0, someScale, someScale); + } + break; + case 41: + set_text_color(TEXT_YELLOW); + for (var_s1 = 0; var_s1 < 2; var_s1++) { + print_text_mode_1(0x00000064, (0xD * var_s1) + 0x6E, D_800E7A80[var_s1], 0, someScale, someScale); + } + break; + } + switch (arg0->state) { /* switch 2 */ + case 11: /* switch 2 */ + case 12: /* switch 2 */ + case 13: /* switch 2 */ + case 14: /* switch 2 */ + case 15: /* switch 2 */ + case 16: /* switch 2 */ + var_v0_9 = &D_800E73E0[arg0->state - 11]; + break; + case 30: /* switch 2 */ + case 31: /* switch 2 */ + var_v0_9 = &D_800E7410[arg0->state - 30]; + break; + case 35: /* switch 2 */ + case 36: /* switch 2 */ + if (0) {} // wtf? + var_v0_9 = &D_800E7420[arg0->state - 35]; + break; + default: + return; } + sp98.column = var_v0_9->column; + sp98.row = var_v0_9->row; + func_800A66A8(arg0, &sp98); } - set_text_color(textColor); - get_time_record_minutes(time, sp34); - func_800939C8(column + 0x2C, row, sp34, 0, 0.7f, 0.7f); - print_text_mode_1(column + 0x37, row, "'", 0, 0.7f, 0.7f); - get_time_record_seconds(time, sp34); - func_800939C8(column + 0x40, row, sp34, 0, 0.7f, 0.7f); - print_text_mode_1(column + 0x4B, row, "\"", 0, 0.7f, 0.7f); - get_time_record_centiseconds(time, sp34); - func_800939C8(column + 0x55, row, sp34, 0, 0.7f, 0.7f); } +#else +void render_menu_item_end_course_option(MenuItem* arg0) { + Unk_D_800E70A0 sp98; + UNUSED s32 stackPadding0; + UNUSED s32 stackPadding1; + UNUSED s32 stackPadding2; + f32 why; + char sp84[3]; + UNUSED s32 stackPadding3; + UNUSED s32 stackPadding4; + s32 temp_a0; + UNUSED s32 var_v1; + s32 var_s1; + s32 var_s2; + s32 temp_v0; + s32 zero = 0; + Unk_D_800E70A0* var_v0_9; + char sp5C[3]; -void render_lap_times(s32 recordType, s32 column, s32 row) { - UNUSED s32 pad; - u32 timeRecord; - UNUSED s32 pad2; - s32 textColor; - s32 temp_t0; - char sp38[3]; - MenuItem* item; - s32 sp30; - - if (gGamestate == RACING) { - sp30 = 0; - } else { - sp30 = 1; - } - if (recordType < 5) { - if (sp30 == 0) { - timeRecord = func_800B4E24(recordType); - } else { - timeRecord = func_800B4EB4(recordType, gTimeTrialDataCourseIndex); + if (arg0->state == 0) { + if ((arg0->param1 >= 0x1E) && ((gGlobalTimer / 16) % 2)) { + why = get_string_width(gTextPauseButton[REPLAY]) * 0.8f; + gDisplayListHead = + draw_box(gDisplayListHead, 0x000000C0, 0x00000021, (s32) (why) + 0xC6, 0x00000032, 0, 0, 0, 0x00000096); + set_text_color(TEXT_GREEN); + print_text_mode_1(0x000000BF, 0x00000030, gTextPauseButton[REPLAY], 0, 0.8f, 0.8f); } - set_text_color(TEXT_GREEN); } else { - if (sp30 == 0) { - timeRecord = func_800B4F2C(); - } else { - timeRecord = func_800B4FB0(gTimeTrialDataCourseIndex); - } - } - func_800939C8(column + 0x14, row, D_800E7744[recordType], 2, 0.65f, 0.65f); - if (sp30 == 0) { - item = find_menu_items_dupe(0x000000BB); - if (recordType < 5) { - if (recordType == item->param1) { - textColor = gGlobalTimer % 3; - } else { - textColor = TEXT_YELLOW; - } - } else if (item->param2 != 0) { - textColor = gGlobalTimer % 3; + if (arg0->state == 1) { + var_s1 = arg0->param1; + var_s2 = (s32) (arg0->param1 * 0xFF) / 140; } else { - textColor = TEXT_YELLOW; + var_s1 = 0x0000008C; + var_s2 = 0x000000FF; } - } else { - textColor = TEXT_YELLOW; - } - set_text_color(textColor); - temp_t0 = timeRecord & 0xFFFFF; - get_time_record_minutes(temp_t0, sp38); - func_800939C8(column + 0x27, row, sp38, 0, 0.65f, 0.65f); - print_text_mode_1(column + 0x32, row, "'", 0, 0.65f, 0.65f); - get_time_record_seconds(temp_t0, sp38); - func_800939C8(column + 0x3B, row, sp38, 0, 0.65f, 0.65f); - print_text_mode_1(column + 0x46, row, "\"", 0, 0.65f, 0.65f); - get_time_record_centiseconds(temp_t0, sp38); - func_800939C8(column + 0x50, row, sp38, 0, 0.65f, 0.65f); - if ((u32) temp_t0 < 600000U) { - textColor = timeRecord >> 0x14; - } else { - textColor = 8; - } - print_text1_center_mode_1(column + 0x78, row, D_800E76A8[textColor], 0, 0.65f, 0.65f); -} - -void render_menu_item_announce_ghost(MenuItem* arg0) { - UNUSED s32 stackPadding0; - s32 temp_t0; - s32 temp_t1; - s32 temp_t2; - f32 someMultiplier = 0.85f; - s32 thing = 24.0f * someMultiplier; - - temp_t0 = 0x140 - arg0->column; - temp_t1 = arg0->row; - temp_t2 = (s32) ((get_string_width(gTextMenuAnnounceGhost) + 8) * someMultiplier) / 2; - gDisplayListHead = draw_box(gDisplayListHead, temp_t0 - temp_t2, (temp_t1 - thing) + 4, temp_t2 + temp_t0, - temp_t1 + 4, 0, 0, 0, 0x00000064); - set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_1); - print_text1_center_mode_1(arg0->column - 3, arg0->row, gTextMenuAnnounceGhost, 0, 0.85f, 0.85f); -} - -void render_pause_menu(MenuItem* arg0) { - if (gIsGamePaused != 0) { - switch (gModeSelection) { - case TIME_TRIALS: - render_pause_menu_time_trials(arg0); + gDisplayListHead = draw_box(gDisplayListHead, 0, 0, 0x0000013F, 0x000000EF, 0, 0, 0, var_s1); + gDPSetPrimColor(gDisplayListHead++, 0, 0, 0x00, 0x00, 0x00, var_s2); + set_text_color(TEXT_YELLOW); + print_text1_center_mode_2(0x000000A0, 0x00000050, + gCourseNamesDup[gCupCourseOrder[gCupSelection][gCourseIndexInCup]], 0, 1.0f, 1.0f); + switch (arg0->state) { + case 1: + case 11: + case 12: + case 13: + case 14: + case 15: + case 16: + set_text_color(TEXT_RED); + print_text1_center_mode_2(0x0000009D, 0x00000060, gBestTimeText[0], 0, 0.8f, 0.8f); + temp_a0 = func_800B4E24(0); + temp_a0 &= 0xFFFFF; + get_time_record_minutes(temp_a0, sp84); + text_draw(0x0000007F, 0x0000006D, sp84, 0, 0.8f, 0.8f); + print_text_mode_2(0x0000008E, 0x0000006D, "'", 0, 0.8f, 0.8f); + get_time_record_seconds(temp_a0, sp84); + text_draw(0x00000098, 0x0000006D, sp84, 0, 0.8f, 0.8f); + print_text_mode_2(0x000000A7, 0x0000006D, "\"", 0, 0.8f, 0.8f); + get_time_record_centiseconds(temp_a0, sp84); + text_draw(0x000000B3, 0x0000006D, sp84, 0, 0.8f, 0.8f); + print_text1_center_mode_2(0x0000009D, 0x0000007C, gBestTimeText[1], 0, 0.8f, 0.8f); + temp_a0 = func_800B4F2C(); + temp_a0 &= 0xFFFFF; + get_time_record_minutes(temp_a0, sp84); + text_draw(0x0000007F, 0x00000089, sp84, 0, 0.8f, 0.8f); + print_text_mode_2(0x0000008E, 0x00000089, "'", 0, 0.8f, 0.8f); + get_time_record_seconds(temp_a0, sp84); + text_draw(0x00000098, 0x00000089, sp84, 0, 0.8f, 0.8f); + print_text_mode_2(0x000000A7, 0x00000089, "\"", 0, 0.8f, 0.8f); + get_time_record_centiseconds(temp_a0, sp84); + text_draw(0x000000B3, 0x00000089, sp84, 0, 0.8f, 0.8f); + for (var_s1 = 0; var_s1 < 6; var_s1++) { + text_rainbow_effect(arg0->state - 0xB, var_s1, TEXT_GREEN); + print_text_mode_2(D_800E8538[zero].column, D_800E8538[zero].row + (0xD * var_s1), + gTextPauseButton[var_s1 + 1], 0, 0.75f, 0.75f); + } break; - case VERSUS: - render_pause_menu_versus(arg0); + case 21: + case 22: + case 23: + case 24: + case 25: + case 26: + set_text_color(TEXT_YELLOW); + temp_v0 = arg0->state - 0x15; + for (var_s1 = 0; var_s1 < 7; var_s1++) { + print_text_mode_1(0x0000004D, 0x6E + (0xD * var_s1), D_800E798C[(temp_v0 * 7) + var_s1], 0, 0.8f, + 0.8f); + } break; - case GRAND_PRIX: - render_pause_grand_prix(arg0); + case 30: + case 31: + set_text_color(TEXT_GREEN); + for (var_s1 = 0; var_s1 < 2; var_s1++) { + print_text_mode_1(0x0000005A, arg0->row + (0xD * var_s1) + 0x6E, D_800E7A3C[var_s1], 0, 0.8f, 0.8f); + } + for (var_s1 = 0; var_s1 < 2; var_s1++) { + text_rainbow_effect(arg0->state - 0x1E, var_s1, TEXT_GREEN); + convert_number_to_ascii(var_s1 + 1, sp5C); + print_text_mode_1(0x5A - arg0->column, (0x96 + (0x14 * var_s1)), &sp5C[1], 0, 0.75f, 0.75f); + if (D_8018EE10[var_s1].ghostDataSaved == 0) { + print_text_mode_1(0x69 - arg0->column, (0x96 + (0x14 * var_s1)), D_800E7A44, 0, 0.75f, 0.75f); + } else { + print_text_mode_1(0x69 - arg0->column, (0x96 + (0x14 * var_s1)), + gCourseNamesDup2[gCupCourseOrder[D_8018EE10[var_s1].courseIndex / 4] + [D_8018EE10[var_s1].courseIndex % 4]], + 0, 0.75f, 0.75f); + } + } + break; + case 32: + set_text_color(TEXT_YELLOW); + for (var_s1 = 0; var_s1 < 3; var_s1++) { + print_text_mode_1(0x00000064, (0xD * var_s1) + 0x6E, D_800E7A48[var_s1], 0, 0.8f, 0.8f); + } + break; + case 35: + case 36: + set_text_color(TEXT_YELLOW); + for (var_s1 = 0; var_s1 < 3; var_s1++) { + print_text_mode_1(0x00000055, arg0->row + (0xD * var_s1) + 0x6E, D_800E7A60[var_s1], 0, 0.8f, 0.8f); + } + for (var_s1 = 0; var_s1 < 2; var_s1++) { + text_rainbow_effect(arg0->state - 0x23, var_s1, TEXT_GREEN); + print_text_mode_1(0x7D - arg0->column, 0x9B + (0xF * var_s1), D_800E7A6C[var_s1], 0, 0.8f, 0.8f); + } + break; + case 40: + set_text_color(TEXT_YELLOW); + for (var_s1 = 0; var_s1 < 3; var_s1++) { + print_text_mode_1(0x00000055, (0xD * var_s1) + 0x6E, D_800E7A74[var_s1], 0, 0.8f, 0.8f); + } + break; + case 41: + set_text_color(TEXT_YELLOW); + for (var_s1 = 0; var_s1 < 2; var_s1++) { + print_text_mode_1(0x0000005D, (0xD * var_s1) + 0x6E, D_800E7A80[var_s1], 0, 0.8f, 0.8f); + } + break; + } + switch (arg0->state) { /* switch 2 */ + case 11: /* switch 2 */ + case 12: /* switch 2 */ + case 13: /* switch 2 */ + case 14: /* switch 2 */ + case 15: /* switch 2 */ + case 16: /* switch 2 */ + var_v0_9 = &D_800E73E0[arg0->state - 11]; break; - case BATTLE: - render_pause_battle(arg0); + case 30: /* switch 2 */ + case 31: /* switch 2 */ + var_v0_9 = &D_800E7410[arg0->state - 30]; break; + case 35: /* switch 2 */ + case 36: /* switch 2 */ + if (0) {} // wtf? + var_v0_9 = &D_800E7420[arg0->state - 35]; + break; + default: + return; } + sp98.column = var_v0_9->column; + sp98.row = var_v0_9->row; + func_800A66A8(arg0, &sp98); } } - -void render_pause_menu_time_trials(MenuItem* arg0) { - UNUSED s32 stackPadding0; - UNUSED s32 stackPadding1; - UNUSED s32 stackPadding2; - char sp68[3]; - s32 temp_a0; - s32 var_s0; - s32 zero = 0; // ? - - gDisplayListHead = draw_box(gDisplayListHead, 0, 0, 0x0000013F, 0x000000EF, 0, 0, 0, 0x0000008C); - set_text_color(TEXT_YELLOW); - print_text1_center_mode_1(0x000000A0, 0x00000050, - gCourseNamesDup[gCupCourseOrder[gCupSelection][gCourseIndexInCup]], 0, 1.0f, 1.0f); - set_text_color(TEXT_RED); - print_text1_center_mode_1(0x0000009D, 0x00000060, gBestTimeText[0], 0, 0.8f, 0.8f); - temp_a0 = func_800B4E24(TIME_TRIAL_3LAP_RECORD_1); - temp_a0 &= 0xFFFFF; - get_time_record_minutes(temp_a0, sp68); - func_800939C8(0x0000007F, 0x0000006D, sp68, 0, 0.8f, 0.8f); - print_text_mode_1(0x0000008E, 0x0000006D, "'", 0, 0.8f, 0.8f); - get_time_record_seconds(temp_a0, sp68); - func_800939C8(0x00000098, 0x0000006D, sp68, 0, 0.8f, 0.8f); - print_text_mode_1(0x000000A7, 0x0000006D, "\"", 0, 0.8f, 0.8f); - get_time_record_centiseconds(temp_a0, sp68); - func_800939C8(0x000000B3, 0x0000006D, sp68, 0, 0.8f, 0.8f); - print_text1_center_mode_1(0x0000009D, 0x0000007C, gBestTimeText[1], 0, 0.8f, 0.8f); - temp_a0 = func_800B4F2C(); - temp_a0 &= 0xFFFFF; - get_time_record_minutes(temp_a0, sp68); - func_800939C8(0x0000007F, 0x00000089, sp68, 0, 0.8f, 0.8f); - print_text_mode_1(0x0000008E, 0x00000089, "'", 0, 0.8f, 0.8f); - get_time_record_seconds(temp_a0, sp68); - func_800939C8(0x00000098, 0x00000089, sp68, 0, 0.8f, 0.8f); - print_text_mode_1(0x000000A7, 0x00000089, "\"", 0, 0.8f, 0.8f); - get_time_record_centiseconds(temp_a0, sp68); - func_800939C8(0x000000B3, 0x00000089, sp68, 0, 0.8f, 0.8f); - for (var_s0 = 0; var_s0 < 5; var_s0++) { - text_rainbow_effect(arg0->state - 11, var_s0, TEXT_GREEN); - print_text_mode_1(D_800E8538[zero].column, D_800E8538[zero].row + (13 * var_s0), gTextPauseButton[var_s0], 0, - 0.75f, 0.75f); - } -} - -void render_pause_menu_versus(MenuItem* arg0) { - s16 temp_t0; - s16 temp_v1; - s32 temp_t3; - s32 temp_t4; - s32 var_s0; - s32 var_s1; - Unk_D_800E70A0* temp_s3; - struct UnkStruct_800DC5EC* temp_v0; - - temp_v0 = &D_8015F480[gIsGamePaused - 1]; - temp_v1 = temp_v0->screenStartX; - temp_t0 = temp_v0->screenStartY; - temp_t3 = temp_v0->screenWidth / 2; - temp_t4 = temp_v0->screenHeight / 2; - gDisplayListHead = draw_box(gDisplayListHead, temp_v1 - temp_t3, temp_t0 - temp_t4, temp_v1 + temp_t3, - temp_t0 + temp_t4, 0, 0, 0, 0x0000008C); - temp_s3 = &D_800E8540[(gScreenModeSelection * 4) + (gIsGamePaused - 1)]; - for (var_s0 = 0; var_s0 < 4; var_s0++) { - if (var_s0 > 0) { - var_s1 = var_s0 + 1; - } else { - var_s1 = var_s0; - } - text_rainbow_effect(arg0->state - 0x15, var_s0, TEXT_YELLOW); - print_text_mode_1(temp_s3->column - 2, temp_s3->row + (13 * var_s0), gTextPauseButton[var_s1], 0, 0.75f, 0.75f); - } -} - -void render_pause_grand_prix(MenuItem* arg0) { - s32 temp_t0; - s32 temp_v1; - s32 temp_s0; - s32 temp_s1; - s32 temp_t3; - s32 temp_t4; - s32 var_s0; - Unk_D_800E70A0* temp_s3; - struct UnkStruct_800DC5EC* temp_v0; - f32 one = 1.0f; - - temp_v0 = &D_8015F480[gIsGamePaused - 1]; - temp_v1 = temp_v0->screenStartX; - temp_t0 = temp_v0->screenStartY; - temp_t3 = temp_v0->screenWidth / 2; - temp_t4 = temp_v0->screenHeight / 2; - gDisplayListHead = draw_box(gDisplayListHead, temp_v1 - temp_t3, temp_t0 - temp_t4, temp_v1 + temp_t3, - temp_t0 + temp_t4, 0, 0, 0, 140); - temp_s3 = &D_800E85C0[(gScreenModeSelection * 4) + (gIsGamePaused - 1)]; - temp_s0 = ((get_string_width(gCupNames[gCupSelection]) * one) + 10.0f) / 2; - temp_s1 = ((get_string_width(D_800E76CC[gCCSelection]) * one) + 10.0f) / 2; - set_text_color(TEXT_YELLOW); - print_text1_center_mode_1(160 - temp_s1, temp_s3->row - 50, gCupNames[gCupSelection], 0, 1.0f, 1.0f); - set_text_color(TEXT_YELLOW); - print_text1_center_mode_1(160 + temp_s0, temp_s3->row - 50, D_800E76CC[gCCSelection], 0, 1.0f, 1.0f); - set_text_color(TEXT_YELLOW); - print_text1_center_mode_1(160, temp_s3->row - 30, - gCourseNamesDup[gCupCourseOrder[gCupSelection][gCourseIndexInCup]], 0, 1.0f, 1.0f); - for (var_s0 = 0; var_s0 < 2; var_s0++) { - text_rainbow_effect(arg0->state - 31, var_s0, TEXT_YELLOW); - print_text_mode_1(temp_s3->column, temp_s3->row + (var_s0 * 13), gTextPauseButton[var_s0 * 4], 0, 0.75f, 0.75f); - } -} - -void render_pause_battle(MenuItem* arg0) { - struct UnkStruct_800DC5EC* temp_v0; - s16 temp_t0; - s16 temp_v1; - s32 temp_t3; - s32 temp_t4; - s32 var_a1; - s32 var_s1; - Unk_D_800E70A0* temp_s3; - - temp_v0 = &D_8015F480[gIsGamePaused - 1]; - temp_v1 = temp_v0->screenStartX; - temp_t0 = temp_v0->screenStartY; - temp_t3 = temp_v0->screenWidth / 2; - temp_t4 = temp_v0->screenHeight / 2; - gDisplayListHead = draw_box(gDisplayListHead, temp_v1 - temp_t3, temp_t0 - temp_t4, temp_v1 + temp_t3, - temp_t0 + temp_t4, 0, 0, 0, 0x0000008C); - temp_s3 = &D_800E8600[(gScreenModeSelection * 4) + (gIsGamePaused - 1)]; - for (var_a1 = 0; var_a1 < 4; var_a1++) { - if (var_a1 > 0) { - var_s1 = var_a1 + 1; - } else { - var_s1 = var_a1; - } - text_rainbow_effect(arg0->state - 0x29, var_a1, TEXT_YELLOW); - print_text_mode_1(temp_s3->column - 2, temp_s3->row + 13 * var_a1, gTextPauseButton[var_s1], 0, 0.75f, 0.75f); - } -} - -void func_800A54EC(void) { - Unk_D_800E70A0 sp50; - Unk_D_800E70A0* var_v1; - MenuItem* sp48; - s32 whyTheSequel; - s32 why; - UNUSED Unk_D_800E70A0* huh; - - if (gIsGamePaused == 0) { - return; - } - - why = gModeSelection; - sp48 = find_menu_items(MENU_ITEM_PAUSE); - if (why) {} // ????? - gSPViewport(gDisplayListHead++, VIRTUAL_TO_PHYSICAL(D_802B8880)); - guOrtho(&gGfxPool->mtxEffect[gMatrixEffectCount], 0.0f, 319.0f, 239.0f, 0.0f, -100.0f, 100.0f, 1.0f); - gSPMatrix(gDisplayListHead++, VIRTUAL_TO_PHYSICAL(&gGfxPool->mtxEffect[gMatrixEffectCount++]), - G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_PROJECTION); - switch (why) { /* irregular */ - default: - break; - case 1: - var_v1 = &D_800E8538[0]; - break; - case 2: - var_v1 = &D_800E8540[(gScreenModeSelection * 4) + (gIsGamePaused - 1)]; - break; - case 0: - var_v1 = &D_800E85C0[(gScreenModeSelection * 4) + (gIsGamePaused - 1)]; - break; - case 3: - var_v1 = &D_800E8600[(gScreenModeSelection * 4) + (gIsGamePaused - 1)]; - break; - } - whyTheSequel = D_800F0B50[why]; - sp50.column = var_v1->column - 8; - sp50.row = (var_v1->row + ((sp48->state - whyTheSequel) * 0xD)) - 8; - func_800A66A8(sp48, &sp50); -} - +#endif +#else void render_menu_item_end_course_option(MenuItem* arg0) { Unk_D_800E70A0 sp98; UNUSED s32 stackPadding0; @@ -8036,6 +9625,29 @@ void render_menu_item_end_course_option(MenuItem* arg0) { } } +#endif +#ifdef VERSION_JP +void func_800A6034(MenuItem* arg0) { + f64 divisor; + char* text; + s32 width; + f64 someMultiplier = 0.65; + + if (D_801657E8 != true) { + gDPSetPrimColor(gDisplayListHead++, 0, 0, 0x00, 0x00, 0x00, arg0->param1); + text = gCupNames[D_800DC540]; + set_text_color(TEXT_BLUE_GREEN_RED_CYCLE_2); + width = get_string_width(text); + print_text_mode_2((arg0->column - (width / 2)) + 0x46, arg0->row + 0xA0, text, 0, 1.0f, 1.0f); + divisor = 2.0; + text = gCourseNames[gCurrentCourseId]; + set_text_color((s32) gCurrentCourseId % 4); + width = get_string_width(text); + print_text_mode_2((arg0->column + 0x46) - ((width * someMultiplier) / divisor), arg0->row + 0xC3, text, 0, + 0.65f, 0.85f); + } +} +#else void func_800A6034(MenuItem* arg0) { char* text; @@ -8049,6 +9661,7 @@ void func_800A6034(MenuItem* arg0) { print_text1_center_mode_2(arg0->column + 0x41, arg0->row + 0xC3, text, 0, 0.65f, 0.85f); } } +#endif void func_800A6154(MenuItem* arg0) { UNUSED s32 stackPadding0; @@ -8130,7 +9743,11 @@ void func_800A638C(MenuItem* arg0) { if (arg0->state >= 10) { for (var_s1 = 0; var_s1 < 4; var_s1++) { text_rainbow_effect(arg0->state - 0xA, var_s1, TEXT_GREEN); +#ifdef VERSION_JP + print_text_mode_1(0x00000082, 0xAE + (0xF * var_s1), gTextPauseButton[var_s1 + 1], 0, 0.8f, 0.8f); // Where Retry, course change, etc printed +#else print_text_mode_1(0x00000069, 0xAE + (0xF * var_s1), gTextPauseButton[var_s1 + 1], 0, 0.8f, 0.8f); // Where Retry, course change, etc printed +#endif } func_800A66A8(arg0, &D_800E7360[arg0->state - 10]); } @@ -8179,6 +9796,15 @@ void func_800A66A8(MenuItem* arg0, Unk_D_800E70A0* arg1) { gSPDisplayList(gDisplayListHead++, D_0D003090); } +#ifdef VERSION_JP +/* Keeps this file's bss ending at 0x8018b580, where code_800AF9B0's begins. + Three scalars, not s32[3]: IDO 8-byte-aligns arrays, which would leave a + 4-byte hole in front of the pad and push the whole tail out. */ +s32 menu_item_bss_padjp1; +s32 menu_item_bss_padjp2; +s32 menu_item_bss_padjp3; +#endif + void func_800A69C8(UNUSED MenuItem* arg0) { Unk_D_800E70A0* thing; UNUSED s32 stackPadding1; @@ -8213,7 +9839,11 @@ void func_800A69C8(UNUSED MenuItem* arg0) { } func_800A79F4(var_s4[0], sp74); text_draw(thing->column + 0x10, thing->row + 0x75, sp74, 0, 1.0f, 1.0f); +#ifdef VERSION_JP + print_text_mode_2(D_800E7380[var_s0].column, D_800E7380[var_s0].row, temp_s3, 0, 1.0f, 1.0f); +#else print_text1_center_mode_2(D_800E7380[var_s0].column, D_800E7380[var_s0].row, temp_s3, 0, 0.65f, 1.0f); +#endif } set_text_color(TEXT_BLUE); // Not a hyphen, that is an EUC-JP character @@ -8322,8 +9952,13 @@ void func_800A70E8(MenuItem* arg0) { s32 stringIndex; if (arg0->state == 1) { +#ifdef VERSION_JP + var_s0 = get_string_width(D_800E7A34[0]) * 0.5f; + temp_f6 = get_string_width(D_800E7A34[1]) * 0.5f; +#else var_s0 = get_string_width(D_800E7A34[0]) * 0.45f; temp_f6 = get_string_width(D_800E7A34[1]) * 0.45f; +#endif if (var_s0 < temp_f6) { var_s0 = temp_f6; } @@ -8336,7 +9971,11 @@ void func_800A70E8(MenuItem* arg0) { gDPSetPrimColor(gDisplayListHead++, 0, 0, 0x00, 0x00, 0x00, alpha); set_text_color(TEXT_RED); for (loopIndex = 0x2C, stringIndex = 0; loopIndex < 0x40; loopIndex += 0xA, stringIndex++) { +#ifdef VERSION_JP + print_text_mode_2(0x000000C3, loopIndex, D_800E7A34[stringIndex], 0, 0.5f, 0.5f); +#else print_text_mode_2(0x000000C0, loopIndex, D_800E7A34[stringIndex], 0, 0.45f, 0.45f); +#endif } } } @@ -8416,6 +10055,34 @@ void func_800A761C(MenuItem* arg0) { func_800939C8((arg0->column + sp48) - 0x18, arg0->row, &sp3C[1], 0, 2.0f, 2.0f); } +#ifdef VERSION_JP +void menu_item_credits_render(MenuItem* arg0) { + f32 someScaling; + s32 creditIndex; + char** textPtr; + /* No slideDirection local: it would take the slot info's spill needs. IDO + CSEs the two reads into the single lb the real ROM has. */ + CreditsRenderInfo* info; + + creditIndex = arg0->type - 0x190; + info = &gCreditsTextRenderInfo[creditIndex]; + if (gCCSelection == CC_EXTRA) { + textPtr = &gCreditsTextExtra[creditIndex]; + } else { + textPtr = &gCreditsText[creditIndex]; + } + set_text_color(info->textColor); + if ((info->slideDirection == SLIDE_RIGHT) || (info->slideDirection != SLIDE_LEFT)) { + someScaling = info->textScaling; + print_text1_left(arg0->column, arg0->row, *textPtr, arg0->param1 * someScaling, + arg0->paramf * someScaling, someScaling); + } else { + someScaling = info->textScaling; + print_text_mode_1(arg0->column, arg0->row, *textPtr, arg0->param1 * someScaling, + arg0->paramf * someScaling, someScaling); + } +} +#else void menu_item_credits_render(MenuItem* arg0) { f32 someScaling; s32 creditIndex; @@ -8434,6 +10101,7 @@ void menu_item_credits_render(MenuItem* arg0) { arg0->paramf * someScaling, someScaling); } } +#endif // Originally func_800A7894 // Presumes that "number" is a 2 digit number. Convert it to a string @@ -9038,7 +10706,11 @@ void func_800A874C(MenuItem* arg0) { get_time_record_centiseconds(temp_s1, buffer); text_draw(arg0->column + 0x29, arg0->row + 0x21, buffer, 0, 0.6f, 0.65f); var_s2 = (u32) temp_s1 < 0x927C0U ? var_s2 >> 0x14 : 8; +#ifdef VERSION_JP + print_text1_left(arg0->column + 0x62, arg0->row + 0x21, D_800E76A8[var_s2], 0, 0.6f, 0.65f); +#else print_text1_left(arg0->column + 0x60, arg0->row + 0x21, D_800E76A8[var_s2], 0, 0.6f, 0.65f); +#endif } void func_800A890C(s32 arg0, MenuItem* arg1) { @@ -9128,12 +10800,21 @@ void func_800A8CA4(MenuItem* arg0) { } } +#ifdef VERSION_JP +void render_battle_introduction(UNUSED MenuItem* arg0) { + set_text_color(TEXT_YELLOW); + print_text1_center_mode_1(0xA0, 0x44, gTextBattleIntroduction[0], 0, 1.0f, 1.0f); + print_text_mode_1(0x1A, 0x58, gTextBattleIntroduction[1], 0, 0.95f, 0.95f); + func_800939C8(0x1E, 0x6A, gTextBattleIntroduction[2], 4, 0.95f, 0.95f); +} +#else void render_battle_introduction(UNUSED MenuItem* arg0) { set_text_color(TEXT_YELLOW); print_text1_center_mode_1(0x98, 0x44, gTextBattleIntroduction[0], 0, 1.0f, 1.0f); print_text_mode_1(0x17, 0x58, gTextBattleIntroduction[1], 0, 0.7f, 0.8f); print_text_mode_1(0x17, 0x6A, gTextBattleIntroduction[2], 0, 0.7f, 0.8f); } +#endif void func_800A8EC0(MenuItem* arg0) { if (arg0->param2 != 0) { @@ -11918,9 +13599,12 @@ void func_800AEF74(MenuItem* arg0) { if (gPostTimeTrialReplayCannotSave == 1) { arg0->state = 1; arg0->param1 = 0; - } else if (playerHUD[PLAYER_ONE].raceCompleteBool == (s8) 1) { + } +#ifndef VERSION_JP + else if (playerHUD[PLAYER_ONE].raceCompleteBool == (s8) 1) { arg0->state = 2; } +#endif break; case 2: break; @@ -12070,18 +13754,34 @@ void func_800AF480(MenuItem* arg0) { } void func_800AF4DC(MenuItem* arg0) { +#ifndef VERSION_JP /* JP's textPtr already occupies the slot this pad reserves */ UNUSED s32 pad; +#endif s32 temp_v0; CreditsRenderInfo* temp_v1; +#ifdef VERSION_JP + char** textPtr; +#endif temp_v0 = arg0->type - 0x190; +#ifdef VERSION_JP + if (gCCSelection == CC_EXTRA) { + textPtr = &gCreditsTextExtra[temp_v0]; + } else { + textPtr = &gCreditsText[temp_v0]; + } +#endif temp_v1 = &gCreditsTextRenderInfo[temp_v0]; arg0->row = temp_v1->row; switch (arg0->state) { case 0: arg0->column = temp_v1->startingColumn; arg0->state = 1; + #ifdef VERSION_JP + arg0->param2 = temp_v1->columnExtra + (get_string_width(*textPtr) * temp_v1->textScaling / 2); +#else arg0->param2 = temp_v1->columnExtra + (get_string_width(gCreditsText[temp_v0]) * temp_v1->textScaling / 2); +#endif /* fallthrough */ case 1: func_800A9208(arg0, arg0->param2); @@ -12122,18 +13822,34 @@ void func_800AF4DC(MenuItem* arg0) { } void func_800AF740(MenuItem* arg0) { +#ifndef VERSION_JP /* JP's textPtr already occupies the slot this pad reserves */ UNUSED s32 pad; +#endif s32 temp_v0; CreditsRenderInfo* temp_v1; +#ifdef VERSION_JP + char** textPtr; +#endif temp_v0 = arg0->type - 0x190; +#ifdef VERSION_JP + if (gCCSelection == CC_EXTRA) { + textPtr = &gCreditsTextExtra[temp_v0]; + } else { + textPtr = &gCreditsText[temp_v0]; + } +#endif temp_v1 = &gCreditsTextRenderInfo[temp_v0]; arg0->row = temp_v1->row; switch (arg0->state) { case 0: arg0->column = temp_v1->startingColumn; arg0->state = 1; + #ifdef VERSION_JP + arg0->param2 = temp_v1->columnExtra - (get_string_width(*textPtr) * temp_v1->textScaling / 2); +#else arg0->param2 = temp_v1->columnExtra - (get_string_width(gCreditsText[temp_v0]) * temp_v1->textScaling / 2); +#endif /* fallthrough */ case 1: func_800A9208(arg0, arg0->param2); diff --git a/src/racing/race_logic.c b/src/racing/race_logic.c index 841ac01e91..35ecab7c64 100644 --- a/src/racing/race_logic.c +++ b/src/racing/race_logic.c @@ -788,7 +788,11 @@ void func_8028F588(void) { } void func_8028F8BC(void) { +#ifdef VERSION_JP + D_802BA034 = (f32) (D_802BA034 - 0.017); +#else D_802BA034 = (f32) (D_802BA034 - 0.017f); +#endif if (D_802BA034 < 0.0f) { D_802BA034 = 0.0f; } diff --git a/src/racing/render_courses.c b/src/racing/render_courses.c index 50f5b850eb..c056d0be84 100644 --- a/src/racing/render_courses.c +++ b/src/racing/render_courses.c @@ -404,8 +404,10 @@ void func_8029122C(struct UnkStruct_800DC5EC* arg0, s32 playerId) { gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); // d_course_dks_jungle_parkway_packed_dl_3F30 gSPDisplayList(gDisplayListHead++, 0x07003F30); +#ifndef VERSION_JP // d_course_dks_jungle_parkway_packed_dl_36A8 gSPDisplayList(gDisplayListHead++, 0x070036A8); +#endif } } else if (pathCounter == 24) { if ((playerDirection == 0) || (playerDirection == 3)) { @@ -856,6 +858,14 @@ void render_royal_raceway(struct UnkStruct_800DC5EC* arg0) { gSPSetGeometryMode(gDisplayListHead++, G_CULL_BACK); } +// JP gives the jumbo-television staging area its own slot in segment 5, +// 0x9000 above the US address (the splitscreen staging moved the other way). +#ifdef VERSION_JP +#define JUMBOTRON_STAGING 0x18800 +#else +#define JUMBOTRON_STAGING 0xF800 +#endif + void render_luigi_raceway(struct UnkStruct_800DC5EC* arg0) { UNUSED s32 pad; @@ -870,7 +880,13 @@ void render_luigi_raceway(struct UnkStruct_800DC5EC* arg0) { gDPSetCombineMode(gDisplayListHead++, G_CC_SHADE, G_CC_SHADE); gDPSetRenderMode(gDisplayListHead++, G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2); // d_course_luigi_raceway_packed_dl_9EC0 +#ifdef VERSION_JP + /* JP's luigi packed display lists diverge from US partway through, so + this sub-list sits 0x18 earlier. */ + gSPDisplayList(gDisplayListHead++, ((uintptr_t) 0x07009EA8)); +#else gSPDisplayList(gDisplayListHead++, ((uintptr_t) 0x07009EC0)); +#endif } gDPSetCombineMode(gDisplayListHead++, G_CC_MODULATEIA, G_CC_MODULATEIA); @@ -910,37 +926,39 @@ void render_luigi_raceway(struct UnkStruct_800DC5EC* arg0) { case 0: copy_framebuffer(D_800DC5DC, D_800DC5E0, 64, 32, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0xF800)); + (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + JUMBOTRON_STAGING)); break; case 1: copy_framebuffer(D_800DC5DC + 64, D_800DC5E0, 64, 32, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x10800)); + (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + JUMBOTRON_STAGING + 0x1000)); break; case 2: copy_framebuffer(D_800DC5DC, D_800DC5E0 + 32, 64, 32, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x11800)); + (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + JUMBOTRON_STAGING + 0x2000)); break; case 3: copy_framebuffer(D_800DC5DC + 64, D_800DC5E0 + 32, 64, 32, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x12800)); + (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + JUMBOTRON_STAGING + 0x3000)); break; case 4: copy_framebuffer(D_800DC5DC, D_800DC5E0 + 64, 64, 32, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x13800)); + (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + JUMBOTRON_STAGING + 0x4000)); break; case 5: copy_framebuffer(D_800DC5DC + 64, D_800DC5E0 + 64, 64, 32, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[prevFrame]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x14800)); + (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + JUMBOTRON_STAGING + 0x5000)); break; } } } +#undef JUMBOTRON_STAGING + // Missing {} around if statements necessary for matching. void render_moo_moo_farm(struct UnkStruct_800DC5EC* arg0) { UNUSED s32 pad[13]; diff --git a/src/racing/skybox_and_splitscreen.c b/src/racing/skybox_and_splitscreen.c index 78f95fe7ce..ad3acd827a 100644 --- a/src/racing/skybox_and_splitscreen.c +++ b/src/racing/skybox_and_splitscreen.c @@ -117,8 +117,10 @@ void func_802A38B4(void) { init_rdp(); select_framebuffer(); +#ifndef VERSION_JP gDPFullSync(gDisplayListHead++); gSPEndDisplayList(gDisplayListHead++); +#endif if (gQuitToMenuTransitionCounter != 0) { gQuitToMenuTransitionCounter--; @@ -1500,21 +1502,29 @@ void func_802A7940(void) { } else if (temp_v0 > 2) { temp_v0 = 0; } + // JP moves the segment-5 framebuffer staging area 0x9000 up; the jumbo + // television in render_luigi_raceway uses the same base. +#ifdef VERSION_JP +#define SPLITSCREEN_STAGING 0x18800 +#else +#define SPLITSCREEN_STAGING 0xF800 +#endif copy_framebuffer(D_800DC5DC, D_800DC5E0, 0x40, 0x20, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0xF800)); + (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + SPLITSCREEN_STAGING)); copy_framebuffer(D_800DC5DC + 0x40, D_800DC5E0, 0x40, 0x20, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x10800)); + (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + SPLITSCREEN_STAGING + 0x1000)); copy_framebuffer(D_800DC5DC, D_800DC5E0 + 0x20, 0x40, 0x20, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x11800)); + (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + SPLITSCREEN_STAGING + 0x2000)); copy_framebuffer(D_800DC5DC + 0x40, D_800DC5E0 + 0x20, 0x40, 0x20, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x12800)); + (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + SPLITSCREEN_STAGING + 0x3000)); copy_framebuffer(D_800DC5DC, D_800DC5E0 + 0x40, 0x40, 0x20, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x13800)); + (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + SPLITSCREEN_STAGING + 0x4000)); copy_framebuffer(D_800DC5DC + 0x40, D_800DC5E0 + 0x40, 0x40, 0x20, (u16*) PHYSICAL_TO_VIRTUAL(gPhysicalFramebuffers[temp_v0]), - (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + 0x14800)); + (u16*) PHYSICAL_TO_VIRTUAL(gSegmentTable[5] + SPLITSCREEN_STAGING + 0x5000)); +#undef SPLITSCREEN_STAGING } diff --git a/src/render_objects.c b/src/render_objects.c index 0499620851..be496fae98 100644 --- a/src/render_objects.c +++ b/src/render_objects.c @@ -2381,8 +2381,22 @@ void func_8004E998(s32 playerId) { } } +#ifdef VERSION_JP +// Draws the player's 1P/2P/3P/4P emblem next to their HUD; stubbed out in the +// US revision. This is the reader of playerHUD unk_4A/unk_4C. +void func_8004EB30(s32 playerId) { + hud_player* hud; + + if (gDemoMode == 0) { + hud = &playerHUD[playerId]; + func_8004E534(hud->unk_4A, hud->unk_4C, (u8*) common_tlut_player_emblem, + common_texture_player_emblem[playerId]); + } +} +#else void func_8004EB30(UNUSED s32 arg0) { } +#endif void func_8004EB38(s32 playerId) { hud_player* temp_s0; diff --git a/src/render_player.c b/src/render_player.c index 37bba28d8a..4d31c3eb93 100644 --- a/src/render_player.c +++ b/src/render_player.c @@ -48,6 +48,10 @@ u16 gPlayerYellowEffect[8]; // Likely an unused colour effect. UNUSED u16 gPlayerWhiteEffect[8]; s32 D_80164B80[296]; +/* JP puts these seven after crash_screen.o's bss, which splits this file's own + bss - so in JP they are defined in spawn_players.c instead. They are extern + in render_player.h either way, so nothing else changes. */ +#ifndef VERSION_JP s16 D_80165020[40]; // Used to calculate difference between previous and current player velocity. Vec3f gPlayerLastVelocity[8]; @@ -56,6 +60,7 @@ s16 gLastAnimGroupSelector[4][8]; s16 D_80165150[4][8]; s16 D_80165190[4][8]; s16 D_801651D0[4][8]; +#endif void func_8001F980(s32* arg0, s32* arg1) { if ((gDemoMode == 1) || (D_80164A28 != 0) || (D_8015F894 != 0)) { diff --git a/src/spawn_players.c b/src/spawn_players.c index e4657ae047..440a041e9f 100644 --- a/src/spawn_players.c +++ b/src/spawn_players.c @@ -23,6 +23,18 @@ #include "menus.h" #include "render_player.h" #include "menu_items.h" + +#ifdef VERSION_JP +/* JP order: render_player.o bss, crash_screen.o bss, then these seven. See the + matching #ifndef in render_player.c. */ +s16 D_80165020[40]; +Vec3f gPlayerLastVelocity[8]; +s16 gLastAnimFrameSelector[4][8]; +s16 gLastAnimGroupSelector[4][8]; +s16 D_80165150[4][8]; +s16 D_80165190[4][8]; +s16 D_801651D0[4][8]; +#endif #include "effects.h" #include "decode.h" diff --git a/tools/linkonly_generator.py b/tools/linkonly_generator.py index 2e6f78afd5..f9ff7f7639 100644 --- a/tools/linkonly_generator.py +++ b/tools/linkonly_generator.py @@ -312,6 +312,26 @@ # Usage: linkonly_generator.py course_name = sys.argv[1] +# Optional second argument: the build version. course_offsets.c may use +# #ifdef VERSION_JP, and the texture ORDER in that table decides the segment 5 +# layout, so the generator has to resolve the conditional the same way the +# compiler will. Only VERSION_JP is understood; everything else takes the #else. +version = sys.argv[2] if len(sys.argv) > 2 else "" + +def resolve_ifdefs(text, jp): + out, keep = [], [True] + for line in text.split("\n"): + st = line.strip() + if st.startswith("#ifdef VERSION_JP"): + keep.append(jp); continue + if st.startswith("#ifndef VERSION_JP"): + keep.append(not jp); continue + if st.startswith("#else") and len(keep) > 1: + keep[-1] = not keep[-1]; continue + if st.startswith("#endif") and len(keep) > 1: + keep.pop(); continue + if all(keep): out.append(line) + return "\n".join(out) # This depends on the texture lists in each courses//course_offsets.c # look like: `{gTexture6447C4, 0x0106, 0x0800, 0x0},` @@ -328,7 +348,7 @@ c_string += f"#include \"courses/{course_name}/course_textures.linkonly.h\"" - textures = texture_regex.findall(offsets.read()) + textures = texture_regex.findall(resolve_ifdefs(offsets.read(), version == "jp.v11")) # Something wrong has occurred if not textures: From 0b664ccbb7f82877cf364f8c5c8cde16921258ef Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 02:41:02 -0700 Subject: [PATCH 13/41] Decode the tkmk00 textures instead of writing compressed bytes A tkmk00 block is described twice in assets.json at the same ROM offset: the .tkmk00 blob under bin/ is the build input, and the .png beside it under textures/ is a decoded copy. Extraction groups entries by offset and then decided whether to decode by looking at the first one in the group, so whichever was listed first won. The .tkmk00 entries come first in the file, so all 63 of the textures/ PNGs were written straight from the compressed bytes and came out as noise. They only ever looked right on an incremental run that already had the blob on disk. Decode alongside instead: the blob keeps the compressed bytes it needs and the png gets the decoded image. Nothing in the build consumes those PNGs, so no ROM changes. Co-Authored-By: Claude Fable 5 --- extract_assets.py | 40 +++++++++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 15 deletions(-) diff --git a/extract_assets.py b/extract_assets.py index 4361750f94..711a1f2ec4 100755 --- a/extract_assets.py +++ b/extract_assets.py @@ -168,6 +168,7 @@ def main(): for key in keys: assets = todo[key] lang, rom_offset = key + decoded = None if rom_offset is not None: magic = roms[lang][rom_offset:rom_offset + 4] @@ -184,20 +185,26 @@ def main(): stdout=subprocess.PIPE, ).stdout # TODO: binary assets in assets.json for TKMK00 until it is full understood - elif magic == b"TKMK" and assets[0][0].endswith(".png"): - (asset, pos, meta) = assets[0] - image = subprocess.run( - [ - "./tools/tkmk00", - "-d", - "-o", str(rom_offset), - "-a", meta["alpha"], - "baserom." + lang + ".z64", - "-", - ], - check=True, - stdout=subprocess.PIPE, - ).stdout + elif magic == b"TKMK": + # A tkmk00 block is described twice at the same offset: the .tkmk00 + # blob is the build input and wants the compressed bytes, while the + # .png beside it is a decoded copy. They need different bytes, so + # decode alongside rather than picking one for the whole group. + image = roms[lang][rom_offset:] + png = next((a for a in assets if a[0].endswith(".png")), None) + if png is not None: + decoded = subprocess.run( + [ + "./tools/tkmk00", + "-d", + "-o", str(rom_offset), + "-a", png[2]["alpha"], + "baserom." + lang + ".z64", + "-", + ], + check=True, + stdout=subprocess.PIPE, + ).stdout else: # assume raw texture # TODO: This grabs way more data than is necessary image = roms[lang][rom_offset:] @@ -227,7 +234,10 @@ def main(): elif fmt.endswith("8"): size = pixels elif fmt.endswith("4"): size = math.ceil(pixels / 2) elif fmt == "ia1": size = math.ceil(pixels / 8) - input = image[pos : pos + size] + # a decoded tkmk00 block is only for the .png; the blob keeps the + # compressed bytes the build actually assembles + source = decoded if (decoded is not None and asset.endswith(".png")) else image + input = source[pos : pos + size] os.makedirs(os.path.dirname(asset), exist_ok=True) if asset.endswith(".png"): name_file = "" From 94d8cb4704591b4b3e456265d004b64e7e98e7a4 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 03:15:15 -0700 Subject: [PATCH 14/41] jp.v11: luigi_raceway display lists JP ships a different build of this course. Its packed display-list stream is disassembled back into Gfx macros here, so the JP lists are ordinary committed source like every other course instead of a checked-in blob. The disassembly is verified two ways. Re-emitting US from the US blob reproduces the committed course_displaylists.inc.c character for character, and the JP output compiles and repacks to the 13726 bytes that sit at rom 0x90604C in the cart. A single #ifdef VERSION_JP after the includes selects the JP file, so us, eu.v10 and eu.v11 compile from exactly the bytes they did before. This replaces course_displaylists.jp.v11.s, which was never wired into the build (ASM_DIRS does not cover courses/). Co-Authored-By: Claude Fable 5 --- .../luigi_raceway/course_displaylists.inc.c | 4 + .../course_displaylists.jp.v11.inc.c | 8107 +++++++++++++++++ .../course_displaylists.jp.v11.s | 1092 --- 3 files changed, 8111 insertions(+), 1092 deletions(-) create mode 100644 courses/luigi_raceway/course_displaylists.jp.v11.inc.c delete mode 100644 courses/luigi_raceway/course_displaylists.jp.v11.s diff --git a/courses/luigi_raceway/course_displaylists.inc.c b/courses/luigi_raceway/course_displaylists.inc.c index 1b9226a126..929e33088c 100644 --- a/courses/luigi_raceway/course_displaylists.inc.c +++ b/courses/luigi_raceway/course_displaylists.inc.c @@ -6,6 +6,9 @@ #include "course_displaylists.inc.h" #include "course_textures.linkonly.h" +#ifdef VERSION_JP +#include "course_displaylists.jp.v11.inc.c" +#else Gfx d_course_luigi_raceway_packed_dl_0[] = { gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), gsDPTileSync(), @@ -8113,3 +8116,4 @@ Gfx d_course_luigi_raceway_packed_dl_C730[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_C668), gsSPEndDisplayList(), }; +#endif diff --git a/courses/luigi_raceway/course_displaylists.jp.v11.inc.c b/courses/luigi_raceway/course_displaylists.jp.v11.inc.c new file mode 100644 index 0000000000..8b02f89935 --- /dev/null +++ b/courses/luigi_raceway/course_displaylists.jp.v11.inc.c @@ -0,0 +1,8107 @@ +/* JP ships a different build of this course: different vertices and display + * lists. Disassembled from the packed stream in the JP cart; see the PR + * description. Included by course_displaylists.inc.c under VERSION_JP. */ + +Gfx d_course_luigi_raceway_packed_dl_0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureFlagRed), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04000000, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_68[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_78[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureFlagRed), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04000080, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_E0[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_78), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_F0[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_E0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_68), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_108[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_F0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_118[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04000100, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_190[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04000200, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_208[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04000300, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_280[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04000400, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2F8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04000500, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_370[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04000600, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3E8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04000700, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_450[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04000780, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_4B8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04000800, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_528[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040008C0, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_5A0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040009C0, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_610[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04000A80, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_688[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04000B80, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_700[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04000C80, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_778[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04000D80, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7F0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04000E80, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_858[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04000F00, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8D0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04001000, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_938[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04001080, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_9A8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04001140, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A20[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04001240, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A98[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9A8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_938), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8D0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_858), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_778), gsSPDisplayList(d_course_luigi_raceway_packed_dl_700), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_688), gsSPDisplayList(d_course_luigi_raceway_packed_dl_610), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_528), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_370), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_2F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_280), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_208), gsSPDisplayList(d_course_luigi_raceway_packed_dl_190), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_118), gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B48[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04001340, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 1, 0, 4, 1, 0, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040013A0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_BD0[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04001420, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04001480, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_C58[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04001500, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04001560, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_CE0[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x040015E0, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04001640, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_D68[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x040016C0, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04001720, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_DF0[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x040017A0, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 1, 0, 4, 1, 0, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04001800, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_E78[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04001880, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(1, 4, 5, 0, 1, 5, 2, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040018E0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_F00[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04001960, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040019C0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_F88[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04001A40, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04001A80, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1000[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04001AC0, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04001B20, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1088[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04001BA0, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04001C00, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1110[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04001C80, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(3, 2, 8, 0, 3, 8, 9, 0), + gsSP2Triangles(9, 8, 5, 0, 9, 5, 4, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04001D20, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_11B8[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04001E20, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(7, 6, 8, 0, 7, 8, 9, 0), + gsSP2Triangles(9, 8, 1, 0, 9, 1, 0, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04001EC0, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1260[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04001FC0, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(7, 6, 8, 0, 7, 8, 9, 0), + gsSP2Triangles(9, 8, 1, 0, 9, 1, 0, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002060, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1308[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04002160, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(7, 6, 8, 0, 7, 8, 9, 0), + gsSP2Triangles(9, 8, 1, 0, 9, 1, 0, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002200, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_13B0[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04002300, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 1, 0, 4, 1, 0, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002360, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1438[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x040023E0, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSP2Triangles(5, 4, 6, 0, 5, 6, 7, 0), + gsSP2Triangles(7, 6, 8, 0, 7, 8, 9, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002480, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_14E0[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04002580, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040025C0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1558[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04002600, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 1, 0, 4, 1, 0, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002660, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_15E0[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x040026E0, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(7, 6, 8, 0, 7, 8, 9, 0), + gsSP2Triangles(9, 8, 1, 0, 9, 1, 0, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002780, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1688[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04002880, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSP2Triangles(5, 4, 6, 0, 5, 6, 7, 0), + gsSP2Triangles(7, 6, 8, 0, 7, 8, 9, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002920, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1730[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1688), gsSPDisplayList(d_course_luigi_raceway_packed_dl_15E0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1558), gsSPDisplayList(d_course_luigi_raceway_packed_dl_14E0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1438), gsSPDisplayList(d_course_luigi_raceway_packed_dl_13B0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1308), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1260), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_11B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1110), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1088), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1000), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_F88), gsSPDisplayList(d_course_luigi_raceway_packed_dl_F00), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_E78), gsSPDisplayList(d_course_luigi_raceway_packed_dl_DF0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_D68), gsSPDisplayList(d_course_luigi_raceway_packed_dl_CE0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_C58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_BD0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B48), gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_17E0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002A20, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 1, 3, 2, 0), + gsSP2Triangles(3, 4, 2, 0, 5, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1848[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002AA0, 7, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 2, 4, 0), + gsSP2Triangles(2, 5, 4, 0, 3, 0, 2, 0), + gsSP1Triangle(5, 6, 4, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_18B8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002B10, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(0, 4, 1, 0, 5, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1920[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002B90, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 0, 2, 0), + gsSP2Triangles(4, 5, 6, 0, 5, 7, 6, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1988[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture653608), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002C10, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 1, 3, 2, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002C50, 7, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP1Triangle(6, 3, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1A28[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture653608), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002CC0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 5, 7, 6, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002D40, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 0, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1AC8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002D80, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1B28[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture653608), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002DC0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 2, 3, 0, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002E40, 7, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(0, 3, 4, 0, 1, 5, 6, 0), + gsSP2Triangles(1, 6, 2, 0, 6, 3, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1BD8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture653608), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002EB0, 9, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(1, 4, 2, 0, 4, 5, 2, 0), + gsSP2Triangles(6, 7, 3, 0, 7, 8, 3, 0), + gsSP1Triangle(0, 3, 8, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002F40, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 2, 1, 3, 0), + gsSP2Triangles(3, 1, 4, 0, 3, 4, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1C90[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04002FA0, 7, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 0, 2, 0), + gsSP2Triangles(4, 5, 6, 0, 2, 1, 5, 0), + gsSP1Triangle(5, 1, 6, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1D00[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04003010, 7, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 0, 2, 0), + gsSP2Triangles(2, 1, 4, 0, 5, 6, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1D68[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture653608), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04003080, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040030C0, 9, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 3, 5, 0, 4, 7, 5, 0), + gsSP1Triangle(8, 6, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1E10[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04003150, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1E70[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture653608), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04003190, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04003250, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 1, 3, 4, 0), + gsSP2Triangles(1, 4, 2, 0, 1, 5, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1F18[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E70), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E10), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D68), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D00), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1BD8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1B28), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1AC8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1A28), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1988), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1920), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_18B8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1848), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_17E0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1F90[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040032B0, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_1FF0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04003310, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2050[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04003370, 15, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP1Triangle(12, 13, 14, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_20C0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04003460, 17, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(3, 6, 7, 0, 8, 9, 10, 0), + gsSP2Triangles(11, 12, 13, 0, 14, 15, 16, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2130[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04003570, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_21A8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040036F0, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2210[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040037B0, 18, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2280[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040038D0, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_22F8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04003A50, 17, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(9, 12, 13, 0, 14, 15, 16, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2368[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04003B60, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_23E0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04003CE0, 20, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 6, 15, 16, 0), + gsSP1Triangle(17, 18, 19, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2458[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04003E20, 31, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(5, 6, 7, 0, 8, 9, 10, 0), + gsSP2Triangles(11, 12, 13, 0, 14, 15, 16, 0), + gsSP2Triangles(17, 18, 19, 0, 20, 21, 22, 0), + gsSP2Triangles(23, 24, 25, 0, 26, 27, 28, 0), + gsSP1Triangle(26, 29, 30, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_24E0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04004010, 30, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSP2Triangles(24, 25, 26, 0, 27, 28, 29, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2560[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040041F0, 31, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(3, 6, 7, 0, 8, 9, 10, 0), + gsSP2Triangles(11, 12, 13, 0, 14, 15, 16, 0), + gsSP2Triangles(17, 18, 19, 0, 20, 21, 22, 0), + gsSP2Triangles(23, 24, 25, 0, 3, 26, 27, 0), + gsSP1Triangle(28, 29, 30, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_25E8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040043E0, 18, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2658[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04004500, 3, 0), + gsSP1Triangle(0, 1, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_26B8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04004530, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2720[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040045F0, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2798[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04004770, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2810[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040048F0, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2888[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04004A70, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2900[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04004BF0, 21, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP1Triangle(18, 19, 20, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2978[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04004D40, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_29F0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04004EC0, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2A68[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04005040, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2AE0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040051C0, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2B58[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04005340, 15, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP1Triangle(12, 13, 14, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2BC8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04005430, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2C40[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040055B0, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2CB8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04005730, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2D30[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040058B0, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2DA8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04005A30, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2E20[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04005BB0, 18, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2E90[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04005CD0, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2EF8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04005D90, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_2F60[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_2EF8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2E90), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_2E20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2DA8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_2D30), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2CB8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_2C40), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2BC8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_2B58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2AE0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_2A68), gsSPDisplayList(d_course_luigi_raceway_packed_dl_29F0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_2978), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2900), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_2888), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2810), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_2798), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2720), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_26B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2658), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_25E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2560), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_24E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2458), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_23E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2368), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_22F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2280), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_2210), gsSPDisplayList(d_course_luigi_raceway_packed_dl_21A8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_2130), gsSPDisplayList(d_course_luigi_raceway_packed_dl_20C0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_2050), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1FF0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1F90), gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3080[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04005E50, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_30F8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04005FD0, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3170[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04006150, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_31E8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040062D0, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3260[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04006450, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_32D8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040065D0, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3350[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04006750, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_33C8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040068D0, 30, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSP2Triangles(24, 25, 26, 0, 27, 28, 29, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3448[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04006AB0, 25, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 5, 0, 8, 9, 10, 0), + gsSP2Triangles(11, 12, 13, 0, 14, 15, 16, 0), + gsSP2Triangles(17, 18, 19, 0, 20, 21, 19, 0), + gsSP1Triangle(22, 23, 24, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_34C8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04006C40, 25, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 17, 0, 20, 21, 22, 0), + gsSP1Triangle(23, 24, 22, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3548[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04006DD0, 31, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(2, 12, 13, 0, 14, 15, 16, 0), + gsSP2Triangles(17, 18, 19, 0, 20, 21, 22, 0), + gsSP2Triangles(23, 24, 25, 0, 26, 27, 28, 0), + gsSP1Triangle(29, 30, 9, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_35D0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04006FC0, 31, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 3, 4, 0), + gsSP2Triangles(5, 6, 7, 0, 5, 8, 9, 0), + gsSP2Triangles(10, 5, 11, 0, 5, 12, 13, 0), + gsSP2Triangles(5, 14, 12, 0, 6, 15, 16, 0), + gsSP2Triangles(17, 18, 19, 0, 20, 21, 22, 0), + gsSP2Triangles(23, 24, 25, 0, 5, 26, 27, 0), + gsSP1Triangle(28, 29, 30, 0), + gsSPVertex(0x040071B0, 9, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP1Triangle(6, 7, 8, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3678[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04007240, 27, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSP1Triangle(24, 25, 26, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_36F8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040073F0, 17, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 1, 0), + gsSP2Triangles(5, 6, 7, 0, 8, 9, 10, 0), + gsSP2Triangles(11, 12, 13, 0, 14, 15, 16, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3768[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04007500, 23, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(17, 18, 19, 0, 20, 21, 22, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_37E0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04007670, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3858[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040077F0, 22, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 4, 7, 0, 8, 9, 4, 0), + gsSP2Triangles(10, 11, 12, 0, 13, 14, 15, 0), + gsSP2Triangles(16, 17, 18, 0, 19, 20, 21, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_38D0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04007950, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3948[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04007AD0, 27, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSP1Triangle(24, 25, 26, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_39C8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04007C80, 30, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSP2Triangles(24, 25, 26, 0, 27, 28, 29, 0), + gsSPVertex(0x04007E60, 3, 0), + gsSP1Triangle(0, 1, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3A58[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04007E90, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3AD0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04008010, 11, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 1, 0), + gsSP2Triangles(5, 6, 7, 0, 8, 9, 10, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3B38[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040080C0, 30, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 14, 16, 0), + gsSP2Triangles(17, 18, 19, 0, 19, 20, 21, 0), + gsSP2Triangles(22, 0, 23, 0, 24, 25, 26, 0), + gsSP1Triangle(27, 28, 29, 0), + gsSPVertex(0x040082A0, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3BD0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04008300, 13, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 0, 4, 0), + gsSP2Triangles(5, 6, 7, 0, 8, 9, 10, 0), + gsSP1Triangle(8, 11, 12, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3C40[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040083D0, 31, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(3, 5, 6, 0, 7, 1, 8, 0), + gsSP2Triangles(9, 10, 11, 0, 9, 11, 12, 0), + gsSP2Triangles(13, 14, 15, 0, 16, 17, 18, 0), + gsSP2Triangles(19, 18, 20, 0, 21, 22, 23, 0), + gsSP2Triangles(24, 21, 23, 0, 25, 26, 27, 0), + gsSP1Triangle(28, 29, 30, 0), + gsSPVertex(0x040085C0, 14, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 4, 0, 8, 9, 10, 0), + gsSP1Triangle(11, 12, 13, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3CF0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040086A0, 18, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3D60[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040087C0, 24, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(18, 19, 20, 0, 21, 22, 23, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3DD8[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3CF0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3C40), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3BD0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3B38), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3AD0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_39C8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3948), gsSPDisplayList(d_course_luigi_raceway_packed_dl_38D0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3858), gsSPDisplayList(d_course_luigi_raceway_packed_dl_37E0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3768), gsSPDisplayList(d_course_luigi_raceway_packed_dl_36F8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3678), gsSPDisplayList(d_course_luigi_raceway_packed_dl_35D0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3548), gsSPDisplayList(d_course_luigi_raceway_packed_dl_34C8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3448), gsSPDisplayList(d_course_luigi_raceway_packed_dl_33C8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3350), gsSPDisplayList(d_course_luigi_raceway_packed_dl_32D8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3260), gsSPDisplayList(d_course_luigi_raceway_packed_dl_31E8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3170), gsSPDisplayList(d_course_luigi_raceway_packed_dl_30F8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3080), gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3EB8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture673C68), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04008940, 32, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSP2Triangles(16, 17, 18, 0, 16, 18, 19, 0), + gsSP2Triangles(20, 21, 22, 0, 20, 22, 23, 0), + gsSP2Triangles(24, 25, 26, 0, 24, 26, 27, 0), + gsSP2Triangles(28, 29, 30, 0, 28, 30, 31, 0), + gsSPVertex(0x04008B40, 32, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSP2Triangles(16, 17, 18, 0, 16, 18, 19, 0), + gsSP2Triangles(20, 21, 22, 0, 20, 22, 23, 0), + gsSP2Triangles(24, 25, 26, 0, 24, 26, 27, 0), + gsSP2Triangles(28, 29, 30, 0, 28, 30, 31, 0), + gsSPVertex(0x04008D40, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_3FC0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6735DC), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04008E40, 23, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 7, 0, 8, 7, 10, 0), + gsSP2Triangles(11, 12, 13, 0, 11, 13, 14, 0), + gsSP2Triangles(15, 16, 17, 0, 15, 17, 18, 0), + gsSP2Triangles(19, 20, 21, 0, 19, 21, 22, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture673C68), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04008FB0, 32, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSP2Triangles(16, 17, 18, 0, 16, 18, 19, 0), + gsSP2Triangles(20, 21, 22, 0, 20, 22, 23, 0), + gsSP2Triangles(24, 25, 26, 0, 24, 26, 27, 0), + gsSP2Triangles(28, 29, 30, 0, 28, 30, 31, 0), + gsSPVertex(0x040091B0, 32, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 7, 5, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSP2Triangles(16, 17, 18, 0, 16, 18, 19, 0), + gsSP2Triangles(20, 21, 22, 0, 20, 22, 23, 0), + gsSP2Triangles(24, 25, 26, 0, 24, 26, 27, 0), + gsSP2Triangles(28, 29, 30, 0, 28, 30, 31, 0), + gsSPVertex(0x040093B0, 31, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSP2Triangles(16, 17, 18, 0, 16, 18, 19, 0), + gsSP2Triangles(20, 21, 22, 0, 20, 22, 23, 0), + gsSP2Triangles(24, 25, 26, 0, 24, 26, 27, 0), + gsSP2Triangles(28, 29, 19, 0, 28, 19, 30, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_4148[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6735DC), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040095A0, 21, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 2, 5, 0, 4, 5, 6, 0), + gsSP2Triangles(7, 8, 9, 0, 7, 9, 10, 0), + gsSP2Triangles(11, 12, 13, 0, 11, 13, 14, 0), + gsSP2Triangles(15, 16, 17, 0, 15, 17, 18, 0), + gsSP2Triangles(10, 19, 20, 0, 10, 20, 17, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture673C68), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040096F0, 32, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSP2Triangles(16, 17, 18, 0, 16, 18, 19, 0), + gsSP2Triangles(20, 21, 22, 0, 20, 22, 23, 0), + gsSP2Triangles(24, 25, 26, 0, 24, 26, 27, 0), + gsSP2Triangles(28, 29, 30, 0, 28, 30, 31, 0), + gsSPVertex(0x040098F0, 32, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSP2Triangles(16, 17, 18, 0, 16, 18, 19, 0), + gsSP2Triangles(20, 21, 22, 0, 20, 22, 23, 0), + gsSP2Triangles(24, 25, 26, 0, 24, 26, 27, 0), + gsSP2Triangles(28, 29, 30, 0, 28, 30, 31, 0), + gsSPVertex(0x04009AF0, 31, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSP2Triangles(16, 17, 18, 0, 16, 18, 19, 0), + gsSP2Triangles(20, 21, 22, 0, 20, 22, 23, 0), + gsSP2Triangles(24, 25, 26, 0, 24, 26, 27, 0), + gsSP2Triangles(28, 29, 30, 0, 28, 30, 2, 0), + gsSPVertex(0x04009CE0, 30, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 3, 0), + gsSP2Triangles(7, 8, 9, 0, 7, 9, 10, 0), + gsSP2Triangles(11, 12, 13, 0, 11, 13, 14, 0), + gsSP2Triangles(15, 16, 17, 0, 15, 17, 18, 0), + gsSP2Triangles(19, 20, 21, 0, 19, 21, 22, 0), + gsSP2Triangles(23, 24, 25, 0, 23, 25, 26, 0), + gsSP2Triangles(27, 28, 29, 0, 27, 29, 26, 0), + gsSPVertex(0x04009EC0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_4330[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6735DC), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04009F40, 11, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 1, 0, 4, 1, 6, 0), + gsSP2Triangles(7, 8, 9, 0, 7, 9, 10, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture673C68), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04009FF0, 32, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSP2Triangles(16, 17, 18, 0, 16, 18, 19, 0), + gsSP2Triangles(20, 21, 22, 0, 20, 22, 23, 0), + gsSP2Triangles(24, 25, 26, 0, 24, 26, 27, 0), + gsSP2Triangles(28, 29, 30, 0, 28, 30, 31, 0), + gsSPVertex(0x0400A1F0, 32, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSP2Triangles(16, 17, 18, 0, 16, 18, 19, 0), + gsSP2Triangles(20, 21, 22, 0, 20, 22, 23, 0), + gsSP2Triangles(24, 25, 26, 0, 24, 26, 27, 0), + gsSP2Triangles(28, 29, 30, 0, 28, 30, 31, 0), + gsSPVertex(0x0400A3F0, 31, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 1, 0, 4, 1, 6, 0), + gsSP2Triangles(7, 8, 9, 0, 7, 9, 10, 0), + gsSP2Triangles(11, 12, 13, 0, 11, 13, 14, 0), + gsSP2Triangles(15, 16, 17, 0, 15, 17, 18, 0), + gsSP2Triangles(19, 20, 21, 0, 19, 21, 22, 0), + gsSP2Triangles(23, 24, 25, 0, 23, 25, 26, 0), + gsSP2Triangles(27, 28, 29, 0, 27, 29, 30, 0), + gsSPVertex(0x0400A5E0, 31, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 3, 0, 12, 3, 14, 0), + gsSP2Triangles(15, 16, 17, 0, 15, 17, 18, 0), + gsSP2Triangles(19, 20, 21, 0, 19, 21, 22, 0), + gsSP2Triangles(23, 24, 25, 0, 23, 25, 26, 0), + gsSP2Triangles(27, 28, 29, 0, 27, 29, 30, 0), + gsSPVertex(0x0400A7D0, 20, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSP2Triangles(16, 17, 18, 0, 16, 18, 19, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_4518[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4330), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4148), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3FC0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3EB8), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_4540[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture64619C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400A910, 13, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP1Triangle(10, 12, 11, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_45B8[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x0400A9E0, 26, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 0, 2, 0), + gsSP2Triangles(0, 4, 1, 0, 5, 0, 3, 0), + gsSP2Triangles(1, 4, 6, 0, 7, 3, 2, 0), + gsSP2Triangles(7, 2, 8, 0, 7, 5, 3, 0), + gsSP2Triangles(9, 7, 10, 0, 6, 4, 11, 0), + gsSP2Triangles(12, 6, 11, 0, 13, 14, 7, 0), + gsSP2Triangles(15, 14, 13, 0, 15, 16, 14, 0), + gsSP2Triangles(14, 16, 17, 0, 17, 12, 18, 0), + gsSP2Triangles(19, 17, 18, 0, 17, 20, 12, 0), + gsSP2Triangles(17, 21, 22, 0, 23, 24, 10, 0), + gsSP2Triangles(23, 10, 22, 0, 12, 11, 18, 0), + gsSP2Triangles(19, 18, 11, 0, 25, 23, 22, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture66C7A8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400AB80, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 0, 3, 0, 4, 3, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_46A0[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x0400ABE0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture64619C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400AC60, 21, 0), + gsSP2Triangles(0, 1, 2, 0, 1, 3, 4, 0), + gsSP2Triangles(1, 5, 3, 0, 6, 1, 0, 0), + gsSP2Triangles(1, 4, 7, 0, 8, 9, 2, 0), + gsSP2Triangles(8, 2, 10, 0, 11, 12, 13, 0), + gsSP2Triangles(12, 14, 15, 0, 12, 15, 16, 0), + gsSP2Triangles(12, 16, 13, 0, 17, 14, 18, 0), + gsSP2Triangles(19, 20, 14, 0, 17, 15, 14, 0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture670AC8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400ADB0, 15, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 2, 0, 2, 5, 3, 0), + gsSP2Triangles(6, 4, 2, 0, 1, 6, 2, 0), + gsSP2Triangles(4, 7, 5, 0, 1, 8, 6, 0), + gsSP2Triangles(9, 10, 4, 0, 9, 11, 10, 0), + gsSP2Triangles(12, 9, 4, 0, 12, 13, 9, 0), + gsSP2Triangles(9, 14, 11, 0, 4, 10, 7, 0), + gsSP1Triangle(6, 12, 4, 0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignLuigis0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400AEA0, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignLuigis1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400AF60, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_4860[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_45B8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4540), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_4880[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x0400B020, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(0, 3, 4, 0, 3, 5, 6, 0), + gsSP2Triangles(3, 6, 7, 0, 3, 7, 4, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x00FC), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignLuigiFace0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 256), + gsSPVertex(0x0400B0A0, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignLuigiFace1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 256), + gsSPVertex(0x0400B160, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_4960[] = { + gsDPSetCombineMode(G_CC_SHADE, G_CC_SHADE), + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x0400B220, 15, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 0, 2, 0), + gsSP2Triangles(4, 3, 2, 0, 5, 4, 2, 0), + gsSP2Triangles(6, 7, 8, 0, 6, 8, 9, 0), + gsSP2Triangles(10, 11, 12, 0, 10, 13, 11, 0), + gsSP1Triangle(13, 14, 11, 0), + gsDPSetCombineMode(G_CC_MODULATEIA, G_CC_MODULATEIA), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_49B8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_MIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_MIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture671A88), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400B310, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSP2Triangles(5, 4, 6, 0, 5, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_4A28[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignBlue64), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400B390, 26, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 3, 1, 0), + gsSP2Triangles(4, 0, 2, 0, 2, 1, 5, 0), + gsSP2Triangles(6, 4, 7, 0, 6, 7, 8, 0), + gsSP2Triangles(9, 6, 8, 0, 8, 7, 10, 0), + gsSP2Triangles(6, 11, 4, 0, 12, 13, 14, 0), + gsSP2Triangles(15, 13, 12, 0, 16, 15, 12, 0), + gsSP2Triangles(15, 5, 13, 0, 8, 16, 17, 0), + gsSP2Triangles(9, 8, 18, 0, 8, 17, 18, 0), + gsSP2Triangles(18, 17, 19, 0, 20, 14, 21, 0), + gsSP2Triangles(20, 17, 12, 0, 14, 20, 12, 0), + gsSP2Triangles(20, 19, 17, 0, 12, 17, 16, 0), + gsSP2Triangles(22, 23, 24, 0, 24, 13, 5, 0), + gsSP2Triangles(23, 13, 24, 0, 23, 14, 13, 0), + gsSP2Triangles(0, 4, 11, 0, 23, 21, 14, 0), + gsSP2Triangles(5, 15, 2, 0, 15, 10, 7, 0), + gsSP2Triangles(15, 7, 2, 0, 2, 7, 4, 0), + gsSP2Triangles(24, 1, 25, 0, 22, 24, 25, 0), + gsSP2Triangles(25, 1, 3, 0, 24, 5, 1, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_4B10[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignBlue64), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400B530, 32, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 0, 4, 0), + gsSP2Triangles(0, 2, 4, 0, 4, 2, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 0, 9, 1, 0), + gsSP2Triangles(10, 9, 0, 0, 3, 10, 0, 0), + gsSP2Triangles(10, 11, 9, 0, 12, 13, 14, 0), + gsSP2Triangles(1, 12, 14, 0, 14, 13, 15, 0), + gsSP2Triangles(12, 8, 13, 0, 16, 17, 18, 0), + gsSP2Triangles(19, 16, 18, 0, 4, 5, 20, 0), + gsSP2Triangles(4, 20, 21, 0, 3, 4, 21, 0), + gsSP2Triangles(22, 23, 24, 0, 23, 25, 26, 0), + gsSP2Triangles(25, 20, 26, 0, 26, 20, 5, 0), + gsSP2Triangles(27, 8, 7, 0, 27, 7, 28, 0), + gsSP2Triangles(29, 27, 28, 0, 30, 5, 2, 0), + gsSP2Triangles(15, 30, 14, 0, 30, 2, 14, 0), + gsSP2Triangles(14, 2, 1, 0, 31, 15, 13, 0), + gsSP2Triangles(31, 13, 27, 0, 27, 13, 8, 0), + gsSP2Triangles(29, 31, 27, 0, 8, 12, 6, 0), + gsSP2Triangles(12, 9, 6, 0, 6, 9, 11, 0), + gsSP1Triangle(12, 1, 9, 0), + gsSPVertex(0x0400B730, 11, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 4, 3, 0, 7, 6, 3, 0), + gsSP2Triangles(6, 8, 4, 0, 9, 4, 10, 0), + gsSP1Triangle(10, 4, 8, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_4C28[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture653608), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400B7E0, 3, 0), + gsSP1Triangle(0, 1, 2, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400B810, 32, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 9, 11, 12, 0), + gsSP2Triangles(9, 12, 10, 0, 13, 14, 15, 0), + gsSP2Triangles(13, 15, 16, 0, 17, 18, 19, 0), + gsSP2Triangles(17, 19, 20, 0, 11, 21, 12, 0), + gsSP2Triangles(10, 22, 23, 0, 10, 23, 24, 0), + gsSP2Triangles(25, 22, 26, 0, 25, 26, 27, 0), + gsSP2Triangles(28, 23, 29, 0, 28, 29, 30, 0), + gsSP1Triangle(27, 26, 31, 0), + gsSPVertex(0x0400BA10, 14, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(3, 5, 6, 0, 1, 7, 8, 0), + gsSP2Triangles(1, 8, 9, 0, 10, 11, 12, 0), + gsSP1Triangle(10, 12, 13, 0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture68272C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400BAF0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture682928), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400BB30, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture682B24), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400BB70, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture682D20), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400BBB0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture682F1C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400BBF0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture683118), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400BC30, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture673C68), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400BC70, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_4EE8[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B10), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4A28), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_49B8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_4F20[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardBlueGreen), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400BCB0, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400BDB0, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65112C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400BEB0, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_5038[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardBlueGreen), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400BFB0, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400C0B0, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65112C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400C170, 17, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 3, 1, 0), + gsSP2Triangles(3, 4, 1, 0, 5, 6, 7, 0), + gsSP2Triangles(5, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(9, 11, 12, 0, 13, 14, 15, 0), + gsSP1Triangle(13, 15, 16, 0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignShellShot0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400C280, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignShellShot1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400C2C0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_51D8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardBlueGreen), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400C300, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400C400, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65112C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400C480, 18, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(1, 4, 2, 0, 5, 6, 7, 0), + gsSP2Triangles(5, 8, 6, 0, 8, 9, 6, 0), + gsSP2Triangles(10, 11, 12, 0, 10, 12, 13, 0), + gsSP2Triangles(14, 15, 16, 0, 14, 16, 17, 0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignKoopaAir0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400C5A0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignKoopaAir1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400C5E0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignNintendoRed0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400C620, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignNintendoRed1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400C660, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_53E0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardBlueGreen), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400C6A0, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400C7A0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65112C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400C820, 18, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(1, 4, 2, 0, 5, 6, 7, 0), + gsSP2Triangles(6, 8, 7, 0, 5, 7, 9, 0), + gsSP2Triangles(10, 11, 12, 0, 10, 12, 13, 0), + gsSP2Triangles(14, 15, 16, 0, 14, 16, 17, 0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignLuigis0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400C940, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignLuigis1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400C980, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignYoshi), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400C9C0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardBlueGray), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400CA00, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_55E8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardBlueGreen), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400CA40, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400CB40, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65112C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400CC00, 17, 0), + gsSP2Triangles(0, 1, 2, 0, 1, 3, 2, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 11, 9, 0), + gsSP2Triangles(12, 9, 11, 0, 13, 14, 15, 0), + gsSP1Triangle(13, 15, 16, 0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignMarioStar0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400CD10, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignMarioStar1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400CD50, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_5788[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardBlueGreen), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400CD90, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400CE90, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65112C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400CF90, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_58A0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardBlueGreen), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400D090, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400D190, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65112C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400D290, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_59B8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardBlueGreen), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400D390, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400D450, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65112C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400D510, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_5AB8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardBlueGreen), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400D5D0, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400D690, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65112C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400D750, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_5BB8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardBlueGreen), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400D810, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400D910, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65112C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400DA10, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_5CD0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardBlueGreen), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400DB10, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400DC10, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65112C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400DC90, 18, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(1, 4, 2, 0, 5, 6, 7, 0), + gsSP2Triangles(8, 5, 7, 0, 8, 7, 9, 0), + gsSP2Triangles(10, 11, 12, 0, 10, 12, 13, 0), + gsSP2Triangles(14, 15, 16, 0, 14, 16, 17, 0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignYoshi), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400DDB0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardBlueGray), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400DDF0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignNintendoRed0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400DE30, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignNintendoRed1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400DE70, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_5ED8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardBlueGreen), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400DEB0, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400DFB0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65112C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400E030, 18, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 3, 1, 0), + gsSP2Triangles(3, 4, 1, 0, 5, 6, 7, 0), + gsSP2Triangles(5, 8, 6, 0, 6, 9, 7, 0), + gsSP2Triangles(10, 11, 12, 0, 10, 12, 13, 0), + gsSP2Triangles(14, 15, 16, 0, 14, 16, 17, 0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignLuigis0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400E150, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignLuigis1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400E190, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignMarioStar0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400E1D0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignMarioStar1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400E210, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_60E0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardBlueGreen), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400E250, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400E350, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65112C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400E3D0, 18, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 7, 5, 0), + gsSP2Triangles(5, 8, 6, 0, 9, 10, 11, 0), + gsSP2Triangles(12, 9, 11, 0, 12, 11, 13, 0), + gsSP2Triangles(14, 15, 16, 0, 14, 16, 17, 0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignShellShot0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400E4F0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignShellShot1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400E530, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignKoopaAir0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400E570, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignKoopaAir1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400E5B0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_6300[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardBlueGreen), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400E5F0, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400E6F0, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65112C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400E7F0, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_6418[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardBlueGreen), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400E8F0, 20, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSP2Triangles(16, 17, 18, 0, 16, 18, 19, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400EA30, 18, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSP2Triangles(16, 17, 9, 0, 16, 9, 8, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65112C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x0400EB50, 21, 0), + gsSP2Triangles(0, 1, 2, 0, 1, 3, 2, 0), + gsSP2Triangles(4, 2, 3, 0, 5, 6, 7, 0), + gsSP2Triangles(5, 7, 8, 0, 9, 10, 11, 0), + gsSP2Triangles(9, 11, 12, 0, 13, 14, 15, 0), + gsSP2Triangles(13, 15, 16, 0, 15, 17, 18, 0), + gsSP2Triangles(15, 18, 16, 0, 19, 20, 4, 0), + gsSP1Triangle(19, 4, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_6558[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6418), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6300), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_60E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5ED8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_53E0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_51D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_65D8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400ECA0, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(0, 6, 1, 0, 7, 8, 9, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400ED40, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(1, 6, 2, 0, 4, 7, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_6680[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400EDC0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 3, 1, 0), + gsSP2Triangles(4, 5, 6, 0, 5, 7, 6, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400EE40, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(1, 6, 2, 0, 4, 7, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_6728[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400EEC0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 1, 3, 2, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 7, 5, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400EF40, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 1, 9, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_67D0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400EFE0, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 3, 1, 0), + gsSP2Triangles(4, 5, 6, 0, 7, 8, 9, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400F080, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 7, 9, 8, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_6878[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400F120, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(0, 6, 1, 0, 7, 8, 9, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400F1C0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(1, 6, 2, 0, 4, 7, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_6920[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400F240, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 0, 9, 1, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400F2E0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 1, 3, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_69C0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400F320, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 3, 1, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400F360, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 3, 1, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_6A58[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400F3A0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(0, 6, 1, 0, 3, 7, 4, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400F420, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(1, 6, 2, 0, 4, 7, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_6B00[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400F4A0, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 0, 9, 1, 0), + gsSP2Triangles(3, 10, 4, 0, 6, 11, 7, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400F560, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 1, 9, 2, 0), + gsSP2Triangles(4, 10, 5, 0, 7, 11, 8, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoadFinish1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400F620, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 1, 3, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_6BF0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400F660, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(0, 6, 1, 0, 3, 7, 4, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400F6E0, 14, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 7, 9, 8, 0), + gsSP2Triangles(1, 10, 2, 0, 4, 11, 5, 0), + gsSP2Triangles(6, 12, 7, 0, 9, 13, 8, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_6CA8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400F7C0, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 0, 9, 1, 0), + gsSP2Triangles(3, 10, 4, 0, 6, 11, 7, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400F880, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 1, 9, 2, 0), + gsSP2Triangles(4, 10, 5, 0, 7, 11, 8, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_6D60[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400F940, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 0, 9, 1, 0), + gsSP2Triangles(3, 10, 4, 0, 6, 11, 7, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400FA00, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 1, 9, 2, 0), + gsSP2Triangles(4, 10, 5, 0, 7, 11, 8, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_6E18[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400FAC0, 20, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(3, 5, 6, 0, 7, 8, 9, 0), + gsSP2Triangles(7, 9, 10, 0, 11, 12, 13, 0), + gsSP2Triangles(11, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(15, 17, 18, 0, 0, 19, 1, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400FC00, 20, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(3, 5, 6, 0, 7, 8, 9, 0), + gsSP2Triangles(7, 9, 10, 0, 11, 12, 13, 0), + gsSP2Triangles(11, 13, 14, 0, 15, 16, 17, 0), + gsSP2Triangles(15, 17, 18, 0, 1, 19, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_6EF0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400FD40, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 0, 9, 1, 0), + gsSP2Triangles(3, 10, 4, 0, 6, 11, 7, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400FE00, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 1, 9, 2, 0), + gsSP2Triangles(4, 10, 5, 0, 7, 11, 8, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_6FA8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400FEC0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(0, 6, 1, 0, 3, 7, 4, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400FF40, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(1, 6, 2, 0, 4, 7, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7050[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x0400FFC0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(4, 6, 5, 0, 1, 7, 2, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010040, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(0, 6, 1, 0, 3, 7, 4, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_70F8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x040100C0, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(0, 6, 1, 0, 7, 8, 9, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010160, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(1, 6, 2, 0, 7, 8, 9, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_71A0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010200, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(0, 6, 1, 0, 3, 7, 4, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010280, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 3, 1, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7248[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010300, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 0, 9, 1, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x040103A0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 3, 1, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_72F0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010420, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 3, 1, 0), + gsSP2Triangles(4, 5, 6, 0, 7, 8, 9, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x040104C0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 3, 1, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 7, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7398[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010540, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 0, 9, 1, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x040105E0, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 1, 9, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7440[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010680, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(0, 6, 1, 0, 3, 7, 4, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010700, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 1, 9, 2, 0), + gsSP2Triangles(4, 10, 5, 0, 7, 11, 8, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_74F0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x040107C0, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 0, 9, 1, 0), + gsSP2Triangles(3, 10, 4, 0, 6, 11, 7, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010880, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 1, 9, 2, 0), + gsSP2Triangles(4, 10, 5, 0, 7, 11, 8, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_75A8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010940, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(0, 6, 1, 0, 7, 8, 9, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x040109E0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(0, 6, 1, 0, 4, 7, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7650[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010A60, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 1, 3, 2, 0), + gsSP2Triangles(4, 5, 6, 0, 5, 7, 6, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010AE0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 3, 1, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 7, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_76F8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010B60, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 1, 3, 2, 0), + gsSP2Triangles(4, 0, 2, 0, 4, 2, 5, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010BC0, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 0, 2, 0), + gsSP2Triangles(0, 4, 1, 0, 4, 5, 1, 0), + gsSP2Triangles(6, 7, 8, 0, 6, 8, 9, 0), + gsSP2Triangles(10, 9, 8, 0, 10, 11, 9, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_77B0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010C80, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 1, 3, 2, 0), + gsSP2Triangles(1, 4, 3, 0, 4, 5, 3, 0), + gsSP2Triangles(6, 7, 8, 0, 6, 8, 9, 0), + gsSP2Triangles(8, 10, 9, 0, 10, 11, 9, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010D40, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(2, 4, 3, 0, 4, 5, 3, 0), + gsSP2Triangles(6, 7, 8, 0, 6, 9, 7, 0), + gsSP2Triangles(7, 10, 8, 0, 10, 11, 8, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7878[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010E00, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 0, 2, 0), + gsSP2Triangles(3, 2, 4, 0, 5, 3, 4, 0), + gsSP2Triangles(6, 7, 8, 0, 6, 9, 7, 0), + gsSP2Triangles(7, 10, 8, 0, 10, 11, 8, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010EC0, 14, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 5, 7, 6, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 11, 9, 0), + gsSP2Triangles(9, 12, 10, 0, 12, 13, 10, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7940[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04010FA0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(1, 6, 2, 0, 4, 7, 5, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04011020, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(0, 6, 1, 0, 3, 7, 4, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_79E8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x040110A0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(0, 6, 1, 0, 3, 7, 4, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureRoad2), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x04011120, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 3, 1, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7A88[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_79E8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7940), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7878), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_77B0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_76F8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7650), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_75A8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7248), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_71A0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_70F8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7050), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6EF0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_69C0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6920), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6878), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_67D0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6728), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6680), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7B80[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04011160, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7BF8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04011260, 20, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(2, 12, 13, 0, 2, 13, 3, 0), + gsSP2Triangles(14, 15, 16, 0, 14, 16, 17, 0), + gsSP2Triangles(14, 17, 18, 0, 14, 18, 19, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7C80[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040113A0, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7CF0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04011460, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7D60[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04011520, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7DD8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04011620, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7E50[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04011720, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7EB8[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7E50), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7DD8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7CF0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7BF8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7B80), gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7EF8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardYellowBlue), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040117A0, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 11, 9, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7F68[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardYellowBlue), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04011860, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_7FE0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardYellowBlue), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04011960, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8048[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardYellowBlue), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040119E0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_80B0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardYellowBlue), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04011A60, 16, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8128[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardYellowBlue), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04011B60, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8190[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardYellowBlue), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04011BE0, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8200[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8128), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_80B0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F68), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8240[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04011CA0, 32, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(0, 3, 4, 0, 0, 5, 6, 0), + gsSP2Triangles(0, 6, 7, 0, 0, 7, 8, 0), + gsSP2Triangles(0, 8, 9, 0, 0, 9, 10, 0), + gsSP2Triangles(0, 10, 11, 0, 0, 11, 12, 0), + gsSP2Triangles(0, 12, 13, 0, 0, 13, 14, 0), + gsSP2Triangles(0, 14, 15, 0, 0, 15, 16, 0), + gsSP2Triangles(0, 16, 17, 0, 0, 17, 18, 0), + gsSP2Triangles(0, 18, 19, 0, 0, 19, 20, 0), + gsSP2Triangles(0, 20, 21, 0, 0, 21, 22, 0), + gsSP2Triangles(0, 22, 23, 0, 0, 23, 24, 0), + gsSP2Triangles(0, 24, 25, 0, 0, 25, 26, 0), + gsSP2Triangles(0, 26, 27, 0, 0, 27, 28, 0), + gsSP2Triangles(0, 28, 29, 0, 0, 29, 30, 0), + gsSP1Triangle(0, 30, 31, 0), + gsSPVertex(0x04011EA0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8320[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04011EE0, 22, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(0, 3, 4, 0, 0, 4, 5, 0), + gsSP2Triangles(0, 5, 6, 0, 0, 6, 7, 0), + gsSP2Triangles(0, 8, 9, 0, 0, 9, 10, 0), + gsSP2Triangles(0, 10, 11, 0, 0, 11, 12, 0), + gsSP2Triangles(0, 12, 13, 0, 0, 13, 14, 0), + gsSP2Triangles(0, 14, 15, 0, 0, 15, 16, 0), + gsSP2Triangles(0, 16, 17, 0, 0, 17, 18, 0), + gsSP2Triangles(0, 18, 19, 0, 0, 19, 20, 0), + gsSP2Triangles(0, 20, 21, 0, 0, 21, 1, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_83C8[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8320), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8240), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_83E0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardYellowBlue), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012040, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8448[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureCheckerboardYellowBlue), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040120C0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_84B0[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8448), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_84C8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture64619C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012140, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8528[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04012180, 17, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 0, 5, 0, 1, 6, 2, 0), + gsSP2Triangles(6, 7, 2, 0, 7, 8, 9, 0), + gsSP2Triangles(6, 8, 7, 0, 9, 8, 10, 0), + gsSP2Triangles(11, 9, 10, 0, 4, 5, 12, 0), + gsSP2Triangles(4, 13, 0, 0, 13, 4, 12, 0), + gsSP2Triangles(0, 13, 14, 0, 14, 13, 12, 0), + gsSP2Triangles(14, 11, 15, 0, 14, 16, 11, 0), + gsSP1Triangle(11, 10, 15, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture66C7A8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012290, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(1, 4, 5, 0, 1, 5, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_85F8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture64619C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040122F0, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 3, 1, 0), + gsSP2Triangles(0, 2, 4, 0, 1, 5, 2, 0), + gsSP2Triangles(6, 7, 8, 0, 6, 9, 7, 0), + gsSP2Triangles(7, 10, 8, 0, 9, 11, 7, 0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture670AC8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x040123B0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 16, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_CLAMP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_CLAMP, 6, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignLuigis0), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x040123F0, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureSignLuigis1), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), + gsSPVertex(0x040124B0, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8768[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_85F8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8528), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_84C8), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8788[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012570, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_87F0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040125F0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8858[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012670, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_88C0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040126F0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8928[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012770, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8990[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040127F0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_89F8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012870, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8A58[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040128B0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8AB8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040128F0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8B18[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012930, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8B80[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040129B0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8BE8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012A30, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8C50[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012AB0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8CB8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012B30, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8D20[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012BB0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8D88[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012C30, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8DE8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012C70, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8E50[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012CF0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8EB0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012D30, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8F18[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012DB0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8F80[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012E30, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_8FE8[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8F80), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8F18), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8EB0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8E50), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8DE8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8D88), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8D20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8CB8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8C50), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8BE8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8B80), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8B18), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8AB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8A58), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_89F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8990), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8928), gsSPDisplayList(d_course_luigi_raceway_packed_dl_88C0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8858), gsSPDisplayList(d_course_luigi_raceway_packed_dl_87F0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8788), gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_9098[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04012EB0, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 1, 0, 4, 1, 0, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012F10, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_9120[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04012F90, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04012FF0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_91A8[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04013070, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040130D0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_9230[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04013150, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040131B0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_92B8[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04013230, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04013290, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_9340[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04013310, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 1, 0, 4, 1, 0, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04013370, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_93C8[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x040133F0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04013430, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_9440[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04013470, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040134B0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_94B8[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x040134F0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04013530, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_9530[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04013570, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040135D0, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_95B8[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04013630, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04013690, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_9640[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04013710, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04013770, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_96C8[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x040137F0, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 1, 0, 4, 1, 0, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04013850, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_9750[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x040138D0, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 1, 0, 4, 1, 0, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04013930, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_97D8[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x040139B0, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 1, 0, 4, 1, 0, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04013A10, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_9860[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04013A90, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04013AD0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_98D8[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04013B10, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04013B70, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_9960[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04013BF0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04013C30, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_99D8[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04013C70, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 1, 0, 4, 1, 0, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04013CD0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_9A60[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04013D50, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 1, 0, 4, 1, 0, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04013DB0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_9AE8[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04013E30, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(3, 2, 4, 0, 3, 4, 5, 0), + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture6747C4), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04013E90, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_9B70[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_9AE8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9A60), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_99D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9960), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_98D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9860), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_97D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9750), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_96C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9640), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_95B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9530), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_94B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9440), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_93C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9340), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_92B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9230), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_91A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9120), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_9098), gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_9C20[] = { + gsSPTexture(0x0001, 0x0001, 0, G_TX_RENDERTILE, G_OFF), + gsSPVertex(0x04013F10, 32, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 3, 4, 0), + gsSP2Triangles(5, 6, 3, 0, 5, 3, 0, 0), + gsSP2Triangles(5, 0, 2, 0, 0, 4, 1, 0), + gsSP2Triangles(2, 1, 7, 0, 2, 7, 8, 0), + gsSP2Triangles(1, 4, 9, 0, 1, 10, 7, 0), + gsSP2Triangles(1, 11, 10, 0, 1, 9, 11, 0), + gsSP2Triangles(5, 2, 8, 0, 12, 13, 14, 0), + gsSP2Triangles(12, 14, 15, 0, 12, 16, 17, 0), + gsSP2Triangles(12, 17, 18, 0, 18, 19, 13, 0), + gsSP2Triangles(18, 13, 12, 0, 15, 20, 16, 0), + gsSP2Triangles(15, 16, 12, 0, 21, 22, 14, 0), + gsSP2Triangles(21, 14, 13, 0, 15, 14, 23, 0), + gsSP2Triangles(15, 23, 24, 0, 15, 24, 25, 0), + gsSP2Triangles(26, 20, 15, 0, 26, 15, 25, 0), + gsSP2Triangles(16, 21, 27, 0, 16, 27, 17, 0), + gsSP2Triangles(20, 22, 21, 0, 20, 21, 16, 0), + gsSP2Triangles(27, 21, 13, 0, 27, 13, 19, 0), + gsSP2Triangles(17, 27, 28, 0, 17, 28, 29, 0), + gsSP2Triangles(29, 17, 30, 0, 30, 17, 27, 0), + gsSP2Triangles(18, 17, 29, 0, 18, 29, 31, 0), + gsSPVertex(0x04014110, 32, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(5, 8, 9, 0, 5, 9, 6, 0), + gsSP2Triangles(10, 5, 4, 0, 10, 4, 11, 0), + gsSP2Triangles(12, 8, 5, 0, 12, 5, 10, 0), + gsSP2Triangles(13, 14, 0, 0, 13, 0, 15, 0), + gsSP2Triangles(1, 0, 14, 0, 16, 1, 14, 0), + gsSP2Triangles(17, 18, 2, 0, 17, 2, 1, 0), + gsSP2Triangles(19, 17, 1, 0, 19, 1, 20, 0), + gsSP2Triangles(20, 1, 16, 0, 21, 22, 18, 0), + gsSP2Triangles(22, 21, 23, 0, 15, 22, 24, 0), + gsSP2Triangles(24, 22, 23, 0, 15, 17, 13, 0), + gsSP2Triangles(25, 24, 26, 0, 23, 27, 26, 0), + gsSP2Triangles(23, 26, 24, 0, 28, 17, 19, 0), + gsSP2Triangles(17, 28, 13, 0, 29, 9, 8, 0), + gsSP2Triangles(29, 8, 30, 0, 31, 9, 29, 0), + gsSPVertex(0x04014310, 32, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 0, 0, 4, 0, 3, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 7, 6, 0), + gsSP2Triangles(7, 10, 8, 0, 11, 12, 13, 0), + gsSP2Triangles(11, 13, 14, 0, 13, 15, 16, 0), + gsSP2Triangles(13, 16, 17, 0, 14, 13, 17, 0), + gsSP2Triangles(14, 17, 18, 0, 2, 8, 10, 0), + gsSP2Triangles(2, 10, 3, 0, 19, 20, 21, 0), + gsSP2Triangles(20, 22, 23, 0, 20, 23, 24, 0), + gsSP2Triangles(20, 24, 21, 0, 25, 5, 26, 0), + gsSP2Triangles(27, 28, 25, 0, 27, 25, 29, 0), + gsSP2Triangles(30, 4, 5, 0, 30, 5, 31, 0), + gsSP1Triangle(26, 5, 4, 0), + gsSPVertex(0x04014510, 32, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(3, 5, 6, 0, 7, 8, 9, 0), + gsSP2Triangles(7, 9, 10, 0, 11, 12, 8, 0), + gsSP2Triangles(11, 8, 7, 0, 13, 14, 9, 0), + gsSP2Triangles(13, 9, 8, 0, 12, 15, 13, 0), + gsSP2Triangles(12, 13, 8, 0, 9, 16, 17, 0), + gsSP2Triangles(9, 17, 10, 0, 18, 19, 12, 0), + gsSP2Triangles(18, 12, 11, 0, 20, 21, 19, 0), + gsSP2Triangles(20, 19, 18, 0, 22, 23, 21, 0), + gsSP2Triangles(22, 21, 20, 0, 24, 25, 26, 0), + gsSP2Triangles(24, 26, 27, 0, 28, 27, 29, 0), + gsSP2Triangles(28, 29, 30, 0, 31, 24, 27, 0), + gsSP1Triangle(31, 27, 28, 0), + gsSPVertex(0x04014710, 32, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 5, 0, 8, 5, 4, 0), + gsSP2Triangles(10, 11, 9, 0, 10, 9, 8, 0), + gsSP2Triangles(12, 13, 11, 0, 12, 11, 10, 0), + gsSP2Triangles(14, 15, 16, 0, 14, 16, 17, 0), + gsSP2Triangles(14, 17, 18, 0, 14, 18, 19, 0), + gsSP2Triangles(20, 21, 15, 0, 20, 15, 19, 0), + gsSP2Triangles(22, 20, 19, 0, 22, 19, 18, 0), + gsSP2Triangles(23, 24, 21, 0, 23, 21, 25, 0), + gsSP2Triangles(23, 25, 20, 0, 23, 20, 22, 0), + gsSP2Triangles(26, 12, 10, 0, 26, 10, 27, 0), + gsSP2Triangles(28, 29, 30, 0, 28, 30, 31, 0), + gsSPVertex(0x04014910, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_9EC0[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_9C20), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_9ED0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04014950, 19, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(0, 3, 4, 0, 0, 5, 6, 0), + gsSP2Triangles(0, 6, 7, 0, 0, 7, 8, 0), + gsSP2Triangles(0, 8, 9, 0, 0, 9, 10, 0), + gsSP2Triangles(0, 10, 11, 0, 0, 11, 12, 0), + gsSP2Triangles(0, 12, 13, 0, 0, 13, 14, 0), + gsSP2Triangles(0, 14, 15, 0, 0, 15, 16, 0), + gsSP2Triangles(0, 16, 17, 0, 0, 17, 18, 0), + gsSP1Triangle(0, 18, 1, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_9F70[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04014A80, 20, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(0, 3, 4, 0, 0, 4, 5, 0), + gsSP2Triangles(0, 6, 7, 0, 0, 7, 8, 0), + gsSP2Triangles(0, 8, 9, 0, 0, 9, 10, 0), + gsSP2Triangles(0, 10, 11, 0, 0, 11, 12, 0), + gsSP2Triangles(0, 12, 13, 0, 0, 13, 14, 0), + gsSP2Triangles(0, 14, 15, 0, 0, 15, 16, 0), + gsSP2Triangles(0, 16, 17, 0, 0, 17, 18, 0), + gsSP2Triangles(0, 18, 19, 0, 0, 19, 1, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A010[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_9F70), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_9ED0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A028[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04014BC0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A088[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04014C00, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 1, 0, 4, 1, 0, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A0F0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04014C60, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A150[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04014CA0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A1B0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04014CE0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A210[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture65100C), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04014D20, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A270[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A210), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A1B0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A150), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A0F0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A088), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A028), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A2A8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04014D60, 3, 0), + gsSP1Triangle(0, 1, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A308[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04014D90, 3, 0), + gsSP1Triangle(0, 1, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A368[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04014DC0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A3C8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04014E00, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A430[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04014E80, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A490[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04014EC0, 9, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP1Triangle(6, 7, 8, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A4F8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04014F50, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A558[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04014F90, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A5C0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015010, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A620[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015050, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(1, 4, 5, 0, 1, 5, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A688[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040150B0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A6E8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040150F0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A748[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015130, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A7A8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015170, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 7, 8, 9, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A810[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015210, 3, 0), + gsSP1Triangle(0, 1, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A870[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015240, 3, 0), + gsSP1Triangle(0, 1, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A8D0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015270, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A930[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040152B0, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(0, 4, 5, 0, 0, 5, 1, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_A998[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015310, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_AA00[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015390, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_AA68[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015410, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_AAD0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015490, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(0, 3, 4, 0, 0, 4, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_AB38[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040154F0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_ABA0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015570, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_AC08[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040155F0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_AC70[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015670, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_ACD8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040156F0, 12, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 9, 10, 11, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_AD40[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040157B0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_ADA8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015830, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_AE10[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040158B0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_AE78[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015930, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_AEE0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040159B0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_AF48[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015A30, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_AFB0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015AB0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B010[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass11), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015AF0, 9, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP1Triangle(6, 7, 8, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B078[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B010), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AFB0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_AF48), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AEE0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_AE78), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AE10), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_ADA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AD40), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_ACD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AC70), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_AC08), gsSPDisplayList(d_course_luigi_raceway_packed_dl_ABA0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_AB38), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AAD0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_AA68), gsSPDisplayList(d_course_luigi_raceway_packed_dl_AA00), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A998), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A930), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A8D0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A870), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A810), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A7A8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A748), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A6E8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A688), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A620), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A5C0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A558), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A4F8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A490), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A430), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A3C8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A368), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A308), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A2A8), gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B198[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015B80, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(0, 3, 4, 0, 0, 4, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B200[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015BE0, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(0, 3, 4, 0, 0, 4, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B268[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015C40, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(0, 3, 4, 0, 0, 4, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B2D0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015CA0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B338[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015D20, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B3A0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015DA0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B408[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015E20, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(0, 3, 4, 0, 0, 4, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B470[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015E80, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B4D0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015EC0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B530[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015F00, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B590[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015F40, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(0, 3, 4, 0, 2, 5, 6, 0), + gsSP2Triangles(2, 6, 3, 0, 7, 8, 9, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B600[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04015FE0, 15, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(3, 5, 6, 0, 0, 7, 8, 0), + gsSP2Triangles(0, 8, 1, 0, 9, 10, 11, 0), + gsSP1Triangle(12, 13, 14, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B678[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040160D0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B6D8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016110, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B740[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016190, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B7A8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016210, 7, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 1, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B810[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016280, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B878[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016300, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B8E0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016380, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B948[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016400, 9, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(0, 3, 4, 0, 0, 4, 5, 0), + gsSP1Triangle(6, 7, 8, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_B9B8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016490, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_BA20[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016510, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_BA80[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016550, 10, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(0, 3, 4, 0, 0, 4, 5, 0), + gsSP2Triangles(6, 7, 8, 0, 6, 8, 9, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_BAF0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040165F0, 6, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_BB50[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016650, 11, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(3, 5, 6, 0, 7, 8, 9, 0), + gsSP1Triangle(1, 10, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_BBC0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016700, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_BC20[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture67BBD8), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016740, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_BC88[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_BC20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_BBC0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_BB50), gsSPDisplayList(d_course_luigi_raceway_packed_dl_BAF0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_BA80), gsSPDisplayList(d_course_luigi_raceway_packed_dl_BA20), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B9B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B948), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B8E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B878), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B810), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B7A8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B740), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B6D8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B678), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B600), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B590), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B530), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B4D0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B470), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B408), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B3A0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B338), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B2D0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B268), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B200), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B198), gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_BD68[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040167C0, 3, 0), + gsSP1Triangle(0, 1, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_BDC8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040167F0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 1, 3, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_BE28[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016830, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 3, 1, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_BE88[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture653608), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016870, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040168B0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 1, 3, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_BF20[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture653608), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040168F0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 0, 2, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016930, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 2, 1, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_BFB8[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture653608), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016970, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040169B0, 3, 0), + gsSP1Triangle(0, 1, 2, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_C050[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture653608), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x040169E0, 9, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP1Triangle(6, 7, 8, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016A70, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 3, 1, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_C0F0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture653608), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016AB0, 9, 0), + gsSP2Triangles(0, 1, 2, 0, 1, 3, 2, 0), + gsSP2Triangles(4, 5, 6, 0, 7, 4, 6, 0), + gsSP2Triangles(8, 7, 6, 0, 8, 6, 2, 0), + gsSP1Triangle(8, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016B40, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_C1A0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016B80, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_C200[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016BC0, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_C260[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture653608), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016C00, 4, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016C40, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 3, 4, 5, 0), + gsSP2Triangles(3, 5, 6, 0, 4, 7, 5, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_C300[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture653608), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016CC0, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 1, 3, 2, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 7, 5, 0), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTextureGrass3), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016D40, 5, 0), + gsSP2Triangles(0, 1, 2, 0, 1, 3, 2, 0), + gsSP1Triangle(1, 4, 3, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_C3A8[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_C300), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_C260), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_C200), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_C1A0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_C0F0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_C050), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_BFB8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_BF20), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_BE88), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_BE28), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_BDC8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_BD68), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_C410[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture673C68), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04016D90, 32, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSP2Triangles(16, 17, 18, 0, 16, 18, 19, 0), + gsSP2Triangles(20, 21, 22, 0, 20, 22, 23, 0), + gsSP2Triangles(24, 25, 26, 0, 24, 26, 27, 0), + gsSP2Triangles(28, 29, 30, 0, 28, 30, 31, 0), + gsSPVertex(0x04016F90, 8, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_C4C0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture673C68), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04017010, 20, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSP2Triangles(16, 17, 18, 0, 16, 18, 19, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_C540[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture673C68), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04017150, 20, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSP2Triangles(16, 17, 18, 0, 16, 18, 19, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_C5C0[] = { + gsSPTexture(0xFFFF, 0xFFFF, 0, G_TX_RENDERTILE, G_ON), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 8, 0x0000, G_TX_RENDERTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD, + G_TX_NOMIRROR | G_TX_WRAP, 5, G_TX_NOLOD), + gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), + gsDPSetTextureImage(G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, gLRTexture673C68), + gsDPTileSync(), + gsDPSetTile(G_IM_FMT_RGBA, G_IM_SIZ_16b, 0, 0x0000, G_TX_LOADTILE, 0, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, + G_TX_NOLOD, G_TX_NOMIRROR | G_TX_WRAP, G_TX_NOMASK, G_TX_NOLOD), + gsDPLoadSync(), + gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 1023, 256), + gsSPVertex(0x04017290, 20, 0), + gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), + gsSP2Triangles(4, 5, 6, 0, 4, 6, 7, 0), + gsSP2Triangles(8, 9, 10, 0, 8, 10, 11, 0), + gsSP2Triangles(12, 13, 14, 0, 12, 14, 15, 0), + gsSP2Triangles(16, 17, 18, 0, 16, 18, 19, 0), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_C640[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_C5C0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_C540), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_C4C0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_C410), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_C668[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_C640), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_C3A8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_BC88), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_B078), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A270), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A010), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_9EC0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_9B70), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8FE8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8768), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_84B0), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_83C8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_8200), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EB8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_7A88), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_6558), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4EE8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4860), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_4518), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_3DD8), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_2F60), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1F18), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_1730), + gsSPDisplayList(d_course_luigi_raceway_packed_dl_A98), + gsSPEndDisplayList(), +}; + +Gfx d_course_luigi_raceway_packed_dl_C730[] = { + gsSPDisplayList(d_course_luigi_raceway_packed_dl_C668), + gsSPEndDisplayList(), +}; diff --git a/courses/luigi_raceway/course_displaylists.jp.v11.s b/courses/luigi_raceway/course_displaylists.jp.v11.s deleted file mode 100644 index 1be403d866..0000000000 --- a/courses/luigi_raceway/course_displaylists.jp.v11.s +++ /dev/null @@ -1,1092 +0,0 @@ -# JP luigi_raceway display lists. -# -# JP ships a different build of this course - different vertices and -# display lists - and there is no disassembler here that round-trips the -# packed format, so the stream is checked in as data. It was produced by -# unpacking the real JP blob with the game's own unpack_* logic (see -# dlunpack.py), verified two ways: unpacking OUR US blob reproduces our US -# course_displaylists.inc.bin byte for byte, and re-packing this stream with -# tools/displaylist_packer reproduces the real JP blob byte for byte. -# -# Symbol names keep their US spelling (they are just identifiers); the -# addresses are the JP ones, which is what course_data.c needs. - -.include "macros.inc" - -.section .data - -.balign 8 - -glabel d_course_luigi_raceway_packed_dl_0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x0, 0x68 - -glabel d_course_luigi_raceway_packed_dl_68 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x68, 0x10 - -glabel d_course_luigi_raceway_packed_dl_78 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x78, 0x68 - -glabel d_course_luigi_raceway_packed_dl_E0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xe0, 0x10 - -glabel d_course_luigi_raceway_packed_dl_F0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xf0, 0x18 - -glabel d_course_luigi_raceway_packed_dl_108 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x108, 0x10 - -glabel d_course_luigi_raceway_packed_dl_118 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x118, 0x78 - -glabel d_course_luigi_raceway_packed_dl_190 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x190, 0x78 - -glabel d_course_luigi_raceway_packed_dl_208 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x208, 0x78 - -glabel d_course_luigi_raceway_packed_dl_280 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x280, 0x78 - -glabel d_course_luigi_raceway_packed_dl_2F8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2f8, 0x78 - -glabel d_course_luigi_raceway_packed_dl_370 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x370, 0x78 - -glabel d_course_luigi_raceway_packed_dl_3E8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3e8, 0x68 - -glabel d_course_luigi_raceway_packed_dl_450 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x450, 0x68 - -glabel d_course_luigi_raceway_packed_dl_4B8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4b8, 0x70 - -glabel d_course_luigi_raceway_packed_dl_528 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x528, 0x78 - -glabel d_course_luigi_raceway_packed_dl_5A0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x5a0, 0x70 - -glabel d_course_luigi_raceway_packed_dl_610 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x610, 0x78 - -glabel d_course_luigi_raceway_packed_dl_688 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x688, 0x78 - -glabel d_course_luigi_raceway_packed_dl_700 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x700, 0x78 - -glabel d_course_luigi_raceway_packed_dl_778 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x778, 0x78 - -glabel d_course_luigi_raceway_packed_dl_7F0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7f0, 0x68 - -glabel d_course_luigi_raceway_packed_dl_858 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x858, 0x78 - -glabel d_course_luigi_raceway_packed_dl_8D0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8d0, 0x68 - -glabel d_course_luigi_raceway_packed_dl_938 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x938, 0x70 - -glabel d_course_luigi_raceway_packed_dl_9A8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9a8, 0x78 - -glabel d_course_luigi_raceway_packed_dl_A20 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa20, 0x78 - -glabel d_course_luigi_raceway_packed_dl_A98 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa98, 0xb0 - -glabel d_course_luigi_raceway_packed_dl_B48 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb48, 0x88 - -glabel d_course_luigi_raceway_packed_dl_BD0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbd0, 0x88 - -glabel d_course_luigi_raceway_packed_dl_C58 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc58, 0x88 - -glabel d_course_luigi_raceway_packed_dl_CE0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xce0, 0x88 - -glabel d_course_luigi_raceway_packed_dl_D68 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xd68, 0x88 - -glabel d_course_luigi_raceway_packed_dl_DF0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xdf0, 0x88 - -glabel d_course_luigi_raceway_packed_dl_E78 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xe78, 0x88 - -glabel d_course_luigi_raceway_packed_dl_F00 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xf00, 0x88 - -glabel d_course_luigi_raceway_packed_dl_F88 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xf88, 0x78 - -glabel d_course_luigi_raceway_packed_dl_1000 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1000, 0x88 - -glabel d_course_luigi_raceway_packed_dl_1088 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1088, 0x88 - -glabel d_course_luigi_raceway_packed_dl_1110 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1110, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_11B8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x11b8, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_1260 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1260, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_1308 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1308, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_13B0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x13b0, 0x88 - -glabel d_course_luigi_raceway_packed_dl_1438 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1438, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_14E0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x14e0, 0x78 - -glabel d_course_luigi_raceway_packed_dl_1558 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1558, 0x88 - -glabel d_course_luigi_raceway_packed_dl_15E0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x15e0, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_1688 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1688, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_1730 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1730, 0xb0 - -glabel d_course_luigi_raceway_packed_dl_17E0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x17e0, 0x68 - -glabel d_course_luigi_raceway_packed_dl_1848 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1848, 0x70 - -glabel d_course_luigi_raceway_packed_dl_18B8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x18b8, 0x68 - -glabel d_course_luigi_raceway_packed_dl_1920 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1920, 0x68 - -glabel d_course_luigi_raceway_packed_dl_1988 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1988, 0xa0 - -glabel d_course_luigi_raceway_packed_dl_1A28 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1a28, 0xa0 - -glabel d_course_luigi_raceway_packed_dl_1AC8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1ac8, 0x60 - -glabel d_course_luigi_raceway_packed_dl_1B28 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1b28, 0xb0 - -glabel d_course_luigi_raceway_packed_dl_1BD8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1bd8, 0xb8 - -glabel d_course_luigi_raceway_packed_dl_1C90 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1c90, 0x70 - -glabel d_course_luigi_raceway_packed_dl_1D00 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1d00, 0x68 - -glabel d_course_luigi_raceway_packed_dl_1D68 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1d68, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_1E10 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1e10, 0x60 - -glabel d_course_luigi_raceway_packed_dl_1E70 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1e70, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_1F18 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1f18, 0x78 - -glabel d_course_luigi_raceway_packed_dl_1F90 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1f90, 0x60 - -glabel d_course_luigi_raceway_packed_dl_1FF0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x1ff0, 0x60 - -glabel d_course_luigi_raceway_packed_dl_2050 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2050, 0x70 - -glabel d_course_luigi_raceway_packed_dl_20C0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x20c0, 0x70 - -glabel d_course_luigi_raceway_packed_dl_2130 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2130, 0x78 - -glabel d_course_luigi_raceway_packed_dl_21A8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x21a8, 0x68 - -glabel d_course_luigi_raceway_packed_dl_2210 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2210, 0x70 - -glabel d_course_luigi_raceway_packed_dl_2280 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2280, 0x78 - -glabel d_course_luigi_raceway_packed_dl_22F8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x22f8, 0x70 - -glabel d_course_luigi_raceway_packed_dl_2368 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2368, 0x78 - -glabel d_course_luigi_raceway_packed_dl_23E0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x23e0, 0x78 - -glabel d_course_luigi_raceway_packed_dl_2458 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2458, 0x88 - -glabel d_course_luigi_raceway_packed_dl_24E0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x24e0, 0x80 - -glabel d_course_luigi_raceway_packed_dl_2560 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2560, 0x88 - -glabel d_course_luigi_raceway_packed_dl_25E8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x25e8, 0x70 - -glabel d_course_luigi_raceway_packed_dl_2658 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2658, 0x60 - -glabel d_course_luigi_raceway_packed_dl_26B8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x26b8, 0x68 - -glabel d_course_luigi_raceway_packed_dl_2720 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2720, 0x78 - -glabel d_course_luigi_raceway_packed_dl_2798 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2798, 0x78 - -glabel d_course_luigi_raceway_packed_dl_2810 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2810, 0x78 - -glabel d_course_luigi_raceway_packed_dl_2888 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2888, 0x78 - -glabel d_course_luigi_raceway_packed_dl_2900 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2900, 0x78 - -glabel d_course_luigi_raceway_packed_dl_2978 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2978, 0x78 - -glabel d_course_luigi_raceway_packed_dl_29F0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x29f0, 0x78 - -glabel d_course_luigi_raceway_packed_dl_2A68 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2a68, 0x78 - -glabel d_course_luigi_raceway_packed_dl_2AE0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2ae0, 0x78 - -glabel d_course_luigi_raceway_packed_dl_2B58 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2b58, 0x70 - -glabel d_course_luigi_raceway_packed_dl_2BC8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2bc8, 0x78 - -glabel d_course_luigi_raceway_packed_dl_2C40 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2c40, 0x78 - -glabel d_course_luigi_raceway_packed_dl_2CB8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2cb8, 0x78 - -glabel d_course_luigi_raceway_packed_dl_2D30 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2d30, 0x78 - -glabel d_course_luigi_raceway_packed_dl_2DA8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2da8, 0x78 - -glabel d_course_luigi_raceway_packed_dl_2E20 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2e20, 0x70 - -glabel d_course_luigi_raceway_packed_dl_2E90 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2e90, 0x68 - -glabel d_course_luigi_raceway_packed_dl_2EF8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2ef8, 0x68 - -glabel d_course_luigi_raceway_packed_dl_2F60 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x2f60, 0x120 - -glabel d_course_luigi_raceway_packed_dl_3080 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3080, 0x78 - -glabel d_course_luigi_raceway_packed_dl_30F8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x30f8, 0x78 - -glabel d_course_luigi_raceway_packed_dl_3170 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3170, 0x78 - -glabel d_course_luigi_raceway_packed_dl_31E8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x31e8, 0x78 - -glabel d_course_luigi_raceway_packed_dl_3260 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3260, 0x78 - -glabel d_course_luigi_raceway_packed_dl_32D8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x32d8, 0x78 - -glabel d_course_luigi_raceway_packed_dl_3350 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3350, 0x78 - -glabel d_course_luigi_raceway_packed_dl_33C8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x33c8, 0x80 - -glabel d_course_luigi_raceway_packed_dl_3448 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3448, 0x80 - -glabel d_course_luigi_raceway_packed_dl_34C8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x34c8, 0x80 - -glabel d_course_luigi_raceway_packed_dl_3548 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3548, 0x88 - -glabel d_course_luigi_raceway_packed_dl_35D0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x35d0, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_3678 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3678, 0x80 - -glabel d_course_luigi_raceway_packed_dl_36F8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x36f8, 0x70 - -glabel d_course_luigi_raceway_packed_dl_3768 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3768, 0x78 - -glabel d_course_luigi_raceway_packed_dl_37E0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x37e0, 0x78 - -glabel d_course_luigi_raceway_packed_dl_3858 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3858, 0x78 - -glabel d_course_luigi_raceway_packed_dl_38D0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x38d0, 0x78 - -glabel d_course_luigi_raceway_packed_dl_3948 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3948, 0x80 - -glabel d_course_luigi_raceway_packed_dl_39C8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x39c8, 0x90 - -glabel d_course_luigi_raceway_packed_dl_3A58 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3a58, 0x78 - -glabel d_course_luigi_raceway_packed_dl_3AD0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3ad0, 0x68 - -glabel d_course_luigi_raceway_packed_dl_3B38 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3b38, 0x98 - -glabel d_course_luigi_raceway_packed_dl_3BD0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3bd0, 0x70 - -glabel d_course_luigi_raceway_packed_dl_3C40 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3c40, 0xb0 - -glabel d_course_luigi_raceway_packed_dl_3CF0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3cf0, 0x70 - -glabel d_course_luigi_raceway_packed_dl_3D60 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3d60, 0x78 - -glabel d_course_luigi_raceway_packed_dl_3DD8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3dd8, 0xe0 - -glabel d_course_luigi_raceway_packed_dl_3EB8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3eb8, 0x108 - -glabel d_course_luigi_raceway_packed_dl_3FC0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x3fc0, 0x188 - -glabel d_course_luigi_raceway_packed_dl_4148 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4148, 0x1e8 - -glabel d_course_luigi_raceway_packed_dl_4330 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4330, 0x1e8 - -glabel d_course_luigi_raceway_packed_dl_4518 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4518, 0x28 - -glabel d_course_luigi_raceway_packed_dl_4540 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4540, 0x78 - -glabel d_course_luigi_raceway_packed_dl_45B8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x45b8, 0xd8 - -glabel d_course_luigi_raceway_packed_dl_46A0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4690, 0x1e0 - -glabel d_course_luigi_raceway_packed_dl_4860 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4870, 0x20 - -glabel d_course_luigi_raceway_packed_dl_4880 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4890, 0xe0 - -glabel d_course_luigi_raceway_packed_dl_4960 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4970, 0x58 - -glabel d_course_luigi_raceway_packed_dl_49B8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x49c8, 0x70 - -glabel d_course_luigi_raceway_packed_dl_4A28 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4a38, 0xe8 - -glabel d_course_luigi_raceway_packed_dl_4B10 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4b20, 0x118 - -glabel d_course_luigi_raceway_packed_dl_4C28 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4c38, 0x2c0 - -glabel d_course_luigi_raceway_packed_dl_4EE8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4ef8, 0x38 - -glabel d_course_luigi_raceway_packed_dl_4F20 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x4f30, 0x118 - -glabel d_course_luigi_raceway_packed_dl_5038 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x5048, 0x1a0 - -glabel d_course_luigi_raceway_packed_dl_51D8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x51e8, 0x208 - -glabel d_course_luigi_raceway_packed_dl_53E0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x53f0, 0x208 - -glabel d_course_luigi_raceway_packed_dl_55E8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x55f8, 0x1a0 - -glabel d_course_luigi_raceway_packed_dl_5788 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x5798, 0x118 - -glabel d_course_luigi_raceway_packed_dl_58A0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x58b0, 0x118 - -glabel d_course_luigi_raceway_packed_dl_59B8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x59c8, 0x100 - -glabel d_course_luigi_raceway_packed_dl_5AB8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x5ac8, 0x100 - -glabel d_course_luigi_raceway_packed_dl_5BB8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x5bc8, 0x118 - -glabel d_course_luigi_raceway_packed_dl_5CD0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x5ce0, 0x208 - -glabel d_course_luigi_raceway_packed_dl_5ED8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x5ee8, 0x208 - -glabel d_course_luigi_raceway_packed_dl_60E0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x60f0, 0x208 - -glabel d_course_luigi_raceway_packed_dl_6300 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x62f8, 0x118 - -glabel d_course_luigi_raceway_packed_dl_6418 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6410, 0x140 - -glabel d_course_luigi_raceway_packed_dl_6558 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6550, 0x80 - -glabel d_course_luigi_raceway_packed_dl_65D8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x65d0, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_6680 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6678, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_6728 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6720, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_67D0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x67c8, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_6878 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6870, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_6920 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6918, 0xa0 - -glabel d_course_luigi_raceway_packed_dl_69C0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x69b8, 0x98 - -glabel d_course_luigi_raceway_packed_dl_6A58 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6a50, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_6B00 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6af8, 0xf0 - -glabel d_course_luigi_raceway_packed_dl_6BF0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6be8, 0xb8 - -glabel d_course_luigi_raceway_packed_dl_6CA8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6ca0, 0xb8 - -glabel d_course_luigi_raceway_packed_dl_6D60 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6d58, 0xb8 - -glabel d_course_luigi_raceway_packed_dl_6E18 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6e10, 0xd8 - -glabel d_course_luigi_raceway_packed_dl_6EF0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6ee8, 0xb8 - -glabel d_course_luigi_raceway_packed_dl_6FA8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x6fa0, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_7050 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7048, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_70F8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x70f0, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_71A0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7198, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_7248 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7240, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_72F0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x72e8, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_7398 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7390, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_7440 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7438, 0xb0 - -glabel d_course_luigi_raceway_packed_dl_74F0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x74e8, 0xb8 - -glabel d_course_luigi_raceway_packed_dl_75A8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x75a0, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_7650 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7648, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_76F8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x76f0, 0xb8 - -glabel d_course_luigi_raceway_packed_dl_77B0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x77a8, 0xc8 - -glabel d_course_luigi_raceway_packed_dl_7878 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7870, 0xc8 - -glabel d_course_luigi_raceway_packed_dl_7940 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7938, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_79E8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x79e0, 0xa0 - -glabel d_course_luigi_raceway_packed_dl_7A88 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7a80, 0xf8 - -glabel d_course_luigi_raceway_packed_dl_7B80 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7b78, 0x78 - -glabel d_course_luigi_raceway_packed_dl_7BF8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7bf0, 0x88 - -glabel d_course_luigi_raceway_packed_dl_7C80 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7c78, 0x70 - -glabel d_course_luigi_raceway_packed_dl_7CF0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7ce8, 0x70 - -glabel d_course_luigi_raceway_packed_dl_7D60 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7d58, 0x78 - -glabel d_course_luigi_raceway_packed_dl_7DD8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7dd0, 0x78 - -glabel d_course_luigi_raceway_packed_dl_7E50 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7e48, 0x68 - -glabel d_course_luigi_raceway_packed_dl_7EB8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7eb0, 0x40 - -glabel d_course_luigi_raceway_packed_dl_7EF8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7ef0, 0x70 - -glabel d_course_luigi_raceway_packed_dl_7F68 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7f60, 0x78 - -glabel d_course_luigi_raceway_packed_dl_7FE0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x7fd8, 0x68 - -glabel d_course_luigi_raceway_packed_dl_8048 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8040, 0x68 - -glabel d_course_luigi_raceway_packed_dl_80B0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x80a8, 0x78 - -glabel d_course_luigi_raceway_packed_dl_8128 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8120, 0x68 - -glabel d_course_luigi_raceway_packed_dl_8190 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8188, 0x70 - -glabel d_course_luigi_raceway_packed_dl_8200 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x81f8, 0x40 - -glabel d_course_luigi_raceway_packed_dl_8240 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8238, 0xe0 - -glabel d_course_luigi_raceway_packed_dl_8320 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8318, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_83C8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x83c0, 0x18 - -glabel d_course_luigi_raceway_packed_dl_83E0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x83d8, 0x68 - -glabel d_course_luigi_raceway_packed_dl_8448 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8440, 0x68 - -glabel d_course_luigi_raceway_packed_dl_84B0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x84a8, 0x18 - -glabel d_course_luigi_raceway_packed_dl_84C8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x84c0, 0x60 - -glabel d_course_luigi_raceway_packed_dl_8528 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8520, 0xc0 - -glabel d_course_luigi_raceway_packed_dl_85F8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x85e0, 0x170 - -glabel d_course_luigi_raceway_packed_dl_8768 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8750, 0x20 - -glabel d_course_luigi_raceway_packed_dl_8788 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8770, 0x68 - -glabel d_course_luigi_raceway_packed_dl_87F0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x87d8, 0x68 - -glabel d_course_luigi_raceway_packed_dl_8858 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8840, 0x68 - -glabel d_course_luigi_raceway_packed_dl_88C0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x88a8, 0x68 - -glabel d_course_luigi_raceway_packed_dl_8928 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8910, 0x68 - -glabel d_course_luigi_raceway_packed_dl_8990 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8978, 0x68 - -glabel d_course_luigi_raceway_packed_dl_89F8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x89e0, 0x60 - -glabel d_course_luigi_raceway_packed_dl_8A58 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8a40, 0x60 - -glabel d_course_luigi_raceway_packed_dl_8AB8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8aa0, 0x60 - -glabel d_course_luigi_raceway_packed_dl_8B18 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8b00, 0x68 - -glabel d_course_luigi_raceway_packed_dl_8B80 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8b68, 0x68 - -glabel d_course_luigi_raceway_packed_dl_8BE8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8bd0, 0x68 - -glabel d_course_luigi_raceway_packed_dl_8C50 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8c38, 0x68 - -glabel d_course_luigi_raceway_packed_dl_8CB8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8ca0, 0x68 - -glabel d_course_luigi_raceway_packed_dl_8D20 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8d08, 0x68 - -glabel d_course_luigi_raceway_packed_dl_8D88 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8d70, 0x60 - -glabel d_course_luigi_raceway_packed_dl_8DE8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8dd0, 0x68 - -glabel d_course_luigi_raceway_packed_dl_8E50 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8e38, 0x60 - -glabel d_course_luigi_raceway_packed_dl_8EB0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8e98, 0x68 - -glabel d_course_luigi_raceway_packed_dl_8F18 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8f00, 0x68 - -glabel d_course_luigi_raceway_packed_dl_8F80 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8f68, 0x68 - -glabel d_course_luigi_raceway_packed_dl_8FE8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x8fd0, 0xb0 - -glabel d_course_luigi_raceway_packed_dl_9098 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9080, 0x88 - -glabel d_course_luigi_raceway_packed_dl_9120 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9108, 0x88 - -glabel d_course_luigi_raceway_packed_dl_91A8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9190, 0x88 - -glabel d_course_luigi_raceway_packed_dl_9230 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9218, 0x88 - -glabel d_course_luigi_raceway_packed_dl_92B8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x92a0, 0x88 - -glabel d_course_luigi_raceway_packed_dl_9340 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9328, 0x88 - -glabel d_course_luigi_raceway_packed_dl_93C8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x93b0, 0x78 - -glabel d_course_luigi_raceway_packed_dl_9440 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9428, 0x78 - -glabel d_course_luigi_raceway_packed_dl_94B8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x94a0, 0x78 - -glabel d_course_luigi_raceway_packed_dl_9530 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9518, 0x88 - -glabel d_course_luigi_raceway_packed_dl_95B8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x95a0, 0x88 - -glabel d_course_luigi_raceway_packed_dl_9640 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9628, 0x88 - -glabel d_course_luigi_raceway_packed_dl_96C8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x96b0, 0x88 - -glabel d_course_luigi_raceway_packed_dl_9750 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9738, 0x88 - -glabel d_course_luigi_raceway_packed_dl_97D8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x97c0, 0x88 - -glabel d_course_luigi_raceway_packed_dl_9860 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9848, 0x78 - -glabel d_course_luigi_raceway_packed_dl_98D8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x98c0, 0x88 - -glabel d_course_luigi_raceway_packed_dl_9960 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9948, 0x78 - -glabel d_course_luigi_raceway_packed_dl_99D8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x99c0, 0x88 - -glabel d_course_luigi_raceway_packed_dl_9A60 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9a48, 0x88 - -glabel d_course_luigi_raceway_packed_dl_9AE8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9ad0, 0x88 - -glabel d_course_luigi_raceway_packed_dl_9B70 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9b58, 0xb0 - -glabel d_course_luigi_raceway_packed_dl_9C20 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9c08, 0x2a0 - -glabel d_course_luigi_raceway_packed_dl_9EC0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9ea8, 0x10 - -glabel d_course_luigi_raceway_packed_dl_9ED0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9eb8, 0xa0 - -glabel d_course_luigi_raceway_packed_dl_9F70 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9f58, 0xa0 - -glabel d_course_luigi_raceway_packed_dl_A010 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0x9ff8, 0x18 - -glabel d_course_luigi_raceway_packed_dl_A028 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa010, 0x60 - -glabel d_course_luigi_raceway_packed_dl_A088 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa070, 0x68 - -glabel d_course_luigi_raceway_packed_dl_A0F0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa0d8, 0x60 - -glabel d_course_luigi_raceway_packed_dl_A150 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa138, 0x60 - -glabel d_course_luigi_raceway_packed_dl_A1B0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa198, 0x60 - -glabel d_course_luigi_raceway_packed_dl_A210 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa1f8, 0x60 - -glabel d_course_luigi_raceway_packed_dl_A270 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa258, 0x38 - -glabel d_course_luigi_raceway_packed_dl_A2A8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa290, 0x60 - -glabel d_course_luigi_raceway_packed_dl_A308 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa2f0, 0x60 - -glabel d_course_luigi_raceway_packed_dl_A368 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa350, 0x60 - -glabel d_course_luigi_raceway_packed_dl_A3C8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa3b0, 0x68 - -glabel d_course_luigi_raceway_packed_dl_A430 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa418, 0x60 - -glabel d_course_luigi_raceway_packed_dl_A490 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa478, 0x68 - -glabel d_course_luigi_raceway_packed_dl_A4F8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa4e0, 0x60 - -glabel d_course_luigi_raceway_packed_dl_A558 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa540, 0x68 - -glabel d_course_luigi_raceway_packed_dl_A5C0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa5a8, 0x60 - -glabel d_course_luigi_raceway_packed_dl_A620 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa608, 0x68 - -glabel d_course_luigi_raceway_packed_dl_A688 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa670, 0x60 - -glabel d_course_luigi_raceway_packed_dl_A6E8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa6d0, 0x60 - -glabel d_course_luigi_raceway_packed_dl_A748 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa730, 0x60 - -glabel d_course_luigi_raceway_packed_dl_A7A8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa790, 0x68 - -glabel d_course_luigi_raceway_packed_dl_A810 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa7f8, 0x60 - -glabel d_course_luigi_raceway_packed_dl_A870 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa858, 0x60 - -glabel d_course_luigi_raceway_packed_dl_A8D0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa8b8, 0x60 - -glabel d_course_luigi_raceway_packed_dl_A930 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa918, 0x68 - -glabel d_course_luigi_raceway_packed_dl_A998 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa980, 0x68 - -glabel d_course_luigi_raceway_packed_dl_AA00 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xa9e8, 0x68 - -glabel d_course_luigi_raceway_packed_dl_AA68 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xaa50, 0x68 - -glabel d_course_luigi_raceway_packed_dl_AAD0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xaab8, 0x68 - -glabel d_course_luigi_raceway_packed_dl_AB38 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xab20, 0x68 - -glabel d_course_luigi_raceway_packed_dl_ABA0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xab88, 0x68 - -glabel d_course_luigi_raceway_packed_dl_AC08 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xabf0, 0x68 - -glabel d_course_luigi_raceway_packed_dl_AC70 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xac58, 0x68 - -glabel d_course_luigi_raceway_packed_dl_ACD8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xacc0, 0x68 - -glabel d_course_luigi_raceway_packed_dl_AD40 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xad28, 0x68 - -glabel d_course_luigi_raceway_packed_dl_ADA8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xad90, 0x68 - -glabel d_course_luigi_raceway_packed_dl_AE10 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xadf8, 0x68 - -glabel d_course_luigi_raceway_packed_dl_AE78 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xae60, 0x68 - -glabel d_course_luigi_raceway_packed_dl_AEE0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xaec8, 0x68 - -glabel d_course_luigi_raceway_packed_dl_AF48 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xaf30, 0x68 - -glabel d_course_luigi_raceway_packed_dl_AFB0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xaf98, 0x60 - -glabel d_course_luigi_raceway_packed_dl_B010 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xaff8, 0x68 - -glabel d_course_luigi_raceway_packed_dl_B078 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb060, 0x120 - -glabel d_course_luigi_raceway_packed_dl_B198 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb180, 0x68 - -glabel d_course_luigi_raceway_packed_dl_B200 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb1e8, 0x68 - -glabel d_course_luigi_raceway_packed_dl_B268 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb250, 0x68 - -glabel d_course_luigi_raceway_packed_dl_B2D0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb2b8, 0x68 - -glabel d_course_luigi_raceway_packed_dl_B338 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb320, 0x68 - -glabel d_course_luigi_raceway_packed_dl_B3A0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb388, 0x68 - -glabel d_course_luigi_raceway_packed_dl_B408 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb3f0, 0x68 - -glabel d_course_luigi_raceway_packed_dl_B470 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb458, 0x60 - -glabel d_course_luigi_raceway_packed_dl_B4D0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb4b8, 0x60 - -glabel d_course_luigi_raceway_packed_dl_B530 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb518, 0x60 - -glabel d_course_luigi_raceway_packed_dl_B590 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb578, 0x70 - -glabel d_course_luigi_raceway_packed_dl_B600 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb5e8, 0x78 - -glabel d_course_luigi_raceway_packed_dl_B678 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb660, 0x60 - -glabel d_course_luigi_raceway_packed_dl_B6D8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb6c0, 0x68 - -glabel d_course_luigi_raceway_packed_dl_B740 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb728, 0x68 - -glabel d_course_luigi_raceway_packed_dl_B7A8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb790, 0x68 - -glabel d_course_luigi_raceway_packed_dl_B810 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb7f8, 0x68 - -glabel d_course_luigi_raceway_packed_dl_B878 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb860, 0x68 - -glabel d_course_luigi_raceway_packed_dl_B8E0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb8c8, 0x68 - -glabel d_course_luigi_raceway_packed_dl_B948 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb930, 0x70 - -glabel d_course_luigi_raceway_packed_dl_B9B8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xb9a0, 0x68 - -glabel d_course_luigi_raceway_packed_dl_BA20 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xba08, 0x60 - -glabel d_course_luigi_raceway_packed_dl_BA80 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xba68, 0x70 - -glabel d_course_luigi_raceway_packed_dl_BAF0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbad8, 0x60 - -glabel d_course_luigi_raceway_packed_dl_BB50 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbb38, 0x70 - -glabel d_course_luigi_raceway_packed_dl_BBC0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbba8, 0x60 - -glabel d_course_luigi_raceway_packed_dl_BC20 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbc08, 0x68 - -glabel d_course_luigi_raceway_packed_dl_BC88 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbc70, 0xe0 - -glabel d_course_luigi_raceway_packed_dl_BD68 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbd50, 0x60 - -glabel d_course_luigi_raceway_packed_dl_BDC8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbdb0, 0x60 - -glabel d_course_luigi_raceway_packed_dl_BE28 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbe10, 0x60 - -glabel d_course_luigi_raceway_packed_dl_BE88 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbe70, 0x98 - -glabel d_course_luigi_raceway_packed_dl_BF20 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbf08, 0x98 - -glabel d_course_luigi_raceway_packed_dl_BFB8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xbfa0, 0x98 - -glabel d_course_luigi_raceway_packed_dl_C050 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc038, 0xa0 - -glabel d_course_luigi_raceway_packed_dl_C0F0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc0d8, 0xb0 - -glabel d_course_luigi_raceway_packed_dl_C1A0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc188, 0x60 - -glabel d_course_luigi_raceway_packed_dl_C200 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc1e8, 0x60 - -glabel d_course_luigi_raceway_packed_dl_C260 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc248, 0xa0 - -glabel d_course_luigi_raceway_packed_dl_C300 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc2e8, 0xa8 - -glabel d_course_luigi_raceway_packed_dl_C3A8 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc390, 0x68 - -glabel d_course_luigi_raceway_packed_dl_C410 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc3f8, 0xb0 - -glabel d_course_luigi_raceway_packed_dl_C4C0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc4a8, 0x80 - -glabel d_course_luigi_raceway_packed_dl_C540 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc528, 0x80 - -glabel d_course_luigi_raceway_packed_dl_C5C0 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc5a8, 0x80 - -glabel d_course_luigi_raceway_packed_dl_C640 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc628, 0x28 - -glabel d_course_luigi_raceway_packed_dl_C668 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc650, 0xc8 - -glabel d_course_luigi_raceway_packed_dl_C730 -.incbin "bin/jp.v11/luigi_raceway_displaylists.bin", 0xc718, 0x10 From a66e458cfc3de879d9ca2e49052598c9f977b7cd Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 04:04:15 -0700 Subject: [PATCH 15/41] assets: scope the group-asset export sentinel by version Group assets extract to one shared path regardless of version, guarded by a `.export` sentinel that did not name the version. After building one version the sentinel looks current, so building a second skips extraction entirely and compiles the first version's artwork into the ROM. That is silent: wrong artwork compiles fine, and the damage only shows up as a ROM hash mismatch far downstream, cascaded by the size change. It matters now because 194 assets genuinely differ in bytes between us and jp.v11 rather than merely moving, which is a case EU never exercised: only 31 assets in the repo carry EU entries and EU art is US-identical. Name the sentinel .export.$(VERSION), the same way .assets-local.txt already records the extracted version for assets.json. Co-Authored-By: Claude Fable 5 --- .gitignore | 2 +- assets/include/blueshell.mk | 2 +- assets/include/bomb.mk | 2 +- assets/include/character_portraits.mk | 2 +- assets/include/character_select/bowser_select.mk | 2 +- assets/include/character_select/donkeykong_select.mk | 2 +- assets/include/character_select/luigi_select.mk | 2 +- assets/include/character_select/mario_select.mk | 2 +- assets/include/character_select/peach_select.mk | 2 +- assets/include/character_select/toad_select.mk | 2 +- assets/include/character_select/wario_select.mk | 2 +- assets/include/character_select/yoshi_select.mk | 2 +- assets/include/course_outlines.mk | 2 +- assets/include/course_previews.mk | 2 +- assets/include/courses/banshee_boardwalk.mk | 2 +- assets/include/courses/bowsers_castle.mk | 2 +- assets/include/courses/choco_mountain.mk | 2 +- assets/include/courses/dks_jungle_parkway.mk | 2 +- assets/include/courses/frappe_snowland.mk | 2 +- assets/include/courses/kalimari_desert.mk | 2 +- assets/include/courses/koopa_troopa_beach.mk | 2 +- assets/include/courses/luigi_raceway.mk | 2 +- assets/include/courses/mario_raceway.mk | 2 +- assets/include/courses/moo_moo_farm.mk | 2 +- assets/include/courses/rainbow_road.mk | 2 +- assets/include/courses/royal_raceway.mk | 2 +- assets/include/courses/sherbet_land.mk | 2 +- assets/include/courses/toads_turnpike.mk | 2 +- assets/include/courses/wario_stadium.mk | 2 +- assets/include/courses/yoshi_valley.mk | 2 +- assets/include/debug_font.mk | 2 +- assets/include/ending_ceremony.mk | 2 +- assets/include/finish_line_banner.mk | 2 +- assets/include/greenshell.mk | 2 +- assets/include/hud_type_c.mk | 2 +- assets/include/item_window.mk | 2 +- assets/include/karts/bowser_kart.mk | 2 +- assets/include/karts/donkeykong_kart.mk | 2 +- assets/include/karts/luigi_kart.mk | 2 +- assets/include/karts/mario_kart.mk | 2 +- assets/include/karts/peach_kart.mk | 2 +- assets/include/karts/toad_kart.mk | 2 +- assets/include/karts/wario_kart.mk | 2 +- assets/include/karts/yoshi_kart.mk | 2 +- assets/include/lakitu/bluelight.mk | 2 +- assets/include/lakitu/checkeredflag.mk | 2 +- assets/include/lakitu/finallap.mk | 2 +- assets/include/lakitu/fishing.mk | 2 +- assets/include/lakitu/nolights.mk | 2 +- assets/include/lakitu/redlights.mk | 2 +- assets/include/lakitu/reverse.mk | 2 +- assets/include/lakitu/secondlap.mk | 2 +- assets/include/minimap_icons.mk | 2 +- assets/include/onomatopoeia.mk | 2 +- assets/include/player_emblems.mk | 2 +- assets/include/startup_logo.mk | 2 +- assets/include/trees.mk | 2 +- assets/include/unused_traffic_light.mk | 2 +- 58 files changed, 58 insertions(+), 58 deletions(-) diff --git a/.gitignore b/.gitignore index 0057cda895..022eca6219 100644 --- a/.gitignore +++ b/.gitignore @@ -72,7 +72,7 @@ expected/* /courses/**/*linkonly* /textures/**/*.png /textures/**/*.bin -/assets/**/.export +/assets/**/.export* /assets/**/*.bin /assets/**/*.png /assets/**/*.mio0 diff --git a/assets/include/blueshell.mk b/assets/include/blueshell.mk index 81efb56c39..2de1bb3602 100644 --- a/assets/include/blueshell.mk +++ b/assets/include/blueshell.mk @@ -12,7 +12,7 @@ $(BLUESHELL_DIR)/texture_blue_shell_5.png \ $(BLUESHELL_DIR)/texture_blue_shell_6.png \ $(BLUESHELL_DIR)/texture_blue_shell_7.png -BLUESHELL_EXPORT_SENTINEL := $(BLUESHELL_DIR)/.export +BLUESHELL_EXPORT_SENTINEL := $(BLUESHELL_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(BLUESHELL_FRAMES:%.png=%.mio0) diff --git a/assets/include/bomb.mk b/assets/include/bomb.mk index 65cde42cfa..56fc2aa5b6 100644 --- a/assets/include/bomb.mk +++ b/assets/include/bomb.mk @@ -8,7 +8,7 @@ $(BOMB_DIR)/common_texture_bomb_2.png \ $(BOMB_DIR)/common_texture_bomb_3.png \ $(BOMB_DIR)/common_texture_bomb_4.png -BOMB_EXPORT_SENTINEL := $(BOMB_DIR)/.export +BOMB_EXPORT_SENTINEL := $(BOMB_DIR)/.export.$(VERSION) $(BUILD_DIR)/src/data/common_textures.o: $(BOMB_FRAMES:%.png=%.inc.c) $(BOMB_PALETTE:%.png=%.inc.c) diff --git a/assets/include/character_portraits.mk b/assets/include/character_portraits.mk index 552b01ccae..4675490108 100644 --- a/assets/include/character_portraits.mk +++ b/assets/include/character_portraits.mk @@ -29,7 +29,7 @@ SPECIAL_PORTRAIT_PNG := \ $(PORTRAITS_DIR)/common_texture_portrait_bomb_kart.png \ $(PORTRAITS_DIR)/common_texture_portrait_question_mark.png -PORTRAIT_EXPORT_SENTINEL := $(PORTRAITS_DIR)/.export +PORTRAIT_EXPORT_SENTINEL := $(PORTRAITS_DIR)/.export.$(VERSION) $(BUILD_DIR)/src/data/common_textures.o: $(PORTRAIT_PNG:%.png=%.inc.c) $(PORTRAIT_PALETTES:%.png=%.inc.c) $(BUILD_DIR)/src/data/common_textures.o: $(SPECIAL_PORTRAIT_PNG:%.png=%.inc.c) $(SPECIAL_PORTRAIT_PALETTE:%.png=%.inc.c) diff --git a/assets/include/character_select/bowser_select.mk b/assets/include/character_select/bowser_select.mk index b690ada196..27f128175e 100644 --- a/assets/include/character_select/bowser_select.mk +++ b/assets/include/character_select/bowser_select.mk @@ -19,7 +19,7 @@ $(BOWSER_SELECT_DIR)/bowser_face_14.png \ $(BOWSER_SELECT_DIR)/bowser_face_15.png \ $(BOWSER_SELECT_DIR)/bowser_face_16.png -BOWSER_SELECT_EXPORT_SENTINEL := $(BOWSER_SELECT_DIR)/.export +BOWSER_SELECT_EXPORT_SENTINEL := $(BOWSER_SELECT_DIR)/.export.$(VERSION) $(BUILD_DIR)/data/course_player_selection.o: $(BOWSER_SELECT_PNG:%.png=%.mio0) diff --git a/assets/include/character_select/donkeykong_select.mk b/assets/include/character_select/donkeykong_select.mk index 03d042cfe4..e0d469bb47 100644 --- a/assets/include/character_select/donkeykong_select.mk +++ b/assets/include/character_select/donkeykong_select.mk @@ -19,7 +19,7 @@ $(DONKEYKONG_SELECT_DIR)/donkeykong_face_14.png \ $(DONKEYKONG_SELECT_DIR)/donkeykong_face_15.png \ $(DONKEYKONG_SELECT_DIR)/donkeykong_face_16.png -DONKEYKONG_SELECT_EXPORT_SENTINEL := $(DONKEYKONG_SELECT_DIR)/.export +DONKEYKONG_SELECT_EXPORT_SENTINEL := $(DONKEYKONG_SELECT_DIR)/.export.$(VERSION) $(BUILD_DIR)/data/course_player_selection.o: $(DONKEYKONG_SELECT_PNG:%.png=%.mio0) diff --git a/assets/include/character_select/luigi_select.mk b/assets/include/character_select/luigi_select.mk index 9b1fba7931..950a528253 100644 --- a/assets/include/character_select/luigi_select.mk +++ b/assets/include/character_select/luigi_select.mk @@ -19,7 +19,7 @@ $(LUIGI_SELECT_DIR)/luigi_face_14.png \ $(LUIGI_SELECT_DIR)/luigi_face_15.png \ $(LUIGI_SELECT_DIR)/luigi_face_16.png -LUIGI_SELECT_EXPORT_SENTINEL := $(LUIGI_SELECT_DIR)/.export +LUIGI_SELECT_EXPORT_SENTINEL := $(LUIGI_SELECT_DIR)/.export.$(VERSION) $(BUILD_DIR)/data/course_player_selection.o: $(LUIGI_SELECT_PNG:%.png=%.mio0) diff --git a/assets/include/character_select/mario_select.mk b/assets/include/character_select/mario_select.mk index 9d500b663c..940c869e07 100644 --- a/assets/include/character_select/mario_select.mk +++ b/assets/include/character_select/mario_select.mk @@ -19,7 +19,7 @@ $(MARIO_SELECT_DIR)/mario_face_14.png \ $(MARIO_SELECT_DIR)/mario_face_15.png \ $(MARIO_SELECT_DIR)/mario_face_16.png -MARIO_SELECT_EXPORT_SENTINEL := $(MARIO_SELECT_DIR)/.export +MARIO_SELECT_EXPORT_SENTINEL := $(MARIO_SELECT_DIR)/.export.$(VERSION) $(BUILD_DIR)/data/course_player_selection.o: $(MARIO_SELECT_PNG:%.png=%.mio0) diff --git a/assets/include/character_select/peach_select.mk b/assets/include/character_select/peach_select.mk index 8f50db4589..12ec77d360 100644 --- a/assets/include/character_select/peach_select.mk +++ b/assets/include/character_select/peach_select.mk @@ -19,7 +19,7 @@ $(PEACH_SELECT_DIR)/peach_face_14.png \ $(PEACH_SELECT_DIR)/peach_face_15.png \ $(PEACH_SELECT_DIR)/peach_face_16.png -PEACH_SELECT_EXPORT_SENTINEL := $(PEACH_SELECT_DIR)/.export +PEACH_SELECT_EXPORT_SENTINEL := $(PEACH_SELECT_DIR)/.export.$(VERSION) $(BUILD_DIR)/data/course_player_selection.o: $(PEACH_SELECT_PNG:%.png=%.mio0) diff --git a/assets/include/character_select/toad_select.mk b/assets/include/character_select/toad_select.mk index ccfb4b3c57..99659e3fa2 100644 --- a/assets/include/character_select/toad_select.mk +++ b/assets/include/character_select/toad_select.mk @@ -19,7 +19,7 @@ $(TOAD_SELECT_DIR)/toad_face_14.png \ $(TOAD_SELECT_DIR)/toad_face_15.png \ $(TOAD_SELECT_DIR)/toad_face_16.png -TOAD_SELECT_EXPORT_SENTINEL := $(TOAD_SELECT_DIR)/.export +TOAD_SELECT_EXPORT_SENTINEL := $(TOAD_SELECT_DIR)/.export.$(VERSION) $(BUILD_DIR)/data/course_player_selection.o: $(TOAD_SELECT_PNG:%.png=%.mio0) diff --git a/assets/include/character_select/wario_select.mk b/assets/include/character_select/wario_select.mk index 845723611b..bdc6fd6606 100644 --- a/assets/include/character_select/wario_select.mk +++ b/assets/include/character_select/wario_select.mk @@ -19,7 +19,7 @@ $(WARIO_SELECT_DIR)/wario_face_14.png \ $(WARIO_SELECT_DIR)/wario_face_15.png \ $(WARIO_SELECT_DIR)/wario_face_16.png -WARIO_SELECT_EXPORT_SENTINEL := $(WARIO_SELECT_DIR)/.export +WARIO_SELECT_EXPORT_SENTINEL := $(WARIO_SELECT_DIR)/.export.$(VERSION) $(BUILD_DIR)/data/course_player_selection.o: $(WARIO_SELECT_PNG:%.png=%.mio0) diff --git a/assets/include/character_select/yoshi_select.mk b/assets/include/character_select/yoshi_select.mk index 3a1abd270c..3f4d953baa 100644 --- a/assets/include/character_select/yoshi_select.mk +++ b/assets/include/character_select/yoshi_select.mk @@ -19,7 +19,7 @@ $(YOSHI_SELECT_DIR)/yoshi_face_14.png \ $(YOSHI_SELECT_DIR)/yoshi_face_15.png \ $(YOSHI_SELECT_DIR)/yoshi_face_16.png -YOSHI_SELECT_EXPORT_SENTINEL := $(YOSHI_SELECT_DIR)/.export +YOSHI_SELECT_EXPORT_SENTINEL := $(YOSHI_SELECT_DIR)/.export.$(VERSION) $(BUILD_DIR)/data/course_player_selection.o: $(YOSHI_SELECT_PNG:%.png=%.mio0) diff --git a/assets/include/course_outlines.mk b/assets/include/course_outlines.mk index 9e799ce085..d18b639e23 100644 --- a/assets/include/course_outlines.mk +++ b/assets/include/course_outlines.mk @@ -22,7 +22,7 @@ $(COURSE_OUTLINE_DIR)/minimap_double_deck.png \ $(COURSE_OUTLINE_DIR)/minimap_dks_jungle_parkway.png \ $(COURSE_OUTLINE_DIR)/minimap_big_donut.png -COURSE_OUTLINE_EXPORT_SENTINEL := $(COURSE_OUTLINE_DIR)/.export +COURSE_OUTLINE_EXPORT_SENTINEL := $(COURSE_OUTLINE_DIR)/.export.$(VERSION) $(BUILD_DIR)/data/other_textures.o: $(COURSE_OUTLINE_PNG:%.png=%.mio0) diff --git a/assets/include/course_previews.mk b/assets/include/course_previews.mk index 2a35cddc61..ee69dee208 100644 --- a/assets/include/course_previews.mk +++ b/assets/include/course_previews.mk @@ -22,7 +22,7 @@ $(COURSE_PREVIEW_DIR)/gTextureCoursePreviewDoubleDeck.png \ $(COURSE_PREVIEW_DIR)/gTextureCoursePreviewDksJungleParkway.png \ $(COURSE_PREVIEW_DIR)/gTextureCoursePreviewBigDonut.png -COURSE_PREVIEW_EXPORT_SENTINEL := $(COURSE_PREVIEW_DIR)/.export +COURSE_PREVIEW_EXPORT_SENTINEL := $(COURSE_PREVIEW_DIR)/.export.$(VERSION) $(BUILD_DIR)/src/data/textures.o: $(COURSE_PREVIEW_PNG:%.png=%.mio0) diff --git a/assets/include/courses/banshee_boardwalk.mk b/assets/include/courses/banshee_boardwalk.mk index b56047e805..181bd18fa9 100644 --- a/assets/include/courses/banshee_boardwalk.mk +++ b/assets/include/courses/banshee_boardwalk.mk @@ -44,7 +44,7 @@ $(BANSHEE_BOARDWALK_DIR)/gTextureBansheeBoardwalkFishEyes.png \ $(BANSHEE_BOARDWALK_DIR)/gTextureBansheBoardwalkA050.png \ $(BANSHEE_BOARDWALK_DIR)/gTextureBansheBoardwalkAA78.png -BANSHEE_BOARDWALK_EXPORT_SENTINEL := $(BANSHEE_BOARDWALK_DIR)/.export +BANSHEE_BOARDWALK_EXPORT_SENTINEL := $(BANSHEE_BOARDWALK_DIR)/.export.$(VERSION) $(BUILD_DIR)/data/other_textures.o: $(BANSHEE_BOARDWALK_DIR)/boo_frames.mio0 diff --git a/assets/include/courses/bowsers_castle.mk b/assets/include/courses/bowsers_castle.mk index 28a1159699..005b0ccda6 100644 --- a/assets/include/courses/bowsers_castle.mk +++ b/assets/include/courses/bowsers_castle.mk @@ -12,7 +12,7 @@ $(BOWSERS_CASTLE_DIR)/gTextureThwompFace6.png THOWMP_SIDE_PNG := $(BOWSERS_CASTLE_DIR)/gTextureThwompSide.png -BOWSERS_CASTLE_EXPORT_SENTINEL := $(BOWSERS_CASTLE_DIR)/.export +BOWSERS_CASTLE_EXPORT_SENTINEL := $(BOWSERS_CASTLE_DIR)/.export.$(VERSION) $(BUILD_DIR)/courses/bowsers_castle/course_data.o: $(THWOMP_FACE_FRAMES:%.png=%.inc.c) $(THWOMP_PALETTE:%.png=%.inc.c) $(BUILD_DIR)/courses/bowsers_castle/course_data.o: $(THOWMP_SIDE_PNG:%.png=%.inc.c) diff --git a/assets/include/courses/choco_mountain.mk b/assets/include/courses/choco_mountain.mk index 744281e075..69678998bf 100644 --- a/assets/include/courses/choco_mountain.mk +++ b/assets/include/courses/choco_mountain.mk @@ -4,7 +4,7 @@ CHOCO_MOUNTAIN_PNG := \ $(CHOCO_MOUNTAIN_DIR)/gTextureChocoMountainWall.png \ $(CHOCO_MOUNTAIN_DIR)/gTextureChocoMountainRock.png -CHOCO_MOUNTAIN_EXPORT_SENTINEL := $(CHOCO_MOUNTAIN_DIR)/.export +CHOCO_MOUNTAIN_EXPORT_SENTINEL := $(CHOCO_MOUNTAIN_DIR)/.export.$(VERSION) $(BUILD_DIR)/courses/choco_mountain/course_data.o: $(CHOCO_MOUNTAIN_PNG:%.png=%.inc.c) diff --git a/assets/include/courses/dks_jungle_parkway.mk b/assets/include/courses/dks_jungle_parkway.mk index 9eef14bb20..7f77bbefab 100644 --- a/assets/include/courses/dks_jungle_parkway.mk +++ b/assets/include/courses/dks_jungle_parkway.mk @@ -22,7 +22,7 @@ $(DKS_JUNGLE_PARKWAY_DIR)/gTextureDksJungleParkwayKiwanoFruit1.png \ $(DKS_JUNGLE_PARKWAY_DIR)/gTextureDksJungleParkwayKiwanoFruit2.png \ $(DKS_JUNGLE_PARKWAY_DIR)/gTextureDksJungleParkwayKiwanoFruit3.png -DKS_JUNGLE_PARKWAY_EXPORT_SENTINEL := $(DKS_JUNGLE_PARKWAY_DIR)/.export +DKS_JUNGLE_PARKWAY_EXPORT_SENTINEL := $(DKS_JUNGLE_PARKWAY_DIR)/.export.$(VERSION) $(BUILD_DIR)/data/other_textures.o: $(DKS_JUNGLE_PARKWAY_KIWANO_FRAMES:%.png=%.mio0) diff --git a/assets/include/courses/frappe_snowland.mk b/assets/include/courses/frappe_snowland.mk index cf15b50ca6..ebb7a8cfda 100644 --- a/assets/include/courses/frappe_snowland.mk +++ b/assets/include/courses/frappe_snowland.mk @@ -15,7 +15,7 @@ FRAPPE_SNOWLAND_TREE_PNG := \ $(FRAPPE_SNOWLAND_DIR)/gTextureFrappeSnowlandTreeLeft.png \ $(FRAPPE_SNOWLAND_DIR)/gTextureFrappeSnowlandTreeRight.png \ -FRAPPE_SNOWLAND_EXPORT_SENTINEL := $(FRAPPE_SNOWLAND_DIR)/.export +FRAPPE_SNOWLAND_EXPORT_SENTINEL := $(FRAPPE_SNOWLAND_DIR)/.export.$(VERSION) $(BUILD_DIR)/courses/frappe_snowland/course_data.o: $(FRAPPE_SNOWLAND_SNOWMAN_PNG:%.png=%.inc.c) $(FRAPPE_SNOWLAND_SNOW_PNG:%.png=%.inc.c) $(BUILD_DIR)/courses/frappe_snowland/course_data.o: $(FRAPPE_SNOWLAND_SNOWMAN_PALETTE:%.png=%.inc.c) $(FRAPPE_SNOWLAND_SNOW_PALETTE:%.png=%.inc.c) diff --git a/assets/include/courses/kalimari_desert.mk b/assets/include/courses/kalimari_desert.mk index 3038f1fcbb..74453006ec 100644 --- a/assets/include/courses/kalimari_desert.mk +++ b/assets/include/courses/kalimari_desert.mk @@ -38,7 +38,7 @@ $(KALIMARI_DESERT_DIR)/gTextureCarriageDoor.png \ $(KALIMARI_DESERT_DIR)/gTextureCarriageWindow.png \ $(KALIMARI_DESERT_DIR)/gTextureLocomotiveBogie.png -KALIMARI_DESERT_EXPORT_SENTINEL := $(KALIMARI_DESERT_DIR)/.export +KALIMARI_DESERT_EXPORT_SENTINEL := $(KALIMARI_DESERT_DIR)/.export.$(VERSION) $(BUILD_DIR)/courses/kalimari_desert/course_data.o: $(KALIMARI_DESERT_PNG:%.png=%.inc.c) $(CACTUS_PALETTE_IMPORT:%.png=%.inc.c) diff --git a/assets/include/courses/koopa_troopa_beach.mk b/assets/include/courses/koopa_troopa_beach.mk index a12e5cbc03..4c0b9cd1a4 100644 --- a/assets/include/courses/koopa_troopa_beach.mk +++ b/assets/include/courses/koopa_troopa_beach.mk @@ -18,7 +18,7 @@ $(KOOPA_TROOPA_BEACH_DIR)/gTextureKoopaTroopaBirdBeak.png \ $(KOOPA_TROOPA_BEACH_DIR)/gTextureKoopaTroopaPalmFrond.png \ $(KOOPA_TROOPA_BEACH_DIR)/gTextureKoopaTroopaPalmTrunk.png -KOOPA_TROOPA_BEACH_EXPORT_SENTINEL := $(KOOPA_TROOPA_BEACH_DIR)/.export +KOOPA_TROOPA_BEACH_EXPORT_SENTINEL := $(KOOPA_TROOPA_BEACH_DIR)/.export.$(VERSION) $(BUILD_DIR)/courses/koopa_troopa_beach/course_data.o: $(KOOPA_TROOPA_BEACH_CRAB_PALETTE:%.png=%.inc.c) $(KOOPA_TROOPA_BEACH_CRAB_FRAMES:%.png=%.inc.c) $(BUILD_DIR)/courses/koopa_troopa_beach/course_data.o: $(KOOPA_TROOPA_BEACH_PNG:%.png=%.inc.c) diff --git a/assets/include/courses/luigi_raceway.mk b/assets/include/courses/luigi_raceway.mk index cb1deb37f1..8e02d3ae5c 100644 --- a/assets/include/courses/luigi_raceway.mk +++ b/assets/include/courses/luigi_raceway.mk @@ -6,7 +6,7 @@ $(LUIGI_RACEWAY_DIR)/gTextureLuigiRacewaySignRight.png \ $(LUIGI_RACEWAY_DIR)/gTextureLuigiRacewayBalloonBasket.png \ $(LUIGI_RACEWAY_DIR)/gTextureLuigiRacewayBalloonRope.png -LUIGI_RACEWAY_EXPORT_SENTINEL := $(LUIGI_RACEWAY_DIR)/.export +LUIGI_RACEWAY_EXPORT_SENTINEL := $(LUIGI_RACEWAY_DIR)/.export.$(VERSION) $(BUILD_DIR)/courses/luigi_raceway/course_data.o: $(LUIGI_RACEWAY_PNG:%.png=%.inc.c) diff --git a/assets/include/courses/mario_raceway.mk b/assets/include/courses/mario_raceway.mk index c896952167..6e7e1741dd 100644 --- a/assets/include/courses/mario_raceway.mk +++ b/assets/include/courses/mario_raceway.mk @@ -17,7 +17,7 @@ MARIO_RACEWAY_SIGN := \ $(MARIO_RACEWAY_DIR)/gTextureMarioRacewaySignLeft.png \ $(MARIO_RACEWAY_DIR)/gTextureMarioRacewaySignRight.png -PIRANHA_PLANT_EXPORT_SENTINEL := $(MARIO_RACEWAY_DIR)/.export +PIRANHA_PLANT_EXPORT_SENTINEL := $(MARIO_RACEWAY_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(PIRANHA_PLANT_FRAMES:%.png=%.mio0) diff --git a/assets/include/courses/moo_moo_farm.mk b/assets/include/courses/moo_moo_farm.mk index 738c439958..52160eeddd 100644 --- a/assets/include/courses/moo_moo_farm.mk +++ b/assets/include/courses/moo_moo_farm.mk @@ -37,7 +37,7 @@ $(MOO_MOO_FARM_DIR)/gTextureMooMooFarmSignRight.png MOO_MOO_FARM_DIRT_PNG := $(MOO_MOO_FARM_DIR)/gTextureMooMooFarmDirt.png -MOO_MOO_FARM_EXPORT_SENTINEL := $(MOO_MOO_FARM_DIR)/.export +MOO_MOO_FARM_EXPORT_SENTINEL := $(MOO_MOO_FARM_DIR)/.export.$(VERSION) $(BUILD_DIR)/courses/moo_moo_farm/course_data.o: $(MOLE_PALETTE:%.png=%.inc.c) $(MOLE_FRAMES:%.png=%.inc.c) $(BUILD_DIR)/courses/moo_moo_farm/course_data.o: $(COW_PALETTE_IMPORT:%.png=%.inc.c) diff --git a/assets/include/courses/rainbow_road.mk b/assets/include/courses/rainbow_road.mk index 47c29bdb27..b58a20bc5d 100644 --- a/assets/include/courses/rainbow_road.mk +++ b/assets/include/courses/rainbow_road.mk @@ -52,7 +52,7 @@ $(RAINBOW_ROAD_DIR)/gTextureRainbowRoadReflectionMapGold.png \ $(RAINBOW_ROAD_DIR)/gTextureRainbowRoadChainChompTongue.png \ $(RAINBOW_ROAD_DIR)/gTextureRainbowRoadChainChompEye.png -RAINBOW_ROAD_EXPORT_SENTINEL := $(RAINBOW_ROAD_DIR)/.export +RAINBOW_ROAD_EXPORT_SENTINEL := $(RAINBOW_ROAD_DIR)/.export.$(VERSION) $(BUILD_DIR)/courses/rainbow_road/course_data.o: $(RAINBOW_ROAD_MUSHROOM_PNG:%.png=%.inc.c) $(BUILD_DIR)/courses/rainbow_road/course_data.o: $(RAINBOW_ROAD_MARIO_PNG:%.png=%.inc.c) diff --git a/assets/include/courses/royal_raceway.mk b/assets/include/courses/royal_raceway.mk index 43679f4687..0ef2266a91 100644 --- a/assets/include/courses/royal_raceway.mk +++ b/assets/include/courses/royal_raceway.mk @@ -2,7 +2,7 @@ ROYAL_RACEWAY_DIR := assets/courses/royal_raceway ROYAL_RACEWAY_PIRANHA_PLANT_PALETTE := $(ROYAL_RACEWAY_DIR)/gTLUTRoyalRacewayPiranhaPlant.png -ROYAL_RACEWAY_EXPORT_SENTINEL := $(ROYAL_RACEWAY_DIR)/.export +ROYAL_RACEWAY_EXPORT_SENTINEL := $(ROYAL_RACEWAY_DIR)/.export.$(VERSION) $(BUILD_DIR)/courses/royal_raceway/course_data.o: $(ROYAL_RACEWAY_PIRANHA_PLANT_PALETTE:%.png=%.inc.c) diff --git a/assets/include/courses/sherbet_land.mk b/assets/include/courses/sherbet_land.mk index e5f395308e..8ecb7db334 100644 --- a/assets/include/courses/sherbet_land.mk +++ b/assets/include/courses/sherbet_land.mk @@ -6,7 +6,7 @@ PENGUIN_PNG := \ $(SHERBET_LAND_DIR)/gTexturePenguinBeak.png \ $(SHERBET_LAND_DIR)/gTexturePenguinEye.png -SHERBET_LAND_EXPORT_SENTINEL := $(SHERBET_LAND_DIR)/.export +SHERBET_LAND_EXPORT_SENTINEL := $(SHERBET_LAND_DIR)/.export.$(VERSION) $(BUILD_DIR)/courses/sherbet_land/course_data.o: $(SHERBET_LAND_ICE:%.png=%.inc.c) $(PENGUIN_PNG:%.png=%.inc.c) diff --git a/assets/include/courses/toads_turnpike.mk b/assets/include/courses/toads_turnpike.mk index cb747c360c..7c1c7eae92 100644 --- a/assets/include/courses/toads_turnpike.mk +++ b/assets/include/courses/toads_turnpike.mk @@ -36,7 +36,7 @@ $(TOADS_TURNPIKE_DIR)/gTextureToadsTurnpikeCarFrontLod1.png \ $(TOADS_TURNPIKE_DIR)/gTextureToadsTurnpikeCarBackLod1.png \ $(TOADS_TURNPIKE_DIR)/gTextureToadsTurnpikeCarSideLod1.png -TOADS_TURNPIKE_EXPORT_SENTINEL := $(TOADS_TURNPIKE_DIR)/.export +TOADS_TURNPIKE_EXPORT_SENTINEL := $(TOADS_TURNPIKE_DIR)/.export.$(VERSION) $(BUILD_DIR)/courses/toads_turnpike/course_data.o: $(TOADS_TURNPIKE_PNG:%.png=%.inc.c) diff --git a/assets/include/courses/wario_stadium.mk b/assets/include/courses/wario_stadium.mk index 0e738a0a5d..73bc85dd15 100644 --- a/assets/include/courses/wario_stadium.mk +++ b/assets/include/courses/wario_stadium.mk @@ -6,7 +6,7 @@ $(WARIO_STADIUM_DIR)/gTextureWarioStadiumSignBottomLeft.png \ $(WARIO_STADIUM_DIR)/gTextureWarioStadiumSignTopRight.png \ $(WARIO_STADIUM_DIR)/gTextureWarioStadiumSignBottomRight.png -WARIO_STADIUM_EXPORT_SENTINEL := $(WARIO_STADIUM_DIR)/.export +WARIO_STADIUM_EXPORT_SENTINEL := $(WARIO_STADIUM_DIR)/.export.$(VERSION) $(BUILD_DIR)/courses/wario_stadium/course_data.o: $(WARIO_STADIUM_SIGN:%.png=%.inc.c) diff --git a/assets/include/courses/yoshi_valley.mk b/assets/include/courses/yoshi_valley.mk index 6ccb72626f..f754786c67 100644 --- a/assets/include/courses/yoshi_valley.mk +++ b/assets/include/courses/yoshi_valley.mk @@ -8,7 +8,7 @@ $(YOSHI_VALLEY_DIR)/gTextureYoshiValleyEgg.png YOSHI_VALLEY_HEDGEHOG_PALETTE := $(YOSHI_VALLEY_DIR)/gTLUTYoshiValleyHedgehog.png YOSHI_VALLEY_HEDGEHOG_PNG := $(YOSHI_VALLEY_DIR)/gTextureYoshiValleyHedgehog.png -YOSHI_VALLEY_EXPORT_SENTINEL := $(YOSHI_VALLEY_DIR)/.export +YOSHI_VALLEY_EXPORT_SENTINEL := $(YOSHI_VALLEY_DIR)/.export.$(VERSION) $(BUILD_DIR)/courses/yoshi_valley/course_data.o: $(YOSHI_VALLEY_HEDGEHOG_PALETTE:%.png=%.inc.c) $(YOSHI_VALLEY_HEDGEHOG_PNG:%.png=%.inc.c) $(BUILD_DIR)/courses/yoshi_valley/course_data.o: $(YOSHI_VALLEY_PNG:%.png=%.inc.c) diff --git a/assets/include/debug_font.mk b/assets/include/debug_font.mk index 8df9f0a0a6..bbb3e4d0b4 100644 --- a/assets/include/debug_font.mk +++ b/assets/include/debug_font.mk @@ -4,7 +4,7 @@ DEBUG_FONT_PALETTE := $(DEBUG_FONT_DIR)/common_tlut_debug_font.png DEBUG_FONT_PNG := $(DEBUG_FONT_DIR)/common_texture_debug_font.png -DEBUG_FONT_EXPORT_SENTINEL := $(DEBUG_FONT_DIR)/.export +DEBUG_FONT_EXPORT_SENTINEL := $(DEBUG_FONT_DIR)/.export.$(VERSION) $(BUILD_DIR)/src/data/common_textures.o: $(DEBUG_FONT_PNG:%.png=%.inc.c) $(DEBUG_FONT_PALETTE:%.png=%.inc.c) diff --git a/assets/include/ending_ceremony.mk b/assets/include/ending_ceremony.mk index 2488d2e4e0..1c9c22ac0d 100644 --- a/assets/include/ending_ceremony.mk +++ b/assets/include/ending_ceremony.mk @@ -10,7 +10,7 @@ $(ENDING_CEREMONY)/gTexturePodium1.png \ $(ENDING_CEREMONY)/gTexturePodium2.png \ $(ENDING_CEREMONY)/gTexturePodium3.png -ENDING_CEREMONY_EXPORT_SENTINEL := $(ENDING_CEREMONY)/.export +ENDING_CEREMONY_EXPORT_SENTINEL := $(ENDING_CEREMONY)/.export.$(VERSION) $(BUILD_DIR)/src/ending/ceremony_data.o: $(TROHPY_PNG:%.png=%.inc.c) $(PODIUM_PNG:%.png=%.inc.c) diff --git a/assets/include/finish_line_banner.mk b/assets/include/finish_line_banner.mk index 248b8bf850..1fe16a89ea 100644 --- a/assets/include/finish_line_banner.mk +++ b/assets/include/finish_line_banner.mk @@ -12,7 +12,7 @@ $(FINISH_LINE_BANNER_DIR)/gTextureFinishLineBanner6.png \ $(FINISH_LINE_BANNER_DIR)/gTextureFinishLineBanner7.png \ $(FINISH_LINE_BANNER_DIR)/gTextureFinishLineBanner8.png -FINISH_LINE_BANNER_EXPORT_SENTINEL := $(FINISH_LINE_BANNER_DIR)/.export +FINISH_LINE_BANNER_EXPORT_SENTINEL := $(FINISH_LINE_BANNER_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(FINISH_LINE_BANNER_PNG:%.png=%.mio0) diff --git a/assets/include/greenshell.mk b/assets/include/greenshell.mk index 0dd8a5b0bc..2941f5abe2 100644 --- a/assets/include/greenshell.mk +++ b/assets/include/greenshell.mk @@ -12,7 +12,7 @@ $(GREENSHELL_DIR)/texture_green_shell_5.png \ $(GREENSHELL_DIR)/texture_green_shell_6.png \ $(GREENSHELL_DIR)/texture_green_shell_7.png -GREENSHELL_EXPORT_SENTINEL := $(GREENSHELL_DIR)/.export +GREENSHELL_EXPORT_SENTINEL := $(GREENSHELL_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(GREENSHELL_FRAMES:%.png=%.mio0) diff --git a/assets/include/hud_type_c.mk b/assets/include/hud_type_c.mk index 76944c6a6e..3577c9a130 100644 --- a/assets/include/hud_type_c.mk +++ b/assets/include/hud_type_c.mk @@ -28,7 +28,7 @@ $(HUD_TYPE_C_DIR)/common_texture_hud_type_C_rank_tiny_font_9.png HUD_TYPE_C_PORTRAIT_BORDER_PNG := $(HUD_TYPE_C_DIR)/common_texture_character_portrait_border.png -HUD_TYPE_C_EXPORT_SENTINEL := $(HUD_TYPE_C_DIR)/.export +HUD_TYPE_C_EXPORT_SENTINEL := $(HUD_TYPE_C_DIR)/.export.$(VERSION) $(BUILD_DIR)/src/data/common_textures.o: $(HUD_TYPE_C_FONT_PNG:%.png=%.inc.c) $(HUD_TYPE_C_FONT_PALETTE:%.png=%.inc.c) $(BUILD_DIR)/src/data/common_textures.o: $(HUD_TYPE_C_TINY_FONT_PNG:%.png=%.inc.c) $(HUD_TYPE_C_TINY_FONT_PALETTE:%.png=%.inc.c) diff --git a/assets/include/item_window.mk b/assets/include/item_window.mk index f240cc7e30..0f9471dafa 100644 --- a/assets/include/item_window.mk +++ b/assets/include/item_window.mk @@ -36,7 +36,7 @@ $(ITEM_WINDOW_DIR)/common_texture_item_window_star.png \ $(ITEM_WINDOW_DIR)/common_texture_item_window_thunder_bolt.png \ $(ITEM_WINDOW_DIR)/common_texture_item_window_fake_item_box.png -ITEM_WINDOW_EXPORT_SENTINEL := $(ITEM_WINDOW_DIR)/.export +ITEM_WINDOW_EXPORT_SENTINEL := $(ITEM_WINDOW_DIR)/.export.$(VERSION) $(BUILD_DIR)/src/data/common_textures.o: $(ITEM_WINDOW_PNG:%.png=%.inc.c) $(ITEM_WINDOW_PALETTES:%.png=%.inc.c) diff --git a/assets/include/karts/bowser_kart.mk b/assets/include/karts/bowser_kart.mk index 8bb4d2077c..4a34b746e2 100644 --- a/assets/include/karts/bowser_kart.mk +++ b/assets/include/karts/bowser_kart.mk @@ -1482,7 +1482,7 @@ BOWSER_KART_PALETTE_PNG := \ $(BOWSER_KART_DIR)/palettes/kart_288_wheel_3.png \ $(BOWSER_KART_DIR)/palettes/bowser_kart_palette.png -BOWSER_EXPORT_SENTINEL := $(BOWSER_KART_DIR)/.export +BOWSER_EXPORT_SENTINEL := $(BOWSER_KART_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/karts/bowser_kart.o: $(BOWSER_KART_FRAME_PNG:%.png=%.mio0) $(BOWSER_KART_PALETTE_PNG:%.png=%.bin) diff --git a/assets/include/karts/donkeykong_kart.mk b/assets/include/karts/donkeykong_kart.mk index 176b90d7d5..7493b1d7df 100644 --- a/assets/include/karts/donkeykong_kart.mk +++ b/assets/include/karts/donkeykong_kart.mk @@ -1482,7 +1482,7 @@ DONKEYKONG_KART_PALETTE_PNG := \ $(DONKEYKONG_KART_DIR)/palettes/kart_288_wheel_3.png \ $(DONKEYKONG_KART_DIR)/palettes/donkeykong_kart_palette.png -DONKEYKONG_EXPORT_SENTINEL := $(DONKEYKONG_KART_DIR)/.export +DONKEYKONG_EXPORT_SENTINEL := $(DONKEYKONG_KART_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/karts/donkeykong_kart.o: $(DONKEYKONG_KART_FRAME_PNG:%.png=%.mio0) $(DONKEYKONG_KART_PALETTE_PNG:%.png=%.bin) diff --git a/assets/include/karts/luigi_kart.mk b/assets/include/karts/luigi_kart.mk index 3379422261..acd3c12bab 100644 --- a/assets/include/karts/luigi_kart.mk +++ b/assets/include/karts/luigi_kart.mk @@ -1482,7 +1482,7 @@ LUIGI_KART_PALETTE_PNG := \ $(LUIGI_KART_DIR)/palettes/kart_288_wheel_3.png \ $(LUIGI_KART_DIR)/palettes/luigi_kart_palette.png -LUIGI_EXPORT_SENTINEL := $(LUIGI_KART_DIR)/.export +LUIGI_EXPORT_SENTINEL := $(LUIGI_KART_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/karts/luigi_kart.o: $(LUIGI_KART_FRAME_PNG:%.png=%.mio0) $(LUIGI_KART_PALETTE_PNG:%.png=%.bin) diff --git a/assets/include/karts/mario_kart.mk b/assets/include/karts/mario_kart.mk index 997d385233..9dabdf7394 100644 --- a/assets/include/karts/mario_kart.mk +++ b/assets/include/karts/mario_kart.mk @@ -1482,7 +1482,7 @@ MARIO_KART_PALETTE_PNG := \ $(MARIO_KART_DIR)/palettes/kart_288_wheel_3.png \ $(MARIO_KART_DIR)/palettes/mario_kart_palette.png -MARIO_EXPORT_SENTINEL := $(MARIO_KART_DIR)/.export +MARIO_EXPORT_SENTINEL := $(MARIO_KART_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/karts/mario_kart.o: $(MARIO_KART_FRAME_PNG:%.png=%.mio0) $(MARIO_KART_PALETTE_PNG:%.png=%.bin) diff --git a/assets/include/karts/peach_kart.mk b/assets/include/karts/peach_kart.mk index 0d1041309a..09f7ba6277 100644 --- a/assets/include/karts/peach_kart.mk +++ b/assets/include/karts/peach_kart.mk @@ -1482,7 +1482,7 @@ PEACH_KART_PALETTE_PNG := \ $(PEACH_KART_DIR)/palettes/kart_288_wheel_3.png \ $(PEACH_KART_DIR)/palettes/peach_kart_palette.png -PEACH_EXPORT_SENTINEL := $(PEACH_KART_DIR)/.export +PEACH_EXPORT_SENTINEL := $(PEACH_KART_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/karts/peach_kart.o: $(PEACH_KART_FRAME_PNG:%.png=%.mio0) $(PEACH_KART_PALETTE_PNG:%.png=%.bin) diff --git a/assets/include/karts/toad_kart.mk b/assets/include/karts/toad_kart.mk index 8666b2d434..8857b9e113 100644 --- a/assets/include/karts/toad_kart.mk +++ b/assets/include/karts/toad_kart.mk @@ -1482,7 +1482,7 @@ TOAD_KART_PALETTE_PNG := \ $(TOAD_KART_DIR)/palettes/kart_288_wheel_3.png \ $(TOAD_KART_DIR)/palettes/toad_kart_palette.png -TOAD_EXPORT_SENTINEL := $(TOAD_KART_DIR)/.export +TOAD_EXPORT_SENTINEL := $(TOAD_KART_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/karts/toad_kart.o: $(TOAD_KART_FRAME_PNG:%.png=%.mio0) $(TOAD_KART_PALETTE_PNG:%.png=%.bin) diff --git a/assets/include/karts/wario_kart.mk b/assets/include/karts/wario_kart.mk index 8ef796a0a9..aff68a3bc1 100644 --- a/assets/include/karts/wario_kart.mk +++ b/assets/include/karts/wario_kart.mk @@ -1482,7 +1482,7 @@ WARIO_KART_PALETTE_PNG := \ $(WARIO_KART_DIR)/palettes/kart_288_wheel_3.png \ $(WARIO_KART_DIR)/palettes/wario_kart_palette.png -WARIO_EXPORT_SENTINEL := $(WARIO_KART_DIR)/.export +WARIO_EXPORT_SENTINEL := $(WARIO_KART_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/karts/wario_kart.o: $(WARIO_KART_FRAME_PNG:%.png=%.mio0) $(WARIO_KART_PALETTE_PNG:%.png=%.bin) diff --git a/assets/include/karts/yoshi_kart.mk b/assets/include/karts/yoshi_kart.mk index baa1b19236..4ecf963579 100644 --- a/assets/include/karts/yoshi_kart.mk +++ b/assets/include/karts/yoshi_kart.mk @@ -1482,7 +1482,7 @@ YOSHI_KART_PALETTE_PNG := \ $(YOSHI_KART_DIR)/palettes/kart_288_wheel_3.png \ $(YOSHI_KART_DIR)/palettes/yoshi_kart_palette.png -YOSHI_EXPORT_SENTINEL := $(YOSHI_KART_DIR)/.export +YOSHI_EXPORT_SENTINEL := $(YOSHI_KART_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/karts/yoshi_kart.o: $(YOSHI_KART_FRAME_PNG:%.png=%.mio0) $(YOSHI_KART_PALETTE_PNG:%.png=%.bin) diff --git a/assets/include/lakitu/bluelight.mk b/assets/include/lakitu/bluelight.mk index e58e9ecb3b..99d8c91653 100644 --- a/assets/include/lakitu/bluelight.mk +++ b/assets/include/lakitu/bluelight.mk @@ -12,7 +12,7 @@ $(BLUELIGHT_DIR)/gTextureLakituBlueLight6.png \ $(BLUELIGHT_DIR)/gTextureLakituBlueLight7.png \ $(BLUELIGHT_DIR)/gTextureLakituBlueLight8.png -BLUELIGHT_EXPORT_SENTINEL := $(BLUELIGHT_DIR)/.export +BLUELIGHT_EXPORT_SENTINEL := $(BLUELIGHT_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(BLUELIGHT_FRAMES:%.png=%.bin) diff --git a/assets/include/lakitu/checkeredflag.mk b/assets/include/lakitu/checkeredflag.mk index def8776c87..7088e4ea5a 100644 --- a/assets/include/lakitu/checkeredflag.mk +++ b/assets/include/lakitu/checkeredflag.mk @@ -36,7 +36,7 @@ $(CHECKEREDFLAG_DIR)/gTextureLakituCheckeredFlag30.png \ $(CHECKEREDFLAG_DIR)/gTextureLakituCheckeredFlag31.png \ $(CHECKEREDFLAG_DIR)/gTextureLakituCheckeredFlag32.png -CHECKEREDFLAG_EXPORT_SENTINEL := $(CHECKEREDFLAG_DIR)/.export +CHECKEREDFLAG_EXPORT_SENTINEL := $(CHECKEREDFLAG_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(CHECKEREDFLAG_FRAMES:%.png=%.bin) diff --git a/assets/include/lakitu/finallap.mk b/assets/include/lakitu/finallap.mk index 9a8497552b..1648daf735 100644 --- a/assets/include/lakitu/finallap.mk +++ b/assets/include/lakitu/finallap.mk @@ -20,7 +20,7 @@ $(FINALLAP_DIR)/gTextureLakituFinalLap14.png \ $(FINALLAP_DIR)/gTextureLakituFinalLap15.png \ $(FINALLAP_DIR)/gTextureLakituFinalLap16.png -FINALLAP_EXPORT_SENTINEL := $(FINALLAP_DIR)/.export +FINALLAP_EXPORT_SENTINEL := $(FINALLAP_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(FINALLAP_FRAMES:%.png=%.bin) diff --git a/assets/include/lakitu/fishing.mk b/assets/include/lakitu/fishing.mk index 7acf855e1c..49fd590496 100644 --- a/assets/include/lakitu/fishing.mk +++ b/assets/include/lakitu/fishing.mk @@ -8,7 +8,7 @@ $(FISHING_DIR)/gTextureLakituFishing2.png \ $(FISHING_DIR)/gTextureLakituFishing3.png \ $(FISHING_DIR)/gTextureLakituFishing4.png -FISHING_EXPORT_SENTINEL := $(FISHING_DIR)/.export +FISHING_EXPORT_SENTINEL := $(FISHING_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(FISHING_FRAMES:%.png=%.bin) diff --git a/assets/include/lakitu/nolights.mk b/assets/include/lakitu/nolights.mk index 8036dfb5d3..cfa6c39612 100644 --- a/assets/include/lakitu/nolights.mk +++ b/assets/include/lakitu/nolights.mk @@ -12,7 +12,7 @@ $(NOLIGHTS_DIR)/gTextureLakituNoLights6.png \ $(NOLIGHTS_DIR)/gTextureLakituNoLights7.png \ $(NOLIGHTS_DIR)/gTextureLakituNoLights8.png -NOLIGHTS_EXPORT_SENTINEL := $(NOLIGHTS_DIR)/.export +NOLIGHTS_EXPORT_SENTINEL := $(NOLIGHTS_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(NOLIGHTS_FRAMES:%.png=%.bin) diff --git a/assets/include/lakitu/redlights.mk b/assets/include/lakitu/redlights.mk index c5c85021c6..5d26d4d886 100644 --- a/assets/include/lakitu/redlights.mk +++ b/assets/include/lakitu/redlights.mk @@ -20,7 +20,7 @@ $(REDLIGHTS_DIR)/gTextureLakituRedLights14.png \ $(REDLIGHTS_DIR)/gTextureLakituRedLights15.png \ $(REDLIGHTS_DIR)/gTextureLakituRedLights16.png -REDLIGHTS_EXPORT_SENTINEL := $(REDLIGHTS_DIR)/.export +REDLIGHTS_EXPORT_SENTINEL := $(REDLIGHTS_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(REDLIGHTS_FRAMES:%.png=%.bin) diff --git a/assets/include/lakitu/reverse.mk b/assets/include/lakitu/reverse.mk index 415962e247..52cafc19b7 100644 --- a/assets/include/lakitu/reverse.mk +++ b/assets/include/lakitu/reverse.mk @@ -20,7 +20,7 @@ $(REVERSE_DIR)/gTextureLakituReverse14.png \ $(REVERSE_DIR)/gTextureLakituReverse15.png \ $(REVERSE_DIR)/gTextureLakituReverse16.png -REVERSE_EXPORT_SENTINEL := $(REVERSE_DIR)/.export +REVERSE_EXPORT_SENTINEL := $(REVERSE_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(REVERSE_FRAMES:%.png=%.bin) diff --git a/assets/include/lakitu/secondlap.mk b/assets/include/lakitu/secondlap.mk index 425123a790..f2bc438e26 100644 --- a/assets/include/lakitu/secondlap.mk +++ b/assets/include/lakitu/secondlap.mk @@ -20,7 +20,7 @@ $(SECONDLAP_DIR)/gTextureLakituSecondLap14.png \ $(SECONDLAP_DIR)/gTextureLakituSecondLap15.png \ $(SECONDLAP_DIR)/gTextureLakituSecondLap16.png -SECONDLAP_EXPORT_SENTINEL := $(SECONDLAP_DIR)/.export +SECONDLAP_EXPORT_SENTINEL := $(SECONDLAP_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(SECONDLAP_FRAMES:%.png=%.bin) diff --git a/assets/include/minimap_icons.mk b/assets/include/minimap_icons.mk index dc3f76a687..8606649b68 100644 --- a/assets/include/minimap_icons.mk +++ b/assets/include/minimap_icons.mk @@ -12,7 +12,7 @@ $(MINIMAP_ICONS_DIR)/common_texture_minimap_kart_peach.png \ $(MINIMAP_ICONS_DIR)/common_texture_minimap_kart_bowser.png \ $(MINIMAP_ICONS_DIR)/common_texture_minimap_progress_dot.png -MINIMAP_ICONS_EXPORT_SENTINEL := $(MINIMAP_ICONS_DIR)/.export +MINIMAP_ICONS_EXPORT_SENTINEL := $(MINIMAP_ICONS_DIR)/.export.$(VERSION) $(BUILD_DIR)/src/data/common_textures.o: $(MINIMAP_ICONS_PNG:%.png=%.inc.c) diff --git a/assets/include/onomatopoeia.mk b/assets/include/onomatopoeia.mk index aa26b48ad9..f6ef816322 100644 --- a/assets/include/onomatopoeia.mk +++ b/assets/include/onomatopoeia.mk @@ -12,7 +12,7 @@ $(ONOMATOPOEIA_DIR)/gTextureOnomatopoeiaPoomp2.png \ $(ONOMATOPOEIA_DIR)/gTextureBalloon1.png \ $(ONOMATOPOEIA_DIR)/gTextureBalloon2.png -ONOMATOPOEIA_EXPORT_SENTINEL := $(ONOMATOPOEIA_DIR)/.export +ONOMATOPOEIA_EXPORT_SENTINEL := $(ONOMATOPOEIA_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(ONOMATOPOEIA_PNG:%.png=%.mio0) $(BUILD_DIR)/src/data/some_data.o: $(ONOMATOPOEIA_PALETTE:%.png=%.inc.c) diff --git a/assets/include/player_emblems.mk b/assets/include/player_emblems.mk index 90a828144d..dafa9478c5 100644 --- a/assets/include/player_emblems.mk +++ b/assets/include/player_emblems.mk @@ -8,7 +8,7 @@ $(PLAYER_EMBLEM_DIR)/common_texture_player_emblem_2p.png \ $(PLAYER_EMBLEM_DIR)/common_texture_player_emblem_3p.png \ $(PLAYER_EMBLEM_DIR)/common_texture_player_emblem_4p.png -PLAYER_EMBLEM_EXPORT_SENTINEL := $(PLAYER_EMBLEM_DIR)/.export +PLAYER_EMBLEM_EXPORT_SENTINEL := $(PLAYER_EMBLEM_DIR)/.export.$(VERSION) $(BUILD_DIR)/src/data/common_textures.o: $(PLAYER_EMBLEM_PNGS:%.png=%.inc.c) $(PLAYER_EMBLEM_PALETTE:%.png=%.inc.c) diff --git a/assets/include/startup_logo.mk b/assets/include/startup_logo.mk index 0f5b7c2ce9..f6725cd8cf 100644 --- a/assets/include/startup_logo.mk +++ b/assets/include/startup_logo.mk @@ -2,7 +2,7 @@ STARTUP_LOGO := assets/startup_logo REFLECTION_MAP := $(STARTUP_LOGO)/gTextureReflectionMapGold.png -STARTUP_LOGO_EXPORT_SENTINEL := $(STARTUP_LOGO)/.export +STARTUP_LOGO_EXPORT_SENTINEL := $(STARTUP_LOGO)/.export.$(VERSION) $(BUILD_DIR)/src/data/startup_logo.o: $(REFLECTION_MAP:%.png=%.inc.c) diff --git a/assets/include/trees.mk b/assets/include/trees.mk index 05e7b13607..b1b059a206 100644 --- a/assets/include/trees.mk +++ b/assets/include/trees.mk @@ -19,7 +19,7 @@ $(TREES_DIR)/gTextureTrees5Right.png \ $(TREES_DIR)/gTextureTrees6.png \ $(TREES_DIR)/gTextureTrees7.png -TREES_EXPORT_SENTINEL := $(TREES_DIR)/.export +TREES_EXPORT_SENTINEL := $(TREES_DIR)/.export.$(VERSION) $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(TREES_PNG:%.png=%.mio0) diff --git a/assets/include/unused_traffic_light.mk b/assets/include/unused_traffic_light.mk index aa33d8cb9e..c9d514075a 100644 --- a/assets/include/unused_traffic_light.mk +++ b/assets/include/unused_traffic_light.mk @@ -14,7 +14,7 @@ $(UNUSED_TRAFFIC_LIGHT_DIR)/common_texture_traffic_light_08.png \ $(UNUSED_TRAFFIC_LIGHT_DIR)/common_texture_traffic_light_09.png \ $(UNUSED_TRAFFIC_LIGHT_DIR)/common_texture_traffic_light_10.png -UNUSED_TRAFFIC_LIGHT_EXPORT_SENTINEL := $(UNUSED_TRAFFIC_LIGHT_DIR)/.export +UNUSED_TRAFFIC_LIGHT_EXPORT_SENTINEL := $(UNUSED_TRAFFIC_LIGHT_DIR)/.export.$(VERSION) $(BUILD_DIR)/src/data/common_textures.o: $(UNUSED_TRAFFIC_LIGHT_PNG:%.png=%.inc.c) $(UNUSED_TRAFFIC_LIGHT_PALETTE:%.png=%.inc.c) From 18573f3a626e3a778e8acfd9b6da9a8badcb28de Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 04:04:28 -0700 Subject: [PATCH 16/41] assets: stop closing the caller's baserom while extracting An uncompressed asset uses the baserom itself as its source block, and asset_from_block closes the block when it is done. That closes the handle the caller still owns, so every later export_bin dies on a closed file. extract_asset already worked around it by reopening, which is why images survive and only raw `bin` assets fail. jp.v11 has enough of them to stop the build outright. Close the block only when it is a temporary one. Co-Authored-By: Claude Fable 5 --- tools/new_extract_assets.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tools/new_extract_assets.py b/tools/new_extract_assets.py index a7be6833b5..ebb0c5bd15 100644 --- a/tools/new_extract_assets.py +++ b/tools/new_extract_assets.py @@ -58,10 +58,13 @@ def extract_asset(baserom:BufferedReader, asset): # This is silly asset_block = baserom asset_block.seek(rom_offset) + # The block IS the caller's baserom here. Closing it would break every + # later export_bin, which seeks that same handle. + return asset_from_block(asset_block, asset, close_block=False) return asset_from_block(asset_block, asset) -def asset_from_block(asset_block, asset): +def asset_from_block(asset_block, asset, close_block=True): if asset["type"] in { "ia1" }: asset_size = ((asset["width"] * asset["height"]) + 7) // 8 elif asset["type"] in { "ci4", "ia4", "i4" }: @@ -85,7 +88,8 @@ def asset_from_block(asset_block, asset): # For MIO0 and TKMK this should make no difference asset_block.seek(block_offset, os.SEEK_CUR) asset_data = asset_block.read(asset_size) - asset_block.close() + if close_block: + asset_block.close() asset_file = tempfile.NamedTemporaryFile(mode="wb", prefix="raw_asset_", delete=False) file_open.append(asset_file.name) asset_file.write(asset_data) From e10e71b1e80b27e7bba8cf3753942d022f954f6e Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 04:04:28 -0700 Subject: [PATCH 17/41] assets: tell linkonly_generator which version it is generating course_offsets.c may guard its texture table with #ifdef VERSION_JP, and the texture order in that table decides the segment 5 layout. The generator already resolves the conditional, but nothing passed it the version, so it always took the #else and a JP build linked its display lists against the US texture addresses. The generated files also live at one shared path while their contents are version-specific, and course_offsets.c does not change when the built version does. Stamp the version so a switch regenerates them. Co-Authored-By: Claude Fable 5 --- Makefile | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9626058c6c..b4272a4939 100644 --- a/Makefile +++ b/Makefile @@ -581,8 +581,18 @@ $(BUILD_DIR)/$(ASSET_CODE_DIR)/common_data/common_data.o: $(ASSET_CODE_DIR)/comm #==============================================================================# -%/course_textures.linkonly.c %/course_textures.linkonly.h: %/course_offsets.c - $(V)$(LINKONLY_GENERATOR) $(lastword $(subst /, ,$*)) +# These are generated to one shared path but their contents are version-specific, +# because course_offsets.c may guard its texture table with #ifdef VERSION_JP and +# the texture ORDER there decides the segment 5 layout. course_offsets.c does not +# change when the built version does, so without a stamp make would keep the +# previous version's layout and link the display lists against the wrong +# addresses. Same failure the asset tree has; see .assets-local.txt. +LINKONLY_STAMP := courses/.linkonly-version +DUMMY_LINKONLY != [ "$$(cat $(LINKONLY_STAMP) 2>/dev/null)" = "$(VERSION)" ] || \ + { mkdir -p $(dir $(LINKONLY_STAMP)) && echo "$(VERSION)" > $(LINKONLY_STAMP); } + +%/course_textures.linkonly.c %/course_textures.linkonly.h: %/course_offsets.c $(LINKONLY_STAMP) + $(V)$(LINKONLY_GENERATOR) $(lastword $(subst /, ,$*)) $(VERSION) # Its unclear why this is necessary. Everything I undesrtand about `make` says that just # `$(BUILD_DIR)/%/course_displaylists.inc.o: %/course_textures.linkonly.h` From 474c9c6e3d71242317a540efebb87198295b8e89 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 04:24:16 -0700 Subject: [PATCH 18/41] assets: re-extract the group assets when the built version changes Group assets extract to one shared path whatever the version is, guarded by a .export sentinel that only depended on the group's json. Switching version therefore kept the previous version's images and compiled them into the ROM, silently: wrong artwork builds fine and only shows up as a ROM hash mismatch, cascaded by the size change. EU never exposed this. Its art is US-identical and merely relocated, so US <-> EU has no asset whose bytes differ. jp.v11 has 194 that do. Three things were needed, and each is useless alone: - Depend the sentinel on a stamp holding the version currently on disk. Naming the sentinel per version instead looks right but is not: it records that a version was extracted once, which stays true after the other version overwrites the shared files. - Give the image rules a real recipe rather than `;`. An empty recipe marks the target updated without re-stat'ing it, so the .bin and .mio0 built from a re-extracted png kept the old bytes until a second make. - Extract EU's group assets from the US cart. None of the 12,521 group assets carries an eu offset, so reading the EU cart at US offsets returns garbage. EU relied on US files happening to be left on disk. ASSET_VERSION mirrors TORCH_VERSION, which folds EU to US already. Verified by building jp.v11 -> us -> eu.v10 -> eu.v11 -> jp.v11 with no cleaning: all three byte-match, and JP re-extracts its own assets after. Co-Authored-By: Claude Fable 5 --- .gitignore | 1 + Makefile | 20 +++++++++++++++- assets/include/blueshell.mk | 9 ++++---- assets/include/bomb.mk | 9 ++++---- assets/include/character_portraits.mk | 9 ++++---- .../include/character_select/bowser_select.mk | 9 ++++---- .../character_select/donkeykong_select.mk | 9 ++++---- .../include/character_select/luigi_select.mk | 9 ++++---- .../include/character_select/mario_select.mk | 9 ++++---- .../include/character_select/peach_select.mk | 9 ++++---- .../include/character_select/toad_select.mk | 9 ++++---- .../include/character_select/wario_select.mk | 9 ++++---- .../include/character_select/yoshi_select.mk | 9 ++++---- assets/include/course_outlines.mk | 9 ++++---- assets/include/course_previews.mk | 9 ++++---- assets/include/courses/banshee_boardwalk.mk | 15 +++++++----- assets/include/courses/bowsers_castle.mk | 9 ++++---- assets/include/courses/choco_mountain.mk | 9 ++++---- assets/include/courses/dks_jungle_parkway.mk | 12 ++++++---- assets/include/courses/frappe_snowland.mk | 12 ++++++---- assets/include/courses/kalimari_desert.mk | 12 ++++++---- assets/include/courses/koopa_troopa_beach.mk | 9 ++++---- assets/include/courses/luigi_raceway.mk | 9 ++++---- assets/include/courses/mario_raceway.mk | 9 ++++---- assets/include/courses/moo_moo_farm.mk | 15 +++++++----- assets/include/courses/rainbow_road.mk | 23 +++++++++++-------- assets/include/courses/royal_raceway.mk | 9 ++++---- assets/include/courses/sherbet_land.mk | 9 ++++---- assets/include/courses/toads_turnpike.mk | 9 ++++---- assets/include/courses/wario_stadium.mk | 9 ++++---- assets/include/courses/yoshi_valley.mk | 12 ++++++---- assets/include/debug_font.mk | 9 ++++---- assets/include/ending_ceremony.mk | 9 ++++---- assets/include/finish_line_banner.mk | 9 ++++---- assets/include/greenshell.mk | 9 ++++---- assets/include/hud_type_c.mk | 15 +++++++----- assets/include/item_window.mk | 9 ++++---- assets/include/karts/bowser_kart.mk | 9 ++++---- assets/include/karts/donkeykong_kart.mk | 9 ++++---- assets/include/karts/luigi_kart.mk | 9 ++++---- assets/include/karts/mario_kart.mk | 9 ++++---- assets/include/karts/peach_kart.mk | 9 ++++---- assets/include/karts/toad_kart.mk | 9 ++++---- assets/include/karts/wario_kart.mk | 9 ++++---- assets/include/karts/yoshi_kart.mk | 9 ++++---- assets/include/lakitu/bluelight.mk | 9 ++++---- assets/include/lakitu/checkeredflag.mk | 9 ++++---- assets/include/lakitu/finallap.mk | 9 ++++---- assets/include/lakitu/fishing.mk | 9 ++++---- assets/include/lakitu/nolights.mk | 9 ++++---- assets/include/lakitu/redlights.mk | 9 ++++---- assets/include/lakitu/reverse.mk | 9 ++++---- assets/include/lakitu/secondlap.mk | 9 ++++---- assets/include/minimap_icons.mk | 9 ++++---- assets/include/onomatopoeia.mk | 9 ++++---- assets/include/player_emblems.mk | 9 ++++---- assets/include/startup_logo.mk | 9 ++++---- assets/include/trees.mk | 9 ++++---- assets/include/unused_traffic_light.mk | 9 ++++---- 59 files changed, 334 insertions(+), 244 deletions(-) diff --git a/.gitignore b/.gitignore index 022eca6219..50c8b8281c 100644 --- a/.gitignore +++ b/.gitignore @@ -73,6 +73,7 @@ expected/* /textures/**/*.png /textures/**/*.bin /assets/**/.export* +/assets/.version /assets/**/*.bin /assets/**/*.png /assets/**/*.mio0 diff --git a/Makefile b/Makefile index b4272a4939..a3d7edc688 100644 --- a/Makefile +++ b/Makefile @@ -249,6 +249,14 @@ ifneq ($(filter $(VERSION),eu.v10 eu.v11),) TORCH_VERSION := us endif ASSET_CODE_DIR := assets/code/$(TORCH_VERSION) + +# The group asset maps carry us and jp.v11 entries only: none of their 12,521 +# assets has an eu offset, because EU art is US-identical and merely relocated. +# So EU extracts the US assets out of the US cart, exactly as TORCH_VERSION above +# builds EU on the US Torch output, and for the same reason. Without this, EU +# reads the EU cart at US offsets and gets garbage. +ASSET_VERSION := $(TORCH_VERSION) +ASSET_BASEROM := baserom.$(ASSET_VERSION).z64 SRC_ASSETS_DIR := $(ASSET_CODE_DIR)/ceremony_data $(ASSET_CODE_DIR)/startup_logo $(ASSET_CODE_DIR)/data_800E45C0 $(ASSET_CODE_DIR)/data_segment2 $(ASSET_CODE_DIR)/data_800E8700 $(ASSET_CODE_DIR)/common_data SRC_DIRS := src src/data src/buffers src/racing src/ending src/audio src/debug src/os src/os/math courses $(ASSET_CODE_DIR)/ceremony_data $(ASSET_CODE_DIR)/startup_logo $(SRC_ASSETS_DIR) ASM_DIRS := asm asm/os asm/unused $(DATA_DIR) $(DATA_DIR)/sound_data $(DATA_DIR)/karts @@ -408,7 +416,7 @@ N64GRAPHICS := $(TOOLS_DIR)/n64graphics DLPACKER := $(TOOLS_DIR)/displaylist_packer BIN2C := $(PYTHON) $(TOOLS_DIR)/bin2c.py EXTRACT_DATA_FOR_MIO := $(TOOLS_DIR)/extract_data_for_mio -ASSET_EXTRACT := $(PYTHON) $(TOOLS_DIR)/new_extract_assets.py --version $(VERSION) +ASSET_EXTRACT := $(PYTHON) $(TOOLS_DIR)/new_extract_assets.py --version $(ASSET_VERSION) LINKONLY_GENERATOR := $(PYTHON) $(TOOLS_DIR)/linkonly_generator.py TORCH := $(TOOLS_DIR)/torch/cmake-build-release/torch EMULATOR = mupen64plus @@ -520,6 +528,16 @@ $(BUILD_DIR)/%: %.png $(BUILD_DIR)/textures/%.mio0: $(BUILD_DIR)/textures/% $(V)$(MIO0TOOL) -c $< $@ +# Assets extract to one shared path whatever the version is, and 194 of them hold +# genuinely different bytes in jp.v11 rather than merely moving. The per-version +# .export sentinel is not enough on its own: switching version leaves the other +# version's images on disk, newer than their .json, so make sees them as current +# and never builds the sentinel that would re-extract them. Depend on a stamp that +# changes with VERSION, so the images themselves go out of date on a switch. +ASSET_VERSION_STAMP := $(ASSET_DIR)/.version +DUMMY_ASSET_VERSION != [ "$$(cat $(ASSET_VERSION_STAMP) 2>/dev/null)" = "$(ASSET_VERSION)" ] || \ + { mkdir -p $(dir $(ASSET_VERSION_STAMP)) && echo "$(ASSET_VERSION)" > $(ASSET_VERSION_STAMP); } + ASSET_INCLUDES := $(shell find $(ASSET_DIR)/include -type f -name "*.mk") $(foreach inc,$(ASSET_INCLUDES),$(eval include $(inc))) diff --git a/assets/include/blueshell.mk b/assets/include/blueshell.mk index 2de1bb3602..c93ba75134 100644 --- a/assets/include/blueshell.mk +++ b/assets/include/blueshell.mk @@ -12,7 +12,7 @@ $(BLUESHELL_DIR)/texture_blue_shell_5.png \ $(BLUESHELL_DIR)/texture_blue_shell_6.png \ $(BLUESHELL_DIR)/texture_blue_shell_7.png -BLUESHELL_EXPORT_SENTINEL := $(BLUESHELL_DIR)/.export.$(VERSION) +BLUESHELL_EXPORT_SENTINEL := $(BLUESHELL_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(BLUESHELL_FRAMES:%.png=%.mio0) @@ -29,10 +29,11 @@ $(BLUESHELL_PALETTE:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(BLUESHELL_FRAMES) $(BLUESHELL_PALETTE): $(BLUESHELL_EXPORT_SENTINEL) ; +$(BLUESHELL_FRAMES) $(BLUESHELL_PALETTE): $(BLUESHELL_EXPORT_SENTINEL) + @: -$(BLUESHELL_EXPORT_SENTINEL): $(ASSET_DIR)/blueshell.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(BLUESHELL_EXPORT_SENTINEL): $(ASSET_DIR)/blueshell.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_blueshell diff --git a/assets/include/bomb.mk b/assets/include/bomb.mk index 56fc2aa5b6..68cec8a6c6 100644 --- a/assets/include/bomb.mk +++ b/assets/include/bomb.mk @@ -8,7 +8,7 @@ $(BOMB_DIR)/common_texture_bomb_2.png \ $(BOMB_DIR)/common_texture_bomb_3.png \ $(BOMB_DIR)/common_texture_bomb_4.png -BOMB_EXPORT_SENTINEL := $(BOMB_DIR)/.export.$(VERSION) +BOMB_EXPORT_SENTINEL := $(BOMB_DIR)/.export $(BUILD_DIR)/src/data/common_textures.o: $(BOMB_FRAMES:%.png=%.inc.c) $(BOMB_PALETTE:%.png=%.inc.c) @@ -20,10 +20,11 @@ $(BOMB_PALETTE:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(BOMB_FRAMES) $(BOMB_PALETTE): $(BOMB_EXPORT_SENTINEL) ; +$(BOMB_FRAMES) $(BOMB_PALETTE): $(BOMB_EXPORT_SENTINEL) + @: -$(BOMB_EXPORT_SENTINEL): $(ASSET_DIR)/bomb.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(BOMB_EXPORT_SENTINEL): $(ASSET_DIR)/bomb.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_bomb diff --git a/assets/include/character_portraits.mk b/assets/include/character_portraits.mk index 4675490108..cf6ef87d81 100644 --- a/assets/include/character_portraits.mk +++ b/assets/include/character_portraits.mk @@ -29,7 +29,7 @@ SPECIAL_PORTRAIT_PNG := \ $(PORTRAITS_DIR)/common_texture_portrait_bomb_kart.png \ $(PORTRAITS_DIR)/common_texture_portrait_question_mark.png -PORTRAIT_EXPORT_SENTINEL := $(PORTRAITS_DIR)/.export.$(VERSION) +PORTRAIT_EXPORT_SENTINEL := $(PORTRAITS_DIR)/.export $(BUILD_DIR)/src/data/common_textures.o: $(PORTRAIT_PNG:%.png=%.inc.c) $(PORTRAIT_PALETTES:%.png=%.inc.c) $(BUILD_DIR)/src/data/common_textures.o: $(SPECIAL_PORTRAIT_PNG:%.png=%.inc.c) $(SPECIAL_PORTRAIT_PALETTE:%.png=%.inc.c) @@ -50,10 +50,11 @@ $(SPECIAL_PORTRAIT_PALETTE:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(PORTRAIT_PNG) $(SPECIAL_PORTRAIT_PNG) $(PORTRAIT_PALETTES) $(SPECIAL_PORTRAIT_PALETTE): $(PORTRAIT_EXPORT_SENTINEL) ; +$(PORTRAIT_PNG) $(SPECIAL_PORTRAIT_PNG) $(PORTRAIT_PALETTES) $(SPECIAL_PORTRAIT_PALETTE): $(PORTRAIT_EXPORT_SENTINEL) + @: -$(PORTRAIT_EXPORT_SENTINEL): $(ASSET_DIR)/character_portraits.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(PORTRAIT_EXPORT_SENTINEL): $(ASSET_DIR)/character_portraits.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_character_portraits diff --git a/assets/include/character_select/bowser_select.mk b/assets/include/character_select/bowser_select.mk index 27f128175e..e095b3e6b9 100644 --- a/assets/include/character_select/bowser_select.mk +++ b/assets/include/character_select/bowser_select.mk @@ -19,7 +19,7 @@ $(BOWSER_SELECT_DIR)/bowser_face_14.png \ $(BOWSER_SELECT_DIR)/bowser_face_15.png \ $(BOWSER_SELECT_DIR)/bowser_face_16.png -BOWSER_SELECT_EXPORT_SENTINEL := $(BOWSER_SELECT_DIR)/.export.$(VERSION) +BOWSER_SELECT_EXPORT_SENTINEL := $(BOWSER_SELECT_DIR)/.export $(BUILD_DIR)/data/course_player_selection.o: $(BOWSER_SELECT_PNG:%.png=%.mio0) @@ -30,10 +30,11 @@ $(BOWSER_SELECT_PNG:%.png=%.bin) : %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s raw -f rgba16 -$(BOWSER_SELECT_PNG): $(BOWSER_SELECT_EXPORT_SENTINEL) ; +$(BOWSER_SELECT_PNG): $(BOWSER_SELECT_EXPORT_SENTINEL) + @: -$(BOWSER_SELECT_EXPORT_SENTINEL): $(ASSET_DIR)/character_select/bowser_select.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(BOWSER_SELECT_EXPORT_SENTINEL): $(ASSET_DIR)/character_select/bowser_select.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_bowser_select diff --git a/assets/include/character_select/donkeykong_select.mk b/assets/include/character_select/donkeykong_select.mk index e0d469bb47..197cd7bf6b 100644 --- a/assets/include/character_select/donkeykong_select.mk +++ b/assets/include/character_select/donkeykong_select.mk @@ -19,7 +19,7 @@ $(DONKEYKONG_SELECT_DIR)/donkeykong_face_14.png \ $(DONKEYKONG_SELECT_DIR)/donkeykong_face_15.png \ $(DONKEYKONG_SELECT_DIR)/donkeykong_face_16.png -DONKEYKONG_SELECT_EXPORT_SENTINEL := $(DONKEYKONG_SELECT_DIR)/.export.$(VERSION) +DONKEYKONG_SELECT_EXPORT_SENTINEL := $(DONKEYKONG_SELECT_DIR)/.export $(BUILD_DIR)/data/course_player_selection.o: $(DONKEYKONG_SELECT_PNG:%.png=%.mio0) @@ -30,10 +30,11 @@ $(DONKEYKONG_SELECT_PNG:%.png=%.bin) : %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s raw -f rgba16 -$(DONKEYKONG_SELECT_PNG): $(DONKEYKONG_SELECT_EXPORT_SENTINEL) ; +$(DONKEYKONG_SELECT_PNG): $(DONKEYKONG_SELECT_EXPORT_SENTINEL) + @: -$(DONKEYKONG_SELECT_EXPORT_SENTINEL): $(ASSET_DIR)/character_select/donkeykong_select.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(DONKEYKONG_SELECT_EXPORT_SENTINEL): $(ASSET_DIR)/character_select/donkeykong_select.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_donkeykong_select diff --git a/assets/include/character_select/luigi_select.mk b/assets/include/character_select/luigi_select.mk index 950a528253..b52e0f1283 100644 --- a/assets/include/character_select/luigi_select.mk +++ b/assets/include/character_select/luigi_select.mk @@ -19,7 +19,7 @@ $(LUIGI_SELECT_DIR)/luigi_face_14.png \ $(LUIGI_SELECT_DIR)/luigi_face_15.png \ $(LUIGI_SELECT_DIR)/luigi_face_16.png -LUIGI_SELECT_EXPORT_SENTINEL := $(LUIGI_SELECT_DIR)/.export.$(VERSION) +LUIGI_SELECT_EXPORT_SENTINEL := $(LUIGI_SELECT_DIR)/.export $(BUILD_DIR)/data/course_player_selection.o: $(LUIGI_SELECT_PNG:%.png=%.mio0) @@ -30,10 +30,11 @@ $(LUIGI_SELECT_PNG:%.png=%.bin) : %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s raw -f rgba16 -$(LUIGI_SELECT_PNG): $(LUIGI_SELECT_EXPORT_SENTINEL) ; +$(LUIGI_SELECT_PNG): $(LUIGI_SELECT_EXPORT_SENTINEL) + @: -$(LUIGI_SELECT_EXPORT_SENTINEL): $(ASSET_DIR)/character_select/luigi_select.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(LUIGI_SELECT_EXPORT_SENTINEL): $(ASSET_DIR)/character_select/luigi_select.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_luigi_select diff --git a/assets/include/character_select/mario_select.mk b/assets/include/character_select/mario_select.mk index 940c869e07..81911a8f9c 100644 --- a/assets/include/character_select/mario_select.mk +++ b/assets/include/character_select/mario_select.mk @@ -19,7 +19,7 @@ $(MARIO_SELECT_DIR)/mario_face_14.png \ $(MARIO_SELECT_DIR)/mario_face_15.png \ $(MARIO_SELECT_DIR)/mario_face_16.png -MARIO_SELECT_EXPORT_SENTINEL := $(MARIO_SELECT_DIR)/.export.$(VERSION) +MARIO_SELECT_EXPORT_SENTINEL := $(MARIO_SELECT_DIR)/.export $(BUILD_DIR)/data/course_player_selection.o: $(MARIO_SELECT_PNG:%.png=%.mio0) @@ -30,10 +30,11 @@ $(MARIO_SELECT_PNG:%.png=%.bin) : %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s raw -f rgba16 -$(MARIO_SELECT_PNG): $(MARIO_SELECT_EXPORT_SENTINEL) ; +$(MARIO_SELECT_PNG): $(MARIO_SELECT_EXPORT_SENTINEL) + @: -$(MARIO_SELECT_EXPORT_SENTINEL): $(ASSET_DIR)/character_select/mario_select.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(MARIO_SELECT_EXPORT_SENTINEL): $(ASSET_DIR)/character_select/mario_select.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_mario_select diff --git a/assets/include/character_select/peach_select.mk b/assets/include/character_select/peach_select.mk index 12ec77d360..27e19394f0 100644 --- a/assets/include/character_select/peach_select.mk +++ b/assets/include/character_select/peach_select.mk @@ -19,7 +19,7 @@ $(PEACH_SELECT_DIR)/peach_face_14.png \ $(PEACH_SELECT_DIR)/peach_face_15.png \ $(PEACH_SELECT_DIR)/peach_face_16.png -PEACH_SELECT_EXPORT_SENTINEL := $(PEACH_SELECT_DIR)/.export.$(VERSION) +PEACH_SELECT_EXPORT_SENTINEL := $(PEACH_SELECT_DIR)/.export $(BUILD_DIR)/data/course_player_selection.o: $(PEACH_SELECT_PNG:%.png=%.mio0) @@ -30,10 +30,11 @@ $(PEACH_SELECT_PNG:%.png=%.bin) : %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s raw -f rgba16 -$(PEACH_SELECT_PNG): $(PEACH_SELECT_EXPORT_SENTINEL) ; +$(PEACH_SELECT_PNG): $(PEACH_SELECT_EXPORT_SENTINEL) + @: -$(PEACH_SELECT_EXPORT_SENTINEL): $(ASSET_DIR)/character_select/peach_select.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(PEACH_SELECT_EXPORT_SENTINEL): $(ASSET_DIR)/character_select/peach_select.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_peach_select diff --git a/assets/include/character_select/toad_select.mk b/assets/include/character_select/toad_select.mk index 99659e3fa2..60a15cc3c6 100644 --- a/assets/include/character_select/toad_select.mk +++ b/assets/include/character_select/toad_select.mk @@ -19,7 +19,7 @@ $(TOAD_SELECT_DIR)/toad_face_14.png \ $(TOAD_SELECT_DIR)/toad_face_15.png \ $(TOAD_SELECT_DIR)/toad_face_16.png -TOAD_SELECT_EXPORT_SENTINEL := $(TOAD_SELECT_DIR)/.export.$(VERSION) +TOAD_SELECT_EXPORT_SENTINEL := $(TOAD_SELECT_DIR)/.export $(BUILD_DIR)/data/course_player_selection.o: $(TOAD_SELECT_PNG:%.png=%.mio0) @@ -30,10 +30,11 @@ $(TOAD_SELECT_PNG:%.png=%.bin) : %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s raw -f rgba16 -$(TOAD_SELECT_PNG): $(TOAD_SELECT_EXPORT_SENTINEL) ; +$(TOAD_SELECT_PNG): $(TOAD_SELECT_EXPORT_SENTINEL) + @: -$(TOAD_SELECT_EXPORT_SENTINEL): $(ASSET_DIR)/character_select/toad_select.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(TOAD_SELECT_EXPORT_SENTINEL): $(ASSET_DIR)/character_select/toad_select.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_toad_select diff --git a/assets/include/character_select/wario_select.mk b/assets/include/character_select/wario_select.mk index bdc6fd6606..1403d2854b 100644 --- a/assets/include/character_select/wario_select.mk +++ b/assets/include/character_select/wario_select.mk @@ -19,7 +19,7 @@ $(WARIO_SELECT_DIR)/wario_face_14.png \ $(WARIO_SELECT_DIR)/wario_face_15.png \ $(WARIO_SELECT_DIR)/wario_face_16.png -WARIO_SELECT_EXPORT_SENTINEL := $(WARIO_SELECT_DIR)/.export.$(VERSION) +WARIO_SELECT_EXPORT_SENTINEL := $(WARIO_SELECT_DIR)/.export $(BUILD_DIR)/data/course_player_selection.o: $(WARIO_SELECT_PNG:%.png=%.mio0) @@ -30,10 +30,11 @@ $(WARIO_SELECT_PNG:%.png=%.bin) : %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s raw -f rgba16 -$(WARIO_SELECT_PNG): $(WARIO_SELECT_EXPORT_SENTINEL) ; +$(WARIO_SELECT_PNG): $(WARIO_SELECT_EXPORT_SENTINEL) + @: -$(WARIO_SELECT_EXPORT_SENTINEL): $(ASSET_DIR)/character_select/wario_select.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(WARIO_SELECT_EXPORT_SENTINEL): $(ASSET_DIR)/character_select/wario_select.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_wario_select diff --git a/assets/include/character_select/yoshi_select.mk b/assets/include/character_select/yoshi_select.mk index 3f4d953baa..83ff11fa8e 100644 --- a/assets/include/character_select/yoshi_select.mk +++ b/assets/include/character_select/yoshi_select.mk @@ -19,7 +19,7 @@ $(YOSHI_SELECT_DIR)/yoshi_face_14.png \ $(YOSHI_SELECT_DIR)/yoshi_face_15.png \ $(YOSHI_SELECT_DIR)/yoshi_face_16.png -YOSHI_SELECT_EXPORT_SENTINEL := $(YOSHI_SELECT_DIR)/.export.$(VERSION) +YOSHI_SELECT_EXPORT_SENTINEL := $(YOSHI_SELECT_DIR)/.export $(BUILD_DIR)/data/course_player_selection.o: $(YOSHI_SELECT_PNG:%.png=%.mio0) @@ -30,10 +30,11 @@ $(YOSHI_SELECT_PNG:%.png=%.bin) : %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s raw -f rgba16 -$(YOSHI_SELECT_PNG): $(YOSHI_SELECT_EXPORT_SENTINEL) ; +$(YOSHI_SELECT_PNG): $(YOSHI_SELECT_EXPORT_SENTINEL) + @: -$(YOSHI_SELECT_EXPORT_SENTINEL): $(ASSET_DIR)/character_select/yoshi_select.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(YOSHI_SELECT_EXPORT_SENTINEL): $(ASSET_DIR)/character_select/yoshi_select.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_yoshi_select diff --git a/assets/include/course_outlines.mk b/assets/include/course_outlines.mk index d18b639e23..40865fcd39 100644 --- a/assets/include/course_outlines.mk +++ b/assets/include/course_outlines.mk @@ -22,7 +22,7 @@ $(COURSE_OUTLINE_DIR)/minimap_double_deck.png \ $(COURSE_OUTLINE_DIR)/minimap_dks_jungle_parkway.png \ $(COURSE_OUTLINE_DIR)/minimap_big_donut.png -COURSE_OUTLINE_EXPORT_SENTINEL := $(COURSE_OUTLINE_DIR)/.export.$(VERSION) +COURSE_OUTLINE_EXPORT_SENTINEL := $(COURSE_OUTLINE_DIR)/.export $(BUILD_DIR)/data/other_textures.o: $(COURSE_OUTLINE_PNG:%.png=%.mio0) @@ -33,10 +33,11 @@ $(COURSE_OUTLINE_PNG:%.png=%.bin): %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s raw -f i4 -$(COURSE_OUTLINE_PNG): $(COURSE_OUTLINE_EXPORT_SENTINEL) ; +$(COURSE_OUTLINE_PNG): $(COURSE_OUTLINE_EXPORT_SENTINEL) + @: -$(COURSE_OUTLINE_EXPORT_SENTINEL): $(ASSET_DIR)/course_outlines.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(COURSE_OUTLINE_EXPORT_SENTINEL): $(ASSET_DIR)/course_outlines.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_course_outlines diff --git a/assets/include/course_previews.mk b/assets/include/course_previews.mk index ee69dee208..acb01244b5 100644 --- a/assets/include/course_previews.mk +++ b/assets/include/course_previews.mk @@ -22,7 +22,7 @@ $(COURSE_PREVIEW_DIR)/gTextureCoursePreviewDoubleDeck.png \ $(COURSE_PREVIEW_DIR)/gTextureCoursePreviewDksJungleParkway.png \ $(COURSE_PREVIEW_DIR)/gTextureCoursePreviewBigDonut.png -COURSE_PREVIEW_EXPORT_SENTINEL := $(COURSE_PREVIEW_DIR)/.export.$(VERSION) +COURSE_PREVIEW_EXPORT_SENTINEL := $(COURSE_PREVIEW_DIR)/.export $(BUILD_DIR)/src/data/textures.o: $(COURSE_PREVIEW_PNG:%.png=%.mio0) @@ -33,10 +33,11 @@ $(COURSE_PREVIEW_PNG:%.png=%.bin): %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s raw -f rgba16 -$(COURSE_PREVIEW_PNG): $(COURSE_PREVIEW_EXPORT_SENTINEL) ; +$(COURSE_PREVIEW_PNG): $(COURSE_PREVIEW_EXPORT_SENTINEL) + @: -$(COURSE_PREVIEW_EXPORT_SENTINEL): $(ASSET_DIR)/course_previews.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(COURSE_PREVIEW_EXPORT_SENTINEL): $(ASSET_DIR)/course_previews.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_course_previews diff --git a/assets/include/courses/banshee_boardwalk.mk b/assets/include/courses/banshee_boardwalk.mk index 181bd18fa9..612895bc00 100644 --- a/assets/include/courses/banshee_boardwalk.mk +++ b/assets/include/courses/banshee_boardwalk.mk @@ -44,7 +44,7 @@ $(BANSHEE_BOARDWALK_DIR)/gTextureBansheeBoardwalkFishEyes.png \ $(BANSHEE_BOARDWALK_DIR)/gTextureBansheBoardwalkA050.png \ $(BANSHEE_BOARDWALK_DIR)/gTextureBansheBoardwalkAA78.png -BANSHEE_BOARDWALK_EXPORT_SENTINEL := $(BANSHEE_BOARDWALK_DIR)/.export.$(VERSION) +BANSHEE_BOARDWALK_EXPORT_SENTINEL := $(BANSHEE_BOARDWALK_DIR)/.export $(BUILD_DIR)/data/other_textures.o: $(BANSHEE_BOARDWALK_DIR)/boo_frames.mio0 @@ -78,12 +78,15 @@ $(BANSHEE_BOARDWALK_PNG:%.png=%.inc.c) $(BANSHEE_BOARDWALK_BOO_PALETTE:%.png=%.i @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(BANSHEE_BOARDWALK_BOO_PALETTE) $(BANSHEE_BOARDWALK_BOO_FRAMES): $(BANSHEE_BOARDWALK_EXPORT_SENTINEL) ; -$(BANSHEE_BOARDWALK_BAT_PALETTE) $(BANSHEE_BOARDWALK_BAT_FRAMES): $(BANSHEE_BOARDWALK_EXPORT_SENTINEL) ; -$(BANSHEE_BOARDWALK_PNG): $(BANSHEE_BOARDWALK_EXPORT_SENTINEL) ; +$(BANSHEE_BOARDWALK_BOO_PALETTE) $(BANSHEE_BOARDWALK_BOO_FRAMES): $(BANSHEE_BOARDWALK_EXPORT_SENTINEL) + @: +$(BANSHEE_BOARDWALK_BAT_PALETTE) $(BANSHEE_BOARDWALK_BAT_FRAMES): $(BANSHEE_BOARDWALK_EXPORT_SENTINEL) + @: +$(BANSHEE_BOARDWALK_PNG): $(BANSHEE_BOARDWALK_EXPORT_SENTINEL) + @: -$(BANSHEE_BOARDWALK_EXPORT_SENTINEL): $(ASSET_DIR)/courses/banshee_boardwalk.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(BANSHEE_BOARDWALK_EXPORT_SENTINEL): $(ASSET_DIR)/courses/banshee_boardwalk.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_banshee_boardwalk diff --git a/assets/include/courses/bowsers_castle.mk b/assets/include/courses/bowsers_castle.mk index 005b0ccda6..7387d5b3f8 100644 --- a/assets/include/courses/bowsers_castle.mk +++ b/assets/include/courses/bowsers_castle.mk @@ -12,7 +12,7 @@ $(BOWSERS_CASTLE_DIR)/gTextureThwompFace6.png THOWMP_SIDE_PNG := $(BOWSERS_CASTLE_DIR)/gTextureThwompSide.png -BOWSERS_CASTLE_EXPORT_SENTINEL := $(BOWSERS_CASTLE_DIR)/.export.$(VERSION) +BOWSERS_CASTLE_EXPORT_SENTINEL := $(BOWSERS_CASTLE_DIR)/.export $(BUILD_DIR)/courses/bowsers_castle/course_data.o: $(THWOMP_FACE_FRAMES:%.png=%.inc.c) $(THWOMP_PALETTE:%.png=%.inc.c) $(BUILD_DIR)/courses/bowsers_castle/course_data.o: $(THOWMP_SIDE_PNG:%.png=%.inc.c) @@ -25,10 +25,11 @@ $(THWOMP_FACE_FRAMES:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -Z $@ -g $< -s u8 -f ci8 -c rgba16 -p $(THWOMP_PALETTE) -$(THWOMP_PALETTE) $(THWOMP_FACE_FRAMES) $(THOWMP_SIDE_PNG): $(BOWSERS_CASTLE_EXPORT_SENTINEL) ; +$(THWOMP_PALETTE) $(THWOMP_FACE_FRAMES) $(THOWMP_SIDE_PNG): $(BOWSERS_CASTLE_EXPORT_SENTINEL) + @: -$(BOWSERS_CASTLE_EXPORT_SENTINEL): $(ASSET_DIR)/courses/bowsers_castle.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(BOWSERS_CASTLE_EXPORT_SENTINEL): $(ASSET_DIR)/courses/bowsers_castle.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_bowsers_castle diff --git a/assets/include/courses/choco_mountain.mk b/assets/include/courses/choco_mountain.mk index 69678998bf..eabe01b713 100644 --- a/assets/include/courses/choco_mountain.mk +++ b/assets/include/courses/choco_mountain.mk @@ -4,7 +4,7 @@ CHOCO_MOUNTAIN_PNG := \ $(CHOCO_MOUNTAIN_DIR)/gTextureChocoMountainWall.png \ $(CHOCO_MOUNTAIN_DIR)/gTextureChocoMountainRock.png -CHOCO_MOUNTAIN_EXPORT_SENTINEL := $(CHOCO_MOUNTAIN_DIR)/.export.$(VERSION) +CHOCO_MOUNTAIN_EXPORT_SENTINEL := $(CHOCO_MOUNTAIN_DIR)/.export $(BUILD_DIR)/courses/choco_mountain/course_data.o: $(CHOCO_MOUNTAIN_PNG:%.png=%.inc.c) @@ -12,10 +12,11 @@ $(CHOCO_MOUNTAIN_PNG:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(CHOCO_MOUNTAIN_PNG): $(CHOCO_MOUNTAIN_EXPORT_SENTINEL) ; +$(CHOCO_MOUNTAIN_PNG): $(CHOCO_MOUNTAIN_EXPORT_SENTINEL) + @: -$(CHOCO_MOUNTAIN_EXPORT_SENTINEL): $(ASSET_DIR)/courses/choco_mountain.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(CHOCO_MOUNTAIN_EXPORT_SENTINEL): $(ASSET_DIR)/courses/choco_mountain.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_choco_mountain diff --git a/assets/include/courses/dks_jungle_parkway.mk b/assets/include/courses/dks_jungle_parkway.mk index 7f77bbefab..9dcbb36e5f 100644 --- a/assets/include/courses/dks_jungle_parkway.mk +++ b/assets/include/courses/dks_jungle_parkway.mk @@ -22,7 +22,7 @@ $(DKS_JUNGLE_PARKWAY_DIR)/gTextureDksJungleParkwayKiwanoFruit1.png \ $(DKS_JUNGLE_PARKWAY_DIR)/gTextureDksJungleParkwayKiwanoFruit2.png \ $(DKS_JUNGLE_PARKWAY_DIR)/gTextureDksJungleParkwayKiwanoFruit3.png -DKS_JUNGLE_PARKWAY_EXPORT_SENTINEL := $(DKS_JUNGLE_PARKWAY_DIR)/.export.$(VERSION) +DKS_JUNGLE_PARKWAY_EXPORT_SENTINEL := $(DKS_JUNGLE_PARKWAY_DIR)/.export $(BUILD_DIR)/data/other_textures.o: $(DKS_JUNGLE_PARKWAY_KIWANO_FRAMES:%.png=%.mio0) @@ -40,11 +40,13 @@ $(DKS_JUNGLE_PARKWAY_PNG:%.png=%.inc.c) $(DKS_JUNGLE_PARKWAY_KIWANO_PALETTE:%.pn @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(DKS_JUNGLE_PARKWAY_KIWANO_PALETTE) $(DKS_JUNGLE_PARKWAY_KIWANO_FRAMES): $(DKS_JUNGLE_PARKWAY_EXPORT_SENTINEL) ; -$(DKS_JUNGLE_PARKWAY_PNG): $(DKS_JUNGLE_PARKWAY_EXPORT_SENTINEL) ; +$(DKS_JUNGLE_PARKWAY_KIWANO_PALETTE) $(DKS_JUNGLE_PARKWAY_KIWANO_FRAMES): $(DKS_JUNGLE_PARKWAY_EXPORT_SENTINEL) + @: +$(DKS_JUNGLE_PARKWAY_PNG): $(DKS_JUNGLE_PARKWAY_EXPORT_SENTINEL) + @: -$(DKS_JUNGLE_PARKWAY_EXPORT_SENTINEL): $(ASSET_DIR)/courses/dks_jungle_parkway.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(DKS_JUNGLE_PARKWAY_EXPORT_SENTINEL): $(ASSET_DIR)/courses/dks_jungle_parkway.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_dks_junk_parkway diff --git a/assets/include/courses/frappe_snowland.mk b/assets/include/courses/frappe_snowland.mk index ebb7a8cfda..4624f1c3f5 100644 --- a/assets/include/courses/frappe_snowland.mk +++ b/assets/include/courses/frappe_snowland.mk @@ -15,7 +15,7 @@ FRAPPE_SNOWLAND_TREE_PNG := \ $(FRAPPE_SNOWLAND_DIR)/gTextureFrappeSnowlandTreeLeft.png \ $(FRAPPE_SNOWLAND_DIR)/gTextureFrappeSnowlandTreeRight.png \ -FRAPPE_SNOWLAND_EXPORT_SENTINEL := $(FRAPPE_SNOWLAND_DIR)/.export.$(VERSION) +FRAPPE_SNOWLAND_EXPORT_SENTINEL := $(FRAPPE_SNOWLAND_DIR)/.export $(BUILD_DIR)/courses/frappe_snowland/course_data.o: $(FRAPPE_SNOWLAND_SNOWMAN_PNG:%.png=%.inc.c) $(FRAPPE_SNOWLAND_SNOW_PNG:%.png=%.inc.c) $(BUILD_DIR)/courses/frappe_snowland/course_data.o: $(FRAPPE_SNOWLAND_SNOWMAN_PALETTE:%.png=%.inc.c) $(FRAPPE_SNOWLAND_SNOW_PALETTE:%.png=%.inc.c) @@ -42,11 +42,13 @@ $(FRAPPE_SNOWLAND_SNOWMAN_PALETTE:%.png=%.inc.c) $(FRAPPE_SNOWLAND_SNOW_PALETTE: @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(FRAPPE_SNOWLAND_SNOWMAN_PNG) $(FRAPPE_SNOWLAND_SNOW_PNG) $(FRAPPE_SNOWLAND_TREE_PNG): $(FRAPPE_SNOWLAND_EXPORT_SENTINEL) ; -$(FRAPPE_SNOWLAND_SNOWMAN_PALETTE) $(FRAPPE_SNOWLAND_SNOW_PALETTE) $(FRAPPE_SNOWLAND_TREE_PALETTE): $(FRAPPE_SNOWLAND_EXPORT_SENTINEL) ; +$(FRAPPE_SNOWLAND_SNOWMAN_PNG) $(FRAPPE_SNOWLAND_SNOW_PNG) $(FRAPPE_SNOWLAND_TREE_PNG): $(FRAPPE_SNOWLAND_EXPORT_SENTINEL) + @: +$(FRAPPE_SNOWLAND_SNOWMAN_PALETTE) $(FRAPPE_SNOWLAND_SNOW_PALETTE) $(FRAPPE_SNOWLAND_TREE_PALETTE): $(FRAPPE_SNOWLAND_EXPORT_SENTINEL) + @: -$(FRAPPE_SNOWLAND_EXPORT_SENTINEL): $(ASSET_DIR)/courses/frappe_snowland.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(FRAPPE_SNOWLAND_EXPORT_SENTINEL): $(ASSET_DIR)/courses/frappe_snowland.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_frappe_snowland diff --git a/assets/include/courses/kalimari_desert.mk b/assets/include/courses/kalimari_desert.mk index 74453006ec..8322598c9d 100644 --- a/assets/include/courses/kalimari_desert.mk +++ b/assets/include/courses/kalimari_desert.mk @@ -38,7 +38,7 @@ $(KALIMARI_DESERT_DIR)/gTextureCarriageDoor.png \ $(KALIMARI_DESERT_DIR)/gTextureCarriageWindow.png \ $(KALIMARI_DESERT_DIR)/gTextureLocomotiveBogie.png -KALIMARI_DESERT_EXPORT_SENTINEL := $(KALIMARI_DESERT_DIR)/.export.$(VERSION) +KALIMARI_DESERT_EXPORT_SENTINEL := $(KALIMARI_DESERT_DIR)/.export $(BUILD_DIR)/courses/kalimari_desert/course_data.o: $(KALIMARI_DESERT_PNG:%.png=%.inc.c) $(CACTUS_PALETTE_IMPORT:%.png=%.inc.c) @@ -55,11 +55,13 @@ $(CACTUS_PNG:%.png=%.bin): %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(CACTUS_PALETTE) -$(CACTUS_PALETTE) $(CACTUS_PALETTE_IMPORT) $(CACTUS_PNG): $(KALIMARI_DESERT_EXPORT_SENTINEL) ; -$(KALIMARI_DESERT_PNG): $(KALIMARI_DESERT_EXPORT_SENTINEL) ; +$(CACTUS_PALETTE) $(CACTUS_PALETTE_IMPORT) $(CACTUS_PNG): $(KALIMARI_DESERT_EXPORT_SENTINEL) + @: +$(KALIMARI_DESERT_PNG): $(KALIMARI_DESERT_EXPORT_SENTINEL) + @: -$(KALIMARI_DESERT_EXPORT_SENTINEL): $(ASSET_DIR)/courses/kalimari_desert.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(KALIMARI_DESERT_EXPORT_SENTINEL): $(ASSET_DIR)/courses/kalimari_desert.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_kalimari_desert diff --git a/assets/include/courses/koopa_troopa_beach.mk b/assets/include/courses/koopa_troopa_beach.mk index 4c0b9cd1a4..e2feef6e80 100644 --- a/assets/include/courses/koopa_troopa_beach.mk +++ b/assets/include/courses/koopa_troopa_beach.mk @@ -18,7 +18,7 @@ $(KOOPA_TROOPA_BEACH_DIR)/gTextureKoopaTroopaBirdBeak.png \ $(KOOPA_TROOPA_BEACH_DIR)/gTextureKoopaTroopaPalmFrond.png \ $(KOOPA_TROOPA_BEACH_DIR)/gTextureKoopaTroopaPalmTrunk.png -KOOPA_TROOPA_BEACH_EXPORT_SENTINEL := $(KOOPA_TROOPA_BEACH_DIR)/.export.$(VERSION) +KOOPA_TROOPA_BEACH_EXPORT_SENTINEL := $(KOOPA_TROOPA_BEACH_DIR)/.export $(BUILD_DIR)/courses/koopa_troopa_beach/course_data.o: $(KOOPA_TROOPA_BEACH_CRAB_PALETTE:%.png=%.inc.c) $(KOOPA_TROOPA_BEACH_CRAB_FRAMES:%.png=%.inc.c) $(BUILD_DIR)/courses/koopa_troopa_beach/course_data.o: $(KOOPA_TROOPA_BEACH_PNG:%.png=%.inc.c) @@ -31,10 +31,11 @@ $(KOOPA_TROOPA_BEACH_CRAB_PALETTE:%.png=%.inc.c) $(KOOPA_TROOPA_BEACH_PNG:%.png= @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(KOOPA_TROOPA_BEACH_CRAB_PALETTE) $(KOOPA_TROOPA_BEACH_CRAB_FRAMES) $(KOOPA_TROOPA_BEACH_PNG): $(KOOPA_TROOPA_BEACH_EXPORT_SENTINEL) ; +$(KOOPA_TROOPA_BEACH_CRAB_PALETTE) $(KOOPA_TROOPA_BEACH_CRAB_FRAMES) $(KOOPA_TROOPA_BEACH_PNG): $(KOOPA_TROOPA_BEACH_EXPORT_SENTINEL) + @: -$(KOOPA_TROOPA_BEACH_EXPORT_SENTINEL): $(ASSET_DIR)/courses/koopa_troopa_beach.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(KOOPA_TROOPA_BEACH_EXPORT_SENTINEL): $(ASSET_DIR)/courses/koopa_troopa_beach.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_koopa_troopa_beach diff --git a/assets/include/courses/luigi_raceway.mk b/assets/include/courses/luigi_raceway.mk index 8e02d3ae5c..6242e54118 100644 --- a/assets/include/courses/luigi_raceway.mk +++ b/assets/include/courses/luigi_raceway.mk @@ -6,7 +6,7 @@ $(LUIGI_RACEWAY_DIR)/gTextureLuigiRacewaySignRight.png \ $(LUIGI_RACEWAY_DIR)/gTextureLuigiRacewayBalloonBasket.png \ $(LUIGI_RACEWAY_DIR)/gTextureLuigiRacewayBalloonRope.png -LUIGI_RACEWAY_EXPORT_SENTINEL := $(LUIGI_RACEWAY_DIR)/.export.$(VERSION) +LUIGI_RACEWAY_EXPORT_SENTINEL := $(LUIGI_RACEWAY_DIR)/.export $(BUILD_DIR)/courses/luigi_raceway/course_data.o: $(LUIGI_RACEWAY_PNG:%.png=%.inc.c) @@ -14,10 +14,11 @@ $(LUIGI_RACEWAY_PNG:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(LUIGI_RACEWAY_PNG): $(LUIGI_RACEWAY_EXPORT_SENTINEL) ; +$(LUIGI_RACEWAY_PNG): $(LUIGI_RACEWAY_EXPORT_SENTINEL) + @: -$(LUIGI_RACEWAY_EXPORT_SENTINEL): $(ASSET_DIR)/courses/luigi_raceway.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(LUIGI_RACEWAY_EXPORT_SENTINEL): $(ASSET_DIR)/courses/luigi_raceway.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_luigi_raceway diff --git a/assets/include/courses/mario_raceway.mk b/assets/include/courses/mario_raceway.mk index 6e7e1741dd..69c4e1dba3 100644 --- a/assets/include/courses/mario_raceway.mk +++ b/assets/include/courses/mario_raceway.mk @@ -17,7 +17,7 @@ MARIO_RACEWAY_SIGN := \ $(MARIO_RACEWAY_DIR)/gTextureMarioRacewaySignLeft.png \ $(MARIO_RACEWAY_DIR)/gTextureMarioRacewaySignRight.png -PIRANHA_PLANT_EXPORT_SENTINEL := $(MARIO_RACEWAY_DIR)/.export.$(VERSION) +PIRANHA_PLANT_EXPORT_SENTINEL := $(MARIO_RACEWAY_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(PIRANHA_PLANT_FRAMES:%.png=%.mio0) @@ -34,10 +34,11 @@ $(MARIO_RACEWAY_PIRANHA_PLANT_PALETTE:%.png=%.inc.c) $(MARIO_RACEWAY_SIGN:%.png= @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(PIRANHA_PLANT_FRAMES) $(MARIO_RACEWAY_PIRANHA_PLANT_PALETTE) $(MARIO_RACEWAY_SIGN): $(PIRANHA_PLANT_EXPORT_SENTINEL) ; +$(PIRANHA_PLANT_FRAMES) $(MARIO_RACEWAY_PIRANHA_PLANT_PALETTE) $(MARIO_RACEWAY_SIGN): $(PIRANHA_PLANT_EXPORT_SENTINEL) + @: -$(PIRANHA_PLANT_EXPORT_SENTINEL): $(ASSET_DIR)/courses/mario_raceway.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(PIRANHA_PLANT_EXPORT_SENTINEL): $(ASSET_DIR)/courses/mario_raceway.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_mario_raceway diff --git a/assets/include/courses/moo_moo_farm.mk b/assets/include/courses/moo_moo_farm.mk index 52160eeddd..25be2c25db 100644 --- a/assets/include/courses/moo_moo_farm.mk +++ b/assets/include/courses/moo_moo_farm.mk @@ -37,7 +37,7 @@ $(MOO_MOO_FARM_DIR)/gTextureMooMooFarmSignRight.png MOO_MOO_FARM_DIRT_PNG := $(MOO_MOO_FARM_DIR)/gTextureMooMooFarmDirt.png -MOO_MOO_FARM_EXPORT_SENTINEL := $(MOO_MOO_FARM_DIR)/.export.$(VERSION) +MOO_MOO_FARM_EXPORT_SENTINEL := $(MOO_MOO_FARM_DIR)/.export $(BUILD_DIR)/courses/moo_moo_farm/course_data.o: $(MOLE_PALETTE:%.png=%.inc.c) $(MOLE_FRAMES:%.png=%.inc.c) $(BUILD_DIR)/courses/moo_moo_farm/course_data.o: $(COW_PALETTE_IMPORT:%.png=%.inc.c) @@ -71,14 +71,17 @@ $(COW_PNG:%.png=%.bin): %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(COW_PALETTE) -$(MOLE_PALETTE) $(COW_PALETTE) $(COW_PALETTE_IMPORT): $(MOO_MOO_FARM_EXPORT_SENTINEL) ; +$(MOLE_PALETTE) $(COW_PALETTE) $(COW_PALETTE_IMPORT): $(MOO_MOO_FARM_EXPORT_SENTINEL) + @: -$(MOLE_FRAMES) $(COW_PNG): $(MOO_MOO_FARM_EXPORT_SENTINEL) ; +$(MOLE_FRAMES) $(COW_PNG): $(MOO_MOO_FARM_EXPORT_SENTINEL) + @: -$(MOO_MOO_FARM_SIGN_PNG) $(MOO_MOO_FARM_DIRT_PNG): $(MOO_MOO_FARM_EXPORT_SENTINEL) ; +$(MOO_MOO_FARM_SIGN_PNG) $(MOO_MOO_FARM_DIRT_PNG): $(MOO_MOO_FARM_EXPORT_SENTINEL) + @: -$(MOO_MOO_FARM_EXPORT_SENTINEL): $(ASSET_DIR)/courses/moo_moo_farm.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(MOO_MOO_FARM_EXPORT_SENTINEL): $(ASSET_DIR)/courses/moo_moo_farm.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_moo_moo_farm diff --git a/assets/include/courses/rainbow_road.mk b/assets/include/courses/rainbow_road.mk index b58a20bc5d..85b491acbd 100644 --- a/assets/include/courses/rainbow_road.mk +++ b/assets/include/courses/rainbow_road.mk @@ -52,7 +52,7 @@ $(RAINBOW_ROAD_DIR)/gTextureRainbowRoadReflectionMapGold.png \ $(RAINBOW_ROAD_DIR)/gTextureRainbowRoadChainChompTongue.png \ $(RAINBOW_ROAD_DIR)/gTextureRainbowRoadChainChompEye.png -RAINBOW_ROAD_EXPORT_SENTINEL := $(RAINBOW_ROAD_DIR)/.export.$(VERSION) +RAINBOW_ROAD_EXPORT_SENTINEL := $(RAINBOW_ROAD_DIR)/.export $(BUILD_DIR)/courses/rainbow_road/course_data.o: $(RAINBOW_ROAD_MUSHROOM_PNG:%.png=%.inc.c) $(BUILD_DIR)/courses/rainbow_road/course_data.o: $(RAINBOW_ROAD_MARIO_PNG:%.png=%.inc.c) @@ -100,14 +100,19 @@ $(RAINBOW_ROAD_PNG:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(RAINBOW_ROAD_MUSHROOM_PALETTES) $(RAINBOW_ROAD_MUSHROOM_PNG): $(RAINBOW_ROAD_EXPORT_SENTINEL) ; -$(RAINBOW_ROAD_MARIO_PALETTES) $(RAINBOW_ROAD_MARIO_PNG): $(RAINBOW_ROAD_EXPORT_SENTINEL) ; -$(RAINBOW_ROAD_BOO_PALETTES) $(RAINBOW_ROAD_BOO_PNG): $(RAINBOW_ROAD_EXPORT_SENTINEL) ; -$(RAINBOW_ROAD_CHARACTER_PALETTES) $(RAINBOW_ROAD_CHARACTER_PNG): $(RAINBOW_ROAD_EXPORT_SENTINEL) ; -$(RAINBOW_ROAD_PNG): $(RAINBOW_ROAD_EXPORT_SENTINEL) ; - -$(RAINBOW_ROAD_EXPORT_SENTINEL): $(ASSET_DIR)/courses/rainbow_road.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(RAINBOW_ROAD_MUSHROOM_PALETTES) $(RAINBOW_ROAD_MUSHROOM_PNG): $(RAINBOW_ROAD_EXPORT_SENTINEL) + @: +$(RAINBOW_ROAD_MARIO_PALETTES) $(RAINBOW_ROAD_MARIO_PNG): $(RAINBOW_ROAD_EXPORT_SENTINEL) + @: +$(RAINBOW_ROAD_BOO_PALETTES) $(RAINBOW_ROAD_BOO_PNG): $(RAINBOW_ROAD_EXPORT_SENTINEL) + @: +$(RAINBOW_ROAD_CHARACTER_PALETTES) $(RAINBOW_ROAD_CHARACTER_PNG): $(RAINBOW_ROAD_EXPORT_SENTINEL) + @: +$(RAINBOW_ROAD_PNG): $(RAINBOW_ROAD_EXPORT_SENTINEL) + @: + +$(RAINBOW_ROAD_EXPORT_SENTINEL): $(ASSET_DIR)/courses/rainbow_road.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_rainbow_road diff --git a/assets/include/courses/royal_raceway.mk b/assets/include/courses/royal_raceway.mk index 0ef2266a91..79d16e6809 100644 --- a/assets/include/courses/royal_raceway.mk +++ b/assets/include/courses/royal_raceway.mk @@ -2,7 +2,7 @@ ROYAL_RACEWAY_DIR := assets/courses/royal_raceway ROYAL_RACEWAY_PIRANHA_PLANT_PALETTE := $(ROYAL_RACEWAY_DIR)/gTLUTRoyalRacewayPiranhaPlant.png -ROYAL_RACEWAY_EXPORT_SENTINEL := $(ROYAL_RACEWAY_DIR)/.export.$(VERSION) +ROYAL_RACEWAY_EXPORT_SENTINEL := $(ROYAL_RACEWAY_DIR)/.export $(BUILD_DIR)/courses/royal_raceway/course_data.o: $(ROYAL_RACEWAY_PIRANHA_PLANT_PALETTE:%.png=%.inc.c) @@ -10,10 +10,11 @@ $(ROYAL_RACEWAY_PIRANHA_PLANT_PALETTE:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(ROYAL_RACEWAY_PIRANHA_PLANT_PALETTE): $(ROYAL_RACEWAY_EXPORT_SENTINEL) ; +$(ROYAL_RACEWAY_PIRANHA_PLANT_PALETTE): $(ROYAL_RACEWAY_EXPORT_SENTINEL) + @: -$(ROYAL_RACEWAY_EXPORT_SENTINEL): $(ASSET_DIR)/courses/royal_raceway.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(ROYAL_RACEWAY_EXPORT_SENTINEL): $(ASSET_DIR)/courses/royal_raceway.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_royal_raceway diff --git a/assets/include/courses/sherbet_land.mk b/assets/include/courses/sherbet_land.mk index 8ecb7db334..e526d55454 100644 --- a/assets/include/courses/sherbet_land.mk +++ b/assets/include/courses/sherbet_land.mk @@ -6,7 +6,7 @@ PENGUIN_PNG := \ $(SHERBET_LAND_DIR)/gTexturePenguinBeak.png \ $(SHERBET_LAND_DIR)/gTexturePenguinEye.png -SHERBET_LAND_EXPORT_SENTINEL := $(SHERBET_LAND_DIR)/.export.$(VERSION) +SHERBET_LAND_EXPORT_SENTINEL := $(SHERBET_LAND_DIR)/.export $(BUILD_DIR)/courses/sherbet_land/course_data.o: $(SHERBET_LAND_ICE:%.png=%.inc.c) $(PENGUIN_PNG:%.png=%.inc.c) @@ -18,10 +18,11 @@ $(PENGUIN_PNG:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(SHERBET_LAND_PNG) $(PENGUIN_PNG) $(SHERBET_LAND_ICE): $(SHERBET_LAND_EXPORT_SENTINEL) ; +$(SHERBET_LAND_PNG) $(PENGUIN_PNG) $(SHERBET_LAND_ICE): $(SHERBET_LAND_EXPORT_SENTINEL) + @: -$(SHERBET_LAND_EXPORT_SENTINEL): $(ASSET_DIR)/courses/sherbet_land.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(SHERBET_LAND_EXPORT_SENTINEL): $(ASSET_DIR)/courses/sherbet_land.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_sherbet_land diff --git a/assets/include/courses/toads_turnpike.mk b/assets/include/courses/toads_turnpike.mk index 7c1c7eae92..f3203d9b92 100644 --- a/assets/include/courses/toads_turnpike.mk +++ b/assets/include/courses/toads_turnpike.mk @@ -36,7 +36,7 @@ $(TOADS_TURNPIKE_DIR)/gTextureToadsTurnpikeCarFrontLod1.png \ $(TOADS_TURNPIKE_DIR)/gTextureToadsTurnpikeCarBackLod1.png \ $(TOADS_TURNPIKE_DIR)/gTextureToadsTurnpikeCarSideLod1.png -TOADS_TURNPIKE_EXPORT_SENTINEL := $(TOADS_TURNPIKE_DIR)/.export.$(VERSION) +TOADS_TURNPIKE_EXPORT_SENTINEL := $(TOADS_TURNPIKE_DIR)/.export $(BUILD_DIR)/courses/toads_turnpike/course_data.o: $(TOADS_TURNPIKE_PNG:%.png=%.inc.c) @@ -44,10 +44,11 @@ $(TOADS_TURNPIKE_PNG:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(TOADS_TURNPIKE_PNG): $(TOADS_TURNPIKE_EXPORT_SENTINEL) ; +$(TOADS_TURNPIKE_PNG): $(TOADS_TURNPIKE_EXPORT_SENTINEL) + @: -$(TOADS_TURNPIKE_EXPORT_SENTINEL): $(ASSET_DIR)/courses/toads_turnpike.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(TOADS_TURNPIKE_EXPORT_SENTINEL): $(ASSET_DIR)/courses/toads_turnpike.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_toads_turnpike diff --git a/assets/include/courses/wario_stadium.mk b/assets/include/courses/wario_stadium.mk index 73bc85dd15..f5922557ab 100644 --- a/assets/include/courses/wario_stadium.mk +++ b/assets/include/courses/wario_stadium.mk @@ -6,7 +6,7 @@ $(WARIO_STADIUM_DIR)/gTextureWarioStadiumSignBottomLeft.png \ $(WARIO_STADIUM_DIR)/gTextureWarioStadiumSignTopRight.png \ $(WARIO_STADIUM_DIR)/gTextureWarioStadiumSignBottomRight.png -WARIO_STADIUM_EXPORT_SENTINEL := $(WARIO_STADIUM_DIR)/.export.$(VERSION) +WARIO_STADIUM_EXPORT_SENTINEL := $(WARIO_STADIUM_DIR)/.export $(BUILD_DIR)/courses/wario_stadium/course_data.o: $(WARIO_STADIUM_SIGN:%.png=%.inc.c) @@ -14,10 +14,11 @@ $(WARIO_STADIUM_SIGN:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(WARIO_STADIUM_SIGN): $(WARIO_STADIUM_EXPORT_SENTINEL) ; +$(WARIO_STADIUM_SIGN): $(WARIO_STADIUM_EXPORT_SENTINEL) + @: -$(WARIO_STADIUM_EXPORT_SENTINEL): $(ASSET_DIR)/courses/wario_stadium.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(WARIO_STADIUM_EXPORT_SENTINEL): $(ASSET_DIR)/courses/wario_stadium.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_wario_stadium diff --git a/assets/include/courses/yoshi_valley.mk b/assets/include/courses/yoshi_valley.mk index f754786c67..678fd11602 100644 --- a/assets/include/courses/yoshi_valley.mk +++ b/assets/include/courses/yoshi_valley.mk @@ -8,7 +8,7 @@ $(YOSHI_VALLEY_DIR)/gTextureYoshiValleyEgg.png YOSHI_VALLEY_HEDGEHOG_PALETTE := $(YOSHI_VALLEY_DIR)/gTLUTYoshiValleyHedgehog.png YOSHI_VALLEY_HEDGEHOG_PNG := $(YOSHI_VALLEY_DIR)/gTextureYoshiValleyHedgehog.png -YOSHI_VALLEY_EXPORT_SENTINEL := $(YOSHI_VALLEY_DIR)/.export.$(VERSION) +YOSHI_VALLEY_EXPORT_SENTINEL := $(YOSHI_VALLEY_DIR)/.export $(BUILD_DIR)/courses/yoshi_valley/course_data.o: $(YOSHI_VALLEY_HEDGEHOG_PALETTE:%.png=%.inc.c) $(YOSHI_VALLEY_HEDGEHOG_PNG:%.png=%.inc.c) $(BUILD_DIR)/courses/yoshi_valley/course_data.o: $(YOSHI_VALLEY_PNG:%.png=%.inc.c) @@ -21,11 +21,13 @@ $(YOSHI_VALLEY_PNG:%.png=%.inc.c) $(YOSHI_VALLEY_HEDGEHOG_PALETTE:%.png=%.inc.c) @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(YOSHI_VALLEY_HEDGEHOG_PALETTE) $(YOSHI_VALLEY_HEDGEHOG_PNG): $(YOSHI_VALLEY_EXPORT_SENTINEL) ; -$(YOSHI_VALLEY_PNG): $(YOSHI_VALLEY_EXPORT_SENTINEL) ; +$(YOSHI_VALLEY_HEDGEHOG_PALETTE) $(YOSHI_VALLEY_HEDGEHOG_PNG): $(YOSHI_VALLEY_EXPORT_SENTINEL) + @: +$(YOSHI_VALLEY_PNG): $(YOSHI_VALLEY_EXPORT_SENTINEL) + @: -$(YOSHI_VALLEY_EXPORT_SENTINEL): $(ASSET_DIR)/courses/yoshi_valley.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(YOSHI_VALLEY_EXPORT_SENTINEL): $(ASSET_DIR)/courses/yoshi_valley.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_yoshi_valley diff --git a/assets/include/debug_font.mk b/assets/include/debug_font.mk index bbb3e4d0b4..60d507d2b0 100644 --- a/assets/include/debug_font.mk +++ b/assets/include/debug_font.mk @@ -4,7 +4,7 @@ DEBUG_FONT_PALETTE := $(DEBUG_FONT_DIR)/common_tlut_debug_font.png DEBUG_FONT_PNG := $(DEBUG_FONT_DIR)/common_texture_debug_font.png -DEBUG_FONT_EXPORT_SENTINEL := $(DEBUG_FONT_DIR)/.export.$(VERSION) +DEBUG_FONT_EXPORT_SENTINEL := $(DEBUG_FONT_DIR)/.export $(BUILD_DIR)/src/data/common_textures.o: $(DEBUG_FONT_PNG:%.png=%.inc.c) $(DEBUG_FONT_PALETTE:%.png=%.inc.c) @@ -16,10 +16,11 @@ $(DEBUG_FONT_PALETTE:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(DEBUG_FONT_PNG) $(DEBUG_FONT_PALETTE): $(DEBUG_FONT_EXPORT_SENTINEL) ; +$(DEBUG_FONT_PNG) $(DEBUG_FONT_PALETTE): $(DEBUG_FONT_EXPORT_SENTINEL) + @: -$(DEBUG_FONT_EXPORT_SENTINEL): $(ASSET_DIR)/debug_font.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(DEBUG_FONT_EXPORT_SENTINEL): $(ASSET_DIR)/debug_font.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_debug_font diff --git a/assets/include/ending_ceremony.mk b/assets/include/ending_ceremony.mk index 1c9c22ac0d..3407f01b45 100644 --- a/assets/include/ending_ceremony.mk +++ b/assets/include/ending_ceremony.mk @@ -10,7 +10,7 @@ $(ENDING_CEREMONY)/gTexturePodium1.png \ $(ENDING_CEREMONY)/gTexturePodium2.png \ $(ENDING_CEREMONY)/gTexturePodium3.png -ENDING_CEREMONY_EXPORT_SENTINEL := $(ENDING_CEREMONY)/.export.$(VERSION) +ENDING_CEREMONY_EXPORT_SENTINEL := $(ENDING_CEREMONY)/.export $(BUILD_DIR)/src/ending/ceremony_data.o: $(TROHPY_PNG:%.png=%.inc.c) $(PODIUM_PNG:%.png=%.inc.c) @@ -18,10 +18,11 @@ $(TROHPY_PNG:%.png=%.inc.c) $(PODIUM_PNG:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(TROHPY_PNG) $(PODIUM_PNG): $(ENDING_CEREMONY_EXPORT_SENTINEL) ; +$(TROHPY_PNG) $(PODIUM_PNG): $(ENDING_CEREMONY_EXPORT_SENTINEL) + @: -$(ENDING_CEREMONY_EXPORT_SENTINEL): $(ASSET_DIR)/ending_ceremony.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(ENDING_CEREMONY_EXPORT_SENTINEL): $(ASSET_DIR)/ending_ceremony.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_ending_ceremony diff --git a/assets/include/finish_line_banner.mk b/assets/include/finish_line_banner.mk index 1fe16a89ea..dbb8dc0c47 100644 --- a/assets/include/finish_line_banner.mk +++ b/assets/include/finish_line_banner.mk @@ -12,7 +12,7 @@ $(FINISH_LINE_BANNER_DIR)/gTextureFinishLineBanner6.png \ $(FINISH_LINE_BANNER_DIR)/gTextureFinishLineBanner7.png \ $(FINISH_LINE_BANNER_DIR)/gTextureFinishLineBanner8.png -FINISH_LINE_BANNER_EXPORT_SENTINEL := $(FINISH_LINE_BANNER_DIR)/.export.$(VERSION) +FINISH_LINE_BANNER_EXPORT_SENTINEL := $(FINISH_LINE_BANNER_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(FINISH_LINE_BANNER_PNG:%.png=%.mio0) @@ -29,10 +29,11 @@ $(FINISH_LINE_BANNER_PALETTE:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(FINISH_LINE_BANNER_PNG) $(FINISH_LINE_BANNER_PALETTE): $(FINISH_LINE_BANNER_EXPORT_SENTINEL) ; +$(FINISH_LINE_BANNER_PNG) $(FINISH_LINE_BANNER_PALETTE): $(FINISH_LINE_BANNER_EXPORT_SENTINEL) + @: -$(FINISH_LINE_BANNER_EXPORT_SENTINEL): $(ASSET_DIR)/finish_line_banner.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(FINISH_LINE_BANNER_EXPORT_SENTINEL): $(ASSET_DIR)/finish_line_banner.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_finish_line_banner diff --git a/assets/include/greenshell.mk b/assets/include/greenshell.mk index 2941f5abe2..24307ebad7 100644 --- a/assets/include/greenshell.mk +++ b/assets/include/greenshell.mk @@ -12,7 +12,7 @@ $(GREENSHELL_DIR)/texture_green_shell_5.png \ $(GREENSHELL_DIR)/texture_green_shell_6.png \ $(GREENSHELL_DIR)/texture_green_shell_7.png -GREENSHELL_EXPORT_SENTINEL := $(GREENSHELL_DIR)/.export.$(VERSION) +GREENSHELL_EXPORT_SENTINEL := $(GREENSHELL_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(GREENSHELL_FRAMES:%.png=%.mio0) @@ -29,10 +29,11 @@ $(GREENSHELL_PALETTE:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(GREENSHELL_FRAMES) $(GREENSHELL_PALETTE): $(GREENSHELL_EXPORT_SENTINEL) ; +$(GREENSHELL_FRAMES) $(GREENSHELL_PALETTE): $(GREENSHELL_EXPORT_SENTINEL) + @: -$(GREENSHELL_EXPORT_SENTINEL): $(ASSET_DIR)/greenshell.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(GREENSHELL_EXPORT_SENTINEL): $(ASSET_DIR)/greenshell.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_greenshell diff --git a/assets/include/hud_type_c.mk b/assets/include/hud_type_c.mk index 3577c9a130..89313bb38e 100644 --- a/assets/include/hud_type_c.mk +++ b/assets/include/hud_type_c.mk @@ -28,7 +28,7 @@ $(HUD_TYPE_C_DIR)/common_texture_hud_type_C_rank_tiny_font_9.png HUD_TYPE_C_PORTRAIT_BORDER_PNG := $(HUD_TYPE_C_DIR)/common_texture_character_portrait_border.png -HUD_TYPE_C_EXPORT_SENTINEL := $(HUD_TYPE_C_DIR)/.export.$(VERSION) +HUD_TYPE_C_EXPORT_SENTINEL := $(HUD_TYPE_C_DIR)/.export $(BUILD_DIR)/src/data/common_textures.o: $(HUD_TYPE_C_FONT_PNG:%.png=%.inc.c) $(HUD_TYPE_C_FONT_PALETTE:%.png=%.inc.c) $(BUILD_DIR)/src/data/common_textures.o: $(HUD_TYPE_C_TINY_FONT_PNG:%.png=%.inc.c) $(HUD_TYPE_C_TINY_FONT_PALETTE:%.png=%.inc.c) @@ -54,12 +54,15 @@ $(HUD_TYPE_C_PORTRAIT_BORDER_PNG:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f ia4 -$(HUD_TYPE_C_FONT_PNG) $(HUD_TYPE_C_FONT_PALETTE): $(HUD_TYPE_C_EXPORT_SENTINEL) ; -$(HUD_TYPE_C_TINY_FONT_PNG) $(HUD_TYPE_C_TINY_FONT_PALETTE): $(HUD_TYPE_C_EXPORT_SENTINEL) ; -$(HUD_TYPE_C_PORTRAIT_BORDER_PNG): $(HUD_TYPE_C_EXPORT_SENTINEL) ; +$(HUD_TYPE_C_FONT_PNG) $(HUD_TYPE_C_FONT_PALETTE): $(HUD_TYPE_C_EXPORT_SENTINEL) + @: +$(HUD_TYPE_C_TINY_FONT_PNG) $(HUD_TYPE_C_TINY_FONT_PALETTE): $(HUD_TYPE_C_EXPORT_SENTINEL) + @: +$(HUD_TYPE_C_PORTRAIT_BORDER_PNG): $(HUD_TYPE_C_EXPORT_SENTINEL) + @: -$(HUD_TYPE_C_EXPORT_SENTINEL): $(ASSET_DIR)/hud_type_c.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(HUD_TYPE_C_EXPORT_SENTINEL): $(ASSET_DIR)/hud_type_c.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_hud_type_c diff --git a/assets/include/item_window.mk b/assets/include/item_window.mk index 0f9471dafa..e5f017bb5c 100644 --- a/assets/include/item_window.mk +++ b/assets/include/item_window.mk @@ -36,7 +36,7 @@ $(ITEM_WINDOW_DIR)/common_texture_item_window_star.png \ $(ITEM_WINDOW_DIR)/common_texture_item_window_thunder_bolt.png \ $(ITEM_WINDOW_DIR)/common_texture_item_window_fake_item_box.png -ITEM_WINDOW_EXPORT_SENTINEL := $(ITEM_WINDOW_DIR)/.export.$(VERSION) +ITEM_WINDOW_EXPORT_SENTINEL := $(ITEM_WINDOW_DIR)/.export $(BUILD_DIR)/src/data/common_textures.o: $(ITEM_WINDOW_PNG:%.png=%.inc.c) $(ITEM_WINDOW_PALETTES:%.png=%.inc.c) @@ -48,10 +48,11 @@ $(ITEM_WINDOW_PALETTES:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(ITEM_WINDOW_PNG) $(ITEM_WINDOW_PALETTES): $(ITEM_WINDOW_EXPORT_SENTINEL) ; +$(ITEM_WINDOW_PNG) $(ITEM_WINDOW_PALETTES): $(ITEM_WINDOW_EXPORT_SENTINEL) + @: -$(ITEM_WINDOW_EXPORT_SENTINEL): $(ASSET_DIR)/item_window.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(ITEM_WINDOW_EXPORT_SENTINEL): $(ASSET_DIR)/item_window.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_item_window diff --git a/assets/include/karts/bowser_kart.mk b/assets/include/karts/bowser_kart.mk index 4a34b746e2..81e096ec5c 100644 --- a/assets/include/karts/bowser_kart.mk +++ b/assets/include/karts/bowser_kart.mk @@ -1482,7 +1482,7 @@ BOWSER_KART_PALETTE_PNG := \ $(BOWSER_KART_DIR)/palettes/kart_288_wheel_3.png \ $(BOWSER_KART_DIR)/palettes/bowser_kart_palette.png -BOWSER_EXPORT_SENTINEL := $(BOWSER_KART_DIR)/.export.$(VERSION) +BOWSER_EXPORT_SENTINEL := $(BOWSER_KART_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/karts/bowser_kart.o: $(BOWSER_KART_FRAME_PNG:%.png=%.mio0) $(BOWSER_KART_PALETTE_PNG:%.png=%.bin) @@ -1497,10 +1497,11 @@ $(BOWSER_KART_PALETTE_PNG:%.png=%.bin): %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s raw -f rgba16 -$(BOWSER_KART_FRAME_PNG) $(BOWSER_KART_PALETTE_PNG): $(BOWSER_EXPORT_SENTINEL) ; +$(BOWSER_KART_FRAME_PNG) $(BOWSER_KART_PALETTE_PNG): $(BOWSER_EXPORT_SENTINEL) + @: -$(BOWSER_EXPORT_SENTINEL): $(ASSET_DIR)/karts/bowser_kart.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(BOWSER_EXPORT_SENTINEL): $(ASSET_DIR)/karts/bowser_kart.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_bowser_kart diff --git a/assets/include/karts/donkeykong_kart.mk b/assets/include/karts/donkeykong_kart.mk index 7493b1d7df..d69e3c03a2 100644 --- a/assets/include/karts/donkeykong_kart.mk +++ b/assets/include/karts/donkeykong_kart.mk @@ -1482,7 +1482,7 @@ DONKEYKONG_KART_PALETTE_PNG := \ $(DONKEYKONG_KART_DIR)/palettes/kart_288_wheel_3.png \ $(DONKEYKONG_KART_DIR)/palettes/donkeykong_kart_palette.png -DONKEYKONG_EXPORT_SENTINEL := $(DONKEYKONG_KART_DIR)/.export.$(VERSION) +DONKEYKONG_EXPORT_SENTINEL := $(DONKEYKONG_KART_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/karts/donkeykong_kart.o: $(DONKEYKONG_KART_FRAME_PNG:%.png=%.mio0) $(DONKEYKONG_KART_PALETTE_PNG:%.png=%.bin) @@ -1497,10 +1497,11 @@ $(DONKEYKONG_KART_PALETTE_PNG:%.png=%.bin): %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s raw -f rgba16 -$(DONKEYKONG_KART_FRAME_PNG) $(DONKEYKONG_KART_PALETTE_PNG): $(DONKEYKONG_EXPORT_SENTINEL) ; +$(DONKEYKONG_KART_FRAME_PNG) $(DONKEYKONG_KART_PALETTE_PNG): $(DONKEYKONG_EXPORT_SENTINEL) + @: -$(DONKEYKONG_EXPORT_SENTINEL): $(ASSET_DIR)/karts/donkeykong_kart.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(DONKEYKONG_EXPORT_SENTINEL): $(ASSET_DIR)/karts/donkeykong_kart.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_donkeykong_kart diff --git a/assets/include/karts/luigi_kart.mk b/assets/include/karts/luigi_kart.mk index acd3c12bab..77f71df338 100644 --- a/assets/include/karts/luigi_kart.mk +++ b/assets/include/karts/luigi_kart.mk @@ -1482,7 +1482,7 @@ LUIGI_KART_PALETTE_PNG := \ $(LUIGI_KART_DIR)/palettes/kart_288_wheel_3.png \ $(LUIGI_KART_DIR)/palettes/luigi_kart_palette.png -LUIGI_EXPORT_SENTINEL := $(LUIGI_KART_DIR)/.export.$(VERSION) +LUIGI_EXPORT_SENTINEL := $(LUIGI_KART_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/karts/luigi_kart.o: $(LUIGI_KART_FRAME_PNG:%.png=%.mio0) $(LUIGI_KART_PALETTE_PNG:%.png=%.bin) @@ -1497,10 +1497,11 @@ $(LUIGI_KART_PALETTE_PNG:%.png=%.bin): %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s raw -f rgba16 -$(LUIGI_KART_FRAME_PNG) $(LUIGI_KART_PALETTE_PNG): $(LUIGI_EXPORT_SENTINEL) ; +$(LUIGI_KART_FRAME_PNG) $(LUIGI_KART_PALETTE_PNG): $(LUIGI_EXPORT_SENTINEL) + @: -$(LUIGI_EXPORT_SENTINEL): $(ASSET_DIR)/karts/luigi_kart.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(LUIGI_EXPORT_SENTINEL): $(ASSET_DIR)/karts/luigi_kart.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_luigi_kart diff --git a/assets/include/karts/mario_kart.mk b/assets/include/karts/mario_kart.mk index 9dabdf7394..d80a6895c9 100644 --- a/assets/include/karts/mario_kart.mk +++ b/assets/include/karts/mario_kart.mk @@ -1482,7 +1482,7 @@ MARIO_KART_PALETTE_PNG := \ $(MARIO_KART_DIR)/palettes/kart_288_wheel_3.png \ $(MARIO_KART_DIR)/palettes/mario_kart_palette.png -MARIO_EXPORT_SENTINEL := $(MARIO_KART_DIR)/.export.$(VERSION) +MARIO_EXPORT_SENTINEL := $(MARIO_KART_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/karts/mario_kart.o: $(MARIO_KART_FRAME_PNG:%.png=%.mio0) $(MARIO_KART_PALETTE_PNG:%.png=%.bin) @@ -1497,10 +1497,11 @@ $(MARIO_KART_PALETTE_PNG:%.png=%.bin): %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s raw -f rgba16 -$(MARIO_KART_FRAME_PNG) $(MARIO_KART_PALETTE_PNG): $(MARIO_EXPORT_SENTINEL) ; +$(MARIO_KART_FRAME_PNG) $(MARIO_KART_PALETTE_PNG): $(MARIO_EXPORT_SENTINEL) + @: -$(MARIO_EXPORT_SENTINEL): $(ASSET_DIR)/karts/mario_kart.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(MARIO_EXPORT_SENTINEL): $(ASSET_DIR)/karts/mario_kart.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_mario_kart diff --git a/assets/include/karts/peach_kart.mk b/assets/include/karts/peach_kart.mk index 09f7ba6277..6f93408baa 100644 --- a/assets/include/karts/peach_kart.mk +++ b/assets/include/karts/peach_kart.mk @@ -1482,7 +1482,7 @@ PEACH_KART_PALETTE_PNG := \ $(PEACH_KART_DIR)/palettes/kart_288_wheel_3.png \ $(PEACH_KART_DIR)/palettes/peach_kart_palette.png -PEACH_EXPORT_SENTINEL := $(PEACH_KART_DIR)/.export.$(VERSION) +PEACH_EXPORT_SENTINEL := $(PEACH_KART_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/karts/peach_kart.o: $(PEACH_KART_FRAME_PNG:%.png=%.mio0) $(PEACH_KART_PALETTE_PNG:%.png=%.bin) @@ -1497,10 +1497,11 @@ $(PEACH_KART_PALETTE_PNG:%.png=%.bin): %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s raw -f rgba16 -$(PEACH_KART_FRAME_PNG) $(PEACH_KART_PALETTE_PNG): $(PEACH_EXPORT_SENTINEL) ; +$(PEACH_KART_FRAME_PNG) $(PEACH_KART_PALETTE_PNG): $(PEACH_EXPORT_SENTINEL) + @: -$(PEACH_EXPORT_SENTINEL): $(ASSET_DIR)/karts/peach_kart.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(PEACH_EXPORT_SENTINEL): $(ASSET_DIR)/karts/peach_kart.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_peach_kart diff --git a/assets/include/karts/toad_kart.mk b/assets/include/karts/toad_kart.mk index 8857b9e113..371b47171e 100644 --- a/assets/include/karts/toad_kart.mk +++ b/assets/include/karts/toad_kart.mk @@ -1482,7 +1482,7 @@ TOAD_KART_PALETTE_PNG := \ $(TOAD_KART_DIR)/palettes/kart_288_wheel_3.png \ $(TOAD_KART_DIR)/palettes/toad_kart_palette.png -TOAD_EXPORT_SENTINEL := $(TOAD_KART_DIR)/.export.$(VERSION) +TOAD_EXPORT_SENTINEL := $(TOAD_KART_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/karts/toad_kart.o: $(TOAD_KART_FRAME_PNG:%.png=%.mio0) $(TOAD_KART_PALETTE_PNG:%.png=%.bin) @@ -1497,10 +1497,11 @@ $(TOAD_KART_PALETTE_PNG:%.png=%.bin): %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s raw -f rgba16 -$(TOAD_KART_FRAME_PNG) $(TOAD_KART_PALETTE_PNG): $(TOAD_EXPORT_SENTINEL) ; +$(TOAD_KART_FRAME_PNG) $(TOAD_KART_PALETTE_PNG): $(TOAD_EXPORT_SENTINEL) + @: -$(TOAD_EXPORT_SENTINEL): $(ASSET_DIR)/karts/toad_kart.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(TOAD_EXPORT_SENTINEL): $(ASSET_DIR)/karts/toad_kart.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_toad_kart diff --git a/assets/include/karts/wario_kart.mk b/assets/include/karts/wario_kart.mk index aff68a3bc1..d66c6fc2ed 100644 --- a/assets/include/karts/wario_kart.mk +++ b/assets/include/karts/wario_kart.mk @@ -1482,7 +1482,7 @@ WARIO_KART_PALETTE_PNG := \ $(WARIO_KART_DIR)/palettes/kart_288_wheel_3.png \ $(WARIO_KART_DIR)/palettes/wario_kart_palette.png -WARIO_EXPORT_SENTINEL := $(WARIO_KART_DIR)/.export.$(VERSION) +WARIO_EXPORT_SENTINEL := $(WARIO_KART_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/karts/wario_kart.o: $(WARIO_KART_FRAME_PNG:%.png=%.mio0) $(WARIO_KART_PALETTE_PNG:%.png=%.bin) @@ -1497,10 +1497,11 @@ $(WARIO_KART_PALETTE_PNG:%.png=%.bin): %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s raw -f rgba16 -$(WARIO_KART_FRAME_PNG) $(WARIO_KART_PALETTE_PNG): $(WARIO_EXPORT_SENTINEL) ; +$(WARIO_KART_FRAME_PNG) $(WARIO_KART_PALETTE_PNG): $(WARIO_EXPORT_SENTINEL) + @: -$(WARIO_EXPORT_SENTINEL): $(ASSET_DIR)/karts/wario_kart.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(WARIO_EXPORT_SENTINEL): $(ASSET_DIR)/karts/wario_kart.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_wario_kart diff --git a/assets/include/karts/yoshi_kart.mk b/assets/include/karts/yoshi_kart.mk index 4ecf963579..bc9bce83da 100644 --- a/assets/include/karts/yoshi_kart.mk +++ b/assets/include/karts/yoshi_kart.mk @@ -1482,7 +1482,7 @@ YOSHI_KART_PALETTE_PNG := \ $(YOSHI_KART_DIR)/palettes/kart_288_wheel_3.png \ $(YOSHI_KART_DIR)/palettes/yoshi_kart_palette.png -YOSHI_EXPORT_SENTINEL := $(YOSHI_KART_DIR)/.export.$(VERSION) +YOSHI_EXPORT_SENTINEL := $(YOSHI_KART_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/karts/yoshi_kart.o: $(YOSHI_KART_FRAME_PNG:%.png=%.mio0) $(YOSHI_KART_PALETTE_PNG:%.png=%.bin) @@ -1497,10 +1497,11 @@ $(YOSHI_KART_PALETTE_PNG:%.png=%.bin): %.bin : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s raw -f rgba16 -$(YOSHI_KART_FRAME_PNG) $(YOSHI_KART_PALETTE_PNG): $(YOSHI_EXPORT_SENTINEL) ; +$(YOSHI_KART_FRAME_PNG) $(YOSHI_KART_PALETTE_PNG): $(YOSHI_EXPORT_SENTINEL) + @: -$(YOSHI_EXPORT_SENTINEL): $(ASSET_DIR)/karts/yoshi_kart.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(YOSHI_EXPORT_SENTINEL): $(ASSET_DIR)/karts/yoshi_kart.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_yoshi_kart diff --git a/assets/include/lakitu/bluelight.mk b/assets/include/lakitu/bluelight.mk index 99d8c91653..110c223c6f 100644 --- a/assets/include/lakitu/bluelight.mk +++ b/assets/include/lakitu/bluelight.mk @@ -12,7 +12,7 @@ $(BLUELIGHT_DIR)/gTextureLakituBlueLight6.png \ $(BLUELIGHT_DIR)/gTextureLakituBlueLight7.png \ $(BLUELIGHT_DIR)/gTextureLakituBlueLight8.png -BLUELIGHT_EXPORT_SENTINEL := $(BLUELIGHT_DIR)/.export.$(VERSION) +BLUELIGHT_EXPORT_SENTINEL := $(BLUELIGHT_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(BLUELIGHT_FRAMES:%.png=%.bin) @@ -26,10 +26,11 @@ $(BLUELIGHT_PALETTE:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(BLUELIGHT_FRAMES) $(BLUELIGHT_PALETTE): $(BLUELIGHT_EXPORT_SENTINEL) ; +$(BLUELIGHT_FRAMES) $(BLUELIGHT_PALETTE): $(BLUELIGHT_EXPORT_SENTINEL) + @: -$(BLUELIGHT_EXPORT_SENTINEL): assets/lakitu/bluelight.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(BLUELIGHT_EXPORT_SENTINEL): assets/lakitu/bluelight.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_lakitu_bluelight diff --git a/assets/include/lakitu/checkeredflag.mk b/assets/include/lakitu/checkeredflag.mk index 7088e4ea5a..afc86ec33c 100644 --- a/assets/include/lakitu/checkeredflag.mk +++ b/assets/include/lakitu/checkeredflag.mk @@ -36,7 +36,7 @@ $(CHECKEREDFLAG_DIR)/gTextureLakituCheckeredFlag30.png \ $(CHECKEREDFLAG_DIR)/gTextureLakituCheckeredFlag31.png \ $(CHECKEREDFLAG_DIR)/gTextureLakituCheckeredFlag32.png -CHECKEREDFLAG_EXPORT_SENTINEL := $(CHECKEREDFLAG_DIR)/.export.$(VERSION) +CHECKEREDFLAG_EXPORT_SENTINEL := $(CHECKEREDFLAG_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(CHECKEREDFLAG_FRAMES:%.png=%.bin) @@ -50,10 +50,11 @@ $(CHECKEREDFLAG_PALETTE:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(CHECKEREDFLAG_FRAMES) $(CHECKEREDFLAG_PALETTE): $(CHECKEREDFLAG_EXPORT_SENTINEL) ; +$(CHECKEREDFLAG_FRAMES) $(CHECKEREDFLAG_PALETTE): $(CHECKEREDFLAG_EXPORT_SENTINEL) + @: -$(CHECKEREDFLAG_EXPORT_SENTINEL): assets/lakitu/checkeredflag.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(CHECKEREDFLAG_EXPORT_SENTINEL): assets/lakitu/checkeredflag.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_lakitu_checkeredflag diff --git a/assets/include/lakitu/finallap.mk b/assets/include/lakitu/finallap.mk index 1648daf735..3987c4f1fa 100644 --- a/assets/include/lakitu/finallap.mk +++ b/assets/include/lakitu/finallap.mk @@ -20,7 +20,7 @@ $(FINALLAP_DIR)/gTextureLakituFinalLap14.png \ $(FINALLAP_DIR)/gTextureLakituFinalLap15.png \ $(FINALLAP_DIR)/gTextureLakituFinalLap16.png -FINALLAP_EXPORT_SENTINEL := $(FINALLAP_DIR)/.export.$(VERSION) +FINALLAP_EXPORT_SENTINEL := $(FINALLAP_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(FINALLAP_FRAMES:%.png=%.bin) @@ -34,10 +34,11 @@ $(FINALLAP_PALETTE:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(FINALLAP_FRAMES) $(FINALLAP_PALETTE): $(FINALLAP_EXPORT_SENTINEL) ; +$(FINALLAP_FRAMES) $(FINALLAP_PALETTE): $(FINALLAP_EXPORT_SENTINEL) + @: -$(FINALLAP_EXPORT_SENTINEL): assets/lakitu/finallap.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(FINALLAP_EXPORT_SENTINEL): assets/lakitu/finallap.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_lakitu_finallap diff --git a/assets/include/lakitu/fishing.mk b/assets/include/lakitu/fishing.mk index 49fd590496..9e5767b489 100644 --- a/assets/include/lakitu/fishing.mk +++ b/assets/include/lakitu/fishing.mk @@ -8,7 +8,7 @@ $(FISHING_DIR)/gTextureLakituFishing2.png \ $(FISHING_DIR)/gTextureLakituFishing3.png \ $(FISHING_DIR)/gTextureLakituFishing4.png -FISHING_EXPORT_SENTINEL := $(FISHING_DIR)/.export.$(VERSION) +FISHING_EXPORT_SENTINEL := $(FISHING_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(FISHING_FRAMES:%.png=%.bin) @@ -22,10 +22,11 @@ $(FISHING_PALETTE:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(FISHING_FRAMES) $(FISHING_PALETTE): $(FISHING_EXPORT_SENTINEL) ; +$(FISHING_FRAMES) $(FISHING_PALETTE): $(FISHING_EXPORT_SENTINEL) + @: -$(FISHING_EXPORT_SENTINEL): assets/lakitu/fishing.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(FISHING_EXPORT_SENTINEL): assets/lakitu/fishing.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_lakitu_fishing diff --git a/assets/include/lakitu/nolights.mk b/assets/include/lakitu/nolights.mk index cfa6c39612..53ecd7b61c 100644 --- a/assets/include/lakitu/nolights.mk +++ b/assets/include/lakitu/nolights.mk @@ -12,7 +12,7 @@ $(NOLIGHTS_DIR)/gTextureLakituNoLights6.png \ $(NOLIGHTS_DIR)/gTextureLakituNoLights7.png \ $(NOLIGHTS_DIR)/gTextureLakituNoLights8.png -NOLIGHTS_EXPORT_SENTINEL := $(NOLIGHTS_DIR)/.export.$(VERSION) +NOLIGHTS_EXPORT_SENTINEL := $(NOLIGHTS_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(NOLIGHTS_FRAMES:%.png=%.bin) @@ -26,10 +26,11 @@ $(NOLIGHTS_PALETTE:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(NOLIGHTS_FRAMES) $(NOLIGHTS_PALETTE): $(NOLIGHTS_EXPORT_SENTINEL) ; +$(NOLIGHTS_FRAMES) $(NOLIGHTS_PALETTE): $(NOLIGHTS_EXPORT_SENTINEL) + @: -$(NOLIGHTS_EXPORT_SENTINEL): assets/lakitu/nolights.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(NOLIGHTS_EXPORT_SENTINEL): assets/lakitu/nolights.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_lakitu_nolights diff --git a/assets/include/lakitu/redlights.mk b/assets/include/lakitu/redlights.mk index 5d26d4d886..568b8e5e8d 100644 --- a/assets/include/lakitu/redlights.mk +++ b/assets/include/lakitu/redlights.mk @@ -20,7 +20,7 @@ $(REDLIGHTS_DIR)/gTextureLakituRedLights14.png \ $(REDLIGHTS_DIR)/gTextureLakituRedLights15.png \ $(REDLIGHTS_DIR)/gTextureLakituRedLights16.png -REDLIGHTS_EXPORT_SENTINEL := $(REDLIGHTS_DIR)/.export.$(VERSION) +REDLIGHTS_EXPORT_SENTINEL := $(REDLIGHTS_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(REDLIGHTS_FRAMES:%.png=%.bin) @@ -34,10 +34,11 @@ $(REDLIGHTS_PALETTE:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(REDLIGHTS_FRAMES) $(REDLIGHTS_PALETTE): $(REDLIGHTS_EXPORT_SENTINEL) ; +$(REDLIGHTS_FRAMES) $(REDLIGHTS_PALETTE): $(REDLIGHTS_EXPORT_SENTINEL) + @: -$(REDLIGHTS_EXPORT_SENTINEL): assets/lakitu/redlights.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(REDLIGHTS_EXPORT_SENTINEL): assets/lakitu/redlights.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_lakitu_redlights diff --git a/assets/include/lakitu/reverse.mk b/assets/include/lakitu/reverse.mk index 52cafc19b7..46d2ad6f76 100644 --- a/assets/include/lakitu/reverse.mk +++ b/assets/include/lakitu/reverse.mk @@ -20,7 +20,7 @@ $(REVERSE_DIR)/gTextureLakituReverse14.png \ $(REVERSE_DIR)/gTextureLakituReverse15.png \ $(REVERSE_DIR)/gTextureLakituReverse16.png -REVERSE_EXPORT_SENTINEL := $(REVERSE_DIR)/.export.$(VERSION) +REVERSE_EXPORT_SENTINEL := $(REVERSE_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(REVERSE_FRAMES:%.png=%.bin) @@ -34,10 +34,11 @@ $(REVERSE_PALETTE:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(REVERSE_FRAMES) $(REVERSE_PALETTE): $(REVERSE_EXPORT_SENTINEL) ; +$(REVERSE_FRAMES) $(REVERSE_PALETTE): $(REVERSE_EXPORT_SENTINEL) + @: -$(REVERSE_EXPORT_SENTINEL): assets/lakitu/reverse.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(REVERSE_EXPORT_SENTINEL): assets/lakitu/reverse.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_lakitu_reverse diff --git a/assets/include/lakitu/secondlap.mk b/assets/include/lakitu/secondlap.mk index f2bc438e26..19910e0cd3 100644 --- a/assets/include/lakitu/secondlap.mk +++ b/assets/include/lakitu/secondlap.mk @@ -20,7 +20,7 @@ $(SECONDLAP_DIR)/gTextureLakituSecondLap14.png \ $(SECONDLAP_DIR)/gTextureLakituSecondLap15.png \ $(SECONDLAP_DIR)/gTextureLakituSecondLap16.png -SECONDLAP_EXPORT_SENTINEL := $(SECONDLAP_DIR)/.export.$(VERSION) +SECONDLAP_EXPORT_SENTINEL := $(SECONDLAP_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(SECONDLAP_FRAMES:%.png=%.bin) @@ -34,10 +34,11 @@ $(SECONDLAP_PALETTE:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(SECONDLAP_FRAMES) $(SECONDLAP_PALETTE): $(SECONDLAP_EXPORT_SENTINEL) ; +$(SECONDLAP_FRAMES) $(SECONDLAP_PALETTE): $(SECONDLAP_EXPORT_SENTINEL) + @: -$(SECONDLAP_EXPORT_SENTINEL): assets/lakitu/secondlap.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(SECONDLAP_EXPORT_SENTINEL): assets/lakitu/secondlap.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_lakitu_secondlap diff --git a/assets/include/minimap_icons.mk b/assets/include/minimap_icons.mk index 8606649b68..d7d4e32dea 100644 --- a/assets/include/minimap_icons.mk +++ b/assets/include/minimap_icons.mk @@ -12,7 +12,7 @@ $(MINIMAP_ICONS_DIR)/common_texture_minimap_kart_peach.png \ $(MINIMAP_ICONS_DIR)/common_texture_minimap_kart_bowser.png \ $(MINIMAP_ICONS_DIR)/common_texture_minimap_progress_dot.png -MINIMAP_ICONS_EXPORT_SENTINEL := $(MINIMAP_ICONS_DIR)/.export.$(VERSION) +MINIMAP_ICONS_EXPORT_SENTINEL := $(MINIMAP_ICONS_DIR)/.export $(BUILD_DIR)/src/data/common_textures.o: $(MINIMAP_ICONS_PNG:%.png=%.inc.c) @@ -20,10 +20,11 @@ $(MINIMAP_ICONS_PNG:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(MINIMAP_ICONS_PNG): $(MINIMAP_ICONS_EXPORT_SENTINEL) ; +$(MINIMAP_ICONS_PNG): $(MINIMAP_ICONS_EXPORT_SENTINEL) + @: -$(MINIMAP_ICONS_EXPORT_SENTINEL): $(ASSET_DIR)/minimap_icons.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(MINIMAP_ICONS_EXPORT_SENTINEL): $(ASSET_DIR)/minimap_icons.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_minimap_icons diff --git a/assets/include/onomatopoeia.mk b/assets/include/onomatopoeia.mk index f6ef816322..859c3d5f99 100644 --- a/assets/include/onomatopoeia.mk +++ b/assets/include/onomatopoeia.mk @@ -12,7 +12,7 @@ $(ONOMATOPOEIA_DIR)/gTextureOnomatopoeiaPoomp2.png \ $(ONOMATOPOEIA_DIR)/gTextureBalloon1.png \ $(ONOMATOPOEIA_DIR)/gTextureBalloon2.png -ONOMATOPOEIA_EXPORT_SENTINEL := $(ONOMATOPOEIA_DIR)/.export.$(VERSION) +ONOMATOPOEIA_EXPORT_SENTINEL := $(ONOMATOPOEIA_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(ONOMATOPOEIA_PNG:%.png=%.mio0) $(BUILD_DIR)/src/data/some_data.o: $(ONOMATOPOEIA_PALETTE:%.png=%.inc.c) @@ -28,10 +28,11 @@ $(ONOMATOPOEIA_PALETTE:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(ONOMATOPOEIA_PNG) $(ONOMATOPOEIA_PALETTE): $(ONOMATOPOEIA_EXPORT_SENTINEL) ; +$(ONOMATOPOEIA_PNG) $(ONOMATOPOEIA_PALETTE): $(ONOMATOPOEIA_EXPORT_SENTINEL) + @: -$(ONOMATOPOEIA_EXPORT_SENTINEL): $(ASSET_DIR)/onomatopoeia.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(ONOMATOPOEIA_EXPORT_SENTINEL): $(ASSET_DIR)/onomatopoeia.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_onomatopoeia diff --git a/assets/include/player_emblems.mk b/assets/include/player_emblems.mk index dafa9478c5..153b2f3816 100644 --- a/assets/include/player_emblems.mk +++ b/assets/include/player_emblems.mk @@ -8,7 +8,7 @@ $(PLAYER_EMBLEM_DIR)/common_texture_player_emblem_2p.png \ $(PLAYER_EMBLEM_DIR)/common_texture_player_emblem_3p.png \ $(PLAYER_EMBLEM_DIR)/common_texture_player_emblem_4p.png -PLAYER_EMBLEM_EXPORT_SENTINEL := $(PLAYER_EMBLEM_DIR)/.export.$(VERSION) +PLAYER_EMBLEM_EXPORT_SENTINEL := $(PLAYER_EMBLEM_DIR)/.export $(BUILD_DIR)/src/data/common_textures.o: $(PLAYER_EMBLEM_PNGS:%.png=%.inc.c) $(PLAYER_EMBLEM_PALETTE:%.png=%.inc.c) @@ -20,10 +20,11 @@ $(PLAYER_EMBLEM_PALETTE:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(PLAYER_EMBLEM_PNGS) $(PLAYER_EMBLEM_PALETTE): $(PLAYER_EMBLEM_EXPORT_SENTINEL) ; +$(PLAYER_EMBLEM_PNGS) $(PLAYER_EMBLEM_PALETTE): $(PLAYER_EMBLEM_EXPORT_SENTINEL) + @: -$(PLAYER_EMBLEM_EXPORT_SENTINEL): $(ASSET_DIR)/player_emblems.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(PLAYER_EMBLEM_EXPORT_SENTINEL): $(ASSET_DIR)/player_emblems.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_player_emblems diff --git a/assets/include/startup_logo.mk b/assets/include/startup_logo.mk index f6725cd8cf..d5290f96aa 100644 --- a/assets/include/startup_logo.mk +++ b/assets/include/startup_logo.mk @@ -2,7 +2,7 @@ STARTUP_LOGO := assets/startup_logo REFLECTION_MAP := $(STARTUP_LOGO)/gTextureReflectionMapGold.png -STARTUP_LOGO_EXPORT_SENTINEL := $(STARTUP_LOGO)/.export.$(VERSION) +STARTUP_LOGO_EXPORT_SENTINEL := $(STARTUP_LOGO)/.export $(BUILD_DIR)/src/data/startup_logo.o: $(REFLECTION_MAP:%.png=%.inc.c) @@ -10,10 +10,11 @@ $(REFLECTION_MAP:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(REFLECTION_MAP): $(STARTUP_LOGO_EXPORT_SENTINEL) ; +$(REFLECTION_MAP): $(STARTUP_LOGO_EXPORT_SENTINEL) + @: -$(STARTUP_LOGO_EXPORT_SENTINEL): $(ASSET_DIR)/startup_logo.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(STARTUP_LOGO_EXPORT_SENTINEL): $(ASSET_DIR)/startup_logo.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_startup_logo diff --git a/assets/include/trees.mk b/assets/include/trees.mk index b1b059a206..25847976be 100644 --- a/assets/include/trees.mk +++ b/assets/include/trees.mk @@ -19,7 +19,7 @@ $(TREES_DIR)/gTextureTrees5Right.png \ $(TREES_DIR)/gTextureTrees6.png \ $(TREES_DIR)/gTextureTrees7.png -TREES_EXPORT_SENTINEL := $(TREES_DIR)/.export.$(VERSION) +TREES_EXPORT_SENTINEL := $(TREES_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(TREES_PNG:%.png=%.mio0) @@ -36,10 +36,11 @@ $(TREES_PALETTE:%.png=%.inc.c) $(TREES_PALETTE_IMPORT:%.png=%.inc.c): %.inc.c : @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(TREES_PNG) $(TREES_PALETTE) $(TREES_PALETTE_IMPORT): $(TREES_EXPORT_SENTINEL) ; +$(TREES_PNG) $(TREES_PALETTE) $(TREES_PALETTE_IMPORT): $(TREES_EXPORT_SENTINEL) + @: -$(TREES_EXPORT_SENTINEL): $(ASSET_DIR)/trees.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(TREES_EXPORT_SENTINEL): $(ASSET_DIR)/trees.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_trees diff --git a/assets/include/unused_traffic_light.mk b/assets/include/unused_traffic_light.mk index c9d514075a..b3c60cb0d0 100644 --- a/assets/include/unused_traffic_light.mk +++ b/assets/include/unused_traffic_light.mk @@ -14,7 +14,7 @@ $(UNUSED_TRAFFIC_LIGHT_DIR)/common_texture_traffic_light_08.png \ $(UNUSED_TRAFFIC_LIGHT_DIR)/common_texture_traffic_light_09.png \ $(UNUSED_TRAFFIC_LIGHT_DIR)/common_texture_traffic_light_10.png -UNUSED_TRAFFIC_LIGHT_EXPORT_SENTINEL := $(UNUSED_TRAFFIC_LIGHT_DIR)/.export.$(VERSION) +UNUSED_TRAFFIC_LIGHT_EXPORT_SENTINEL := $(UNUSED_TRAFFIC_LIGHT_DIR)/.export $(BUILD_DIR)/src/data/common_textures.o: $(UNUSED_TRAFFIC_LIGHT_PNG:%.png=%.inc.c) $(UNUSED_TRAFFIC_LIGHT_PALETTE:%.png=%.inc.c) @@ -26,10 +26,11 @@ $(UNUSED_TRAFFIC_LIGHT_PALETTE:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(UNUSED_TRAFFIC_LIGHT_PNG) $(UNUSED_TRAFFIC_LIGHT_PALETTE): $(UNUSED_TRAFFIC_LIGHT_EXPORT_SENTINEL) ; +$(UNUSED_TRAFFIC_LIGHT_PNG) $(UNUSED_TRAFFIC_LIGHT_PALETTE): $(UNUSED_TRAFFIC_LIGHT_EXPORT_SENTINEL) + @: -$(UNUSED_TRAFFIC_LIGHT_EXPORT_SENTINEL): $(ASSET_DIR)/unused_traffic_light.json - $(V)$(ASSET_EXTRACT) $(BASEROM) $< +$(UNUSED_TRAFFIC_LIGHT_EXPORT_SENTINEL): $(ASSET_DIR)/unused_traffic_light.json $(ASSET_VERSION_STAMP) + $(V)$(ASSET_EXTRACT) $(ASSET_BASEROM) $< $(V)$(TOUCH) $@ .PHONY: distclean_unused_traffic_light From cc10755f66bd629482f29b005dde3ca6e4b7d8bd Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 04:31:02 -0700 Subject: [PATCH 19/41] jp.v11: audio banks, sample table and the five changed sequences JP ships its own audio: every bank differs, the sample table is 0x180 larger, and 5 of the 30 sequences are different music. Map them instead of carrying the blobs. The banks and sample table get their own entries, the way eu.v10 already has bin/audiobanks.eu.bin, because their contents differ rather than merely moving. The sequences do not need that. 29 of the 30 already carried a jp.v11 offset, and extraction writes the built version's bytes to the shared music/*.m64 path, which is what the other 25 sequences have always relied on. So the five .ifdef VERSION_JP blocks pointing at .jp.v11.m64 paths were doing nothing the offset did not already do; drop them and let all thirty read alike. 00_seq_00 needed the offset plus a size override, being 0x50 bytes longer in JP. Same for the onomatopoeia TLUT, which turns out to be identical in both versions anyway: 512 values, byte for byte. Co-Authored-By: Claude Fable 5 --- assets.json | 4 +++- data/sound_data/sequences.s | 20 -------------------- src/data/some_data.c | 4 ---- 3 files changed, 3 insertions(+), 25 deletions(-) diff --git a/assets.json b/assets.json index 8a865e9e17..b3f5f2ccd6 100644 --- a/assets.json +++ b/assets.json @@ -61,9 +61,11 @@ "bin/lib/PR/audio/aspMain_data.bin": {"meta":{"size":"0x300"}, "offsets":{"us":["0x0F5900","0x0"],"jp.v11":["0xf6ab0","0x0"]}}, "bin/audiobanks.us.bin": {"meta":{"size": "0x13840"}, "offsets":{"us":["0x966260","0x0"],"eu.v11":["0x966380","0x0"]}}, "bin/audiobanks.eu.bin": {"meta":{"size": "0x13840"}, "offsets":{"eu.v10":["0x966460","0x0"]}}, +"bin/audiobanks.jp.v11.bin": {"meta":{"size": "0x138C0"}, "offsets":{"jp.v11":["0x964470","0x0"]}}, "bin/audiotables.bin": {"meta":{"size": "0x24C4C0"}, "offsets":{"us":["0x979AA0","0x0"]}}, +"bin/audiotables.jp.v11.bin": {"meta":{"size": "0x24C640"}, "offsets":{"jp.v11":["0x977D30","0x0"]}}, -"music/00_seq_00.m64": {"meta":{"size":"0x2830"}, "offsets": {"us":["0xBC6060", "0x0"]}}, +"music/00_seq_00.m64": {"meta":{"size":"0x2830", "overrides":{"jp.v11":{"size":"0x2880"}}}, "offsets": {"us":["0xBC6060", "0x0"], "jp.v11":["0xBC4470","0x0"]}}, "music/01_title_screen.m64": {"meta":{"size":"0x1B30"}, "offsets":{"us":["0xBC8890","0x0"],"jp.v11":["0xbc6cf0","0x0"]}}, "music/02_main_menu.m64": {"meta":{"size":"0x0D60"}, "offsets":{"us":["0xBCA3C0","0x0"],"jp.v11":["0xbc8820","0x0"]}}, "music/03_racways_wario_stadium.m64": {"meta":{"size":"0x1A10"}, "offsets":{"us":["0xBCB120","0x0"],"jp.v11":["0xbc9580","0x0"]}}, diff --git a/data/sound_data/sequences.s b/data/sound_data/sequences.s index 4776c74143..824b427dea 100644 --- a/data/sound_data/sequences.s +++ b/data/sound_data/sequences.s @@ -44,19 +44,11 @@ glabel music_sequence_table_end .align 4, 0x00 glabel seq_00 -.ifdef VERSION_JP -.incbin "music/00_seq_00.jp.v11.m64" -.else .incbin "music/00_seq_00.m64" -.endif glabel seq_00_end glabel seq_01 -.ifdef VERSION_JP -.incbin "music/01_title_screen.jp.v11.m64" -.else .incbin "music/01_title_screen.m64" -.endif glabel seq_01_end glabel seq_02 @@ -68,19 +60,11 @@ glabel seq_03 glabel seq_03_end glabel seq_04 -.ifdef VERSION_JP -.incbin "music/04_moo_moo_fame_yoshi_valley.jp.v11.m64" -.else .incbin "music/04_moo_moo_fame_yoshi_valley.m64" -.endif glabel seq_04_end glabel seq_05 -.ifdef VERSION_JP -.incbin "music/05_choco_mountain.jp.v11.m64" -.else .incbin "music/05_choco_mountain.m64" -.endif glabel seq_05_end glabel seq_06 @@ -92,11 +76,7 @@ glabel seq_07 glabel seq_07_end glabel seq_08 -.ifdef VERSION_JP -.incbin "music/08_seq_08.jp.v11.m64" -.else .incbin "music/08_seq_08.m64" -.endif glabel seq_08_end glabel seq_09 diff --git a/src/data/some_data.c b/src/data/some_data.c index 299b70dcfd..372d255044 100644 --- a/src/data/some_data.c +++ b/src/data/some_data.c @@ -182,11 +182,7 @@ Vtx gBalloonVertexPlane2[] = { }; u8 D_800E52D0[] = { -#ifdef VERSION_JP -#include "assets/onomatopoeia/gTLUTOnomatopoeia.jp.inc.c" -#else #include "assets/onomatopoeia/gTLUTOnomatopoeia.inc.c" -#endif }; u8* gCourseOutlineTextures[] = { From bba31734904aec6790c8d461b3b4eaac9e1ab1e4 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 04:44:52 -0700 Subject: [PATCH 20/41] jp.v11: course name tables, and the last two link symbols JP shows three forms of each course name where US shows one: romanised ascii, japanese, and japanese with one name shortened to fit. menu_items.c already expected three files; nothing produced them. Torch's mk64:metadata factory writes exactly one names table per config entry, from the fixed `name` field, alongside nineteen other tables built from the same course metadata, and its parser requires every field of every course. Three names tables would therefore mean three copies of all twenty-one fully populated course yamls, differing in a single string and re-emitting nineteen identical tables each time. That is the per-version duplication this branch removes everywhere else. So the twenty names live in tools/jp_course_names.json and a small script writes the three tables in EUC-JP. They are hand-authored map data exactly like `name: banshee boardwalk` already is in the course yamls; they just do not need the twenty-table machinery. If the factory ever takes the names field from its config entry, the json folds back into yamls/courses and no source changes. Also defines the two symbols the JP link was missing. D_0B002900 is the segment-0B texture US has at 0x0B002A00 and belongs beside it. gCreditsTextExtra is different in kind and is called out in the file: JP's mirror-mode credits table is not decompiled, so it is an address rather than source, and it is the one place this target is not built from the repo. With these, jp.v11 links and produces a ROM. It does not match yet. Co-Authored-By: Claude Fable 5 --- Makefile | 12 +++ tools/generate_jp_course_names.py | 59 ++++++++++++++ tools/jp_course_names.json | 125 ++++++++++++++++++++++++++++++ undefined_syms.txt | 9 +++ 4 files changed, 205 insertions(+) create mode 100644 tools/generate_jp_course_names.py create mode 100644 tools/jp_course_names.json diff --git a/Makefile b/Makefile index a3d7edc688..8c62a9156a 100644 --- a/Makefile +++ b/Makefile @@ -538,6 +538,18 @@ ASSET_VERSION_STAMP := $(ASSET_DIR)/.version DUMMY_ASSET_VERSION != [ "$$(cat $(ASSET_VERSION_STAMP) 2>/dev/null)" = "$(ASSET_VERSION)" ] || \ { mkdir -p $(dir $(ASSET_VERSION_STAMP)) && echo "$(ASSET_VERSION)" > $(ASSET_VERSION_STAMP); } +# JP shows three forms of each course name where US shows one, and Torch writes a +# single names table per config entry. See tools/generate_jp_course_names.py. +JP_COURSE_NAMES := $(foreach n,1 2 3,$(ASSET_DIR)/course_metadata/gCourseNames.jp$(n).inc.c) + +$(JP_COURSE_NAMES): $(TOOLS_DIR)/jp_course_names.json $(TOOLS_DIR)/generate_jp_course_names.py + $(call print,Generating:,$<,$(ASSET_DIR)/course_metadata) + $(V)$(PYTHON) $(TOOLS_DIR)/generate_jp_course_names.py $(ASSET_DIR)/course_metadata + +ifeq ($(VERSION),jp.v11) + $(BUILD_DIR)/src/menu_items.jp.o: $(JP_COURSE_NAMES) +endif + ASSET_INCLUDES := $(shell find $(ASSET_DIR)/include -type f -name "*.mk") $(foreach inc,$(ASSET_INCLUDES),$(eval include $(inc))) diff --git a/tools/generate_jp_course_names.py b/tools/generate_jp_course_names.py new file mode 100644 index 0000000000..563ca667d5 --- /dev/null +++ b/tools/generate_jp_course_names.py @@ -0,0 +1,59 @@ +#!/usr/bin/env python3 +"""Write the three JP v1.1 course-name tables that menu_items.c includes. + +US shows one English name everywhere, so `gCourseNames`, `gCourseNamesDup` and +`gCourseNamesDup2` all include the same generated file. JP shows three different +forms and needs three tables: + + gCourseNames romanised ascii "mario circuit", "noko noko beach" + gCourseNamesDup japanese "マリオサーキット" + gCourseNamesDup2 japanese, and one name shortened to fit + "ドンキージャングル" not "…パーク" + +Why these are not in yamls/courses/*_metadata.yml with the US names +------------------------------------------------------------------- +Torch's mk64:metadata factory emits twenty files from one course-metadata set +(names, cup tables, path tables, CPU tuning, sky colours, bomb-kart spawns) and +its parser requires every field of every course. It writes exactly one names +table per config entry, from the fixed `name` field. + +So a second names table means a second config entry, which means a second copy +of all twenty-one fully populated course yamls, differing in a single string and +re-emitting nineteen identical tables alongside. A third means a third copy. +That is the per-version duplication this branch removes everywhere else, and it +would be the largest single thing in the diff for the smallest reason. + +These twenty names are hand-authored map data exactly like `name: banshee +boardwalk` already is in the course yamls; they simply do not need Torch's +twenty-table machinery to express. If the factory ever learns to take the names +table's source field from its config entry, this file and its json fold back +into yamls/courses and nothing else changes. + +The output is EUC-JP, the encoding the cartridge and menu_items.c use. + + generate_jp_course_names.py +""" +import json +import os +import sys + +FIELDS = (("romaji", "gCourseNames.jp1.inc.c"), + ("name", "gCourseNames.jp2.inc.c"), + ("short", "gCourseNames.jp3.inc.c")) + + +def main(): + out_dir = sys.argv[1] + here = os.path.dirname(os.path.realpath(__file__)) + courses = json.load(open(os.path.join(here, "jp_course_names.json")))["courses"] + os.makedirs(out_dir, exist_ok=True) + for key, filename in FIELDS: + # Same shape as the table Torch writes for US: one quoted name per + # course, in course-id order, spliced into a char* array initialiser. + body = "".join('"%s", ' % c[key] for c in courses) + "\n" + with open(os.path.join(out_dir, filename), "wb") as f: + f.write(body.encode("euc_jp")) + print("%d courses -> %s" % (len(courses), ", ".join(f for _, f in FIELDS))) + + +main() diff --git a/tools/jp_course_names.json b/tools/jp_course_names.json new file mode 100644 index 0000000000..899840044a --- /dev/null +++ b/tools/jp_course_names.json @@ -0,0 +1,125 @@ +{ + "_comment": "JP v1.1 course name tables; see tools/generate_jp_course_names.py.", + "courses": [ + { + "us": "mario raceway", + "romaji": "mario circuit", + "name": "マリオサーキット", + "short": "マリオサーキット" + }, + { + "us": "choco mountain", + "romaji": "choco mountain", + "name": "チョコマウンテン", + "short": "チョコマウンテン" + }, + { + "us": "bowser's castle", + "romaji": "koopa castle", + "name": "クッパキャッスル", + "short": "クッパキャッスル" + }, + { + "us": "banshee boardwalk", + "romaji": "hyuudoro lake", + "name": "ヒュ^ドロいけ", + "short": "ヒュ^ドロいけ" + }, + { + "us": "yoshi valley", + "romaji": "yoshi valley", + "name": "ヨッシーバレー", + "short": "ヨッシーバレー" + }, + { + "us": "frappe snowland", + "romaji": "frappe snowland", + "name": "フラッペスノーランド", + "short": "フラッペスノーランド" + }, + { + "us": "koopa troopa beach", + "romaji": "noko noko beach", + "name": "ノコノコビーチ", + "short": "ノコノコビーチ" + }, + { + "us": "royal raceway", + "romaji": "peach circuit", + "name": "ピーチサーキット", + "short": "ピーチサーキット" + }, + { + "us": "luigi raceway", + "romaji": "luigi circuit", + "name": "ルイージサーキット", + "short": "ルイージサーキット" + }, + { + "us": "moo moo farm", + "romaji": "moh moh farm", + "name": "モ^モ^ファーム", + "short": "モ^モ^ファーム" + }, + { + "us": "toad's turnpike", + "romaji": "kinopio highway", + "name": "キノピオハイウェイ", + "short": "キノピオハイウェイ" + }, + { + "us": "kalimari desert", + "romaji": "kara kara desert", + "name": "カラカラさばく", + "short": "カラカラさばく" + }, + { + "us": "sherbet land", + "romaji": "sherbet land", + "name": "シャーベットランド", + "short": "シャーベットランド" + }, + { + "us": "rainbow road", + "romaji": "rainbow road", + "name": "レインボーロード", + "short": "レインボーロード" + }, + { + "us": "wario stadium", + "romaji": "wario stadium", + "name": "ワリオスタジアム", + "short": "ワリオスタジアム" + }, + { + "us": "block fort", + "romaji": "block fortress", + "name": "ブロックとりで", + "short": "ブロックとりで" + }, + { + "us": "skyscraper", + "romaji": "sky scraper", + "name": "まてんろう", + "short": "まてんろう" + }, + { + "us": "double deck", + "romaji": "double deck", + "name": "ダブルデッキ", + "short": "ダブルデッキ" + }, + { + "us": "d.k.'s jungle parkway", + "romaji": "donkey jungle park", + "name": "ドンキージャングルパーク", + "short": "ドンキージャングル" + }, + { + "us": "big donut", + "romaji": "big doughnut", + "name": "ビッグドーナッツ", + "short": "ビッグドーナッツ" + } + ] +} diff --git a/undefined_syms.txt b/undefined_syms.txt index 2643ad2d12..b7168a7335 100644 --- a/undefined_syms.txt +++ b/undefined_syms.txt @@ -39,6 +39,15 @@ D_03008800 = 0x03008800; D_05FF8DB8 = 0x05FF8DB8; D_0B002A00 = 0x0B002A00; +/* JP's copy of the same segment-0B texture sits 0x100 earlier; see + sStaticNoiseTexture in menu_items.c. */ +D_0B002900 = 0x0B002900; + +/* JP-only. Extra (mirror) mode shows a second credits table, which this points + into. Unlike gCreditsText in src/ending/credits.c its 165 strings are not + decompiled yet, so this is an address rather than source. It is the one place + the JP target is not yet built from the repo. */ +gCreditsTextExtra = 0x8028532C; D_A5000508 = 0xA5000508; D_A5000510 = 0xA5000510; From a79ef6fb4f83ae2c63176c7c59f45efe7075242b Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 04:53:30 -0700 Subject: [PATCH 21/41] jp.v11: define gCreditsTextExtra from gCreditsText, not an address MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit JP packs both credit sets into one table: the english names occupy the first 63 entries of gCreditsText and the japanese ones the second 63, starting at エグゼクティブ プロデューサー. Mirror mode shows the japanese half, which is what gCreditsTextExtra points at - the same table entered at its midpoint rather than a second table. It was a bare address, which read as data the repo does not build. It is not: gCreditsText is ordinary source in src/ending/credits.c and this is an offset into it. Say so, and derive the symbol from it. The ROM is byte for byte identical either way. Co-Authored-By: Claude Fable 5 --- undefined_syms.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/undefined_syms.txt b/undefined_syms.txt index b7168a7335..22cdcd1e4b 100644 --- a/undefined_syms.txt +++ b/undefined_syms.txt @@ -43,11 +43,11 @@ D_0B002A00 = 0x0B002A00; sStaticNoiseTexture in menu_items.c. */ D_0B002900 = 0x0B002900; -/* JP-only. Extra (mirror) mode shows a second credits table, which this points - into. Unlike gCreditsText in src/ending/credits.c its 165 strings are not - decompiled yet, so this is an address rather than source. It is the one place - the JP target is not yet built from the repo. */ -gCreditsTextExtra = 0x8028532C; +/* JP-only. gCreditsText holds both credit sets in one table: the english names + in the first 63 entries, the japanese ones in the second 63. Mirror mode + shows the japanese half, which is this symbol - the same table entered at its + midpoint, not a second table. */ +gCreditsTextExtra = gCreditsText + 0xFC; D_A5000508 = 0xA5000508; D_A5000510 = 0xA5000510; From 9a1b003d7feb5c510c01969e585737be9816c945 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 05:07:14 -0700 Subject: [PATCH 22/41] jp.v11: offsets for the remaining extracted textures Completes the jp.v11 side of assets.json. Every asset that needs a JP offset now has one; what is left without is US-only or EU-only, and has its own jp.v11 entry elsewhere. Two groups. The 36 common textures share one MIO0 block, which sits at 0x1323A0 in JP against 0x132B50 in US and decompresses to the same 184664 bytes, so the layout is unchanged and every asset in it moves by a constant 0xA40. Each was located by finding its bytes uniquely inside the decompressed block and the delta checked across all 36. The other 39 are the decoded copies of the tkmk00 blobs, sharing their offsets, so they take the offsets the blobs already use. Neither group is a build input: the ROM takes the common textures from Torch's assets/code//common_data and the tkmk00 art from the bin/ blobs. These entries are what make `extract_assets.py jp.v11` give a JP player their own artwork instead of the American, which is the point of the map. Co-Authored-By: Claude Fable 5 --- assets.json | 150 ++++++++++++++++++++++++++-------------------------- 1 file changed, 75 insertions(+), 75 deletions(-) diff --git a/assets.json b/assets.json index b3f5f2ccd6..0e24afbd13 100644 --- a/assets.json +++ b/assets.json @@ -247,45 +247,45 @@ "textures/common/common_texture_flat_banana.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x132B50","0x03B48"],"jp.v11":["0x1323a0","0x03B48"]}}, "textures/common/132B50_06A58.i4.png": {"meta":{"dims":[16,16]}, "offsets":{"us":["0x132B50","0x06A58"],"jp.v11":["0x1323a0","0x06A58"]}}, "textures/common/132B50_06AD8.ia8.png": {"meta":{"dims":[32,32]}, "offsets":{"us":["0x132B50","0x06AD8"],"jp.v11":["0x1323a0","0x06AD8"]}}, -"textures/common/common_texture_speedometer.i4.png": {"meta":{"dims":[64,96]}, "offsets": {"us":["0x132B50", "0x09958"]}}, -"textures/common/common_texture_speedometer_needle.i4.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x132B50", "0x0A558"]}}, -"textures/common/common_texture_hud_lap.rgba16.png": {"meta":{"dims":[32,8]}, "offsets": {"us":["0x132B50", "0x0A958"]}}, -"textures/common/common_texture_hud_123.rgba16.png": {"meta":{"dims":[32,8]}, "offsets": {"us":["0x132B50", "0x0AB58"]}}, -"textures/common/common_texture_hud_lap_time.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x0AD58"]}}, -"textures/common/common_texture_hud_lap_1_on_3.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x0B158"]}}, -"textures/common/common_texture_hud_lap_2_on_3.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x0B558"]}}, -"textures/common/common_texture_hud_lap_3_on_3.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x0B958"]}}, -"textures/common/common_texture_hud_total_time.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x0BD58"]}}, -"textures/common/common_texture_hud_time.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x0C158"]}}, -"textures/common/common_texture_hud_normal_digit.rgba16.png": {"meta":{"dims":[104,16]}, "offsets": {"us":["0x132B50", "0x0C558"]}}, -"textures/common/common_texture_hud_1st.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x0D258"]}}, -"textures/common/common_texture_hud_2nd.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x0E258"]}}, -"textures/common/common_texture_hud_3rd.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x0F258"]}}, -"textures/common/common_texture_hud_4th.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x10258"]}}, -"textures/common/common_texture_hud_5th.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x11258"]}}, -"textures/common/common_texture_hud_6th.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x12258"]}}, -"textures/common/common_texture_hud_7th.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x13258"]}}, -"textures/common/common_texture_hud_8th.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x14258"]}}, -"textures/common/132B50_15258.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x132B50", "0x15258"]}}, -"textures/common/132B50_15A58.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x132B50", "0x15A58"]}}, -"textures/common/132B50_16258.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x132B50", "0x16258"]}}, -"textures/common/132B50_16A58.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x132B50", "0x16A58"]}}, +"textures/common/common_texture_speedometer.i4.png": {"meta":{"dims":[64,96]}, "offsets": {"us":["0x132B50", "0x09958"], "jp.v11": ["0x1323A0", "0x08F18"]}}, +"textures/common/common_texture_speedometer_needle.i4.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x132B50", "0x0A558"], "jp.v11": ["0x1323A0", "0x09B18"]}}, +"textures/common/common_texture_hud_lap.rgba16.png": {"meta":{"dims":[32,8]}, "offsets": {"us":["0x132B50", "0x0A958"], "jp.v11": ["0x1323A0", "0x09F18"]}}, +"textures/common/common_texture_hud_123.rgba16.png": {"meta":{"dims":[32,8]}, "offsets": {"us":["0x132B50", "0x0AB58"], "jp.v11": ["0x1323A0", "0x0A118"]}}, +"textures/common/common_texture_hud_lap_time.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x0AD58"], "jp.v11": ["0x1323A0", "0x0A318"]}}, +"textures/common/common_texture_hud_lap_1_on_3.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x0B158"], "jp.v11": ["0x1323A0", "0x0A718"]}}, +"textures/common/common_texture_hud_lap_2_on_3.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x0B558"], "jp.v11": ["0x1323A0", "0x0AB18"]}}, +"textures/common/common_texture_hud_lap_3_on_3.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x0B958"], "jp.v11": ["0x1323A0", "0x0AF18"]}}, +"textures/common/common_texture_hud_total_time.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x0BD58"], "jp.v11": ["0x1323A0", "0x0B318"]}}, +"textures/common/common_texture_hud_time.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x0C158"], "jp.v11": ["0x1323A0", "0x0B718"]}}, +"textures/common/common_texture_hud_normal_digit.rgba16.png": {"meta":{"dims":[104,16]}, "offsets": {"us":["0x132B50", "0x0C558"], "jp.v11": ["0x1323A0", "0x0BB18"]}}, +"textures/common/common_texture_hud_1st.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x0D258"], "jp.v11": ["0x1323A0", "0x0C818"]}}, +"textures/common/common_texture_hud_2nd.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x0E258"], "jp.v11": ["0x1323A0", "0x0D818"]}}, +"textures/common/common_texture_hud_3rd.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x0F258"], "jp.v11": ["0x1323A0", "0x0E818"]}}, +"textures/common/common_texture_hud_4th.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x10258"], "jp.v11": ["0x1323A0", "0x0F818"]}}, +"textures/common/common_texture_hud_5th.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x11258"], "jp.v11": ["0x1323A0", "0x10818"]}}, +"textures/common/common_texture_hud_6th.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x12258"], "jp.v11": ["0x1323A0", "0x11818"]}}, +"textures/common/common_texture_hud_7th.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x13258"], "jp.v11": ["0x1323A0", "0x12818"]}}, +"textures/common/common_texture_hud_8th.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x14258"], "jp.v11": ["0x1323A0", "0x13818"]}}, +"textures/common/132B50_15258.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x132B50", "0x15258"], "jp.v11": ["0x1323A0", "0x14818"]}}, +"textures/common/132B50_15A58.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x132B50", "0x15A58"], "jp.v11": ["0x1323A0", "0x15018"]}}, +"textures/common/132B50_16258.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x132B50", "0x16258"], "jp.v11": ["0x1323A0", "0x15818"]}}, +"textures/common/132B50_16A58.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x132B50", "0x16A58"], "jp.v11": ["0x1323A0", "0x16018"]}}, -"textures/common/common_texture_particle_leaf.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x28DD8"]}}, -"textures/common/common_texture_unused_particle_leaf.rgba16.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x132B50", "0x291D8"]}}, +"textures/common/common_texture_particle_leaf.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x28DD8"], "jp.v11": ["0x1323A0", "0x28398"]}}, +"textures/common/common_texture_unused_particle_leaf.rgba16.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x132B50", "0x291D8"], "jp.v11": ["0x1323A0", "0x28798"]}}, -"textures/common/132B50_293D8.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x132B50", "0x293D8"]}}, -"textures/common/132B50_29458.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x29458"]}}, +"textures/common/132B50_293D8.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x132B50", "0x293D8"], "jp.v11": ["0x1323A0", "0x28998"]}}, +"textures/common/132B50_29458.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x29458"], "jp.v11": ["0x1323A0", "0x28A18"]}}, -"textures/common/132B50_2AA58.rgba16.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x132B50", "0x2AA58"]}}, -"textures/common/common_texture_particle_spark_1.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2AC58"]}}, -"textures/common/common_texture_particle_spark_2.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2B058"]}}, -"textures/common/common_texture_particle_spark_3.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2B458"]}}, -"textures/common/common_texture_particle_spark_4.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2B858"]}}, -"textures/common/common_texture_particle_smoke_1.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2BC58"]}}, -"textures/common/common_texture_particle_smoke_2.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2C058"]}}, -"textures/common/common_texture_particle_smoke_3.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2C458"]}}, -"textures/common/common_texture_particle_smoke_4.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2C858"]}}, +"textures/common/132B50_2AA58.rgba16.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x132B50", "0x2AA58"], "jp.v11": ["0x1323A0", "0x2A018"]}}, +"textures/common/common_texture_particle_spark_1.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2AC58"], "jp.v11": ["0x1323A0", "0x2A218"]}}, +"textures/common/common_texture_particle_spark_2.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2B058"], "jp.v11": ["0x1323A0", "0x2A618"]}}, +"textures/common/common_texture_particle_spark_3.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2B458"], "jp.v11": ["0x1323A0", "0x2AA18"]}}, +"textures/common/common_texture_particle_spark_4.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2B858"], "jp.v11": ["0x1323A0", "0x2AE18"]}}, +"textures/common/common_texture_particle_smoke_1.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2BC58"], "jp.v11": ["0x1323A0", "0x2B218"]}}, +"textures/common/common_texture_particle_smoke_2.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2C058"], "jp.v11": ["0x1323A0", "0x2B618"]}}, +"textures/common/common_texture_particle_smoke_3.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2C458"], "jp.v11": ["0x1323A0", "0x2BA18"]}}, +"textures/common/common_texture_particle_smoke_4.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2C858"], "jp.v11": ["0x1323A0", "0x2BE18"]}}, "textures/standalone/sign_shell_shot_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x641F70","0x00000"],"jp.v11":["0x64d7b0","0x00000"]}}, "textures/standalone/sign_shell_shot_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets":{"us":["0x6422FC","0x00000"],"jp.v11":["0x64db3c","0x00000"]}}, @@ -1034,40 +1034,40 @@ "textures/texture_player_select.rgba16.png": {"meta":{"dims":[220,32],"alpha":"0x01"}, "offsets":{"us":["0x7FA3C0","0x0"],"jp.v11":["0x7ffaa0","0x0"]}}, "textures/texture_option.rgba16.png": {"meta":{"dims":[130,32],"alpha":"0x01"}, "offsets":{"us":["0x7FAFC0","0x0"],"jp.v11":["0x8006a0","0x0"]}}, -"textures/texture_name_dk.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FB8C0", "0x0"]}}, -"textures/texture_name_toad.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FBAC0", "0x0"]}}, -"textures/texture_name_bowser.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FBCC0", "0x0"]}}, -"textures/texture_name_luigi.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FBEC0", "0x0"]}}, -"textures/texture_name_mario.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FC0C0", "0x0"]}}, -"textures/texture_name_peach.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FC2C0", "0x0"]}}, -"textures/texture_name_wario.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FC4C0", "0x0"]}}, -"textures/texture_name_yoshi.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FC6C0", "0x0"]}}, +"textures/texture_name_dk.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FB8C0", "0x0"], "jp.v11": ["0x800fa0", "0x0"]}}, +"textures/texture_name_toad.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FBAC0", "0x0"], "jp.v11": ["0x8011a0", "0x0"]}}, +"textures/texture_name_bowser.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FBCC0", "0x0"], "jp.v11": ["0x8013a0", "0x0"]}}, +"textures/texture_name_luigi.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FBEC0", "0x0"], "jp.v11": ["0x8015a0", "0x0"]}}, +"textures/texture_name_mario.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FC0C0", "0x0"], "jp.v11": ["0x8017a0", "0x0"]}}, +"textures/texture_name_peach.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FC2C0", "0x0"], "jp.v11": ["0x8019a0", "0x0"]}}, +"textures/texture_name_wario.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FC4C0", "0x0"], "jp.v11": ["0x801ba0", "0x0"]}}, +"textures/texture_name_yoshi.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FC6C0", "0x0"], "jp.v11": ["0x801da0", "0x0"]}}, -"textures/gTextureTitleMarioRaceway.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FC8C0", "0x0"]}}, -"textures/gTextureTitleChocoMountain.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FCDC0", "0x0"]}}, -"textures/gTextureTitleBowsersCastle.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FD2C0", "0x0"]}}, -"textures/gTextureTitleBansheeBoardwalk.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FD7C0", "0x0"]}}, -"textures/gTextureTitleYoshiValley.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FDDC0", "0x0"]}}, -"textures/gTextureTitleFrappeSnowland.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FE1C0", "0x0"]}}, -"textures/gTextureTitleKoopaTroopaBeach.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FE6C0", "0x0"]}}, -"textures/gTextureTitleRoyalRaceway.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FEBC0", "0x0"]}}, -"textures/gTextureTitleLuigiRaceway.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FEFC0", "0x0"]}}, -"textures/gTextureTitleMooMooFarm.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FF3C0", "0x0"]}}, -"textures/gTextureTitleToadsTurnpike.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FF7C0", "0x0"]}}, -"textures/gTextureTitleKalimariDesert.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FFCC0", "0x0"]}}, -"textures/gTextureTitleSherbetLand.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x8000C0", "0x0"]}}, -"textures/gTextureTitleRainbowRoad.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x8004C0", "0x0"]}}, -"textures/gTextureTitleWarioStadium.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x8008C0", "0x0"]}}, -"textures/gTextureTitleBlockFort.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x800DC0", "0x0"]}}, -"textures/gTextureTitleSkyscraper.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x8010C0", "0x0"]}}, -"textures/gTextureTitleDoubleDeck.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x8014C0", "0x0"]}}, -"textures/gTextureTitleDKsJungleParkway.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x8018C0", "0x0"]}}, -"textures/gTextureTitleBigDonut.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x801EC0", "0x0"]}}, +"textures/gTextureTitleMarioRaceway.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FC8C0", "0x0"], "jp.v11": ["0x801fa0", "0x0"]}}, +"textures/gTextureTitleChocoMountain.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FCDC0", "0x0"], "jp.v11": ["0x8023a0", "0x0"]}}, +"textures/gTextureTitleBowsersCastle.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FD2C0", "0x0"], "jp.v11": ["0x8027a0", "0x0"]}}, +"textures/gTextureTitleBansheeBoardwalk.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FD7C0", "0x0"], "jp.v11": ["0x802ba0", "0x0"]}}, +"textures/gTextureTitleYoshiValley.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FDDC0", "0x0"], "jp.v11": ["0x802fa0", "0x0"]}}, +"textures/gTextureTitleFrappeSnowland.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FE1C0", "0x0"], "jp.v11": ["0x8032a0", "0x0"]}}, +"textures/gTextureTitleKoopaTroopaBeach.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FE6C0", "0x0"], "jp.v11": ["0x8037a0", "0x0"]}}, +"textures/gTextureTitleRoyalRaceway.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FEBC0", "0x0"], "jp.v11": ["0x803aa0", "0x0"]}}, +"textures/gTextureTitleLuigiRaceway.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FEFC0", "0x0"], "jp.v11": ["0x803ea0", "0x0"]}}, +"textures/gTextureTitleMooMooFarm.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FF3C0", "0x0"], "jp.v11": ["0x8043a0", "0x0"]}}, +"textures/gTextureTitleToadsTurnpike.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FF7C0", "0x0"], "jp.v11": ["0x8047a0", "0x0"]}}, +"textures/gTextureTitleKalimariDesert.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x7FFCC0", "0x0"], "jp.v11": ["0x804ba0", "0x0"]}}, +"textures/gTextureTitleSherbetLand.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x8000C0", "0x0"], "jp.v11": ["0x804fa0", "0x0"]}}, +"textures/gTextureTitleRainbowRoad.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x8004C0", "0x0"], "jp.v11": ["0x8053a0", "0x0"]}}, +"textures/gTextureTitleWarioStadium.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x8008C0", "0x0"], "jp.v11": ["0x8057a0", "0x0"]}}, +"textures/gTextureTitleBlockFort.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x800DC0", "0x0"], "jp.v11": ["0x805ba0", "0x0"]}}, +"textures/gTextureTitleSkyscraper.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x8010C0", "0x0"], "jp.v11": ["0x805fa0", "0x0"]}}, +"textures/gTextureTitleDoubleDeck.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x8014C0", "0x0"], "jp.v11": ["0x8063a0", "0x0"]}}, +"textures/gTextureTitleDKsJungleParkway.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x8018C0", "0x0"], "jp.v11": ["0x8067a0", "0x0"]}}, +"textures/gTextureTitleBigDonut.rgba16.png": {"meta":{"dims":[140,18], "alpha":"0xBE"}, "offsets": {"us":["0x801EC0", "0x0"], "jp.v11": ["0x806da0", "0x0"]}}, "textures/gTextureMapSelect.rgba16.png": {"meta":{"dims":[190,32],"alpha":"0x01"}, "offsets":{"us":["0x8021C0","0x0"],"jp.v11":["0x8071a0","0x0"]}}, "textures/gTextureMenuFlowerCup.rgba16.png": {"meta":{"dims":[65,40],"alpha":"0xBE"}, "offsets":{"us":["0x802DC0","0x0"],"jp.v11":["0x807da0","0x0"]}}, -"textures/gTextureMenuMushroomCup.rgba16.png": {"meta":{"dims":[65,40], "alpha":"0xBE"}, "offsets": {"us":["0x8031C0", "0x0"]}}, +"textures/gTextureMenuMushroomCup.rgba16.png": {"meta":{"dims":[65,40], "alpha":"0xBE"}, "offsets": {"us":["0x8031C0", "0x0"], "jp.v11": ["0x8081a0", "0x0"]}}, "textures/gTextureMenuStarCup.rgba16.png": {"meta":{"dims":[65,40],"alpha":"0xBE"}, "offsets":{"us":["0x8035C0","0x0"],"jp.v11":["0x8085a0","0x0"]}}, "textures/gTextureMenuSpecialCup.rgba16.png": {"meta":{"dims":[65,40],"alpha":"0xBE"}, "offsets":{"us":["0x8039C0","0x0"],"jp.v11":["0x8089a0","0x0"]}}, @@ -1078,24 +1078,24 @@ "textures/texture_menu_3p_game.rgba16.png": {"meta":{"dims":[64,54],"alpha":"0xBE"}, "offsets":{"us":["0x8055C0","0x0"],"jp.v11":["0x80a5a0","0x0"]}}, "textures/texture_menu_4p_game.rgba16.png": {"meta":{"dims":[64,54],"alpha":"0xBE"}, "offsets":{"us":["0x805FC0","0x0"],"jp.v11":["0x80afa0","0x0"]}}, -"textures/texture_mode_battle.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x806AC0", "0x0"]}}, -"textures/texture_mode_time_trials.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x806DC0", "0x0"]}}, -"textures/texture_mode_mario_gp.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x8071C0", "0x0"]}}, -"textures/texture_mode_vs.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x8075C0", "0x0"]}}, +"textures/texture_mode_battle.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x806AC0", "0x0"], "jp.v11": ["0x80baa0", "0x0"]}}, +"textures/texture_mode_time_trials.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x806DC0", "0x0"], "jp.v11": ["0x80bea0", "0x0"]}}, +"textures/texture_mode_mario_gp.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x8071C0", "0x0"], "jp.v11": ["0x80c2a0", "0x0"]}}, +"textures/texture_mode_vs.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x8075C0", "0x0"], "jp.v11": ["0x80c6a0", "0x0"]}}, -"textures/texture_l_option.rgba16.png": {"meta":{"dims":[58,19], "alpha":"0xBE"}, "offsets": {"us":["0x8078C0", "0x0"]}}, -"textures/texture_r_data.rgba16.png": {"meta":{"dims":[58,19], "alpha":"0xBE"}, "offsets": {"us":["0x807BC0", "0x0"]}}, +"textures/texture_l_option.rgba16.png": {"meta":{"dims":[58,19], "alpha":"0xBE"}, "offsets": {"us":["0x8078C0", "0x0"], "jp.v11": ["0x80c9a0", "0x0"]}}, +"textures/texture_r_data.rgba16.png": {"meta":{"dims":[58,19], "alpha":"0xBE"}, "offsets": {"us":["0x807BC0", "0x0"], "jp.v11": ["0x80cda0", "0x0"]}}, "textures/texture_50cc.rgba16.png": {"meta":{"dims":[64,18],"alpha":"0xBE"}, "offsets":{"us":["0x807EC0","0x0"],"jp.v11":["0x80d0a0","0x0"]}}, "textures/texture_100cc.rgba16.png": {"meta":{"dims":[64,18],"alpha":"0xBE"}, "offsets":{"us":["0x8080C0","0x0"],"jp.v11":["0x80d2a0","0x0"]}}, "textures/texture_150cc.rgba16.png": {"meta":{"dims":[64,18],"alpha":"0xBE"}, "offsets":{"us":["0x8082C0","0x0"],"jp.v11":["0x80d4a0","0x0"]}}, -"textures/texture_extra.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x8084C0", "0x0"]}}, +"textures/texture_extra.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x8084C0", "0x0"], "jp.v11": ["0x80d6a0", "0x0"]}}, "textures/gTextureMenuWithoutItem.rgba16.png": {"meta":{"dims":[64,18],"alpha":"0xBE"}, "offsets":{"us":["0x8086C0","0x0"],"jp.v11":["0x80d8a0","0x0"]}}, "textures/gTextureMenuWithItem.rgba16.png": {"meta":{"dims":[64,18],"alpha":"0xBE"}, "offsets":{"us":["0x8089C0","0x0"],"jp.v11":["0x80dba0","0x0"]}}, -"textures/texture_begin.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x808CC0", "0x0"]}}, -"textures/texture_menu_ghost.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x808EC0", "0x0"]}}, -"textures/texture_data.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x8090C0", "0x0"]}}, +"textures/texture_begin.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x808CC0", "0x0"], "jp.v11": ["0x80dea0", "0x0"]}}, +"textures/texture_menu_ghost.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x808EC0", "0x0"], "jp.v11": ["0x80e0a0", "0x0"]}}, +"textures/texture_data.rgba16.png": {"meta":{"dims":[64,18], "alpha":"0xBE"}, "offsets": {"us":["0x8090C0", "0x0"], "jp.v11": ["0x80e2a0", "0x0"]}}, "textures/texture_ok.rgba16.png": {"meta":{"dims":[31,19],"alpha":"0xBE"}, "offsets":{"us":["0x8092C0","0x0"],"jp.v11":["0x80e4a0","0x0"]}}, "textures/background_blue_sky.rgba16.png": {"meta":{"dims":[320,240],"alpha":"0x01"}, "offsets":{"us":["0x8094C0","0x0"],"jp.v11":["0x80e6a0","0x0"]}}, From d17ac2707eb5cc603ec38860bb557bc9cbc8aaad Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 05:18:56 -0700 Subject: [PATCH 23/41] jp.v11: course preview offsets The twenty course previews are the same images in both versions but sit 0x56D0 later in the JP cart. Without an override the JP build read the JP cart at the US offsets, got noise, and MIO0 grew it rather than shrinking it: the previews alone were 210,792 bytes of the ROM's overflow. Each offset was found by decompressing every MIO0 block in the region and matching it against the extracted image, so the shift is measured per asset rather than assumed; all twenty agree on 0x56D0. The ROM is now exactly 12,582,912 bytes, the size of the cart. Co-Authored-By: Claude Fable 5 --- assets/course_previews.json | 40 ++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/assets/course_previews.json b/assets/course_previews.json index 66f5a35a51..d2ce0f4e2f 100644 --- a/assets/course_previews.json +++ b/assets/course_previews.json @@ -1,22 +1,22 @@ { -"gTextureCoursePreviewMarioRaceway": {"output_dir": "course_previews", "rom_offset": "0x7A1418", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewChocoMountain": {"output_dir": "course_previews", "rom_offset": "0x7A4570", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewBowsersCastle": {"output_dir": "course_previews", "rom_offset": "0x7A6F94", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewBansheeBoardwalk": {"output_dir": "course_previews", "rom_offset": "0x7AA074", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewYoshiValley": {"output_dir": "course_previews", "rom_offset": "0x7AC720", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewFrappeSnowland": {"output_dir": "course_previews", "rom_offset": "0x7B0160", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewKoopaTroopaBeach": {"output_dir": "course_previews", "rom_offset": "0x7B2568", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewRoyalRaceway": {"output_dir": "course_previews", "rom_offset": "0x7B488C", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewLuigiRaceway": {"output_dir": "course_previews", "rom_offset": "0x7B70AC", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewMooMooFarm": {"output_dir": "course_previews", "rom_offset": "0x7B9E20", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewToadsTurnpike": {"output_dir": "course_previews", "rom_offset": "0x7BC3E8", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewKalimariDesert": {"output_dir": "course_previews", "rom_offset": "0x7BED84", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewSherbetLand": {"output_dir": "course_previews", "rom_offset": "0x7C1590", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewRainbowRoad": {"output_dir": "course_previews", "rom_offset": "0x7C45A0", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewWarioStadium": {"output_dir": "course_previews", "rom_offset": "0x7C6DC4", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewBlockFort": {"output_dir": "course_previews", "rom_offset": "0x7CA098", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewSkyscraper": {"output_dir": "course_previews", "rom_offset": "0x7CC5C0", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewDoubleDeck": {"output_dir": "course_previews", "rom_offset": "0x7CECB0", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewDksJungleParkway": {"output_dir": "course_previews", "rom_offset": "0x7D15A8", "width": 128, "height": 78, "type": "rgba16"}, -"gTextureCoursePreviewBigDonut": {"output_dir": "course_previews", "rom_offset": "0x7D548C", "width": 128, "height": 78, "type": "rgba16"} +"gTextureCoursePreviewMarioRaceway": {"output_dir": "course_previews", "rom_offset": "0x7A1418", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7A6AE8"}}, +"gTextureCoursePreviewChocoMountain": {"output_dir": "course_previews", "rom_offset": "0x7A4570", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7A9C40"}}, +"gTextureCoursePreviewBowsersCastle": {"output_dir": "course_previews", "rom_offset": "0x7A6F94", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7AC664"}}, +"gTextureCoursePreviewBansheeBoardwalk": {"output_dir": "course_previews", "rom_offset": "0x7AA074", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7AF744"}}, +"gTextureCoursePreviewYoshiValley": {"output_dir": "course_previews", "rom_offset": "0x7AC720", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7B1DF0"}}, +"gTextureCoursePreviewFrappeSnowland": {"output_dir": "course_previews", "rom_offset": "0x7B0160", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7B5830"}}, +"gTextureCoursePreviewKoopaTroopaBeach": {"output_dir": "course_previews", "rom_offset": "0x7B2568", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7B7C38"}}, +"gTextureCoursePreviewRoyalRaceway": {"output_dir": "course_previews", "rom_offset": "0x7B488C", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7B9F5C"}}, +"gTextureCoursePreviewLuigiRaceway": {"output_dir": "course_previews", "rom_offset": "0x7B70AC", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7BC77C"}}, +"gTextureCoursePreviewMooMooFarm": {"output_dir": "course_previews", "rom_offset": "0x7B9E20", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7BF4F0"}}, +"gTextureCoursePreviewToadsTurnpike": {"output_dir": "course_previews", "rom_offset": "0x7BC3E8", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7C1AB8"}}, +"gTextureCoursePreviewKalimariDesert": {"output_dir": "course_previews", "rom_offset": "0x7BED84", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7C4454"}}, +"gTextureCoursePreviewSherbetLand": {"output_dir": "course_previews", "rom_offset": "0x7C1590", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7C6C60"}}, +"gTextureCoursePreviewRainbowRoad": {"output_dir": "course_previews", "rom_offset": "0x7C45A0", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7C9C70"}}, +"gTextureCoursePreviewWarioStadium": {"output_dir": "course_previews", "rom_offset": "0x7C6DC4", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7CC494"}}, +"gTextureCoursePreviewBlockFort": {"output_dir": "course_previews", "rom_offset": "0x7CA098", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7CF768"}}, +"gTextureCoursePreviewSkyscraper": {"output_dir": "course_previews", "rom_offset": "0x7CC5C0", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7D1C90"}}, +"gTextureCoursePreviewDoubleDeck": {"output_dir": "course_previews", "rom_offset": "0x7CECB0", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7D4380"}}, +"gTextureCoursePreviewDksJungleParkway": {"output_dir": "course_previews", "rom_offset": "0x7D15A8", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7D6C78"}}, +"gTextureCoursePreviewBigDonut": {"output_dir": "course_previews", "rom_offset": "0x7D548C", "width": 128, "height": 78, "type": "rgba16", "jp.v11": {"rom_offset": "0x7DAB5C"}} } From 2cad4e61919cc9fdc82684bc568a9b95a4759541 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 05:22:34 -0700 Subject: [PATCH 24/41] jp.v11: blue shell offsets The eight blue shell frames sit 0xAEE0 later in the JP cart, the same shift the lakitu frames use. Each was matched by decompressing every MIO0 block in the region and comparing against the reference's extracted data, so the shift is measured rather than carried over. Their shared palette lives in the common textures block, which moves to 0x1323A0, but at the SAME offset within it. The block is not uniformly shifted: the assets earlier in it do not move and the later ones drop by 0xA40, so a block_offset has to be checked per asset rather than adjusted wholesale. That matters here because these are ci8: the .bin the ROM gets is the png round-tripped through its palette, so a wrong tlut corrupts the indices even when the image offsets are right. Co-Authored-By: Claude Fable 5 --- assets/blueshell.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/assets/blueshell.json b/assets/blueshell.json index 6a18323292..acf1ad7eeb 100644 --- a/assets/blueshell.json +++ b/assets/blueshell.json @@ -1,11 +1,11 @@ { -"common_tlut_blue_shell": {"output_dir": "blueshell", "rom_offset": "0x132B50", "block_offset": "0x05038", "width": 16, "height": 16, "type": "rgba16"}, -"texture_blue_shell_0": {"output_dir": "blueshell", "rom_offset": "0x68FE20", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_blue_shell"}, -"texture_blue_shell_1": {"output_dir": "blueshell", "rom_offset": "0x69004C", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_blue_shell"}, -"texture_blue_shell_2": {"output_dir": "blueshell", "rom_offset": "0x690284", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_blue_shell"}, -"texture_blue_shell_3": {"output_dir": "blueshell", "rom_offset": "0x6904C4", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_blue_shell"}, -"texture_blue_shell_4": {"output_dir": "blueshell", "rom_offset": "0x690708", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_blue_shell"}, -"texture_blue_shell_5": {"output_dir": "blueshell", "rom_offset": "0x690960", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_blue_shell"}, -"texture_blue_shell_6": {"output_dir": "blueshell", "rom_offset": "0x690BBC", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_blue_shell"}, -"texture_blue_shell_7": {"output_dir": "blueshell", "rom_offset": "0x690DF8", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_blue_shell"} +"common_tlut_blue_shell": {"output_dir": "blueshell", "rom_offset": "0x132B50", "block_offset": "0x05038", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0", "block_offset": "0x05038"}}, +"texture_blue_shell_0": {"output_dir": "blueshell", "rom_offset": "0x68FE20", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_blue_shell", "jp.v11": {"rom_offset": "0x69AD00"}}, +"texture_blue_shell_1": {"output_dir": "blueshell", "rom_offset": "0x69004C", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_blue_shell", "jp.v11": {"rom_offset": "0x69AF2C"}}, +"texture_blue_shell_2": {"output_dir": "blueshell", "rom_offset": "0x690284", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_blue_shell", "jp.v11": {"rom_offset": "0x69B164"}}, +"texture_blue_shell_3": {"output_dir": "blueshell", "rom_offset": "0x6904C4", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_blue_shell", "jp.v11": {"rom_offset": "0x69B3A4"}}, +"texture_blue_shell_4": {"output_dir": "blueshell", "rom_offset": "0x690708", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_blue_shell", "jp.v11": {"rom_offset": "0x69B5E8"}}, +"texture_blue_shell_5": {"output_dir": "blueshell", "rom_offset": "0x690960", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_blue_shell", "jp.v11": {"rom_offset": "0x69B840"}}, +"texture_blue_shell_6": {"output_dir": "blueshell", "rom_offset": "0x690BBC", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_blue_shell", "jp.v11": {"rom_offset": "0x69BA9C"}}, +"texture_blue_shell_7": {"output_dir": "blueshell", "rom_offset": "0x690DF8", "width": 32, "height": 32, "type": "ci8", "tlut": "common_tlut_blue_shell", "jp.v11": {"rom_offset": "0x69BCD8"}} } \ No newline at end of file From d18c98ece32adbbb3032975bd59e74b9f6a95b7d Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 05:38:43 -0700 Subject: [PATCH 25/41] assets: extract compressed assets raw when the png cannot round-trip A ci4/ci8 image reaches the ROM as png -> indices, remapped through its palette. That is lossless only while every index the ROM uses is the first one holding its colour. Several JP palettes repeat a colour, so the trip back picks the earlier index and quietly rewrites the image: correct offset, correct palette, wrong bytes. It cost 36 files across three courses and 25,664 bytes of the ROM. `type: bin` is the existing escape and is how the lakitu frames are done, but it reads the ROM directly, so it only works where the asset is stored uncompressed. These are MIO0 and it would copy compressed bytes. The jp.v11 entries already said `"compressed": true` in the hope that something honoured it; nothing did. Now export_bin decompresses the block and reads from there. That exposed the other half of the png rule bug: an asset extracted raw has no png, so the .bin rule handed n64graphics a missing file, and make deleted the .bin extraction had just written. The rule now depends on the extraction and converts only when a png is really there. Verified: those three courses go from 36 differing files to 0 against the byte-perfect JP reference, and us/eu.v10/eu.v11 still byte-match. Co-Authored-By: Claude Fable 5 --- assets/include/courses/dks_jungle_parkway.mk | 12 +++++++++--- assets/include/courses/kalimari_desert.mk | 12 +++++++++--- assets/include/courses/moo_moo_farm.mk | 12 +++++++++--- tools/new_extract_assets.py | 14 ++++++++++++-- 4 files changed, 39 insertions(+), 11 deletions(-) diff --git a/assets/include/courses/dks_jungle_parkway.mk b/assets/include/courses/dks_jungle_parkway.mk index 9dcbb36e5f..1de8d54bd4 100644 --- a/assets/include/courses/dks_jungle_parkway.mk +++ b/assets/include/courses/dks_jungle_parkway.mk @@ -29,9 +29,15 @@ $(BUILD_DIR)/data/other_textures.o: $(DKS_JUNGLE_PARKWAY_KIWANO_FRAMES:%.png=%.m $(DKS_JUNGLE_PARKWAY_KIWANO_FRAMES:%.png=%.mio0): %.mio0 : %.bin $(V)$(MIO0TOOL) -c $< $@ -$(DKS_JUNGLE_PARKWAY_KIWANO_FRAMES:%.png=%.bin): %.bin : %.png - @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" - $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(DKS_JUNGLE_PARKWAY_KIWANO_PALETTE) +# An asset extracted raw arrives as .bin and has no png to convert. Depend on +# the extraction rather than on the png, and convert only when a png is +# really there: otherwise n64graphics is handed a missing file and make +# deletes the .bin extraction just wrote. +$(DKS_JUNGLE_PARKWAY_KIWANO_FRAMES:%.png=%.bin): %.bin : $(DKS_JUNGLE_PARKWAY_EXPORT_SENTINEL) + $(V)if [ -f $*.png ]; then \ + $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ + $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(DKS_JUNGLE_PARKWAY_KIWANO_PALETTE); \ + fi $(BUILD_DIR)/courses/dks_jungle_parkway/course_data.o: $(DKS_JUNGLE_PARKWAY_KIWANO_PALETTE:%.png=%.inc.c) $(BUILD_DIR)/courses/dks_jungle_parkway/course_data.o: $(DKS_JUNGLE_PARKWAY_PNG:%.png=%.inc.c) diff --git a/assets/include/courses/kalimari_desert.mk b/assets/include/courses/kalimari_desert.mk index 8322598c9d..21a45881bb 100644 --- a/assets/include/courses/kalimari_desert.mk +++ b/assets/include/courses/kalimari_desert.mk @@ -51,9 +51,15 @@ $(BUILD_DIR)/data/other_textures.o: $(CACTUS_PNG:%.png=%.mio0) $(CACTUS_PNG:%.png=%.mio0): %.mio0 : %.bin $(V)$(MIO0TOOL) -c $< $@ -$(CACTUS_PNG:%.png=%.bin): %.bin : %.png - @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" - $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(CACTUS_PALETTE) +# An asset extracted raw arrives as .bin and has no png to convert. Depend on +# the extraction rather than on the png, and convert only when a png is +# really there: otherwise n64graphics is handed a missing file and make +# deletes the .bin extraction just wrote. +$(CACTUS_PNG:%.png=%.bin): %.bin : $(KALIMARI_DESERT_EXPORT_SENTINEL) + $(V)if [ -f $*.png ]; then \ + $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ + $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(CACTUS_PALETTE); \ + fi $(CACTUS_PALETTE) $(CACTUS_PALETTE_IMPORT) $(CACTUS_PNG): $(KALIMARI_DESERT_EXPORT_SENTINEL) @: diff --git a/assets/include/courses/moo_moo_farm.mk b/assets/include/courses/moo_moo_farm.mk index 25be2c25db..639a80e043 100644 --- a/assets/include/courses/moo_moo_farm.mk +++ b/assets/include/courses/moo_moo_farm.mk @@ -67,9 +67,15 @@ $(MOO_MOO_FARM_SIGN_PNG:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -$(COW_PNG:%.png=%.bin): %.bin : %.png - @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" - $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(COW_PALETTE) +# An asset extracted raw arrives as .bin and has no png to convert. Depend on +# the extraction rather than on the png, and convert only when a png is +# really there: otherwise n64graphics is handed a missing file and make +# deletes the .bin extraction just wrote. +$(COW_PNG:%.png=%.bin): %.bin : $(MOO_MOO_FARM_EXPORT_SENTINEL) + $(V)if [ -f $*.png ]; then \ + $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ + $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(COW_PALETTE); \ + fi $(MOLE_PALETTE) $(COW_PALETTE) $(COW_PALETTE_IMPORT): $(MOO_MOO_FARM_EXPORT_SENTINEL) @: diff --git a/tools/new_extract_assets.py b/tools/new_extract_assets.py index ebb0c5bd15..64f938c2f5 100644 --- a/tools/new_extract_assets.py +++ b/tools/new_extract_assets.py @@ -243,8 +243,18 @@ def export_bin(baserom, asset): os.makedirs(asset["output_dir"], exist_ok=True) with open(asset_filename, "wb") as asset_file: - baserom.seek(int(asset["rom_offset"], 16)) - asset_data = baserom.read(int(asset["size"], 16)) + if asset.get("compressed"): + # The bytes wanted sit inside a MIO0 block, so reading the ROM here + # would take the compressed form. Decompress and read from that. A + # ci8 image needs this when its palette repeats a colour: the png + # round trip remaps every colour to the first index holding it and + # rewrites the image, so the indices have to come out whole. + block = extract_mio0_block(baserom, asset) + block.seek(int(asset.get("block_offset", "0x0"), 16)) + asset_data = block.read(int(asset["size"], 16)) + else: + baserom.seek(int(asset["rom_offset"], 16)) + asset_data = baserom.read(int(asset["size"], 16)) asset_file.write(asset_data) # Versions that may appear as an override key on an asset. Keep in step with the From a62f21b98df7a8ba395859ed7367f6b1b2a23d00 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 06:12:42 -0700 Subject: [PATCH 26/41] assets: do not convert an asset that was extracted raw `make VERSION=jp.v11` cannot build after a us build: it dies converting gTextureCactus1Left.png. Those five are extracted raw for jp.v11 because their palette repeats a colour, and 370109612 guarded their rule on the png being present. A us build leaves its png behind, so the guard passes, n64graphics runs it against the JP palette, and it fails over the bytes extraction had just written. Extraction now removes a png it supersedes, so absence is the signal that an asset is raw. The eight lakitu rules then have to stop naming the png as a prerequisite, and take the shape the three course rules already have. They were not failing before only because extraction runs at parse time and leaves the .bin newer than the stale png: true today, but not something a rule should rest on. Co-Authored-By: Claude Fable 5 --- assets/include/lakitu/bluelight.mk | 11 ++++++++--- assets/include/lakitu/checkeredflag.mk | 11 ++++++++--- assets/include/lakitu/finallap.mk | 11 ++++++++--- assets/include/lakitu/fishing.mk | 11 ++++++++--- assets/include/lakitu/nolights.mk | 11 ++++++++--- assets/include/lakitu/redlights.mk | 11 ++++++++--- assets/include/lakitu/reverse.mk | 11 ++++++++--- assets/include/lakitu/secondlap.mk | 11 ++++++++--- tools/new_extract_assets.py | 8 ++++++++ 9 files changed, 72 insertions(+), 24 deletions(-) diff --git a/assets/include/lakitu/bluelight.mk b/assets/include/lakitu/bluelight.mk index 110c223c6f..16b1ba1008 100644 --- a/assets/include/lakitu/bluelight.mk +++ b/assets/include/lakitu/bluelight.mk @@ -16,9 +16,14 @@ BLUELIGHT_EXPORT_SENTINEL := $(BLUELIGHT_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(BLUELIGHT_FRAMES:%.png=%.bin) -$(BLUELIGHT_FRAMES:%.png=%.bin): %.bin : %.png - @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" - $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(BLUELIGHT_PALETTE) +# Extraction writes these raw for a version whose palette cannot round trip, +# and removes the png with them. Depend on the extraction, and convert only +# when a png is really there. +$(BLUELIGHT_FRAMES:%.png=%.bin): %.bin : $(BLUELIGHT_EXPORT_SENTINEL) + $(V)if [ -f $*.png ]; then \ + $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ + $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(BLUELIGHT_PALETTE); \ + fi $(BUILD_DIR)/src/data/common_textures.o: $(BLUELIGHT_PALETTE:%.png=%.inc.c) diff --git a/assets/include/lakitu/checkeredflag.mk b/assets/include/lakitu/checkeredflag.mk index afc86ec33c..a5f93a81fc 100644 --- a/assets/include/lakitu/checkeredflag.mk +++ b/assets/include/lakitu/checkeredflag.mk @@ -40,9 +40,14 @@ CHECKEREDFLAG_EXPORT_SENTINEL := $(CHECKEREDFLAG_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(CHECKEREDFLAG_FRAMES:%.png=%.bin) -$(CHECKEREDFLAG_FRAMES:%.png=%.bin): %.bin : %.png - @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" - $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(CHECKEREDFLAG_PALETTE) +# Extraction writes these raw for a version whose palette cannot round trip, +# and removes the png with them. Depend on the extraction, and convert only +# when a png is really there. +$(CHECKEREDFLAG_FRAMES:%.png=%.bin): %.bin : $(CHECKEREDFLAG_EXPORT_SENTINEL) + $(V)if [ -f $*.png ]; then \ + $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ + $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(CHECKEREDFLAG_PALETTE); \ + fi $(BUILD_DIR)/src/data/common_textures.o: $(CHECKEREDFLAG_PALETTE:%.png=%.inc.c) diff --git a/assets/include/lakitu/finallap.mk b/assets/include/lakitu/finallap.mk index 3987c4f1fa..c8b59ced54 100644 --- a/assets/include/lakitu/finallap.mk +++ b/assets/include/lakitu/finallap.mk @@ -24,9 +24,14 @@ FINALLAP_EXPORT_SENTINEL := $(FINALLAP_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(FINALLAP_FRAMES:%.png=%.bin) -$(FINALLAP_FRAMES:%.png=%.bin): %.bin : %.png - @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" - $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(FINALLAP_PALETTE) +# Extraction writes these raw for a version whose palette cannot round trip, +# and removes the png with them. Depend on the extraction, and convert only +# when a png is really there. +$(FINALLAP_FRAMES:%.png=%.bin): %.bin : $(FINALLAP_EXPORT_SENTINEL) + $(V)if [ -f $*.png ]; then \ + $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ + $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(FINALLAP_PALETTE); \ + fi $(BUILD_DIR)/src/data/common_textures.o: $(FINALLAP_PALETTE:%.png=%.inc.c) diff --git a/assets/include/lakitu/fishing.mk b/assets/include/lakitu/fishing.mk index 9e5767b489..f72fab5c2a 100644 --- a/assets/include/lakitu/fishing.mk +++ b/assets/include/lakitu/fishing.mk @@ -12,9 +12,14 @@ FISHING_EXPORT_SENTINEL := $(FISHING_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(FISHING_FRAMES:%.png=%.bin) -$(FISHING_FRAMES:%.png=%.bin): %.bin : %.png - @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" - $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(FISHING_PALETTE) +# Extraction writes these raw for a version whose palette cannot round trip, +# and removes the png with them. Depend on the extraction, and convert only +# when a png is really there. +$(FISHING_FRAMES:%.png=%.bin): %.bin : $(FISHING_EXPORT_SENTINEL) + $(V)if [ -f $*.png ]; then \ + $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ + $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(FISHING_PALETTE); \ + fi $(BUILD_DIR)/src/data/common_textures.o: $(FISHING_PALETTE:%.png=%.inc.c) diff --git a/assets/include/lakitu/nolights.mk b/assets/include/lakitu/nolights.mk index 53ecd7b61c..40495d5d13 100644 --- a/assets/include/lakitu/nolights.mk +++ b/assets/include/lakitu/nolights.mk @@ -16,9 +16,14 @@ NOLIGHTS_EXPORT_SENTINEL := $(NOLIGHTS_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(NOLIGHTS_FRAMES:%.png=%.bin) -$(NOLIGHTS_FRAMES:%.png=%.bin): %.bin : %.png - @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" - $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(NOLIGHTS_PALETTE) +# Extraction writes these raw for a version whose palette cannot round trip, +# and removes the png with them. Depend on the extraction, and convert only +# when a png is really there. +$(NOLIGHTS_FRAMES:%.png=%.bin): %.bin : $(NOLIGHTS_EXPORT_SENTINEL) + $(V)if [ -f $*.png ]; then \ + $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ + $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(NOLIGHTS_PALETTE); \ + fi $(BUILD_DIR)/src/data/common_textures.o: $(NOLIGHTS_PALETTE:%.png=%.inc.c) diff --git a/assets/include/lakitu/redlights.mk b/assets/include/lakitu/redlights.mk index 568b8e5e8d..c5f9d35975 100644 --- a/assets/include/lakitu/redlights.mk +++ b/assets/include/lakitu/redlights.mk @@ -24,9 +24,14 @@ REDLIGHTS_EXPORT_SENTINEL := $(REDLIGHTS_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(REDLIGHTS_FRAMES:%.png=%.bin) -$(REDLIGHTS_FRAMES:%.png=%.bin): %.bin : %.png - @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" - $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(REDLIGHTS_PALETTE) +# Extraction writes these raw for a version whose palette cannot round trip, +# and removes the png with them. Depend on the extraction, and convert only +# when a png is really there. +$(REDLIGHTS_FRAMES:%.png=%.bin): %.bin : $(REDLIGHTS_EXPORT_SENTINEL) + $(V)if [ -f $*.png ]; then \ + $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ + $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(REDLIGHTS_PALETTE); \ + fi $(BUILD_DIR)/src/data/common_textures.o: $(REDLIGHTS_PALETTE:%.png=%.inc.c) diff --git a/assets/include/lakitu/reverse.mk b/assets/include/lakitu/reverse.mk index 46d2ad6f76..0b7e29a740 100644 --- a/assets/include/lakitu/reverse.mk +++ b/assets/include/lakitu/reverse.mk @@ -24,9 +24,14 @@ REVERSE_EXPORT_SENTINEL := $(REVERSE_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(REVERSE_FRAMES:%.png=%.bin) -$(REVERSE_FRAMES:%.png=%.bin): %.bin : %.png - @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" - $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(REVERSE_PALETTE) +# Extraction writes these raw for a version whose palette cannot round trip, +# and removes the png with them. Depend on the extraction, and convert only +# when a png is really there. +$(REVERSE_FRAMES:%.png=%.bin): %.bin : $(REVERSE_EXPORT_SENTINEL) + $(V)if [ -f $*.png ]; then \ + $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ + $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(REVERSE_PALETTE); \ + fi $(BUILD_DIR)/src/data/common_textures.o: $(REVERSE_PALETTE:%.png=%.inc.c) diff --git a/assets/include/lakitu/secondlap.mk b/assets/include/lakitu/secondlap.mk index 19910e0cd3..ddda0146ef 100644 --- a/assets/include/lakitu/secondlap.mk +++ b/assets/include/lakitu/secondlap.mk @@ -24,9 +24,14 @@ SECONDLAP_EXPORT_SENTINEL := $(SECONDLAP_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(SECONDLAP_FRAMES:%.png=%.bin) -$(SECONDLAP_FRAMES:%.png=%.bin): %.bin : %.png - @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" - $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(SECONDLAP_PALETTE) +# Extraction writes these raw for a version whose palette cannot round trip, +# and removes the png with them. Depend on the extraction, and convert only +# when a png is really there. +$(SECONDLAP_FRAMES:%.png=%.bin): %.bin : $(SECONDLAP_EXPORT_SENTINEL) + $(V)if [ -f $*.png ]; then \ + $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ + $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(SECONDLAP_PALETTE); \ + fi $(BUILD_DIR)/src/data/common_textures.o: $(SECONDLAP_PALETTE:%.png=%.inc.c) diff --git a/tools/new_extract_assets.py b/tools/new_extract_assets.py index 64f938c2f5..6b095cd67f 100644 --- a/tools/new_extract_assets.py +++ b/tools/new_extract_assets.py @@ -242,6 +242,14 @@ def export_bin(baserom, asset): asset_filename = os.path.join(asset["output_dir"], f'{asset["name"]}.{asset["type"]}') os.makedirs(asset["output_dir"], exist_ok=True) + # An asset is raw here only because the version being built cannot round trip + # it through a png. A png of the same name is therefore the other version's + # leftover, and the build rules convert whenever one is present, which would + # overwrite what this writes. Drop it. + stale_png = os.path.join(asset["output_dir"], f'{asset["name"]}.png') + if os.path.exists(stale_png): + os.remove(stale_png) + with open(asset_filename, "wb") as asset_file: if asset.get("compressed"): # The bytes wanted sit inside a MIO0 block, so reading the ROM here From a1785210f108e4cd6975cf0ad3738a53e2e16cd4 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 06:12:42 -0700 Subject: [PATCH 27/41] jp.v11: common segment offsets yamls/jp.v11/common_data.yml was the us yaml with a different segment address, so all 385 of its offsets still described the us layout. The two versions do not share one: us puts the CPU behaviour tables and the target speed tables ahead of the textures, JP puts the textures first and packs both at the end of the segment. Every texture therefore sits 0xA40 lower than its us offset, and those 21 entries sit 0x23800 higher. With the offsets corrected the built segment is byte-identical to the cartridge's, 184,664 bytes, and the 98 textures that were wrong come out of Torch already right. config.yml sets `sort: OFFSET`, so the entries do not need reordering and this file stays comparable with the us one line for line. Co-Authored-By: Claude Fable 5 --- yamls/jp.v11/common_data.yml | 356 +++++++++++++++++------------------ 1 file changed, 178 insertions(+), 178 deletions(-) diff --git a/yamls/jp.v11/common_data.yml b/yamls/jp.v11/common_data.yml index 41dbc4cc5a..e0809bb047 100644 --- a/yamls/jp.v11/common_data.yml +++ b/yamls/jp.v11/common_data.yml @@ -22,31 +22,31 @@ common_versus_4_player_item_curve: range: [0x8984, 0x8AB0] common_texture_hud_place: - range: [0xD258, 0x14258] + range: [0xC818, 0x13818] mode: APPEND D_0D015258: - range: [0x15258, 0x16A58] + range: [0x14818, 0x16018] mode: APPEND common_texture_player_emblem: - range: [0x17458, 0x18C58] + range: [0x16A18, 0x18218] mode: APPEND common_texture_hud_type_C_rank_font: - range: [0x19658, 0x19D58] + range: [0x18C18, 0x19318] mode: APPEND common_texture_hud_type_C_rank_tiny_font: - range: [0x1A058, 0x1A298] + range: [0x19618, 0x19858] mode: APPEND common_tlut_lakitu_countdown: - range: [0x24ED8, 0x252D8] + range: [0x24498, 0x24898] mode: APPEND common_texture_bomb: - range: [0x29858, 0x2A458] + range: [0x28E18, 0x29A18] mode: APPEND common_texture_particle_spark: - range: [0x2AC58, 0x2B858] + range: [0x2A218, 0x2AE18] mode: APPEND common_texture_particle_smoke: - range: [0x2BC58, 0x2C858] + range: [0x2B218, 0x2BE18] mode: APPEND common_tlut_finish_line_banner: symbol: common_tlut_finish_line_banner @@ -1030,101 +1030,101 @@ D_0D008ED8: # These 4 vtx may be an mtx like the one before here. It's difficult D_0D008F18: symbol: D_0D008F18 type: mk64:driving_behaviour - offset: 0x8F18 + offset: 0x2C718 D_0D008F28: symbol: D_0D008F28 type: mk64:driving_behaviour - offset: 0x8F28 + offset: 0x2C728 D_0D008F80: symbol: D_0D008F80 type: mk64:driving_behaviour - offset: 0x8F80 + offset: 0x2C780 D_0D008FB8: symbol: D_0D008FB8 type: mk64:driving_behaviour - offset: 0x8FB8 + offset: 0x2C7B8 D_0D009058: symbol: D_0D009058 type: mk64:driving_behaviour - offset: 0x9058 + offset: 0x2C858 D_0D0090B8: symbol: D_0D0090B8 type: mk64:driving_behaviour - offset: 0x90B8 + offset: 0x2C8B8 D_0D0090F8: symbol: D_0D0090F8 type: mk64:driving_behaviour - offset: 0x90F8 + offset: 0x2C8F8 D_0D009158: symbol: D_0D009158 type: mk64:driving_behaviour - offset: 0x9158 + offset: 0x2C958 D_0D009158: symbol: D_0D009188 type: mk64:driving_behaviour - offset: 0x9188 + offset: 0x2C988 D_0D0091E8: symbol: D_0D0091E8 type: mk64:driving_behaviour - offset: 0x91E8 + offset: 0x2C9E8 D_0D009210: symbol: D_0D009210 type: mk64:driving_behaviour - offset: 0x9210 + offset: 0x2CA10 D_0D009238: symbol: D_0D009238 type: mk64:driving_behaviour - offset: 0x9238 + offset: 0x2CA38 D_0D009260: symbol: D_0D009260 type: mk64:driving_behaviour - offset: 0x9260 + offset: 0x2CA60 D_0D009280: symbol: D_0D009280 type: mk64:driving_behaviour - offset: 0x9280 + offset: 0x2CA80 D_0D0092C8: symbol: D_0D0092C8 type: mk64:driving_behaviour - offset: 0x92C8 + offset: 0x2CAC8 D_0D009310: symbol: D_0D009310 type: mk64:driving_behaviour - offset: 0x9310 + offset: 0x2CB10 D_0D0093C0: symbol: D_0D0093C0 type: mk64:driving_behaviour - offset: 0x93C0 + offset: 0x2CBC0 cpu_CurveTargetSpeed: symbol: cpu_CurveTargetSpeed type: inc - offset: 0x9418 + offset: 0x2CC18 ctype: Vec4f - offset: 0x9418 + offset: 0x2CC18 file_path: "assets/course_metadata/cpu_CurveTargetSpeed.inc.c" cpu_NormalTargetSpeed: symbol: cpu_NormalTargetSpeed type: inc - offset: 0x9568 + offset: 0x2CD68 ctype: Vec4f file_path: "assets/course_metadata/cpu_NormalTargetSpeed.inc.c" D_0D0096B8: symbol: D_0D0096B8 type: inc - offset: 0x96B8 + offset: 0x2CEB8 ctype: Vec4f file_path: "assets/course_metadata/D_0D0096B8.inc.c" cpu_OffTrackTargetSpeed: symbol: cpu_OffTrackTargetSpeed type: inc - offset: 0x9808 + offset: 0x2D008 ctype: Vec4f file_path: "assets/course_metadata/cpu_OffTrackTargetSpeed.inc.c" common_texture_speedometer: symbol: common_texture_speedometer type: texture ctype: u8 - offset: 0x9958 + offset: 0x8F18 size: 0xC00 width: 64 height: 96 @@ -1132,7 +1132,7 @@ common_texture_speedometer: common_texture_speedometer_needle: symbol: common_texture_speedometer_needle type: texture - offset: 0xA558 + offset: 0x9B18 ctype: u8 size: 0x400 width: 64 @@ -1141,7 +1141,7 @@ common_texture_speedometer_needle: common_texture_hud_lap: symbol: common_texture_hud_lap type: texture - offset: 0xA958 + offset: 0x9F18 ctype: u16 size: 0x200 width: 32 @@ -1150,7 +1150,7 @@ common_texture_hud_lap: common_texture_hud_123: symbol: common_texture_hud_123 type: texture - offset: 0xAB58 + offset: 0xA118 size: 0x200 ctype: u16 width: 32 @@ -1159,7 +1159,7 @@ common_texture_hud_123: common_texture_hud_lap_time: symbol: common_texture_hud_lap_time type: texture - offset: 0xAD58 + offset: 0xA318 size: 0x400 ctype: u16 width: 32 @@ -1168,7 +1168,7 @@ common_texture_hud_lap_time: common_texture_hud_lap_1_on_3: symbol: common_texture_hud_lap_1_on_3 type: texture - offset: 0xB158 + offset: 0xA718 size: 0x400 ctype: u16 width: 32 @@ -1177,7 +1177,7 @@ common_texture_hud_lap_1_on_3: common_texture_hud_lap_2_on_3: symbol: common_texture_hud_lap_2_on_3 type: texture - offset: 0xB558 + offset: 0xAB18 ctype: u16 size: 0x400 width: 32 @@ -1186,7 +1186,7 @@ common_texture_hud_lap_2_on_3: common_texture_hud_lap_3_on_3: symbol: common_texture_hud_lap_3_on_3 type: texture - offset: 0xB958 + offset: 0xAF18 size: 0x400 ctype: u16 width: 32 @@ -1195,7 +1195,7 @@ common_texture_hud_lap_3_on_3: common_texture_hud_total_time: symbol: common_texture_hud_total_time type: texture - offset: 0xBD58 + offset: 0xB318 size: 0x400 ctype: u16 width: 32 @@ -1204,7 +1204,7 @@ common_texture_hud_total_time: common_texture_hud_time: symbol: common_texture_hud_time type: texture - offset: 0xC158 + offset: 0xB718 size: 0x400 ctype: u16 width: 32 @@ -1213,7 +1213,7 @@ common_texture_hud_time: common_texture_hud_normal_digit: symbol: common_texture_hud_normal_digit type: texture - offset: 0xC558 + offset: 0xBB18 size: 0xD00 ctype: u16 width: 104 @@ -1222,7 +1222,7 @@ common_texture_hud_normal_digit: common_texture_hud_1st: symbol: common_texture_hud_1st type: texture - offset: 0xD258 + offset: 0xC818 size: 0x1000 ctype: u8 width: 128 @@ -1231,7 +1231,7 @@ common_texture_hud_1st: common_texture_hud_2nd: symbol: common_texture_hud_2nd type: texture - offset: 0xE258 + offset: 0xD818 size: 0x1000 ctype: u8 width: 128 @@ -1240,7 +1240,7 @@ common_texture_hud_2nd: common_texture_hud_3rd: symbol: common_texture_hud_3rd type: texture - offset: 0xF258 + offset: 0xE818 size: 0x1000 ctype: u8 width: 128 @@ -1249,7 +1249,7 @@ common_texture_hud_3rd: common_texture_hud_4th: symbol: common_texture_hud_4th type: texture - offset: 0x10258 + offset: 0xF818 size: 0x1000 ctype: u8 width: 128 @@ -1258,7 +1258,7 @@ common_texture_hud_4th: common_texture_hud_5th: symbol: common_texture_hud_5th type: texture - offset: 0x11258 + offset: 0x10818 size: 0x1000 ctype: u8 width: 128 @@ -1267,7 +1267,7 @@ common_texture_hud_5th: common_texture_hud_6th: symbol: common_texture_hud_6th type: texture - offset: 0x12258 + offset: 0x11818 size: 0x1000 ctype: u8 width: 128 @@ -1276,7 +1276,7 @@ common_texture_hud_6th: common_texture_hud_7th: symbol: common_texture_hud_7th type: texture - offset: 0x13258 + offset: 0x12818 size: 0x1000 ctype: u8 width: 128 @@ -1285,7 +1285,7 @@ common_texture_hud_7th: common_texture_hud_8th: symbol: common_texture_hud_8th type: texture - offset: 0x14258 + offset: 0x13818 size: 0x1000 ctype: u8 width: 128 @@ -1294,7 +1294,7 @@ common_texture_hud_8th: common_texture_first_place: symbol: common_texture_first_place # 132B50_15258 type: texture - offset: 0x15258 + offset: 0x14818 size: 0x800 ctype: u8 width: 64 @@ -1303,7 +1303,7 @@ common_texture_first_place: common_texture_second_place: symbol: common_texture_second_place # 132B50_15A58 type: texture - offset: 0x15A58 + offset: 0x15018 size: 0x800 ctype: u8 width: 64 @@ -1312,7 +1312,7 @@ common_texture_second_place: common_texture_third_place: symbol: common_texture_third_place # 132B50_16258 type: texture - offset: 0x16258 + offset: 0x15818 size: 0x800 ctype: u8 width: 64 @@ -1321,7 +1321,7 @@ common_texture_third_place: common_texture_fourth_place: symbol: common_texture_fourth_place # 132B50_16A58 type: texture - offset: 0x16A58 + offset: 0x16018 size: 0x800 ctype: u8 width: 64 @@ -1330,7 +1330,7 @@ common_texture_fourth_place: common_tlut_player_emblem: # // tlut for 1p, 2p, 3p, 4p symbol: common_tlut_player_emblem type: texture - offset: 0x17258 + offset: 0x16818 size: 0x200 ctype: u16 colors: 16 @@ -1339,7 +1339,7 @@ common_tlut_player_emblem: # // tlut for 1p, 2p, 3p, 4p common_texture_player_emblem_1p: symbol: common_texture_player_emblem_1p type: texture - offset: 0x17458 + offset: 0x16A18 size: 0x800 ctype: u8 width: 64 @@ -1349,7 +1349,7 @@ common_texture_player_emblem_1p: common_texture_player_emblem_2p: symbol: common_texture_player_emblem_2p type: texture - offset: 0x17C58 + offset: 0x17218 size: 0x800 ctype: u8 width: 64 @@ -1359,7 +1359,7 @@ common_texture_player_emblem_2p: common_texture_player_emblem_3p: symbol: common_texture_player_emblem_3p type: texture - offset: 0x18458 + offset: 0x17A18 size: 0x800 ctype: u8 width: 64 @@ -1369,7 +1369,7 @@ common_texture_player_emblem_3p: common_texture_player_emblem_4p: symbol: common_texture_player_emblem_4p type: texture - offset: 0x18C58 + offset: 0x18218 size: 0x800 ctype: u8 width: 64 @@ -1379,7 +1379,7 @@ common_texture_player_emblem_4p: common_tlut_hud_type_C_rank_font: # Font tlut for 12345678 symbol: common_tlut_hud_type_C_rank_font type: texture - offset: 0x19458 + offset: 0x18A18 size: 0x200 ctype: u16 colors: 16 @@ -1388,7 +1388,7 @@ common_tlut_hud_type_C_rank_font: # Font tlut for 12345678 common_texture_hud_type_C_rank_font_1: symbol: common_texture_hud_type_C_rank_font_1 type: texture - offset: 0x19658 + offset: 0x18C18 size: 0x100 ctype: u8 width: 16 @@ -1398,7 +1398,7 @@ common_texture_hud_type_C_rank_font_1: common_texture_hud_type_C_rank_font_2: symbol: common_texture_hud_type_C_rank_font_2 type: texture - offset: 0x19758 + offset: 0x18D18 size: 0x100 ctype: u8 width: 16 @@ -1408,7 +1408,7 @@ common_texture_hud_type_C_rank_font_2: common_texture_hud_type_C_rank_font_3: symbol: common_texture_hud_type_C_rank_font_3 type: texture - offset: 0x19858 + offset: 0x18E18 size: 0x100 ctype: u8 width: 16 @@ -1418,7 +1418,7 @@ common_texture_hud_type_C_rank_font_3: common_texture_hud_type_C_rank_font_4: symbol: common_texture_hud_type_C_rank_font_4 type: texture - offset: 0x19958 + offset: 0x18F18 size: 0x100 ctype: u8 width: 16 @@ -1428,7 +1428,7 @@ common_texture_hud_type_C_rank_font_4: common_texture_hud_type_C_rank_font_5: symbol: common_texture_hud_type_C_rank_font_5 type: texture - offset: 0x19A58 + offset: 0x19018 size: 0x100 ctype: u8 width: 16 @@ -1438,7 +1438,7 @@ common_texture_hud_type_C_rank_font_5: common_texture_hud_type_C_rank_font_6: symbol: common_texture_hud_type_C_rank_font_6 type: texture - offset: 0x19B58 + offset: 0x19118 size: 0x100 ctype: u8 width: 16 @@ -1448,7 +1448,7 @@ common_texture_hud_type_C_rank_font_6: common_texture_hud_type_C_rank_font_7: symbol: common_texture_hud_type_C_rank_font_7 type: texture - offset: 0x19C58 + offset: 0x19218 size: 0x100 ctype: u8 width: 16 @@ -1458,7 +1458,7 @@ common_texture_hud_type_C_rank_font_7: common_texture_hud_type_C_rank_font_8: symbol: common_texture_hud_type_C_rank_font_8 type: texture - offset: 0x19D58 + offset: 0x19318 size: 0x100 ctype: u8 width: 16 @@ -1468,7 +1468,7 @@ common_texture_hud_type_C_rank_font_8: common_tlut_hud_type_C_rank_tiny_font: # Font tlut for 0123456789 symbol: common_tlut_hud_type_C_rank_tiny_font type: texture - offset: 0x19E58 + offset: 0x19418 size: 0x200 ctype: u16 colors: 16 @@ -1477,7 +1477,7 @@ common_tlut_hud_type_C_rank_tiny_font: # Font tlut for 0123456789 common_texture_hud_type_C_rank_tiny_font_0: symbol: common_texture_hud_type_C_rank_tiny_font_0 type: texture - offset: 0x1A058 + offset: 0x19618 size: 0x40 ctype: u8 width: 8 @@ -1487,7 +1487,7 @@ common_texture_hud_type_C_rank_tiny_font_0: common_texture_hud_type_C_rank_tiny_font_1: symbol: common_texture_hud_type_C_rank_tiny_font_1 type: texture - offset: 0x1A098 + offset: 0x19658 size: 0x40 ctype: u8 width: 8 @@ -1497,7 +1497,7 @@ common_texture_hud_type_C_rank_tiny_font_1: common_texture_hud_type_C_rank_tiny_font_2: symbol: common_texture_hud_type_C_rank_tiny_font_2 type: texture - offset: 0x1A0D8 + offset: 0x19698 size: 0x40 ctype: u8 width: 8 @@ -1507,7 +1507,7 @@ common_texture_hud_type_C_rank_tiny_font_2: common_texture_hud_type_C_rank_tiny_font_3: symbol: common_texture_hud_type_C_rank_tiny_font_3 type: texture - offset: 0x1A118 + offset: 0x196D8 size: 0x40 ctype: u8 width: 8 @@ -1517,7 +1517,7 @@ common_texture_hud_type_C_rank_tiny_font_3: common_texture_hud_type_C_rank_tiny_font_4: symbol: common_texture_hud_type_C_rank_tiny_font_4 type: texture - offset: 0x1A158 + offset: 0x19718 size: 0x40 ctype: u8 width: 8 @@ -1527,7 +1527,7 @@ common_texture_hud_type_C_rank_tiny_font_4: common_texture_hud_type_C_rank_tiny_font_5: symbol: common_texture_hud_type_C_rank_tiny_font_5 type: texture - offset: 0x1A198 + offset: 0x19758 size: 0x40 ctype: u8 width: 8 @@ -1537,7 +1537,7 @@ common_texture_hud_type_C_rank_tiny_font_5: common_texture_hud_type_C_rank_tiny_font_6: symbol: common_texture_hud_type_C_rank_tiny_font_6 type: texture - offset: 0x1A1D8 + offset: 0x19798 size: 0x40 ctype: u8 width: 8 @@ -1547,7 +1547,7 @@ common_texture_hud_type_C_rank_tiny_font_6: common_texture_hud_type_C_rank_tiny_font_7: symbol: common_texture_hud_type_C_rank_tiny_font_7 type: texture - offset: 0x1A218 + offset: 0x197D8 size: 0x40 ctype: u8 width: 8 @@ -1557,7 +1557,7 @@ common_texture_hud_type_C_rank_tiny_font_7: common_texture_hud_type_C_rank_tiny_font_8: symbol: common_texture_hud_type_C_rank_tiny_font_8 type: texture - offset: 0x1A258 + offset: 0x19818 size: 0x40 ctype: u8 width: 8 @@ -1567,7 +1567,7 @@ common_texture_hud_type_C_rank_tiny_font_8: common_texture_hud_type_C_rank_tiny_font_9: symbol: common_texture_hud_type_C_rank_tiny_font_9 type: texture - offset: 0x1A298 + offset: 0x19858 size: 0x40 ctype: u8 width: 8 @@ -1577,7 +1577,7 @@ common_texture_hud_type_C_rank_tiny_font_9: common_texture_character_portrait_border: symbol: common_texture_character_portrait_border type: texture - offset: 0x1A2D8 + offset: 0x19898 size: 0x200 ctype: u8 width: 32 @@ -1586,7 +1586,7 @@ common_texture_character_portrait_border: common_tlut_portrait_mario: symbol: common_tlut_portrait_mario type: texture - offset: 0x1A4D8 + offset: 0x19A98 size: 0x200 ctype: u16 colors: 16 @@ -1595,7 +1595,7 @@ common_tlut_portrait_mario: common_tlut_portrait_luigi: symbol: common_tlut_portrait_luigi type: texture - offset: 0x1A6D8 + offset: 0x19C98 size: 0x200 ctype: u16 colors: 16 @@ -1604,7 +1604,7 @@ common_tlut_portrait_luigi: common_tlut_portrait_peach: symbol: common_tlut_portrait_peach type: texture - offset: 0x1A8D8 + offset: 0x19E98 size: 0x200 ctype: u16 colors: 16 @@ -1613,7 +1613,7 @@ common_tlut_portrait_peach: common_tlut_portrait_toad: symbol: common_tlut_portrait_toad type: texture - offset: 0x1AAD8 + offset: 0x1A098 size: 0x200 ctype: u16 colors: 16 @@ -1622,7 +1622,7 @@ common_tlut_portrait_toad: common_tlut_portrait_yoshi: symbol: common_tlut_portrait_yoshi type: texture - offset: 0x1ACD8 + offset: 0x1A298 size: 0x200 ctype: u16 colors: 16 @@ -1631,7 +1631,7 @@ common_tlut_portrait_yoshi: common_tlut_portrait_donkey_kong: symbol: common_tlut_portrait_donkey_kong type: texture - offset: 0x1AED8 + offset: 0x1A498 size: 0x200 ctype: u16 colors: 16 @@ -1640,7 +1640,7 @@ common_tlut_portrait_donkey_kong: common_tlut_portrait_wario: symbol: common_tlut_portrait_wario type: texture - offset: 0x1B0D8 + offset: 0x1A698 size: 0x200 ctype: u16 colors: 16 @@ -1649,7 +1649,7 @@ common_tlut_portrait_wario: common_tlut_portrait_bowser: symbol: common_tlut_portrait_bowser type: texture - offset: 0x1B2D8 + offset: 0x1A898 size: 0x200 ctype: u16 colors: 16 @@ -1658,7 +1658,7 @@ common_tlut_portrait_bowser: common_tlut_portrait_bomb_kart_and_question_mark: symbol: common_tlut_portrait_bomb_kart_and_question_mark type: texture - offset: 0x1B4D8 + offset: 0x1AA98 size: 0x200 ctype: u16 colors: 16 @@ -1667,7 +1667,7 @@ common_tlut_portrait_bomb_kart_and_question_mark: common_texture_portrait_mario: symbol: common_texture_portrait_mario # 132B50_16A58 type: texture - offset: 0x1B6D8 + offset: 0x1AC98 size: 0x400 ctype: u8 width: 32 @@ -1677,7 +1677,7 @@ common_texture_portrait_mario: common_texture_portrait_luigi: symbol: common_texture_portrait_luigi # 132B50_16A58 type: texture - offset: 0x1BAD8 + offset: 0x1B098 size: 0x400 ctype: u8 width: 32 @@ -1687,7 +1687,7 @@ common_texture_portrait_luigi: common_texture_portrait_peach: symbol: common_texture_portrait_peach # 132B50_16A58 type: texture - offset: 0x1BED8 + offset: 0x1B498 size: 0x400 ctype: u8 width: 32 @@ -1697,7 +1697,7 @@ common_texture_portrait_peach: common_texture_portrait_toad: symbol: common_texture_portrait_toad # 132B50_16A58 type: texture - offset: 0x1C2D8 + offset: 0x1B898 size: 0x400 ctype: u8 width: 32 @@ -1707,7 +1707,7 @@ common_texture_portrait_toad: common_texture_portrait_yoshi: symbol: common_texture_portrait_yoshi # 132B50_16A58 type: texture - offset: 0x1C6D8 + offset: 0x1BC98 size: 0x400 ctype: u8 width: 32 @@ -1717,7 +1717,7 @@ common_texture_portrait_yoshi: common_texture_portrait_donkey_kong: symbol: common_texture_portrait_donkey_kong # 132B50_16A58 type: texture - offset: 0x1CAD8 + offset: 0x1C098 size: 0x400 ctype: u8 width: 32 @@ -1727,7 +1727,7 @@ common_texture_portrait_donkey_kong: common_texture_portrait_wario: symbol: common_texture_portrait_wario # 132B50_16A58 type: texture - offset: 0x1CED8 + offset: 0x1C498 size: 0x400 ctype: u8 width: 32 @@ -1737,7 +1737,7 @@ common_texture_portrait_wario: common_texture_portrait_bowser: symbol: common_texture_portrait_bowser # 132B50_16A58 type: texture - offset: 0x1D2D8 + offset: 0x1C898 size: 0x400 ctype: u8 width: 32 @@ -1747,7 +1747,7 @@ common_texture_portrait_bowser: common_texture_portrait_bomb_kart: symbol: common_texture_portrait_bomb_kart # 132B50_16A58 type: texture - offset: 0x1D6D8 + offset: 0x1CC98 size: 0x400 ctype: u8 width: 32 @@ -1757,7 +1757,7 @@ common_texture_portrait_bomb_kart: common_texture_portrait_question_mark: symbol: common_texture_portrait_question_mark # 132B50_16A58 type: texture - offset: 0x1DAD8 + offset: 0x1D098 size: 0x400 ctype: u8 width: 32 @@ -1767,7 +1767,7 @@ common_texture_portrait_question_mark: common_tlut_item_window_none: symbol: common_tlut_item_window_none type: texture - offset: 0x1DED8 + offset: 0x1D498 ctype: u16 colors: 256 height: 16 @@ -1775,7 +1775,7 @@ common_tlut_item_window_none: common_tlut_item_window_banana: symbol: common_tlut_item_window_banana type: texture - offset: 0x1E0D8 + offset: 0x1D698 ctype: u16 colors: 256 height: 16 @@ -1783,7 +1783,7 @@ common_tlut_item_window_banana: common_tlut_item_window_banana_bunch: symbol: common_tlut_item_window_banana_bunch type: texture - offset: 0x1E2D8 + offset: 0x1D898 ctype: u16 colors: 256 height: 16 @@ -1791,7 +1791,7 @@ common_tlut_item_window_banana_bunch: common_tlut_item_window_mushroom: symbol: common_tlut_item_window_mushroom type: texture - offset: 0x1E4D8 + offset: 0x1DA98 ctype: u16 colors: 256 height: 16 @@ -1799,7 +1799,7 @@ common_tlut_item_window_mushroom: common_tlut_item_window_double_mushroom: symbol: common_tlut_item_window_double_mushroom type: texture - offset: 0x1E6D8 + offset: 0x1DC98 ctype: u16 colors: 256 height: 16 @@ -1807,7 +1807,7 @@ common_tlut_item_window_double_mushroom: common_tlut_item_window_triple_mushroom: symbol: common_tlut_item_window_triple_mushroom type: texture - offset: 0x1E8D8 + offset: 0x1DE98 ctype: u16 colors: 256 height: 16 @@ -1815,7 +1815,7 @@ common_tlut_item_window_triple_mushroom: common_tlut_item_window_super_mushroom: symbol: common_tlut_item_window_super_mushroom type: texture - offset: 0x1EAD8 + offset: 0x1E098 ctype: u16 colors: 256 height: 16 @@ -1823,7 +1823,7 @@ common_tlut_item_window_super_mushroom: common_tlut_item_window_blue_shell: symbol: common_tlut_item_window_blue_shell type: texture - offset: 0x1ECD8 + offset: 0x1E298 ctype: u16 colors: 256 height: 16 @@ -1831,7 +1831,7 @@ common_tlut_item_window_blue_shell: common_tlut_item_window_boo: symbol: common_tlut_item_window_boo type: texture - offset: 0x1EED8 + offset: 0x1E498 ctype: u16 colors: 256 height: 16 @@ -1839,7 +1839,7 @@ common_tlut_item_window_boo: common_tlut_item_window_green_shell: symbol: common_tlut_item_window_green_shell type: texture - offset: 0x1F0D8 + offset: 0x1E698 ctype: u16 colors: 256 height: 16 @@ -1847,7 +1847,7 @@ common_tlut_item_window_green_shell: common_tlut_item_window_triple_green_shell: symbol: common_tlut_item_window_triple_green_shell type: texture - offset: 0x1F2D8 + offset: 0x1E898 ctype: u16 colors: 256 height: 16 @@ -1855,7 +1855,7 @@ common_tlut_item_window_triple_green_shell: common_tlut_item_window_red_shell: symbol: common_tlut_item_window_red_shell type: texture - offset: 0x1F4D8 + offset: 0x1EA98 ctype: u16 colors: 256 height: 16 @@ -1863,7 +1863,7 @@ common_tlut_item_window_red_shell: common_tlut_item_window_triple_red_shell: symbol: common_tlut_item_window_triple_red_shell type: texture - offset: 0x1F6D8 + offset: 0x1EC98 ctype: u16 colors: 256 height: 16 @@ -1871,7 +1871,7 @@ common_tlut_item_window_triple_red_shell: common_tlut_item_window_star: symbol: common_tlut_item_window_star type: texture - offset: 0x1F8D8 + offset: 0x1EE98 ctype: u16 colors: 256 height: 16 @@ -1879,7 +1879,7 @@ common_tlut_item_window_star: common_tlut_item_window_thunder_bolt: symbol: common_tlut_item_window_thunder_bolt type: texture - offset: 0x1FAD8 + offset: 0x1F098 ctype: u16 colors: 256 height: 16 @@ -1887,7 +1887,7 @@ common_tlut_item_window_thunder_bolt: common_tlut_item_window_fake_item_box: symbol: common_tlut_item_window_fake_item_box type: texture - offset: 0x1FCD8 + offset: 0x1F298 ctype: u16 colors: 256 height: 16 @@ -1895,7 +1895,7 @@ common_tlut_item_window_fake_item_box: common_texture_item_window_none: symbol: common_texture_item_window_none type: texture - offset: 0x1FED8 + offset: 0x1F498 width: 40 height: 32 format: ci8 @@ -1903,7 +1903,7 @@ common_texture_item_window_none: common_texture_item_window_banana: symbol: common_texture_item_window_banana type: texture - offset: 0x203D8 + offset: 0x1F998 width: 40 height: 32 format: ci8 @@ -1911,7 +1911,7 @@ common_texture_item_window_banana: common_texture_item_window_banana_bunch: symbol: common_texture_item_window_banana_bunch type: texture - offset: 0x208D8 + offset: 0x1FE98 width: 40 height: 32 format: ci8 @@ -1919,7 +1919,7 @@ common_texture_item_window_banana_bunch: common_texture_item_window_mushroom: symbol: common_texture_item_window_mushroom type: texture - offset: 0x20DD8 + offset: 0x20398 width: 40 height: 32 format: ci8 @@ -1927,7 +1927,7 @@ common_texture_item_window_mushroom: common_texture_item_window_double_mushroom: symbol: common_texture_item_window_double_mushroom type: texture - offset: 0x212D8 + offset: 0x20898 width: 40 height: 32 format: ci8 @@ -1935,7 +1935,7 @@ common_texture_item_window_double_mushroom: common_texture_item_window_triple_mushroom: symbol: common_texture_item_window_triple_mushroom type: texture - offset: 0x217D8 + offset: 0x20D98 width: 40 height: 32 format: ci8 @@ -1943,7 +1943,7 @@ common_texture_item_window_triple_mushroom: common_texture_item_window_super_mushroom: symbol: common_texture_item_window_super_mushroom type: texture - offset: 0x21CD8 + offset: 0x21298 width: 40 height: 32 format: ci8 @@ -1951,7 +1951,7 @@ common_texture_item_window_super_mushroom: common_texture_item_window_blue_shell: symbol: common_texture_item_window_blue_shell type: texture - offset: 0x221D8 + offset: 0x21798 width: 40 height: 32 format: ci8 @@ -1959,7 +1959,7 @@ common_texture_item_window_blue_shell: common_texture_item_window_boo: symbol: common_texture_item_window_boo type: texture - offset: 0x226D8 + offset: 0x21C98 width: 40 height: 32 format: ci8 @@ -1967,7 +1967,7 @@ common_texture_item_window_boo: common_texture_item_window_green_shell: symbol: common_texture_item_window_green_shell type: texture - offset: 0x22BD8 + offset: 0x22198 width: 40 height: 32 format: ci8 @@ -1975,7 +1975,7 @@ common_texture_item_window_green_shell: common_texture_item_window_triple_green_shell: symbol: common_texture_item_window_triple_green_shell type: texture - offset: 0x230D8 + offset: 0x22698 width: 40 height: 32 format: ci8 @@ -1983,7 +1983,7 @@ common_texture_item_window_triple_green_shell: common_texture_item_window_red_shell: symbol: common_texture_item_window_red_shell type: texture - offset: 0x235D8 + offset: 0x22B98 width: 40 height: 32 format: ci8 @@ -1991,7 +1991,7 @@ common_texture_item_window_red_shell: common_texture_item_window_triple_red_shell: symbol: common_texture_item_window_triple_red_shell type: texture - offset: 0x23AD8 + offset: 0x23098 width: 40 height: 32 format: ci8 @@ -1999,7 +1999,7 @@ common_texture_item_window_triple_red_shell: common_texture_item_window_star: symbol: common_texture_item_window_star type: texture - offset: 0x23FD8 + offset: 0x23598 width: 40 height: 32 format: ci8 @@ -2007,7 +2007,7 @@ common_texture_item_window_star: common_texture_item_window_thunder_bolt: symbol: common_texture_item_window_thunder_bolt type: texture - offset: 0x244D8 + offset: 0x23A98 width: 40 height: 32 format: ci8 @@ -2015,7 +2015,7 @@ common_texture_item_window_thunder_bolt: common_texture_item_window_fake_item_box: symbol: common_texture_item_window_fake_item_box type: texture - offset: 0x249D8 + offset: 0x23F98 width: 40 height: 32 format: ci8 @@ -2023,7 +2023,7 @@ common_texture_item_window_fake_item_box: common_tlut_lakitu_no_lights: symbol: common_tlut_lakitu_no_lights type: texture - offset: 0x24ED8 + offset: 0x24498 ctype: u16 colors: 256 height: 16 @@ -2031,7 +2031,7 @@ common_tlut_lakitu_no_lights: common_tlut_lakitu_red_lights: symbol: common_tlut_lakitu_red_lights type: texture - offset: 0x250D8 + offset: 0x24698 ctype: u16 colors: 256 height: 16 @@ -2039,7 +2039,7 @@ common_tlut_lakitu_red_lights: common_tlut_lakitu_blue_lights: symbol: common_tlut_lakitu_blue_lights type: texture - offset: 0x252D8 + offset: 0x24898 ctype: u16 colors: 256 height: 16 @@ -2047,7 +2047,7 @@ common_tlut_lakitu_blue_lights: common_tlut_lakitu_checkered_flag: symbol: common_tlut_lakitu_checkered_flag type: texture - offset: 0x254D8 + offset: 0x24A98 ctype: u16 width: 16 height: 16 @@ -2055,7 +2055,7 @@ common_tlut_lakitu_checkered_flag: common_tlut_lakitu_second_lap: symbol: common_tlut_lakitu_second_lap type: texture - offset: 0x256D8 + offset: 0x24C98 ctype: u16 width: 16 height: 16 @@ -2063,7 +2063,7 @@ common_tlut_lakitu_second_lap: common_tlut_lakitu_final_lap: symbol: common_tlut_lakitu_final_lap type: texture - offset: 0x258D8 + offset: 0x24E98 ctype: u16 width: 16 height: 16 @@ -2071,7 +2071,7 @@ common_tlut_lakitu_final_lap: common_tlut_lakitu_reverse: symbol: common_tlut_lakitu_reverse type: texture - offset: 0x25AD8 + offset: 0x25098 ctype: u16 width: 16 height: 16 @@ -2079,7 +2079,7 @@ common_tlut_lakitu_reverse: common_tlut_lakitu_fishing: symbol: common_tlut_lakitu_fishing type: texture - offset: 0x25CD8 + offset: 0x25298 ctype: u16 width: 16 height: 16 @@ -2087,14 +2087,14 @@ common_tlut_lakitu_fishing: common_tlut_traffic_light: symbol: common_tlut_traffic_light type: texture - offset: 0x25ED8 + offset: 0x25498 ctype: u16 colors: 256 format: tlut common_texture_traffic_light_01: symbol: common_texture_traffic_light_01 type: texture - offset: 0x260D8 + offset: 0x25698 width: 24 height: 48 format: ci8 @@ -2102,7 +2102,7 @@ common_texture_traffic_light_01: common_texture_traffic_light_02: symbol: common_texture_traffic_light_02 type: texture - offset: 0x26558 + offset: 0x25B18 width: 24 height: 48 format: ci8 @@ -2110,7 +2110,7 @@ common_texture_traffic_light_02: common_texture_traffic_light_03: symbol: common_texture_traffic_light_03 type: texture - offset: 0x269D8 + offset: 0x25F98 width: 24 height: 48 format: ci8 @@ -2118,7 +2118,7 @@ common_texture_traffic_light_03: common_texture_traffic_light_04: symbol: common_texture_traffic_light_04 type: texture - offset: 0x26E58 + offset: 0x26418 width: 24 height: 48 format: ci8 @@ -2126,7 +2126,7 @@ common_texture_traffic_light_04: common_texture_traffic_light_05: symbol: common_texture_traffic_light_05 type: texture - offset: 0x272D8 + offset: 0x26898 width: 24 height: 48 format: ci8 @@ -2134,7 +2134,7 @@ common_texture_traffic_light_05: common_texture_traffic_light_06: symbol: common_texture_traffic_light_06 type: texture - offset: 0x27758 + offset: 0x26D18 width: 24 height: 48 format: ci8 @@ -2142,7 +2142,7 @@ common_texture_traffic_light_06: common_texture_traffic_light_07: symbol: common_texture_traffic_light_07 type: texture - offset: 0x27BD8 + offset: 0x27198 width: 24 height: 48 format: ci8 @@ -2150,7 +2150,7 @@ common_texture_traffic_light_07: common_texture_traffic_light_08: symbol: common_texture_traffic_light_08 type: texture - offset: 0x28058 + offset: 0x27618 width: 24 height: 48 format: ci8 @@ -2158,7 +2158,7 @@ common_texture_traffic_light_08: common_texture_traffic_light_09: symbol: common_texture_traffic_light_09 type: texture - offset: 0x284D8 + offset: 0x27A98 width: 24 height: 48 format: ci8 @@ -2166,7 +2166,7 @@ common_texture_traffic_light_09: common_texture_traffic_light_10: symbol: common_texture_traffic_light_10 type: texture - offset: 0x28958 + offset: 0x27F18 width: 24 height: 48 format: ci8 @@ -2174,7 +2174,7 @@ common_texture_traffic_light_10: common_texture_particle_leaf: symbol: common_texture_particle_leaf type: texture - offset: 0x28DD8 + offset: 0x28398 width: 32 height: 16 ctype: u16 @@ -2182,7 +2182,7 @@ common_texture_particle_leaf: common_texture_unused_particle_leaf: symbol: common_texture_unused_particle_leaf type: texture - offset: 0x291D8 + offset: 0x28798 width: 16 height: 16 ctype: u16 @@ -2190,21 +2190,21 @@ common_texture_unused_particle_leaf: D_0D0293D8: # Cloud, smoke, or fog? symbol: D_0D0293D8 type: texture - offset: 0x293D8 + offset: 0x28998 width: 16 height: 16 format: i4 D_0D029458: # Smoke? symbol: D_0D029458 type: texture - offset: 0x29458 + offset: 0x28A18 width: 32 height: 32 format: i8 common_tlut_bomb: # This is placed below in rom. Hack to make torch extract the tlut first. symbol: common_tlut_bomb type: texture - offset: 0x2A858 + offset: 0x29E18 ctype: u16 colors: 256 height: 16 @@ -2212,7 +2212,7 @@ common_tlut_bomb: # This is placed below in rom. Hack to make torch extract the common_texture_bomb_1: # Smoke? symbol: common_texture_bomb_1 type: texture - offset: 0x29858 + offset: 0x28E18 width: 32 height: 32 format: ci8 @@ -2220,7 +2220,7 @@ common_texture_bomb_1: # Smoke? common_texture_bomb_2: # Smoke? symbol: common_texture_bomb_2 type: texture - offset: 0x29C58 + offset: 0x29218 width: 32 height: 32 format: ci8 @@ -2228,7 +2228,7 @@ common_texture_bomb_2: # Smoke? common_texture_bomb_3: # Smoke? symbol: common_texture_bomb_3 type: texture - offset: 0x2A058 + offset: 0x29618 width: 32 height: 32 format: ci8 @@ -2236,7 +2236,7 @@ common_texture_bomb_3: # Smoke? common_texture_bomb_4: # Smoke? symbol: common_texture_bomb_4 type: texture - offset: 0x2A458 + offset: 0x29A18 width: 32 height: 32 format: ci8 @@ -2244,14 +2244,14 @@ common_texture_bomb_4: # Smoke? D_0D02AA58: symbol: D_0D02AA58 type: texture - offset: 0x2AA58 + offset: 0x2A018 ctype: u16 width: 16 height: 16 format: rgba16 common_texture_particle_spark_1: symbol: common_texture_particle_spark_1 - offset: 0x2AC58 + offset: 0x2A218 width: 32 height: 32 ctype: u8 @@ -2259,56 +2259,56 @@ common_texture_particle_spark_1: format: i8 common_texture_particle_spark_2: symbol: common_texture_particle_spark_2 - offset: 0x2B058 + offset: 0x2A618 width: 32 height: 32 type: texture format: i8 common_texture_particle_spark_3: symbol: common_texture_particle_spark_3 - offset: 0x2B458 + offset: 0x2AA18 width: 32 height: 32 type: texture format: i8 common_texture_particle_spark_4: symbol: common_texture_particle_spark_4 - offset: 0x2B858 + offset: 0x2AE18 width: 32 height: 32 type: texture format: i8 common_texture_particle_smoke_1: symbol: common_texture_particle_smoke_1 - offset: 0x2BC58 + offset: 0x2B218 width: 32 height: 32 type: texture format: i8 common_texture_particle_smoke_2: symbol: common_texture_particle_smoke_2 - offset: 0x2C058 + offset: 0x2B618 width: 32 height: 32 type: texture format: i8 common_texture_particle_smoke_3: symbol: common_texture_particle_smoke_3 - offset: 0x2C458 + offset: 0x2BA18 width: 32 height: 32 type: texture format: i8 common_texture_particle_smoke_4: symbol: common_texture_particle_smoke_4 - offset: 0x2C858 + offset: 0x2BE18 width: 32 height: 32 type: texture format: i8 common_texture_minimap_finish_line: symbol: common_texture_minimap_finish_line - offset: 0x2CC58 + offset: 0x2C218 width: 8 height: 8 ctype: u16 @@ -2316,7 +2316,7 @@ common_texture_minimap_finish_line: format: rgba16 common_texture_minimap_kart_mario: symbol: common_texture_minimap_kart_mario - offset: 0x2CCD8 + offset: 0x2C298 ctype: u16 width: 8 height: 8 @@ -2324,7 +2324,7 @@ common_texture_minimap_kart_mario: format: rgba16 common_texture_minimap_kart_luigi: symbol: common_texture_minimap_kart_luigi - offset: 0x2CD58 + offset: 0x2C318 ctype: u16 width: 8 height: 8 @@ -2332,7 +2332,7 @@ common_texture_minimap_kart_luigi: format: rgba16 common_texture_minimap_kart_yoshi: symbol: common_texture_minimap_kart_yoshi - offset: 0x2CDD8 + offset: 0x2C398 ctype: u16 width: 8 height: 8 @@ -2340,7 +2340,7 @@ common_texture_minimap_kart_yoshi: format: rgba16 common_texture_minimap_kart_toad: symbol: common_texture_minimap_kart_toad - offset: 0x2CE58 + offset: 0x2C418 ctype: u16 width: 8 height: 8 @@ -2348,7 +2348,7 @@ common_texture_minimap_kart_toad: format: rgba16 common_texture_minimap_kart_donkey_kong: symbol: common_texture_minimap_kart_donkey_kong - offset: 0x2CED8 + offset: 0x2C498 ctype: u16 width: 8 height: 8 @@ -2356,7 +2356,7 @@ common_texture_minimap_kart_donkey_kong: format: rgba16 common_texture_minimap_kart_wario: symbol: common_texture_minimap_kart_wario - offset: 0x2CF58 + offset: 0x2C518 ctype: u16 width: 8 height: 8 @@ -2364,7 +2364,7 @@ common_texture_minimap_kart_wario: format: rgba16 common_texture_minimap_kart_peach: symbol: common_texture_minimap_kart_peach - offset: 0x2CFD8 + offset: 0x2C598 ctype: u16 width: 8 height: 8 @@ -2372,7 +2372,7 @@ common_texture_minimap_kart_peach: format: rgba16 common_texture_minimap_kart_bowser: symbol: common_texture_minimap_kart_bowser - offset: 0x2D058 + offset: 0x2C618 ctype: u16 width: 8 height: 8 @@ -2380,7 +2380,7 @@ common_texture_minimap_kart_bowser: format: rgba16 common_texture_minimap_progress_dot: symbol: common_texture_minimap_progress_dot - offset: 0x2D0D8 + offset: 0x2C698 ctype: u16 width: 8 height: 8 From dd87d3b4663e34612818c1f60255b4ca89546b71 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 06:24:33 -0700 Subject: [PATCH 28/41] jp.v11: ceremony data offsets Segment 0x0B is the same 36,232 bytes in both versions and identical up to 0x6BB8, but JP arranges the tail differently: the four podium_ceremony_path tables move from the end of the segment to just ahead of light1, and everything between them shifts up by 0x2E0. yamls/jp.v11/ceremony_data.yml still described the us arrangement, so Torch read the display lists out of what is texture data in JP. A `gfx` entry is sized by scanning for its end opcode rather than from the yaml, so each one ran past its real end and the segment came out 1,680 bytes over. With the offsets corrected the built segment is byte-identical to the cartridge's. Co-Authored-By: Claude Fable 5 --- yamls/jp.v11/ceremony_data.yml | 44 +++++++++++++++++----------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/yamls/jp.v11/ceremony_data.yml b/yamls/jp.v11/ceremony_data.yml index d1945e5aeb..dd800139da 100644 --- a/yamls/jp.v11/ceremony_data.yml +++ b/yamls/jp.v11/ceremony_data.yml @@ -133,12 +133,12 @@ gold_trophy_dl15: light1: symbol: light1 type: lights - offset: 0x6BB8 + offset: 0x6E98 texture_podium1: symbol: gTexturePodium1 type: texture ctype: u16 - offset: 0x6BD0 + offset: 0x6EB0 size: 2048 width: 32 height: 32 @@ -146,28 +146,28 @@ texture_podium1: podium_dl: symbol: podium_dl type: gfx - offset: 0x7510 + offset: 0x77F0 podium_dl2: symbol: podium_dl2 type: gfx - offset: 0x75E0 + offset: 0x78C0 podium_dl3: symbol: podium_dl3 type: gfx - offset: 0x75F0 + offset: 0x78D0 podium_dl4: symbol: podium_dl4 type: gfx - offset: 0x7600 + offset: 0x78E0 light2: symbol: light2 type: lights - offset: 0x7748 + offset: 0x7A28 texture_podium2: symbol: gTexturePodium2 type: texture ctype: u16 - offset: 0x7760 + offset: 0x7A40 size: 2048 width: 32 height: 32 @@ -175,28 +175,28 @@ texture_podium2: podium2_dl: symbol: podium2_dl type: gfx - offset: 0x7F60 + offset: 0x8240 podium2_dl2: symbol: podium2_dl2 type: gfx - offset: 0x8030 + offset: 0x8310 podium2_dl3: symbol: podium2_dl3 type: gfx - offset: 0x8040 + offset: 0x8320 podium2_dl4: symbol: podium2_dl4 type: gfx - offset: 0x8050 + offset: 0x8330 light3: symbol: light3 type: lights - offset: 0x8058 + offset: 0x8338 texture_podium3: symbol: gTexturePodium3 type: texture ctype: u16 - offset: 0x8070 + offset: 0x8350 size: 2048 width: 32 height: 32 @@ -204,36 +204,36 @@ texture_podium3: podium3_dl: symbol: podium3_dl type: gfx - offset: 0x89B0 + offset: 0x8C90 podium3_dl2: symbol: podium3_dl2 type: gfx - offset: 0x8A80 + offset: 0x8D60 podium3_dl3: symbol: podium3_dl3 type: gfx - offset: 0x8A90 + offset: 0x8D70 podium3_dl4: symbol: podium3_dl4 type: gfx - offset: 0x8AA0 + offset: 0x8D80 ending_sequence: symbol: podium_ceremony_path type: mk64:track_path - offset: 0x8AA8 + offset: 0x6BB8 count: 24 ending_sequence2: symbol: podium_ceremony_path_2 type: mk64:track_path - offset: 0x8B68 + offset: 0x6C78 count: 23 ending_sequence3: symbol: podium_ceremony_path_3 type: mk64:track_path - offset: 0x8C20 + offset: 0x6D30 count: 24 ending_sequence4: symbol: podium_ceremony_path_4 type: mk64:track_path - offset: 0x8CE0 + offset: 0x6DF0 count: 21 From 2df09e1835bd6206c33a300f9fff0a82fd2d8e48 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 06:24:33 -0700 Subject: [PATCH 29/41] jp.v11: luigi_raceway vertices JP ships different geometry for this course: 5,949 vertices against the us table's 5,936, with 674 matching at the head and 1,254 at the tail. That is the same difference the packed display lists carry, and it is why they hold 434 differing gsSPVertex operands. Separate file under one guard, the shape 6b464168e used for the display lists. A file that currently produces byte-perfect us/eu.v10/eu.v11 cannot regress while the us table sits untouched on the #else branch. The table was read from the course geography block in the JP cart with a generator checked both ways against upstream's own us file: the us source compiles to the same bytes the us build produces, and those bytes re-emit that file character for character. This is the last piece: make VERSION=jp.v11 now reproduces the cart. Co-Authored-By: Claude Fable 5 --- courses/luigi_raceway/course_vertices.inc.c | 4 + .../course_vertices.jp.v11.inc.c | 5957 +++++++++++++++++ 2 files changed, 5961 insertions(+) create mode 100644 courses/luigi_raceway/course_vertices.jp.v11.inc.c diff --git a/courses/luigi_raceway/course_vertices.inc.c b/courses/luigi_raceway/course_vertices.inc.c index 517170b7df..fedc70c467 100644 --- a/courses/luigi_raceway/course_vertices.inc.c +++ b/courses/luigi_raceway/course_vertices.inc.c @@ -1,6 +1,9 @@ #include #include +#ifdef VERSION_JP +#include "course_vertices.jp.v11.inc.c" +#else CourseVtx d_course_luigi_raceway_vertex[] = { { { 175, 107, -448 }, { 0, 74 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, { { 177, 73, -448 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, @@ -5940,3 +5943,4 @@ CourseVtx d_course_luigi_raceway_vertex[] = { { { -394, -108, -49 }, { -3799, -179 }, { MACRO_COLOR_FLAG(0x64, 0x64, 0x64, 0), 0x00 } }, }; +#endif diff --git a/courses/luigi_raceway/course_vertices.jp.v11.inc.c b/courses/luigi_raceway/course_vertices.jp.v11.inc.c new file mode 100644 index 0000000000..d77a8ca3c6 --- /dev/null +++ b/courses/luigi_raceway/course_vertices.jp.v11.inc.c @@ -0,0 +1,5957 @@ +/* JP ships a different build of this course: 5,949 vertices against the US + * table's 5,936, differing in the middle third. Read from the course geography + * block in the JP cart; see the PR description. Included by + * course_vertices.inc.c under VERSION_JP. */ + +CourseVtx d_course_luigi_raceway_vertex[] = { + { { 175, 107, -448 }, { 0, 74 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 177, 73, -448 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 177, 73, -295 }, { 4172, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 175, 107, -294 }, { 4198, 74 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 175, 107, -144 }, { -9, 74 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 177, 73, -144 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 177, 73, 2 }, { 3983, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 175, 107, 2 }, { 3983, 74 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 177, 107, -144 }, { 8951, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 177, 73, -144 }, { 8951, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 177, 73, 2 }, { 13260, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 177, 107, 2 }, { 13260, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 177, 107, -448 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 177, 73, -448 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 177, 73, -295 }, { 4502, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 177, 107, -294 }, { 4530, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -668, -50, -3006 }, { 3382, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -668, -31, -3006 }, { 3382, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -608, -31, -2968 }, { -491, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -608, -50, -2968 }, { -491, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -750, -50, -3044 }, { 4235, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -750, -31, -3044 }, { 4235, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -668, -31, -3006 }, { -696, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -668, -50, -3006 }, { -696, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -834, -50, -3067 }, { 3840, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -834, -31, -3067 }, { 3840, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -750, -31, -3044 }, { -901, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -750, -50, -3044 }, { -901, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -913, -50, -3077 }, { 4133, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -913, -31, -3077 }, { 4133, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -834, -31, -3067 }, { -245, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -834, -50, -3067 }, { -245, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -994, -50, -3073 }, { 4417, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -994, -31, -3073 }, { 4417, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -913, -31, -3077 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -913, -50, -3077 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1071, -50, -3057 }, { 3685, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1071, -31, -3057 }, { 3685, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -994, -31, -3073 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -994, -50, -3073 }, { -614, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1134, -50, -3035 }, { 3225, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1134, -31, -3035 }, { 3225, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1071, -31, -3057 }, { -409, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1071, -50, -3057 }, { -409, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1198, -50, -2999 }, { 3168, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1198, -31, -2999 }, { 3168, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1134, -31, -3035 }, { -819, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1134, -50, -3035 }, { -819, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1312, -50, -2905 }, { 4090, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1312, -31, -2905 }, { 4090, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1257, -31, -2959 }, { -122, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1257, -50, -2959 }, { -122, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1360, -50, -2840 }, { 3657, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1360, -31, -2840 }, { 3657, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1312, -31, -2905 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1312, -50, -2905 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1399, -50, -2766 }, { 4189, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1399, -31, -2766 }, { 4189, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1360, -31, -2840 }, { -409, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1360, -50, -2840 }, { -409, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1257, -50, -2959 }, { 4019, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1257, -31, -2959 }, { 4019, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1198, -31, -2999 }, { 122, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1198, -50, -2999 }, { 122, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1419, -50, -2705 }, { 3585, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1419, -31, -2705 }, { 3585, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1399, -31, -2766 }, { 81, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1399, -50, -2766 }, { 81, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1434, -50, -2641 }, { 3092, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1434, -31, -2641 }, { 3092, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1419, -31, -2705 }, { -491, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1419, -50, -2705 }, { -491, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1438, -50, -2571 }, { 3817, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1438, -31, -2571 }, { 3817, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1434, -31, -2641 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1434, -50, -2641 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1432, -50, -2501 }, { 3580, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1432, -31, -2501 }, { 3580, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1438, -31, -2571 }, { -286, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1438, -50, -2571 }, { -286, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1420, -50, -2436 }, { 3090, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1420, -31, -2436 }, { 3090, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1432, -31, -2501 }, { -491, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1432, -50, -2501 }, { -491, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1399, -50, -2374 }, { 3575, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1399, -31, -2374 }, { 3575, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1420, -31, -2436 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1420, -50, -2436 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1369, -50, -2315 }, { 3138, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1369, -31, -2315 }, { 3138, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1399, -31, -2374 }, { -491, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1399, -50, -2374 }, { -491, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1322, -50, -2252 }, { 4361, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1322, -31, -2252 }, { 4361, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1369, -31, -2315 }, { 81, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1369, -50, -2315 }, { 81, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -459, -50, -2804 }, { 2630, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -459, -31, -2804 }, { 2630, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -431, -31, -2749 }, { -696, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -431, -50, -2749 }, { -696, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -498, -50, -2859 }, { 3282, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -498, -31, -2859 }, { 3282, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -459, -31, -2804 }, { -409, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -459, -50, -2804 }, { -409, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -547, -50, -2917 }, { 4362, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -547, -31, -2917 }, { 4362, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -498, -31, -2859 }, { 204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -498, -50, -2859 }, { 204, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -608, -50, -2968 }, { 3614, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -608, -31, -2968 }, { 3614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -547, -31, -2917 }, { -737, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -547, -50, -2917 }, { -737, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -465, -50, -1792 }, { 6945, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -465, -31, -1792 }, { 6945, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -595, -31, -1779 }, { -204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -595, -50, -1779 }, { -204, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -595, -50, -1779 }, { 3887, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -595, -31, -1779 }, { 3887, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -666, -31, -1822 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -666, -50, -1822 }, { -614, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -50, -1873 }, { 6319, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -31, -1873 }, { 6319, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -465, -31, -1792 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -465, -50, -1792 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -50, -2023 }, { 8396, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -31, -2023 }, { 8396, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -31, -1873 }, { 204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -1873 }, { 204, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -50, -2468 }, { 8134, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -31, -2468 }, { 8134, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -31, -2323 }, { 204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -2323 }, { 204, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -50, -2323 }, { 8396, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -31, -2323 }, { 8396, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -31, -2173 }, { 204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -2173 }, { 204, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -50, -2173 }, { 8396, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -31, -2173 }, { 8396, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -31, -2023 }, { 204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -2023 }, { 204, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -386, -50, -2542 }, { 3965, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -386, -31, -2542 }, { 3965, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -31, -2468 }, { -81, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -2468 }, { -81, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -394, -50, -2610 }, { 3618, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -394, -31, -2610 }, { 3618, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -386, -31, -2542 }, { -122, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -386, -50, -2542 }, { -122, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -410, -50, -2682 }, { 3607, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -410, -31, -2682 }, { 3607, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -394, -31, -2610 }, { -409, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -394, -50, -2610 }, { -409, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -431, -50, -2749 }, { 3386, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -431, -31, -2749 }, { 3386, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -410, -31, -2682 }, { -491, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -410, -50, -2682 }, { -491, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1053, -50, -2051 }, { 10675, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1053, -31, -2051 }, { 10675, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1221, -31, -2157 }, { -204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1221, -50, -2157 }, { -204, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1221, -50, -2157 }, { 3854, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1221, -31, -2157 }, { 3854, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1276, -31, -2200 }, { 81, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1276, -50, -2200 }, { 81, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1276, -50, -2200 }, { 3131, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1276, -31, -2200 }, { 3131, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1322, -31, -2252 }, { -696, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1322, -50, -2252 }, { -696, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -962, -50, 1402 }, { 2438, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -962, -31, 1402 }, { 2438, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1004, -31, 1371 }, { -409, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1004, -50, 1371 }, { -409, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -911, -50, 1427 }, { 2458, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -911, -31, 1427 }, { 2458, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -962, -31, 1402 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -962, -50, 1402 }, { -614, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -856, -50, 1446 }, { 2570, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -856, -31, 1446 }, { 2570, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -911, -31, 1427 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -911, -50, 1427 }, { -614, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -795, -50, 1453 }, { 2928, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -795, -31, 1453 }, { 2928, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -856, -31, 1446 }, { -450, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -856, -50, 1446 }, { -450, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -735, -50, 1453 }, { 3139, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -735, -31, 1453 }, { 3139, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -795, -31, 1453 }, { -122, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -795, -50, 1453 }, { -122, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -681, -50, 1445 }, { 3053, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -681, -31, 1445 }, { 3053, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -735, -31, 1453 }, { 81, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -735, -50, 1453 }, { 81, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -630, -50, 1425 }, { 2996, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -630, -31, 1425 }, { 2996, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -681, -31, 1445 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -681, -50, 1445 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -584, -50, 1400 }, { 2780, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -584, -31, 1400 }, { 2780, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -630, -31, 1425 }, { -81, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -630, -50, 1425 }, { -81, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -538, -50, 1355 }, { 3263, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -538, -31, 1355 }, { 3263, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -584, -31, 1400 }, { -245, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -584, -50, 1400 }, { -245, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -492, -50, 1301 }, { 4072, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -492, -31, 1301 }, { 4072, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -538, -31, 1355 }, { 204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -538, -50, 1355 }, { 204, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -464, -50, 1246 }, { 3388, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -464, -31, 1246 }, { 3388, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -492, -31, 1301 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -492, -50, 1301 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -438, -50, 1171 }, { 3698, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -438, -31, 1171 }, { 3698, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -464, -31, 1246 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -464, -50, 1246 }, { -614, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -417, -50, 1085 }, { 4442, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -417, -31, 1085 }, { 4442, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -438, -31, 1171 }, { -409, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -438, -50, 1171 }, { -409, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -401, -50, 1004 }, { 3916, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -401, -31, 1004 }, { 3916, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -417, -31, 1085 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -417, -50, 1085 }, { -614, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -393, -50, 922 }, { 4249, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -393, -31, 922 }, { 4249, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -401, -31, 1004 }, { -204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -401, -50, 1004 }, { -204, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -50, 747 }, { 8808, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -31, 747 }, { 8808, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -393, -31, 922 }, { -819, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -393, -50, 922 }, { -819, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -436, -50, 511 }, { 4314, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -436, -31, 511 }, { 4314, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -31, 584 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, 584 }, { -614, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -50, 584 }, { 8485, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -31, 584 }, { 8485, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -31, 747 }, { -409, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, 747 }, { -409, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1092, -50, 1233 }, { 2831, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1092, -31, 1233 }, { 2831, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1106, -31, 1183 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1106, -50, 1183 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1073, -50, 1283 }, { 2684, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1073, -31, 1283 }, { 2684, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1092, -31, 1233 }, { -204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1092, -50, 1233 }, { -204, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1043, -50, 1326 }, { 2504, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1043, -31, 1326 }, { 2504, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1073, -31, 1283 }, { -409, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1073, -50, 1283 }, { -409, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1004, -50, 1371 }, { 2643, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1004, -31, 1371 }, { 2643, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1043, -31, 1326 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1043, -50, 1326 }, { -614, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -666, -50, -1822 }, { 12675, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -666, -31, -1822 }, { 12675, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -868, -31, -1940 }, { -122, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -868, -50, -1940 }, { -122, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -868, -50, -1940 }, { 11138, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -868, -31, -1940 }, { 11138, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1053, -31, -2051 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1053, -50, -2051 }, { -614, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -528, -50, 506 }, { 5055, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -528, -31, 506 }, { 5055, -5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -436, -31, 511 }, { 0, -5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -436, -50, 511 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -831, -50, 733 }, { 10283, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -831, -31, 733 }, { 10283, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -682, -31, 621 }, { 122, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -682, -50, 621 }, { 122, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -682, -50, 621 }, { 10379, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -682, -31, 621 }, { 10379, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -528, -31, 506 }, { -122, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -528, -50, 506 }, { -122, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -967, -50, 838 }, { 9414, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -967, -31, 838 }, { 9414, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -831, -31, 733 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -831, -50, 733 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1015, -50, 884 }, { 3794, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1015, -31, 884 }, { 3794, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -967, -31, 838 }, { 204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -967, -50, 838 }, { 204, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1056, -50, 932 }, { 3155, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1056, -31, 932 }, { 3155, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1015, -31, 884 }, { -286, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1015, -50, 884 }, { -286, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1076, -50, 967 }, { 2332, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1076, -31, 967 }, { 2332, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1056, -31, 932 }, { 81, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1056, -50, 932 }, { 81, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1096, -50, 1023 }, { 2484, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1096, -31, 1023 }, { 2484, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1076, -31, 967 }, { -737, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1076, -50, 967 }, { -737, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1107, -50, 1078 }, { 2443, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1107, -31, 1078 }, { 2443, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1096, -31, 1023 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1096, -50, 1023 }, { -614, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1109, -50, 1136 }, { 2558, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1109, -31, 1136 }, { 2558, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1107, -31, 1078 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1107, -50, 1078 }, { -614, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1106, -50, 1183 }, { 2094, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1106, -31, 1183 }, { 2094, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1109, -31, 1136 }, { -491, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1109, -50, 1136 }, { -491, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -750, -31, -3044 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -757, -31, -3017 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -622, -31, -2945 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -608, -31, -2968 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -913, -31, -3077 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -912, -31, -3048 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -622, -50, -2945 }, { -491, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -622, -31, -2945 }, { -491, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -757, -31, -3017 }, { 3382, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -757, -50, -3017 }, { 3382, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -757, -50, -3017 }, { -245, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -757, -31, -3017 }, { -245, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -912, -31, -3048 }, { 4133, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -912, -50, -3048 }, { 4133, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1198, -31, -2999 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1183, -31, -2975 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1062, -31, -3030 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1071, -31, -3057 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -912, -31, -3048 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -913, -31, -3077 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -912, -50, -3048 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -912, -31, -3048 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1062, -31, -3030 }, { 4417, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1062, -50, -3030 }, { 4417, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1062, -50, -3030 }, { -819, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1062, -31, -3030 }, { -819, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1183, -31, -2975 }, { 3168, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1183, -50, -2975 }, { 3168, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1399, -31, -2766 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1374, -31, -2753 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1291, -31, -2885 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1312, -31, -2905 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1183, -31, -2975 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1198, -31, -2999 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1291, -50, -2885 }, { -409, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1291, -31, -2885 }, { -409, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1374, -31, -2753 }, { 4189, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1374, -50, -2753 }, { 4189, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1183, -50, -2975 }, { 122, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1183, -31, -2975 }, { 122, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1291, -31, -2885 }, { 4019, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1291, -50, -2885 }, { 4019, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1432, -31, -2501 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1405, -31, -2501 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1407, -31, -2635 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1434, -31, -2641 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1374, -31, -2753 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1399, -31, -2766 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1374, -50, -2753 }, { 81, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1374, -31, -2753 }, { 81, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1407, -31, -2635 }, { 3585, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1407, -50, -2635 }, { 3585, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1407, -50, -2635 }, { -286, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1407, -31, -2635 }, { -286, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1405, -31, -2501 }, { 3580, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1405, -50, -2501 }, { 3580, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1322, -31, -2252 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1300, -31, -2265 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1374, -31, -2381 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1399, -31, -2374 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1405, -31, -2501 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1432, -31, -2501 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1405, -50, -2501 }, { -491, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1405, -31, -2501 }, { -491, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1374, -31, -2381 }, { 3090, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1374, -50, -2381 }, { 3090, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1374, -50, -2381 }, { 81, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1374, -31, -2381 }, { 81, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1300, -31, -2265 }, { 4361, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1300, -50, -2265 }, { 4361, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -498, -31, -2859 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -518, -31, -2841 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -454, -31, -2737 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -431, -31, -2749 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -608, -31, -2968 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -622, -31, -2945 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -454, -50, -2737 }, { -696, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -454, -31, -2737 }, { -696, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -518, -31, -2841 }, { 2630, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -518, -50, -2841 }, { 2630, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -518, -50, -2841 }, { -737, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -518, -31, -2841 }, { -737, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -622, -31, -2945 }, { 3614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -622, -50, -2945 }, { 3614, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -486, -31, -1828 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -610, -31, -1816 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -595, -31, -1779 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -465, -31, -1792 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -677, -31, -1857 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -666, -31, -1822 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -610, -50, -1816 }, { -204, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -610, -31, -1816 }, { -204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -486, -31, -1828 }, { 6945, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -486, -50, -1828 }, { 6945, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -677, -50, -1857 }, { -614, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -677, -31, -1857 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -610, -31, -1816 }, { 3887, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -610, -50, -1816 }, { 3887, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -382, -31, -2023 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -408, -31, -2047 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -408, -31, -1904 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -382, -31, -1873 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -486, -31, -1828 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -465, -31, -1792 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -408, -50, -1904 }, { 204, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -408, -31, -1904 }, { 204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -408, -31, -2047 }, { 8396, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -408, -50, -2047 }, { 8396, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -486, -50, -1828 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -486, -31, -1828 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -408, -31, -1904 }, { 6319, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -408, -50, -1904 }, { 6319, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -382, -31, -2468 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -408, -31, -2470 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -408, -31, -2047 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -382, -31, -2023 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -408, -50, -2047 }, { 204, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -408, -31, -2047 }, { 204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -408, -31, -2470 }, { 8396, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -408, -50, -2470 }, { 8396, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -431, -31, -2749 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -454, -31, -2737 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -418, -31, -2605 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -394, -31, -2610 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -408, -31, -2470 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -382, -31, -2468 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -408, -50, -2470 }, { -81, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -408, -31, -2470 }, { -81, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -418, -31, -2605 }, { 3965, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -418, -50, -2605 }, { 3965, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -418, -50, -2605 }, { -491, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -418, -31, -2605 }, { -491, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -454, -31, -2737 }, { 3386, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -454, -50, -2737 }, { 3386, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1053, -31, -2051 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1045, -31, -2074 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1204, -31, -2175 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1221, -31, -2157 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1300, -31, -2265 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1322, -31, -2252 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1300, -50, -2265 }, { -696, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1300, -31, -2265 }, { -696, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1204, -31, -2175 }, { 3131, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1204, -50, -2175 }, { 3131, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1204, -50, -2175 }, { -204, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1204, -31, -2175 }, { -204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1045, -31, -2074 }, { 10675, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1045, -50, -2074 }, { 10675, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -990, -31, 1356 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1004, -31, 1371 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -962, -31, 1402 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -951, -31, 1385 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -850, -31, 1426 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -856, -31, 1446 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -795, -31, 1453 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -792, -31, 1434 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -911, -31, 1427 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -903, -31, 1409 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -850, -50, 1426 }, { -450, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -850, -31, 1426 }, { -450, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -792, -31, 1434 }, { 2928, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -792, -50, 1434 }, { 2928, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -903, -50, 1409 }, { -614, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -903, -31, 1409 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -850, -31, 1426 }, { 2570, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -850, -50, 1426 }, { 2570, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -951, -50, 1385 }, { -614, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -951, -31, 1385 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -903, -31, 1409 }, { 2458, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -903, -50, 1409 }, { 2458, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -990, -50, 1356 }, { -409, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -990, -31, 1356 }, { -409, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -951, -31, 1385 }, { 2438, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -951, -50, 1385 }, { 2438, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -635, -31, 1407 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -630, -31, 1425 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -584, -31, 1400 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -592, -31, 1383 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -792, -31, 1434 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -795, -31, 1453 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -735, -31, 1453 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -735, -31, 1434 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -681, -31, 1445 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -684, -31, 1425 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -635, -50, 1407 }, { -81, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -635, -31, 1407 }, { -81, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -592, -31, 1383 }, { 2780, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -592, -50, 1383 }, { 2780, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -684, -50, 1425 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -684, -31, 1425 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -635, -31, 1407 }, { 2996, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -635, -50, 1407 }, { 2996, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -735, -50, 1434 }, { 81, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -735, -31, 1434 }, { 81, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -684, -31, 1425 }, { 3053, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -684, -50, 1425 }, { 3053, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -792, -50, 1434 }, { -122, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -792, -31, 1434 }, { -122, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -735, -31, 1434 }, { 3139, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -735, -50, 1434 }, { 3139, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -477, -31, 1237 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -464, -31, 1246 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -438, -31, 1171 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -453, -31, 1166 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -592, -31, 1383 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -584, -31, 1400 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -538, -31, 1355 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -548, -31, 1340 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -492, -31, 1301 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -504, -31, 1289 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -477, -50, 1237 }, { -614, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -477, -31, 1237 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -453, -31, 1166 }, { 3698, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -453, -50, 1166 }, { 3698, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -504, -50, 1289 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -504, -31, 1289 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -477, -31, 1237 }, { 3388, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -477, -50, 1237 }, { 3388, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -548, -50, 1340 }, { 204, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -548, -31, 1340 }, { 204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -504, -31, 1289 }, { 4072, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -504, -50, 1289 }, { 4072, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -592, -50, 1383 }, { -245, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -592, -31, 1383 }, { -245, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -548, -31, 1340 }, { 3263, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -548, -50, 1340 }, { 3263, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -410, -31, 929 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -393, -31, 922 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -382, -31, 747 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -400, -31, 762 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -453, -31, 1166 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -438, -31, 1171 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -417, -31, 1085 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -433, -31, 1084 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -401, -31, 1004 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -418, -31, 1006 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -410, -50, 929 }, { -819, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -410, -31, 929 }, { -819, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -400, -31, 762 }, { 8808, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -400, -50, 762 }, { 8808, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -418, -50, 1006 }, { -204, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -418, -31, 1006 }, { -204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -410, -31, 929 }, { 4249, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -410, -50, 929 }, { 4249, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -433, -50, 1084 }, { -614, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -433, -31, 1084 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -418, -31, 1006 }, { 3916, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -418, -50, 1006 }, { 3916, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -453, -50, 1166 }, { -409, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -453, -31, 1166 }, { -409, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -433, -31, 1084 }, { 4442, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -433, -50, 1084 }, { 4442, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -400, -31, 607 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -382, -31, 584 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -436, -31, 511 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -451, -31, 538 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -400, -31, 762 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -382, -31, 747 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -400, -50, 762 }, { -409, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -400, -31, 762 }, { -409, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -400, -31, 607 }, { 8485, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -400, -50, 607 }, { 8485, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -400, -50, 607 }, { -614, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -400, -31, 607 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -451, -31, 538 }, { 4314, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -451, -50, 538 }, { 4314, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1087, -31, 1177 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1106, -31, 1183 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1092, -31, 1233 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1074, -31, 1224 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1073, -31, 1283 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1056, -31, 1271 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1043, -31, 1326 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1027, -31, 1313 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1004, -31, 1371 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -990, -31, 1356 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1027, -50, 1313 }, { -614, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1027, -31, 1313 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -990, -31, 1356 }, { 2643, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -990, -50, 1356 }, { 2643, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1056, -50, 1271 }, { -409, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1056, -31, 1271 }, { -409, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1027, -31, 1313 }, { 2504, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1027, -50, 1313 }, { 2504, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1074, -50, 1224 }, { -204, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1074, -31, 1224 }, { -204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1056, -31, 1271 }, { 2684, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1056, -50, 1271 }, { 2684, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1087, -50, 1177 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1087, -31, 1177 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1074, -31, 1224 }, { 2831, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1074, -50, 1224 }, { 2831, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -666, -31, -1822 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -677, -31, -1857 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1045, -31, -2074 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1053, -31, -2051 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1045, -50, -2074 }, { -614, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1045, -31, -2074 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -677, -31, -1857 }, { 11138, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -677, -50, -1857 }, { 11138, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -539, -31, 533 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -528, -31, 506 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -831, -31, 733 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -826, -31, 749 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -451, -31, 538 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -436, -31, 511 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -451, -50, 538 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -451, -31, 538 }, { 0, -5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -539, -31, 533 }, { 5055, -5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -539, -50, 533 }, { 5055, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -539, -50, 533 }, { -122, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -539, -31, 533 }, { -122, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -826, -31, 749 }, { 10379, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -826, -50, 749 }, { 10379, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1040, -31, 938 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1056, -31, 932 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1076, -31, 967 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1059, -31, 972 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -826, -31, 749 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -831, -31, 733 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -967, -31, 838 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -956, -31, 849 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1015, -31, 884 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1001, -31, 892 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1040, -50, 938 }, { 81, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1040, -31, 938 }, { 81, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1059, -31, 972 }, { 2332, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1059, -50, 972 }, { 2332, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1001, -50, 892 }, { -286, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1001, -31, 892 }, { -286, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1040, -31, 938 }, { 3155, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1040, -50, 938 }, { 3155, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -956, -50, 849 }, { 204, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -956, -31, 849 }, { 204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1001, -31, 892 }, { 3794, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1001, -50, 892 }, { 3794, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -826, -50, 749 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -826, -31, 749 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -956, -31, 849 }, { 9414, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -956, -50, 849 }, { 9414, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1059, -31, 972 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1076, -31, 967 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1096, -31, 1023 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1078, -31, 1024 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1107, -31, 1078 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1089, -31, 1077 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1109, -31, 1136 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1090, -31, 1132 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1106, -31, 1183 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1087, -31, 1177 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1090, -50, 1132 }, { -491, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1090, -31, 1132 }, { -491, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1087, -31, 1177 }, { 2094, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1087, -50, 1177 }, { 2094, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1089, -50, 1077 }, { -614, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1089, -31, 1077 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1090, -31, 1132 }, { 2558, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1090, -50, 1132 }, { 2558, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1078, -50, 1024 }, { -614, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1078, -31, 1024 }, { -614, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1089, -31, 1077 }, { 2443, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1089, -50, 1077 }, { 2443, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1059, -50, 972 }, { -737, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -1059, -31, 972 }, { -737, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1078, -31, 1024 }, { 2484, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1078, -50, 1024 }, { 2484, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 4), 0x00 } }, + { { -492, 71, -224 }, { 13211, -14080 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 4), 0x00 } }, + { { -532, 88, -410 }, { 10014, -10396 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 4), 0x00 } }, + { { -738, 92, -256 }, { 16380, -8378 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -791, 83, -341 }, { 15381, -6033 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -970, 107, -294 }, { 19080, -3026 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -540, 7, -121 }, { 16133, -14580 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -492, 71, -224 }, { 13211, -14080 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -738, 92, -256 }, { 16380, -8378 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -525, 40, -592 }, { 6009, -7944 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 4), 0x00 } }, + { { -505, 33, -804 }, { 1325, -5166 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x34, 4), 0x00 } }, + { { -668, 88, -619 }, { 7711, -4455 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -532, 88, -410 }, { 10014, -10396 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 4), 0x00 } }, + { { -791, 83, -341 }, { 15381, -6033 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -895, 122, -548 }, { 12762, -660 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -970, 107, -294 }, { 19080, -3026 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -505, 33, -804 }, { 1325, -5166 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x34, 4), 0x00 } }, + { { -813, 107, -774 }, { 6828, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -895, 122, -548 }, { 12762, -660 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -668, 88, -619 }, { 7711, -4455 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -658, 77, -990 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -505, 33, -804 }, { 1325, -5166 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x34, 2), 0x00 } }, + { { -577, 43, -1037 }, { -2401, -149 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x34, 2), 0x00 } }, + { { -658, 77, -990 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -979, 130, -1006 }, { 9696, 6962 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -813, 107, -774 }, { 11948, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -658, 77, -990 }, { 5119, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -974, 63, -1282 }, { 3734, 10822 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -577, 43, -1037 }, { 2718, -1173 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x34, 2), 0x00 } }, + { { -755, 18, -1282 }, { 353, 6219 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -658, 77, -990 }, { 5119, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -974, 63, -1282 }, { 3734, 10822 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -864, -50, -1447 }, { 4353, 1023 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -864, 25, -1432 }, { 4112, -704 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -729, -50, -1312 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -755, 18, -1282 }, { -57, -645 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -974, 63, -1282 }, { 3733, 10822 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1343, 107, -1253 }, { 9926, 18071 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -979, 130, -1006 }, { 9696, 6962 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -864, 25, -1432 }, { -1098, 10741 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -1343, 107, -1253 }, { 9926, 18071 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -974, 63, -1282 }, { 3733, 10822 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -755, 18, -1282 }, { 353, 6219 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -1058, -50, -1617 }, { 5853, 1023 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -1084, 48, -1587 }, { 5851, -1309 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -864, 25, -1432 }, { -225, -706 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -864, -50, -1447 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -1248, -50, -1731 }, { 5119, 1023 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -1248, -40, -1731 }, { 5119, 627 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -1058, -50, -1617 }, { 61, 1024 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -1084, 48, -1587 }, { 222, -1371 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1084, 48, -1587 }, { -971, 17634 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1248, -40, -1731 }, { -1735, 22933 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -1343, 107, -1253 }, { 9926, 18071 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -864, 25, -1432 }, { -1098, 10741 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -1248, -40, -1731 }, { -1735, 22933 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -1884, -44, -2062 }, { 847, 32767 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -1763, 48, -1628 }, { 8268, 32138 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1343, 107, -1253 }, { 9926, 18071 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -621, -67, 43 }, { 45, 1941 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -540, -148, -121 }, { 3816, 3430 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -540, 7, -121 }, { 3753, 323 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -636, 31, 32 }, { 45, -96 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -621, -67, 43 }, { 4433, 1023 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -636, 31, 32 }, { 4108, -1179 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -780, 48, 155 }, { -194, -1190 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -780, -50, 155 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -780, 48, 155 }, { 25369, -13885 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -636, 31, 32 }, { 20645, -15011 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -776, 70, -21 }, { 21740, -11226 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -970, 107, -294 }, { 19080, -3026 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1163, 107, 6 }, { 28162, -3613 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -540, 7, -121 }, { 16133, -14580 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -738, 92, -256 }, { 16380, -8378 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -368, -95, -38 }, { 3909, 1380 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -317, -89, -15 }, { 5060, 1264 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -238, -50, -18 }, { 6479, 464 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -540, 7, -121 }, { 0, -701 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -96, -5 }, { 5633, 1412 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -291, -136, -5 }, { 5633, 2231 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -540, -148, -121 }, { 0, 2461 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -394, -148, -49 }, { 3332, 2461 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -394, -108, -49 }, { 3332, 1642 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -532, 88, -410 }, { 5449, 103 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -492, 71, -224 }, { 5038, -1801 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -223, -50, -223 }, { 2281, -1816 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -232, -50, -91 }, { 2377, -3160 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -540, 7, -121 }, { 5530, -2859 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -238, -50, -18 }, { 2430, -3817 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 2), 0x00 } }, + { { -505, 33, -804 }, { 5172, 4134 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x34, 2), 0x00 } }, + { { -525, 40, -592 }, { 5372, 1966 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -223, -50, -523 }, { 2281, 1255 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -223, -50, -673 }, { 2281, 2791 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -223, -50, -223 }, { 2281, -1816 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -223, -50, -373 }, { 2281, -280 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -532, 88, -410 }, { 5449, 103 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -577, 43, -1037 }, { 5904, 6522 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x34, 2), 0x00 } }, + { { -505, 33, -804 }, { 5172, 4134 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x34, 2), 0x00 } }, + { { -223, -50, -823 }, { 2281, 4327 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -223, -50, -973 }, { 2281, 5863 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -223, -50, -673 }, { 2281, 2791 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -232, -50, -1123 }, { 2377, 7399 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -577, 43, -1037 }, { 4148, 7181 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x34, 2), 0x00 } }, + { { -551, -91, -1344 }, { -364, 1729 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -729, -50, -1312 }, { 3297, 884 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -755, 18, -1282 }, { 3990, -517 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -551, -21, -1344 }, { -364, 295 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -1423 }, { 995, 1722 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -435, -22, -1443 }, { 1865, 878 }, { MACRO_COLOR_FLAG(0x00, 0x4c, 0x00, 0), 0x00 } }, + { { -551, -21, -1344 }, { 1865, -182 }, { MACRO_COLOR_FLAG(0x00, 0x4c, 0x00, 0), 0x00 } }, + { { -270, -50, -1423 }, { 995, 1722 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -551, -21, -1344 }, { 1865, -182 }, { MACRO_COLOR_FLAG(0x00, 0x4c, 0x00, 2), 0x00 } }, + { { -577, 43, -1037 }, { 255, -1792 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x34, 2), 0x00 } }, + { { -250, -50, -1254 }, { -28, 1078 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -755, 18, -1282 }, { 2450, -1635 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -232, -50, -1123 }, { -838, 589 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1499, -42, 602 }, { 32767, -6214 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -1058, -40, 434 }, { 32767, -12665 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -1629, 47, 420 }, { 32767, -544 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1657, 8, 527 }, { 32767, -1708 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -926, -50, 302 }, { 4236, 1024 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -1058, -40, 434 }, { 0, 597 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1058, -50, 434 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -926, -50, 302 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -780, -50, 155 }, { 4718, 1023 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -780, 48, 155 }, { 4718, -1199 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -926, -50, 302 }, { 4236, 1024 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 1), 0x00 } }, + { { -926, 24, 302 }, { 4236, -669 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1058, -40, 434 }, { 0, 597 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -926, 24, 302 }, { 0, -669 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -926, -50, 302 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 1), 0x00 } }, + { { -780, 48, 155 }, { 4718, -1199 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1058, -40, 434 }, { 32767, -12665 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -926, 24, 302 }, { 30512, -13195 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -1629, 47, 420 }, { 32767, -544 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1163, 107, 6 }, { 28162, -3613 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1291, 76, 230 }, { 32767, -4480 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -780, 48, 155 }, { 25369, -13885 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 2), 0x00 } }, + { { -95, -50, 954 }, { -1058, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 565 }, { 4207, 1856 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -89, -50, 856 }, { 254, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 565 }, { -3255, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, 758 }, { -501, 1294 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -89, -50, 856 }, { 783, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1012, -58, 494 }, { 795, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1058, -50, 434 }, { -211, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1112, -50, 524 }, { 296, 2334 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1012, -58, 494 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1112, -50, 524 }, { -1402, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1167, -50, 614 }, { -2446, 1965 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -715, -76, 270 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -926, -50, 302 }, { -2878, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -862, -65, 381 }, { -2174, 2197 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -715, -76, 270 }, { 2273, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -780, -50, 155 }, { 1603, 2696 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -926, -50, 302 }, { 4355, 3011 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -604, -91, 178 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -780, -50, 155 }, { -2429, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -715, -76, 270 }, { -1311, 2437 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -862, -65, 381 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1058, -50, 434 }, { -2711, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1012, -58, 494 }, { -2327, 1954 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -862, -65, 381 }, { -34, 1042 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -926, -50, 302 }, { -738, 2216 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1058, -50, 434 }, { 1514, 3268 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -418, -136, 2 }, { 44, 1752 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -394, -148, -49 }, { 809, 1795 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -540, -148, -121 }, { 959, -372 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -454, -121, 50 }, { -522, 1719 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -418, -136, 2 }, { 306, 1767 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -540, -148, -121 }, { 802, -492 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -540, -148, -121 }, { 998, 3801 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -621, -67, 43 }, { 1777, 1245 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -500, -110, 91 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -621, -67, 43 }, { -1837, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -604, -91, 178 }, { -909, 2620 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -454, -121, 50 }, { 1767, 430 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -621, -67, 43 }, { -462, 1166 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -500, -110, 91 }, { 1374, 1166 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -604, -91, 178 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -621, -67, 43 }, { -1846, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -780, -50, 155 }, { -686, 3354 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -7, -50, 340 }, { -17, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, 227 }, { 1448, 2079 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 312 }, { 1052, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 396 }, { 526, 173 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 340 }, { -148, 1228 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, 312 }, { 921, 1228 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 565 }, { -1141, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, 396 }, { 1160, 1909 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 490 }, { 275, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 584 }, { 405, 310 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 565 }, { -125, 1195 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, 490 }, { 1290, 1195 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 227 }, { 6, 1041 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 340 }, { -1459, 2096 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -7, -50, 2 }, { 3046, 1934 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, 758 }, { -938, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 565 }, { 1641, 2025 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, 671 }, { 226, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 565 }, { -1397, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, 584 }, { -614, 1696 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 671 }, { 336, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 565 }, { -1988, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -7, -50, 340 }, { 758, 2244 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, 396 }, { 478, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -465, -50, -1792 }, { -42, 1041 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, -1873 }, { 2567, 2119 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -1873 }, { 1503, 1059 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -465, -50, -1792 }, { -2103, 1893 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -398, -50, -1690 }, { -1275, 3322 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -1873 }, { 506, 814 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -1873 }, { -1614, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, -2023 }, { 388, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -2023 }, { 388, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -382, -50, -1873 }, { -24, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, -1873 }, { 1478, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -2023 }, { 1478, -979 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -2323 }, { -1563, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, -2471 }, { 414, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -2468 }, { 376, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -382, -50, -2323 }, { -2002, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, -2323 }, { -1093, 2220 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -2471 }, { 482, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -2173 }, { -1614, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, -2323 }, { 388, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -2323 }, { 388, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -382, -50, -2173 }, { -2018, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, -2173 }, { -1116, 2226 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -2323 }, { 486, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -2023 }, { -1614, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, -2173 }, { 388, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -2173 }, { 388, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -382, -50, -2023 }, { -2018, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, -2023 }, { -1116, 2226 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -2173 }, { 486, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -410, -50, -2682 }, { -764, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -327, -50, -2792 }, { 307, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -431, -50, -2749 }, { 184, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -410, -50, -2682 }, { -1487, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -301, -50, -2711 }, { -298, 1944 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -327, -50, -2792 }, { 358, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -394, -50, -2610 }, { -791, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -301, -50, -2711 }, { 249, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -410, -50, -2682 }, { 190, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -394, -50, -2610 }, { -1473, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -282, -50, -2629 }, { -288, 1951 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -301, -50, -2711 }, { 354, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -2468 }, { -1470, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, -2471 }, { -254, 1907 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -274, -50, -2551 }, { 354, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -2468 }, { -797, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -274, -50, -2551 }, { 236, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -386, -50, -2542 }, { 192, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -386, -50, -2542 }, { -1455, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -274, -50, -2551 }, { -229, 1894 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -282, -50, -2629 }, { 350, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -386, -50, -2542 }, { -737, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -282, -50, -2629 }, { 264, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -394, -50, -2610 }, { 177, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -729, -72, -1510 }, { -22, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -729, -50, -1312 }, { 1478, 3215 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -642, -79, -1449 }, { 1401, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -729, -72, -1510 }, { -1208, 2825 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -864, -50, -1447 }, { 774, 3144 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -729, -50, -1312 }, { 292, 634 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -821, -68, -1566 }, { -1160, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -864, -50, -1447 }, { -829, 2698 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -729, -72, -1510 }, { 279, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -586, -85, -1406 }, { -756, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -729, -50, -1312 }, { -1254, 3306 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -551, -91, -1344 }, { 161, 1285 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 0), 0x00 } }, + { { -551, -91, -1344 }, { 136, 1359 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 0), 0x00 } }, + { { -536, -91, -1357 }, { 179, 1096 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -642, -79, -1449 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -729, -50, -1312 }, { 77, 3215 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -586, -85, -1406 }, { 948, 1047 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1423 }, { -1142, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -43, -1573 }, { 983, 1732 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -45, -1498 }, { 274, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -48, -1423 }, { 548, 453 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1423 }, { -160, 1161 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -45, -1498 }, { 1256, 1161 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1423 }, { -1805, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -7, -50, -1723 }, { 1779, 2816 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -43, -1573 }, { 434, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1423 }, { -1141, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -48, -1423 }, { -433, 1732 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -1348 }, { 275, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1123 }, { -1805, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -7, -50, -1423 }, { 1779, 2816 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -1273 }, { 434, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -1123 }, { 548, 452 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1123 }, { -160, 1161 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -1198 }, { 1256, 1161 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1123 }, { -1141, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -1273 }, { 983, 1732 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -1198 }, { 274, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -1273 }, { 1690, 453 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1423 }, { -435, 1161 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -1348 }, { 981, 1161 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1123 }, { -1141, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -1123 }, { -433, 1732 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -1048 }, { 274, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -973 }, { 1690, 453 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1123 }, { -435, 1161 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -1048 }, { 981, 1161 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -823 }, { -1141, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -973 }, { 983, 1732 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -898 }, { 274, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -823 }, { 548, 453 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -823 }, { -160, 1161 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -898 }, { 1256, 1161 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -823 }, { -1805, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -7, -50, -1123 }, { 1779, 2816 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -973 }, { 434, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -823 }, { -433, 1732 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -748 }, { 274, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -823 }, { -22, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -748 }, { 1394, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -673 }, { 2102, 315 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -448 }, { -807, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -523 }, { 194, 2025 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -448 }, { 194, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -373 }, { -8, 1827 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -371 }, { 2, 2825 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -7, -50, -448 }, { 1019, 2802 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -7, -50, -635 }, { 32767, 32767 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -7, -50, -823 }, { 32767, 32767 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -7, -50, -448 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -7, -50, -823 }, { 0, 6311 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -673 }, { 1057, 4196 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -523 }, { 1047, 662 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -448 }, { -297, 1110 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -598 }, { 1943, 1110 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -448 }, { -1805, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -673 }, { 1330, 1472 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -598 }, { 434, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -373 }, { -807, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -448 }, { 194, 2025 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -448 }, { 194, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -295 }, { -814, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -223 }, { 152, 2021 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -219 }, { 196, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -223 }, { -776, 1831 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -295 }, { 186, 2832 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -298 }, { 225, 1835 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -295 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -373 }, { -1438, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -298 }, { -716, 1718 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -371 }, { -1020, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -373 }, { -1036, 2021 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -91 }, { -703, 1708 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -144 }, { 169, 2558 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -156 }, { 142, 1548 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -144 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -204 }, { -1280, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -156 }, { -877, 1523 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -204 }, { -647, 1827 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -144 }, { 155, 2824 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -8, -50, -219 }, { 370, 1837 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -204 }, { -795, 1225 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -219 }, { 191, 1475 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -223 }, { -686, 1000 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -91 }, { -221, 1827 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -71 }, { 53, 2824 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -8, -50, -144 }, { 890, 2325 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -7, -50, 2 }, { 213, 1782 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -8, -50, -71 }, { -51, 2723 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -91 }, { 831, 3262 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 59 }, { -807, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 2 }, { -56, 2025 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -16 }, { 194, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 2 }, { -832, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -91 }, { 443, 1996 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -16 }, { 200, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 227 }, { -908, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 2 }, { 2097, 2025 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, 143 }, { 218, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 2 }, { -170, 35 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, 59 }, { 21, 1272 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 143 }, { 1015, 1803 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1723 }, { -22, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -40, -1798 }, { 1395, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -38, -1760 }, { 1046, 652 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1723 }, { -1141, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -42, -1835 }, { 629, 1378 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -40, -1798 }, { 276, 1020 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -44, -1872 }, { 983, 1732 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -42, -1835 }, { 629, 1376 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -44, -1872 }, { -807, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -2023 }, { 1196, 2025 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -47, -1948 }, { 194, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -2023 }, { -1141, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -48, -2023 }, { -433, 1732 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -47, -1948 }, { 274, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -36, -1723 }, { 548, 452 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1723 }, { -174, 1175 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -38, -1760 }, { 897, 813 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -44, -1872 }, { -1805, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1723 }, { -3149, 2816 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -7, -50, -2023 }, { 434, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -43, -1573 }, { -807, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1723 }, { 1196, 2025 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -41, -1610 }, { -305, 1022 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1723 }, { 807, 1831 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -39, -1648 }, { -195, 2834 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -41, -1610 }, { -190, 3337 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -37, -1685 }, { -68, 1381 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -39, -1648 }, { 276, 1006 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1723 }, { -1141, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -36, -1723 }, { -419, 1746 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -37, -1685 }, { -69, 1385 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -2023 }, { -82, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -2479 }, { 6090, 1226 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2401 }, { 5066, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2323 }, { 3242, 860 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -2023 }, { -883, 1063 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -2401 }, { 4265, 1063 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -2023 }, { -2553, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -2323 }, { 1565, 1340 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2248 }, { 614, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2173 }, { -807, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -2023 }, { -2811, 2025 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -2248 }, { 194, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -2023 }, { -1141, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -2173 }, { 983, 1732 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2098 }, { 274, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -48, -2023 }, { -807, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -2023 }, { -807, 2025 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -2098 }, { 194, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1392, -50, -1910 }, { -2328, 1024 }, { MACRO_COLOR_FLAG(0x14, 0x90, 0x14, 0), 0x00 } }, + { { -1248, -50, -1731 }, { 570, 2028 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1209, -55, -1795 }, { 560, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1019, -62, -1681 }, { -49, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -864, -50, -1447 }, { 3311, 2704 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -821, -68, -1566 }, { 3012, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1019, -62, -1681 }, { -2703, 2405 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1058, -50, -1617 }, { -1897, 3022 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -864, -50, -1447 }, { 657, 724 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1209, -55, -1795 }, { -2380, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1058, -50, -1617 }, { 574, 2038 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1019, -62, -1681 }, { 573, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1209, -55, -1795 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1248, -50, -1731 }, { -1004, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1058, -50, -1617 }, { -970, 3993 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -547, -50, -2917 }, { -857, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -542, -50, -3059 }, { 307, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -608, -50, -2968 }, { 206, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -547, -50, -2917 }, { -1532, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -467, -50, -2997 }, { -426, 2050 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -542, -50, -3059 }, { 369, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -498, -50, -2859 }, { -819, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -467, -50, -2997 }, { 330, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -547, -50, -2917 }, { 197, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -498, -50, -2859 }, { -1525, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -409, -50, -2928 }, { -366, 1982 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -467, -50, -2997 }, { 367, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -431, -50, -2749 }, { -1424, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -327, -50, -2792 }, { -210, 1919 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -362, -50, -2862 }, { 342, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -431, -50, -2749 }, { -655, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -362, -50, -2862 }, { 273, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -459, -50, -2804 }, { 157, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -459, -50, -2804 }, { -1437, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -362, -50, -2862 }, { -233, 1930 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -409, -50, -2928 }, { 346, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -459, -50, -2804 }, { -727, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -409, -50, -2928 }, { 232, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -498, -50, -2859 }, { 175, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1043, -50, 1326 }, { -642, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1081, -50, 1454 }, { 323, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1004, -50, 1371 }, { 154, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1043, -50, 1326 }, { -1439, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1132, -50, 1395 }, { -214, 1897 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1081, -50, 1454 }, { 346, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1073, -50, 1283 }, { -574, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1132, -50, 1395 }, { 210, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1043, -50, 1326 }, { 138, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1073, -50, 1283 }, { -1366, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1173, -50, 1336 }, { -121, 1886 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1132, -50, 1395 }, { 329, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1106, -50, 1183 }, { -1358, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1217, -50, 1202 }, { -89, 1844 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1199, -50, 1268 }, { 327, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1106, -50, 1183 }, { -558, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1199, -50, 1268 }, { 206, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1092, -50, 1233 }, { 134, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1092, -50, 1233 }, { -1409, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1199, -50, 1268 }, { -155, 1854 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1173, -50, 1336 }, { 339, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1092, -50, 1233 }, { -569, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1173, -50, 1336 }, { 325, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1073, -50, 1283 }, { 137, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1109, -50, 1136 }, { -509, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1217, -50, 1202 }, { 278, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1106, -50, 1183 }, { 122, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1109, -50, 1136 }, { -1367, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1221, -50, 1138 }, { -68, 1781 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1217, -50, 1202 }, { 329, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1107, -50, 1078 }, { -625, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1221, -50, 1138 }, { 217, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1109, -50, 1136 }, { 150, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1107, -50, 1078 }, { -1388, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1219, -50, 1065 }, { -139, 1868 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1221, -50, 1138 }, { 334, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1076, -50, 967 }, { -1413, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1179, -50, 920 }, { -193, 1911 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1205, -50, 993 }, { 340, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1076, -50, 967 }, { -635, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1205, -50, 993 }, { 268, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1096, -50, 1023 }, { 152, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1096, -50, 1023 }, { -1400, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1205, -50, 993 }, { -159, 1878 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1219, -50, 1065 }, { 337, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1096, -50, 1023 }, { -602, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1219, -50, 1065 }, { 270, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1107, -50, 1078 }, { 145, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1056, -50, 932 }, { -443, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1179, -50, 920 }, { 238, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1076, -50, 967 }, { 106, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1056, -50, 932 }, { -1330, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1148, -50, 866 }, { -21, 1775 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1179, -50, 920 }, { 320, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1015, -50, 884 }, { -678, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1148, -50, 866 }, { 306, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1056, -50, 932 }, { 163, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1015, -50, 884 }, { -1448, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1096, -50, 806 }, { -230, 1907 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1148, -50, 866 }, { 348, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -831, -50, 733 }, { -2269, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -899, -50, 643 }, { -1477, 2301 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1041, -50, 753 }, { 546, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -831, -50, 733 }, { -1856, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1041, -50, 753 }, { 526, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -967, -50, 838 }, { 446, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -967, -50, 838 }, { -1432, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1041, -50, 753 }, { -204, 1893 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1096, -50, 806 }, { 344, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -967, -50, 838 }, { -707, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1096, -50, 806 }, { 241, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1015, -50, 884 }, { 170, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -332, -50, 345 }, { -42, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -484, -80, 323 }, { 778, 2905 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -436, -50, 511 }, { 2574, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -436, -50, 511 }, { 664, 2916 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -484, -80, 323 }, { 1782, 5265 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -598, -80, 417 }, { 3031, 3726 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -436, -50, 511 }, { -18, 1061 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -598, -80, 417 }, { -881, 3410 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -528, -50, 506 }, { 121, 2290 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -682, -50, 621 }, { -2002, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -899, -50, 643 }, { 494, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -831, -50, 733 }, { 482, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -682, -50, 621 }, { -2348, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -750, -60, 531 }, { -1573, 2311 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -899, -50, 643 }, { 565, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -528, -50, 506 }, { -2070, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -750, -60, 531 }, { 498, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -682, -50, 621 }, { 498, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -528, -50, 506 }, { -2398, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -598, -80, 417 }, { -1606, 2301 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -750, -60, 531 }, { 577, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -856, -50, 1446 }, { -666, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -802, -50, 1566 }, { 257, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -795, -50, 1453 }, { 160, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -856, -50, 1446 }, { -1421, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -881, -50, 1556 }, { -218, 1935 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -802, -50, 1566 }, { 342, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -911, -50, 1427 }, { -627, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -881, -50, 1556 }, { 297, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -856, -50, 1446 }, { 151, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -911, -50, 1427 }, { -1422, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -954, -50, 1531 }, { -194, 1896 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -881, -50, 1556 }, { 342, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1004, -50, 1371 }, { -1385, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1081, -50, 1454 }, { -154, 1901 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1021, -50, 1499 }, { 333, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1004, -50, 1371 }, { -561, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1021, -50, 1499 }, { 273, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -962, -50, 1402 }, { 135, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -962, -50, 1402 }, { -1391, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1021, -50, 1499 }, { -152, 1884 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -954, -50, 1531 }, { 335, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -962, -50, 1402 }, { -605, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -954, -50, 1531 }, { 245, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -911, -50, 1427 }, { 145, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -630, -50, 1425 }, { -564, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -516, -50, 1491 }, { 334, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -584, -50, 1400 }, { 135, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -630, -50, 1425 }, { -1411, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -582, -50, 1528 }, { -179, 1892 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -516, -50, 1491 }, { 339, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -681, -50, 1445 }, { -590, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -582, -50, 1528 }, { 255, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -630, -50, 1425 }, { 142, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -681, -50, 1445 }, { -1389, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -652, -50, 1554 }, { -153, 1890 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -582, -50, 1528 }, { 334, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -795, -50, 1453 }, { -1418, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -802, -50, 1566 }, { -186, 1890 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -726, -50, 1566 }, { 341, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -795, -50, 1453 }, { -643, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -726, -50, 1566 }, { 274, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -735, -50, 1453 }, { 154, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -735, -50, 1453 }, { -1401, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -726, -50, 1566 }, { -163, 1883 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -652, -50, 1554 }, { 337, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -735, -50, 1453 }, { -585, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -652, -50, 1554 }, { 290, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -681, -50, 1445 }, { 141, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -464, -50, 1246 }, { -850, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -330, -50, 1203 }, { 277, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -438, -50, 1171 }, { 204, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -464, -50, 1246 }, { -1514, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -360, -50, 1290 }, { -377, 2012 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -330, -50, 1203 }, { 364, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -492, -50, 1301 }, { -668, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -360, -50, 1290 }, { 269, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -464, -50, 1246 }, { 160, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -492, -50, 1301 }, { -1427, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -398, -50, 1364 }, { -245, 1968 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -360, -50, 1290 }, { 343, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -584, -50, 1400 }, { -1424, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -516, -50, 1491 }, { -250, 1983 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -456, -50, 1432 }, { 342, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -584, -50, 1400 }, { -691, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -456, -50, 1432 }, { 237, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -538, -50, 1355 }, { 166, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -538, -50, 1355 }, { -1511, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -456, -50, 1432 }, { -349, 1979 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -50, 1364 }, { 363, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -538, -50, 1355 }, { -762, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -398, -50, 1364 }, { 359, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -492, -50, 1301 }, { 183, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -417, -50, 1085 }, { -1541, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -308, -50, 1109 }, { -377, 1974 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -290, -50, 1020 }, { 371, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -401, -50, 1004 }, { -17, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -281, -50, 931 }, { 1098, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -393, -50, 922 }, { 1072, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -401, -50, 1004 }, { -899, 2259 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -290, -50, 1020 }, { 561, 2622 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -281, -50, 931 }, { 790, 1453 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -417, -50, 1085 }, { -893, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -290, -50, 1020 }, { 289, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -401, -50, 1004 }, { 215, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -393, -50, 922 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -281, -50, 931 }, { 26, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, 750 }, { 2453, 2440 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -393, -50, 922 }, { 1857, 2378 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, 750 }, { -446, 4028 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, 747 }, { 961, 4556 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -438, -50, 1171 }, { -1556, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -330, -50, 1203 }, { -433, 2024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -308, -50, 1109 }, { 374, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -438, -50, 1171 }, { -956, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -308, -50, 1109 }, { 256, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -417, -50, 1085 }, { 230, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -382, -50, 747 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, 750 }, { 47, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, 584 }, { 2265, 2387 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, 584 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, 396 }, { -2504, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -436, -50, 511 }, { -968, 3244 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -382, -50, 747 }, { -1753, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, 584 }, { 422, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, 584 }, { 422, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -436, -50, 511 }, { -600, 3115 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, 396 }, { 144, 5711 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -327, -50, 350 }, { 1058, 5139 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, 584 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, 584 }, { -1502, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -436, -50, 511 }, { 717, 1992 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1438, -50, -2571 }, { -762, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1544, -50, -2486 }, { 261, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1432, -50, -2501 }, { 183, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1438, -50, -2571 }, { -1465, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1551, -50, -2570 }, { -284, 1959 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1544, -50, -2486 }, { 352, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1434, -50, -2641 }, { -752, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1551, -50, -2570 }, { 289, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1438, -50, -2571 }, { 181, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1434, -50, -2641 }, { -1474, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1545, -50, -2657 }, { -308, 1980 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1551, -50, -2570 }, { 354, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1399, -50, -2766 }, { -1422, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1503, -50, -2810 }, { -212, 1924 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1528, -50, -2735 }, { 342, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1399, -50, -2766 }, { -690, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1528, -50, -2735 }, { 235, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1419, -50, -2705 }, { 166, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1419, -50, -2705 }, { -1453, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1528, -50, -2735 }, { -240, 1912 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1545, -50, -2657 }, { 350, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1419, -50, -2705 }, { -706, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1545, -50, -2657 }, { 291, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1434, -50, -2641 }, { 170, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1257, -50, -2959 }, { -16, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1397, -50, -2979 }, { 1128, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1312, -50, -2905 }, { 1014, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1257, -50, -2959 }, { -921, 2259 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1329, -50, -3047 }, { 565, 2523 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1397, -50, -2979 }, { 671, 1242 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1198, -50, -2999 }, { -768, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1329, -50, -3047 }, { 325, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1257, -50, -2959 }, { 185, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1198, -50, -2999 }, { -1497, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1257, -50, -3095 }, { -322, 1962 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1329, -50, -3047 }, { 360, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1312, -50, -2905 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1397, -50, -2979 }, { 114, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1455, -50, -2901 }, { 1398, 2330 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1312, -50, -2905 }, { -865, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1455, -50, -2901 }, { 319, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1360, -50, -2840 }, { 208, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1360, -50, -2840 }, { -1578, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1455, -50, -2901 }, { -497, 2073 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1503, -50, -2810 }, { 380, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1360, -50, -2840 }, { -906, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1503, -50, -2810 }, { 350, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1399, -50, -2766 }, { 218, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1134, -50, -3035 }, { -786, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1257, -50, -3095 }, { 256, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1198, -50, -2999 }, { 189, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1134, -50, -3035 }, { -1474, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1181, -50, -3137 }, { -308, 1979 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1257, -50, -3095 }, { 355, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1071, -50, -3057 }, { -716, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1181, -50, -3137 }, { 292, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1134, -50, -3035 }, { 172, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1071, -50, -3057 }, { -1458, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1102, -50, -3166 }, { -274, 1955 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1181, -50, -3137 }, { 351, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -913, -50, -3077 }, { -1545, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -910, -50, -3190 }, { -445, 2055 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1008, -50, -3185 }, { 372, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -913, -50, -3077 }, { -870, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1008, -50, -3185 }, { 319, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -994, -50, -3073 }, { 209, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -994, -50, -3073 }, { -1532, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1008, -50, -3185 }, { -411, 2031 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1102, -50, -3166 }, { 368, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -994, -50, -3073 }, { -847, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1102, -50, -3166 }, { 316, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1071, -50, -3057 }, { 204, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -834, -50, -3067 }, { -863, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -910, -50, -3190 }, { 333, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -913, -50, -3077 }, { 207, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -834, -50, -3067 }, { -1548, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -812, -50, -3178 }, { -447, 2054 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -910, -50, -3190 }, { 372, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -750, -50, -3044 }, { -934, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -812, -50, -3178 }, { 345, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -834, -50, -3067 }, { 225, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -750, -50, -3044 }, { -1591, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -711, -50, -3150 }, { -522, 2087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -812, -50, -3178 }, { 383, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -608, -50, -2968 }, { -1475, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -542, -50, -3059 }, { -299, 1965 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -614, -50, -3105 }, { 355, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -608, -50, -2968 }, { -763, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -614, -50, -3105 }, { 282, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -668, -50, -3006 }, { 183, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -668, -50, -3006 }, { -1614, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -614, -50, -3105 }, { -551, 2091 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -711, -50, -3150 }, { 388, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -668, -50, -3006 }, { -972, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -711, -50, -3150 }, { 351, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -750, -50, -3044 }, { 234, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1369, -50, -2315 }, { -843, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1410, -50, -2181 }, { 270, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1322, -50, -2252 }, { 203, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1369, -50, -2315 }, { -1507, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1464, -50, -2256 }, { -370, 2013 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1410, -50, -2181 }, { 363, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1399, -50, -2374 }, { -715, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1464, -50, -2256 }, { 290, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1369, -50, -2315 }, { 172, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1399, -50, -2374 }, { -1457, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1503, -50, -2330 }, { -272, 1956 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1464, -50, -2256 }, { 350, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1432, -50, -2501 }, { -1446, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1544, -50, -2486 }, { -231, 1911 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1529, -50, -2408 }, { 348, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1432, -50, -2501 }, { -706, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1529, -50, -2408 }, { 276, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1420, -50, -2436 }, { 170, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1420, -50, -2436 }, { -1450, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1529, -50, -2408 }, { -253, 1939 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1503, -50, -2330 }, { 349, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1420, -50, -2436 }, { -704, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1503, -50, -2330 }, { 285, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1399, -50, -2374 }, { 169, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1221, -50, -2157 }, { -2144, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1112, -50, -1955 }, { 534, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1053, -50, -2051 }, { 516, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1221, -50, -2157 }, { -2475, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1286, -50, -2065 }, { -1803, 2370 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1112, -50, -1955 }, { 596, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1276, -50, -2200 }, { -743, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1286, -50, -2065 }, { 251, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1221, -50, -2157 }, { 179, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1276, -50, -2200 }, { -1452, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1353, -50, -2117 }, { -276, 1970 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1286, -50, -2065 }, { 349, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1322, -50, -2252 }, { -754, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1353, -50, -2117 }, { 321, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1276, -50, -2200 }, { 181, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1322, -50, -2252 }, { -1489, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1410, -50, -2181 }, { -306, 1953 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1353, -50, -2117 }, { 358, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -868, -50, -1940 }, { -2523, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -723, -50, -1726 }, { 587, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -666, -50, -1822 }, { 607, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -868, -50, -1940 }, { -2784, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -925, -50, -1843 }, { -2139, 2381 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -723, -50, -1726 }, { 670, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1053, -50, -2051 }, { -2316, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -925, -50, -1843 }, { 567, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -868, -50, -1940 }, { 557, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1053, -50, -2051 }, { -2621, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1112, -50, -1955 }, { -1942, 2365 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -925, -50, -1843 }, { 631, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -595, -50, -1779 }, { -28, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -403, -50, -1685 }, { 2405, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -465, -50, -1792 }, { 1720, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -595, -50, -1779 }, { -1950, 2259 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -622, -50, -1663 }, { -834, 3386 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -403, -50, -1685 }, { 483, 756 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -666, -50, -1822 }, { -887, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -622, -50, -1663 }, { 721, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -595, -50, -1779 }, { 213, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -666, -50, -1822 }, { -1774, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -723, -50, -1726 }, { -733, 2108 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -622, -50, -1663 }, { 427, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -467, -50, -2997 }, { -2007, 4376 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -498, -50, -3120 }, { 56, 1689 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -542, -50, -3059 }, { -1949, 1780 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -467, -50, -2997 }, { -3387, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -414, -50, -3050 }, { -2345, 2744 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -498, -50, -3120 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -409, -50, -2928 }, { -2413, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -414, -50, -3050 }, { 177, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -467, -50, -2997 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -409, -50, -2928 }, { -3275, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -350, -50, -2974 }, { -2109, 2655 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -414, -50, -3050 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -327, -50, -2792 }, { -3020, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -257, -50, -2820 }, { -1813, 2632 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -298, -50, -2901 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -327, -50, -2792 }, { -2105, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -298, -50, -2901 }, { 154, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -362, -50, -2862 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -362, -50, -2862 }, { -2996, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -298, -50, -2901 }, { -1771, 2617 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -350, -50, -2974 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -362, -50, -2862 }, { -2151, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -350, -50, -2974 }, { 76, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -409, -50, -2928 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -812, -50, -3178 }, { -2634, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -907, -50, -3265 }, { 167, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -910, -50, -3190 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -812, -50, -3178 }, { -3444, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -797, -50, -3252 }, { -2409, 2749 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -907, -50, -3265 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -711, -50, -3150 }, { -2794, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -797, -50, -3252 }, { 159, 3030 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -812, -50, -3178 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -711, -50, -3150 }, { -3570, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -685, -50, -3220 }, { -2578, 2766 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -797, -50, -3252 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -542, -50, -3059 }, { 41, 1689 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -498, -50, -3120 }, { 2047, 1779 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -579, -50, -3171 }, { 1990, -779 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -542, -50, -3059 }, { -2293, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -579, -50, -3171 }, { 131, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -614, -50, -3105 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -614, -50, -3105 }, { -3604, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -579, -50, -3171 }, { -2601, 2764 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -685, -50, -3220 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -614, -50, -3105 }, { -2844, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -685, -50, -3220 }, { 154, 3023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -711, -50, -3150 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1181, -50, -3137 }, { -2326, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1296, -50, -3159 }, { 93, 3020 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1257, -50, -3095 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1212, -50, -3206 }, { -2010, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1296, -50, -3159 }, { -1797, 3594 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1181, -50, -3137 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1212, -50, -3206 }, { -3129, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1181, -50, -3137 }, { -1723, 2460 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1102, -50, -3166 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1102, -50, -3166 }, { -3129, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1122, -50, -3238 }, { -1961, 2659 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1212, -50, -3206 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -910, -50, -3190 }, { -3425, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -907, -50, -3265 }, { -2389, 2747 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1017, -50, -3259 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -910, -50, -3190 }, { -2632, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1017, -50, -3259 }, { 146, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1008, -50, -3185 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1008, -50, -3185 }, { -3360, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1017, -50, -3259 }, { -2283, 2720 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1122, -50, -3238 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1008, -50, -3185 }, { -2548, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1122, -50, -3238 }, { 149, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1102, -50, -3166 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1455, -50, -2901 }, { -2735, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1572, -50, -2840 }, { 175, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1503, -50, -2810 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1455, -50, -2901 }, { -3534, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1518, -50, -2941 }, { -2519, 2758 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1572, -50, -2840 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1397, -50, -2979 }, { -2597, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1518, -50, -2941 }, { 147, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1455, -50, -2901 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1397, -50, -2979 }, { -3398, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1454, -50, -3028 }, { -2340, 2732 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1518, -50, -2941 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1257, -50, -3095 }, { -3222, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1296, -50, -3159 }, { -2041, 2635 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1377, -50, -3105 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1257, -50, -3095 }, { -2321, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1377, -50, -3105 }, { 192, 3039 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1329, -50, -3047 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1329, -50, -3047 }, { -3380, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1377, -50, -3105 }, { -2333, 2756 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1454, -50, -3028 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1329, -50, -3047 }, { -2570, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1454, -50, -3028 }, { 152, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1397, -50, -2979 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1551, -50, -2570 }, { -2264, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1618, -50, -2476 }, { 103, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1544, -50, -2486 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1551, -50, -2570 }, { -3102, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1626, -50, -2570 }, { -1918, 2647 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1618, -50, -2476 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1545, -50, -2657 }, { -2327, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1626, -50, -2570 }, { 144, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1551, -50, -2570 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1545, -50, -2657 }, { -3182, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1620, -50, -2668 }, { -2046, 2682 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1626, -50, -2570 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1503, -50, -2810 }, { -2981, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1572, -50, -2840 }, { -1765, 2626 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1600, -50, -2755 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1503, -50, -2810 }, { -2115, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1600, -50, -2755 }, { 92, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1528, -50, -2735 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1528, -50, -2735 }, { -3047, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1600, -50, -2755 }, { -1798, 2594 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1620, -50, -2668 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1528, -50, -2735 }, { -2134, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1620, -50, -2668 }, { 161, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1545, -50, -2657 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1464, -50, -2256 }, { -2463, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1468, -50, -2134 }, { 89, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1410, -50, -2181 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1464, -50, -2256 }, { -3245, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1528, -50, -2216 }, { -2138, 2694 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1468, -50, -2134 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1503, -50, -2330 }, { -2243, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1528, -50, -2216 }, { 153, 3022 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1464, -50, -2256 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1503, -50, -2330 }, { -3120, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1572, -50, -2301 }, { -1967, 2657 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1528, -50, -2216 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1544, -50, -2486 }, { -3021, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1618, -50, -2476 }, { -1770, 2592 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1602, -50, -2389 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1544, -50, -2486 }, { -2119, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1602, -50, -2389 }, { 141, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1529, -50, -2408 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1529, -50, -2408 }, { -3073, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1602, -50, -2389 }, { -1880, 2640 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1572, -50, -2301 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1529, -50, -2408 }, { -2192, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1572, -50, -2301 }, { 145, 3018 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1503, -50, -2330 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -301, -50, -2711 }, { -2261, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -257, -50, -2820 }, { 164, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -327, -50, -2792 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -301, -50, -2711 }, { -3146, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -229, -50, -2731 }, { -1931, 2619 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -257, -50, -2820 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -282, -50, -2629 }, { -2256, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -229, -50, -2731 }, { 79, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -301, -50, -2711 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -282, -50, -2629 }, { -3077, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -208, -50, -2641 }, { -1860, 2620 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -229, -50, -2731 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -2471 }, { -2980, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2473 }, { -1670, 2541 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -199, -50, -2557 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -2471 }, { -2146, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -199, -50, -2557 }, { 59, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -274, -50, -2551 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -274, -50, -2551 }, { -2982, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -199, -50, -2557 }, { -1679, 2548 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -208, -50, -2641 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -274, -50, -2551 }, { -2093, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -208, -50, -2641 }, { 115, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -282, -50, -2629 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -223 }, { 157, 1006 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -223, -50, -223 }, { 258, 1751 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -204 }, { 653, 939 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -204 }, { -3168, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -223, -50, -223 }, { -3406, 1895 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -232, -50, -91 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -204 }, { -1284, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -232, -50, -91 }, { 1721, 2025 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -156 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -232, -50, -91 }, { -7, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -91 }, { 994, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -156 }, { 994, -697 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -91 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -232, -50, -91 }, { -1001, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -238, -50, -18 }, { -1160, 2982 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 227 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, 143 }, { -2254, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -248, -50, 102 }, { -3473, 2593 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 143 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, 59 }, { -2254, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -248, -50, 102 }, { -1218, 2593 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 59 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -16 }, { -2003, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -238, -50, -18 }, { -2048, 2184 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -16 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -91 }, { -2003, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -238, -50, -18 }, { -45, 2184 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -248, -50, 102 }, { 127, 2900 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 59 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -238, -50, -18 }, { -2354, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, -223 }, { 158, 1012 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -223 }, { 57, 1757 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -298 }, { 2043, 2025 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -223, -50, -373 }, { -2140, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -373 }, { -1876, 1727 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -448 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -523 }, { -2003, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -223, -50, -373 }, { 2003, 1775 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -373 }, { -4077, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -223, -50, -373 }, { -3939, 1762 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, -223 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -373 }, { -2003, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -223, -50, -223 }, { 2003, 1775 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -298 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -673 }, { -4077, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -223, -50, -673 }, { -3939, 1762 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, -523 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -673 }, { -2003, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -223, -50, -523 }, { 2003, 1775 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -598 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -223, -50, -523 }, { -2140, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -523 }, { -1876, 1727 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -523 }, { -4077, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -223, -50, -523 }, { -3939, 1762 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, -373 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -823 }, { -751, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -223, -50, -973 }, { 0, 5031 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, -823 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -823 }, { -4077, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -223, -50, -823 }, { -3939, 1762 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, -673 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -823 }, { -2003, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -223, -50, -673 }, { 2003, 1775 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -748 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -223, -50, -673 }, { 249, 325 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -673 }, { -14, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -748 }, { 1861, 1733 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -898 }, { -16, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -973 }, { 1859, 1727 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -223, -50, -973 }, { 2123, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -973 }, { -4131, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -1048 }, { -2187, 1510 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -232, -50, -1123 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -1048 }, { -2240, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -1123 }, { -448, 1920 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -973 }, { -751, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -232, -50, -1123 }, { 250, 5031 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, -973 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -823 }, { -4077, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -898 }, { -2108, 1393 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1423 }, { -4007, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -43, -1573 }, { 0, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1573 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -1423 }, { -4480, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -45, -1498 }, { -1792, 1920 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -43, -1573 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1423 }, { 1405, -381 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -48, -1423 }, { -11, 1035 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -45, -1498 }, { 1405, 2452 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1423 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -1573 }, { -4007, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -301, -50, -1497 }, { -1844, 1999 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -338, -50, -1566 }, { -1977, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -301, -50, -1497 }, { -1310, 3001 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -1348 }, { -2833, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -48, -1423 }, { -1416, 2440 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1423 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -1273 }, { -1556, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1423 }, { -924, 5459 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -250, -50, -1254 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -1123 }, { -1473, 4566 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -1198 }, { -41, 3164 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -250, -50, -1254 }, { 3, 1051 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -1198 }, { -2113, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -1273 }, { -679, 2424 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -250, -50, -1254 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -1123 }, { -7, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -250, -50, -1254 }, { 1469, 4539 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -232, -50, -1123 }, { 994, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -1273 }, { -4480, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -1348 }, { -2688, 1920 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1573 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -50, -1690 }, { -4658, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -338, -50, -1566 }, { -1287, 2524 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1723 }, { -4007, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -50, -1690 }, { -3000, 4587 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1723 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -1873 }, { -4007, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -50, -1690 }, { 1007, 4587 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -39, -1648 }, { -2837, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -37, -1685 }, { -2138, 1765 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -36, -1723 }, { -1831, 1931 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -37, -1685 }, { -2263, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -41, -1610 }, { -3584, 1475 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -39, -1648 }, { -2688, 1930 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -43, -1573 }, { -4480, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -48, -2023 }, { 0, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -2023 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -1573 }, { 861, -768 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -43, -1573 }, { -35, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1723 }, { 4445, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -1723 }, { -4480, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -42, -1835 }, { -896, 1475 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -44, -1872 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1723 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -40, -1798 }, { -2837, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -42, -1835 }, { -3540, 1741 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -38, -1760 }, { -2263, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -40, -1798 }, { -2680, 1954 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1873 }, { 1405, -381 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -44, -1872 }, { -11, 1035 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -47, -1948 }, { 1405, 2452 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1873 }, { -4480, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -47, -1948 }, { -1792, 1920 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -48, -2023 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1723 }, { -4007, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -44, -1872 }, { 0, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1873 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -1723 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -36, -1723 }, { -2043, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -38, -1760 }, { -2027, 2029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -2173 }, { -4007, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2323 }, { 0, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -2323 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -2323 }, { -4480, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2398 }, { -1792, 1920 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -2473 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -2323 }, { 1405, -381 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2323 }, { -11, 1035 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -2398 }, { 1405, 2452 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -2323 }, { -3956, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2473 }, { 51, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -2471 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -2173 }, { 1405, -381 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2173 }, { -11, 1035 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -2248 }, { 1405, 2452 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -2023 }, { -4480, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2098 }, { -1792, 1920 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -2173 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -2023 }, { 1405, -381 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -48, -2023 }, { -11, 1035 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -2098 }, { 1405, 2452 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -2023 }, { -4007, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2173 }, { 0, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -2173 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -2173 }, { -4480, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2248 }, { -1792, 1920 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -2323 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1286, -50, -2065 }, { -2073, 6526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1151, -55, -1891 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1112, -50, -1955 }, { -2008, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1286, -50, -2065 }, { -5880, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1329, -50, -2004 }, { -5287, 2940 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1353, -50, -2117 }, { -2269, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1329, -50, -2004 }, { 96, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1286, -50, -2065 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1353, -50, -2117 }, { -3100, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1404, -50, -2062 }, { -1947, 2673 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1329, -50, -2004 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1410, -50, -2181 }, { -2286, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1404, -50, -2062 }, { 186, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1353, -50, -2117 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1410, -50, -2181 }, { -3182, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1468, -50, -2134 }, { -1990, 2637 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1404, -50, -2062 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1217, -50, 1202 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1292, -50, 1214 }, { -2014, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1271, -50, 1291 }, { -1793, 3156 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1132, -50, 1395 }, { -2077, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1132, -50, 1510 }, { 225, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1081, -50, 1454 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1132, -50, 1395 }, { -3052, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1191, -50, 1441 }, { -1810, 2599 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1132, -50, 1510 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1173, -50, 1336 }, { -1946, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1191, -50, 1441 }, { 96, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1132, -50, 1395 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1173, -50, 1336 }, { -2861, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1240, -50, 1371 }, { -1638, 2630 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1191, -50, 1441 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1217, -50, 1202 }, { -1840, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1271, -50, 1291 }, { 95, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1199, -50, 1268 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1271, -50, 1291 }, { -2006, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1240, -50, 1371 }, { -1897, 3301 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1199, -50, 1268 }, { -1933, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1240, -50, 1371 }, { 250, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1173, -50, 1336 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -881, -50, 1556 }, { -2140, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -806, -50, 1641 }, { 129, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -802, -50, 1566 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -881, -50, 1556 }, { -3028, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -898, -50, 1629 }, { -1848, 2655 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -806, -50, 1641 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -954, -50, 1531 }, { -2049, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -898, -50, 1629 }, { 194, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -881, -50, 1556 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -954, -50, 1531 }, { -3008, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -982, -50, 1601 }, { -1772, 2606 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -898, -50, 1629 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1081, -50, 1454 }, { -2970, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1132, -50, 1510 }, { -1785, 2655 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1060, -50, 1563 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1081, -50, 1454 }, { -2008, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1060, -50, 1563 }, { 184, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1021, -50, 1499 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1021, -50, 1499 }, { -2910, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1060, -50, 1563 }, { -1664, 2604 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -982, -50, 1601 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1021, -50, 1499 }, { -1978, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -982, -50, 1601 }, { 132, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -954, -50, 1531 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -582, -50, 1528 }, { -2023, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -471, -50, 1552 }, { 264, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -516, -50, 1491 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -582, -50, 1528 }, { -150, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -551, -50, 1596 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -471, -50, 1552 }, { -2438, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -652, -50, 1554 }, { -2158, 3008 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -582, -50, 1528 }, { -2009, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -652, -50, 1554 }, { -2931, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -633, -50, 1627 }, { -1707, 2622 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -802, -50, 1566 }, { -2967, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -806, -50, 1641 }, { -1709, 2589 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -720, -50, 1641 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -802, -50, 1566 }, { -2029, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -720, -50, 1641 }, { 158, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -726, -50, 1566 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -726, -50, 1566 }, { -2967, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -720, -50, 1641 }, { -1731, 2609 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -633, -50, 1627 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -726, -50, 1566 }, { -1990, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -633, -50, 1627 }, { 198, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -652, -50, 1554 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -360, -50, 1290 }, { -2472, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -258, -50, 1224 }, { 96, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -330, -50, 1203 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -360, -50, 1290 }, { -3258, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -50, 1320 }, { -2140, 2693 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -258, -50, 1224 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -398, -50, 1364 }, { -2226, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -50, 1320 }, { 144, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -360, -50, 1290 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -50, 1364 }, { -3104, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -335, -50, 1406 }, { -1989, 2705 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -291, -50, 1320 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -516, -50, 1491 }, { -3088, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -471, -50, 1552 }, { -1989, 2720 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -401, -50, 1484 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -516, -50, 1491 }, { -2255, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -401, -50, 1484 }, { 94, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -456, -50, 1432 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -456, -50, 1432 }, { -3297, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -401, -50, 1484 }, { -2154, 2672 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -335, -50, 1406 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -456, -50, 1432 }, { -2384, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -335, -50, 1406 }, { 234, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -398, -50, 1364 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -308, -50, 1109 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -234, -50, 1125 }, { 35, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -216, -50, 1031 }, { 2588, 2937 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -308, -50, 1109 }, { -2419, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -216, -50, 1031 }, { 99, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -290, -50, 1020 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -330, -50, 1203 }, { -3288, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -258, -50, 1224 }, { -2144, 2672 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -234, -50, 1125 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -330, -50, 1203 }, { 2535, 3134 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -234, -50, 1125 }, { 0, 1039 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -308, -50, 1109 }, { -35, 3043 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -290, -50, 1020 }, { 2345, 3128 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -206, -50, 938 }, { 0, 1039 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -281, -50, 931 }, { -35, 3043 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -281, -50, 931 }, { -5312, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -201, -50, 845 }, { -2294, 1958 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, 752 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -281, -50, 931 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -206, -50, 938 }, { 35, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -201, -50, 845 }, { 2511, 2939 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -281, -50, 931 }, { -4857, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 752 }, { 62, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, 750 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -290, -50, 1020 }, { -3139, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -216, -50, 1031 }, { -1937, 2630 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -206, -50, 938 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, 750 }, { -4445, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 584 }, { 0, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, 584 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, 584 }, { -5009, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 396 }, { 0, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, 396 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, 396 }, { -4933, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 312 }, { -2060, 1939 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, 227 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, 396 }, { 1318, -462 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 396 }, { -13, 1035 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, 312 }, { 1671, 2533 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, 396 }, { 4473, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 227 }, { -35, -979 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -265, -50, 232 }, { -35, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -265, -50, 232 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 227 }, { -2003, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -248, -50, 102 }, { -434, 4497 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, 584 }, { 1236, -528 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 584 }, { -15, 1036 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, 490 }, { 1940, 2600 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -265, -50, 232 }, { -4508, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -327, -50, 350 }, { -1366, 2693 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, 396 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, 750 }, { -4876, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 668 }, { -2055, 1950 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, 584 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, 750 }, { 1385, -400 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 752 }, { -12, 1035 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, 668 }, { 1650, 2557 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, 584 }, { -5395, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 490 }, { -2325, 1954 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, 396 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1221, -50, 1138 }, { -1710, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1292, -50, 1214 }, { 207, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1217, -50, 1202 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1221, -50, 1138 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1296, -50, 1139 }, { -1993, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1292, -50, 1214 }, { -1916, 3029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1219, -50, 1065 }, { -1935, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1296, -50, 1139 }, { 88, 3015 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1221, -50, 1138 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1219, -50, 1065 }, { -2839, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1294, -50, 1057 }, { -1557, 2565 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1296, -50, 1139 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1179, -50, 920 }, { -2994, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1247, -50, 888 }, { -1783, 2630 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1278, -50, 973 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1179, -50, 920 }, { -2070, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1278, -50, 973 }, { 153, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1205, -50, 993 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1205, -50, 993 }, { -2928, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1278, -50, 973 }, { -1674, 2594 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1294, -50, 1057 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1205, -50, 993 }, { -1976, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1294, -50, 1057 }, { 165, 3021 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1219, -50, 1065 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -925, -50, -1843 }, { -1980, 7265 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -762, -68, -1662 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -723, -50, -1726 }, { -2060, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -925, -50, -1843 }, { -6547, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -963, -62, -1779 }, { -5923, 2955 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1112, -50, -1955 }, { -2067, 6829 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -963, -62, -1779 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -925, -50, -1843 }, { -2029, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1112, -50, -1955 }, { -6162, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1151, -55, -1891 }, { -5525, 2929 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -963, -62, -1779 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -457, -70, -1542 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -403, -50, -1685 }, { -4103, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -525, -60, -1595 }, { -713, 3245 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -525, -60, -1595 }, { -481, 5021 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -403, -50, -1685 }, { 15, 999 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -622, -50, -1663 }, { -3594, 5645 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -723, -50, -1726 }, { -3753, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -762, -68, -1662 }, { -2587, 2723 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -663, -72, -1601 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -723, -50, -1726 }, { -1999, 4200 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -663, -72, -1601 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -622, -50, -1663 }, { -2087, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -622, -50, -1663 }, { -3762, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -663, -72, -1601 }, { -2545, 2719 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -570, -75, -1535 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -622, -50, -1663 }, { -2019, 4198 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -525, -60, -1595 }, { -2042, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -457, -70, -1542 }, { -2386, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -435, -80, -1443 }, { -74, 2495 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -394, -80, -1480 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -343, -50, -1561 }, { -2683, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -457, -70, -1542 }, { -579, 3338 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -403, -50, -1685 }, { -2079, 4561 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -343, -50, -1561 }, { -3127, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -525, -60, -1595 }, { -15, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -570, -75, -1535 }, { 2026, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -506, -78, -1486 }, { 2093, -1118 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -525, -60, -1595 }, { -1900, 3354 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -506, -78, -1486 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -457, -70, -1542 }, { -2018, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -457, -70, -1542 }, { -2740, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -506, -78, -1486 }, { -1537, 2645 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -435, -80, -1443 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -506, -78, -1486 }, { 1, 1040 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -450, -80, -1430 }, { -173, 3159 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -435, -80, -1443 }, { 353, 3247 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -311, -85, -1438 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -394, -80, -1480 }, { -2488, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -435, -80, -1443 }, { -3021, 2397 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -394, -80, -1480 }, { -1614, 2916 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -343, -50, -1561 }, { -3516, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1423 }, { -11, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -311, -85, -1438 }, { 1486, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 1), 0x00 } }, + { { -435, -80, -1443 }, { 3864, -1291 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 1), 0x00 } }, + { { -311, -85, -1438 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 1), 0x00 } }, + { { -306, -50, -1492 }, { -281, 2719 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 1), 0x00 } }, + { { -343, -50, -1561 }, { 936, 4414 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 1), 0x00 } }, + { { -270, -50, -1423 }, { -1498, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -306, -50, -1492 }, { -280, 2719 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 1), 0x00 } }, + { { -370, -80, 227 }, { -95, 3492 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -420, -104, 171 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -532, -88, 265 }, { -3937, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -287, -88, 79 }, { 193, 2465 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -321, -125, 61 }, { 406, 3884 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -366, -114, 120 }, { 2374, 3599 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -300, -82, 119 }, { 1178, 2322 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -314, -80, 174 }, { -2414, 3083 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -370, -80, 227 }, { -2470, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -272, -93, 46 }, { 750, 2443 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -136, -5 }, { 1941, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -321, -125, 61 }, { -15, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -287, -88, 79 }, { -227, 2443 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -370, -80, 227 }, { -2240, 5003 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -532, -88, 265 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -484, -80, 323 }, { -2240, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -314, -80, 174 }, { -2629, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -300, -82, 119 }, { -1175, 2319 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -366, -114, 120 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -314, -80, 174 }, { -220, 3644 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -420, -104, 171 }, { -2010, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -238, -50, -18 }, { -12, 1041 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -291, -136, -5 }, { 1534, 3282 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 1), 0x00 } }, + { { -272, -93, 46 }, { 2191, 1550 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -253, -50, 97 }, { 2848, -181 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -270, -50, 227 }, { -14, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -253, -50, 97 }, { 2384, 3572 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -314, -80, 174 }, { 1839, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -253, -50, 97 }, { -440, 3862 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -272, -93, 46 }, { 750, 2443 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -287, -88, 79 }, { -227, 2443 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -332, -50, 345 }, { -1661, 4170 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 1), 0x00 } }, + { { -270, -50, 227 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -370, -80, 227 }, { -2673, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -332, -50, 345 }, { -1244, 4085 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 1), 0x00 } }, + { { -370, -80, 227 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -484, -80, 323 }, { -3979, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -270, -50, 227 }, { -2673, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -314, -80, 174 }, { -1488, 2449 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -314, -80, 174 }, { -2629, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -253, -50, 97 }, { -2351, 3615 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -300, -82, 119 }, { -1175, 2319 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -253, -50, 97 }, { -18, 1046 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -287, -88, 79 }, { 193, 2465 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -300, -82, 119 }, { 1178, 2322 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -598, -80, 417 }, { -15, 1063 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -795, -65, 471 }, { 2027, 6124 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -750, -60, 531 }, { 3498, 4705 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -598, -80, 417 }, { -2043, 6084 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -645, -76, 359 }, { 79, 6042 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -795, -65, 471 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -484, -80, 323 }, { -2027, 4986 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -645, -76, 359 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -598, -80, 417 }, { -2123, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -484, -80, 323 }, { -76, 3263 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -532, -88, 265 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -645, -76, 359 }, { -3924, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -750, -60, 531 }, { -2052, 6017 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -945, -58, 584 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -899, -50, 643 }, { -2013, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -750, -60, 531 }, { -15, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -795, -65, 471 }, { 2027, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -945, -58, 584 }, { 1988, -3989 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1148, -50, 866 }, { -1651, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1247, -50, 888 }, { 176, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1179, -50, 920 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1148, -50, 866 }, { -2711, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1210, -50, 823 }, { -1359, 2515 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1247, -50, 888 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1096, -50, 806 }, { -2113, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1210, -50, 823 }, { 190, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1148, -50, 866 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1096, -50, 806 }, { -3053, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1151, -50, 755 }, { -1810, 2598 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1210, -50, 823 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -899, -50, 643 }, { -23, 3037 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -945, -58, 584 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1090, -50, 696 }, { -4912, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -899, -50, 643 }, { -4787, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1090, -50, 696 }, { 105, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1041, -50, 753 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1041, -50, 753 }, { -2940, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1090, -50, 696 }, { -1652, 2562 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1151, -50, 755 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1041, -50, 753 }, { -2057, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1151, -50, 755 }, { 95, 3027 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1096, -50, 806 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -421, -118, -1177 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -454, -106, -1243 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -454, -66, -1243 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -421, -78, -1177 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -398, -93, -1104 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -133, -1104 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -421, -118, -1177 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -421, -78, -1177 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -398, -88, -1364 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -398, -48, -1364 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -450, -40, -1430 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -450, -80, -1430 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -454, -106, -1243 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -492, -99, -1301 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -492, -59, -1301 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -454, -66, -1243 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -291, -121, -1139 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -81, -1139 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -317, -66, -1221 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -317, -106, -1221 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -492, -99, -1301 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -536, -91, -1357 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -536, -51, -1357 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -492, -59, -1301 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -317, -106, -1221 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -317, -66, -1221 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -354, -55, -1296 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -354, -95, -1296 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -354, -95, -1296 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -354, -55, -1296 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -398, -48, -1364 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -398, -88, -1364 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -472, -33, -1411 }, { 36, -7 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -450, -40, -1430 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -398, -48, -1364 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -422, -40, -1348 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -492, -59, -1301 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -536, -51, -1357 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -515, -38, -1375 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -468, -46, -1316 }, { -42, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -515, -38, -1375 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -472, -33, -1411 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -422, -40, -1348 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -468, -46, -1316 }, { 4, 75 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -318, -74, -1130 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -371, -80, -1112 }, { -6, 57 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -395, -65, -1188 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -343, -59, -1210 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -317, -66, -1221 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -291, -81, -1139 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -318, -74, -1130 }, { 1023, -40 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -343, -59, -1210 }, { 27, -39 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -371, -80, -1112 }, { -31, -10 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -398, -93, -1104 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -421, -78, -1177 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -395, -65, -1188 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -395, -65, -1188 }, { -32, 3 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -421, -78, -1177 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -454, -66, -1243 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -429, -53, -1256 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -317, -66, -1221 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -343, -59, -1210 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -379, -48, -1283 }, { 29, -10 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -354, -55, -1296 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -343, -59, -1210 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -395, -65, -1188 }, { 7, 59 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -429, -53, -1256 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -379, -48, -1283 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -454, -66, -1243 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -492, -59, -1301 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -468, -46, -1316 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -429, -53, -1256 }, { -44, -8 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -468, -46, -1316 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -422, -40, -1348 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -379, -48, -1283 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -429, -53, -1256 }, { -5, 78 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -422, -40, -1348 }, { 37, 1 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -398, -48, -1364 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -354, -55, -1296 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -379, -48, -1283 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -387, -102, -1045 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -398, -93, -1104 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -371, -80, -1112 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -360, -90, -1052 }, { -27, 4 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -318, -74, -1130 }, { 25, 10 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -291, -81, -1139 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -279, -94, -1075 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -306, -86, -1067 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -371, -80, -1112 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -318, -74, -1130 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -360, -90, -1052 }, { -3, 52 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -337, -128, -819 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -338, -120, -873 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -281, -120, -877 }, { 0, -37 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -280, -128, -821 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -365, -138, -819 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -366, -130, -871 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -338, -120, -873 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -337, -128, -819 }, { -19, -1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -253, -130, -879 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -252, -138, -823 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -280, -128, -821 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -281, -120, -877 }, { 17, -2 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -252, -138, -823 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -253, -130, -879 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -253, -170, -879 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -252, -178, -823 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -365, -138, -819 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -147, -766 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -187, -766 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -365, -178, -819 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -387, -142, -1045 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -133, -1104 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -93, -1104 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -387, -102, -1045 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -377, -151, -987 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -387, -142, -1045 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -387, -102, -1045 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -377, -111, -987 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -371, -161, -929 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -377, -151, -987 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -377, -111, -987 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -371, -121, -929 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -366, -170, -871 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -371, -161, -929 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -371, -121, -929 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -366, -130, -871 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -187, -766 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -147, -766 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -252, -138, -823 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -252, -178, -823 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -366, -130, -871 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -365, -138, -819 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -365, -178, -819 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -366, -170, -871 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -279, -134, -1075 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -266, -148, -1010 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -266, -108, -1010 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -279, -94, -1075 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -81, -1139 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -279, -134, -1075 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -279, -94, -1075 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -121, -1139 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -260, -119, -944 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -266, -108, -1010 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -266, -148, -1010 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -260, -159, -944 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -253, -170, -879 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -253, -130, -879 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -260, -119, -944 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -260, -159, -944 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -279, -94, -1075 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -266, -108, -1010 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -294, -98, -1004 }, { 1023, -24 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -306, -86, -1067 }, { 25, -10 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -377, -111, -987 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -349, -100, -992 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -343, -110, -932 }, { -34, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -371, -121, -929 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -137, -766 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -137, -766 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -337, -128, -819 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -280, -128, -821 }, { 0, -37 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -260, -119, -944 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -253, -130, -879 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -281, -120, -877 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -288, -109, -940 }, { 30, 4 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -294, -98, -1004 }, { 30, 4 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -266, -108, -1010 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -260, -119, -944 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -288, -109, -940 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -288, -109, -940 }, { 3, -67 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -281, -120, -877 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -338, -120, -873 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -343, -110, -932 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -349, -100, -992 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -294, -98, -1004 }, { 3, -67 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -288, -109, -940 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -343, -110, -932 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -343, -110, -932 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -338, -120, -873 }, { -35, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -366, -130, -871 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -371, -121, -929 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -306, -86, -1067 }, { 4, -54 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -294, -98, -1004 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -349, -100, -992 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -360, -90, -1052 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -252, -138, -823 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -251, -147, -766 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -137, -766 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -280, -128, -821 }, { 17, -3 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -335, -137, -766 }, { -19, -2 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -363, -147, -766 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -365, -138, -819 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -337, -128, -819 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -377, -111, -987 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -387, -102, -1045 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -349, -100, -992 }, { -27, 8 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -140, -382 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -335, -144, -429 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -279, -144, -429 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -279, -140, -382 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -279, -140, -382 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -251, -154, -429 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -251, -150, -382 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -363, -158, -598 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -363, -156, -654 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -335, -146, -654 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -335, -148, -597 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -363, -150, -382 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -363, -154, -429 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -335, -144, -429 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -335, -140, -382 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -251, -156, -654 }, { 0, 1008 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -251, -158, -598 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -279, -148, -597 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -279, -146, -654 }, { 0, -15 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -335, -146, -654 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -279, -146, -654 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -363, -157, -485 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -154, -429 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -194, -429 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -197, -485 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -152, -710 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -156, -654 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -196, -654 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -192, -710 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -187, -766 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -147, -766 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -152, -710 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -192, -710 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -158, -598 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -160, -541 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -200, -541 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -198, -598 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -156, -654 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -158, -598 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -198, -598 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -196, -654 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -190, -382 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -185, -335 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -145, -335 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -150, -382 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -194, -429 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -190, -382 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -150, -382 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -154, -429 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -160, -541 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -157, -485 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -197, -485 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -200, -541 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -152, -710 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -147, -766 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -187, -766 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -192, -710 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -156, -654 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -152, -710 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -192, -710 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -196, -654 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -156, -654 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -196, -654 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -198, -598 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -158, -598 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -198, -598 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -200, -541 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -160, -541 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -158, -598 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -150, -382 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -145, -335 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -185, -335 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -190, -382 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -194, -429 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -154, -429 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -150, -382 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -190, -382 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -160, -541 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -200, -541 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -197, -485 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -157, -485 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -197, -485 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -194, -429 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -154, -429 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -157, -485 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -145, -335 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -135, -335 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -140, -382 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -251, -150, -382 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -335, -135, -335 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -363, -145, -335 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -363, -150, -382 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -335, -140, -382 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -251, -147, -766 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -251, -152, -710 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -142, -710 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -137, -766 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -150, -541 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -150, -541 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -148, -597 }, { 1023, -11 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -279, -148, -597 }, { 0, -11 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -251, -158, -598 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -251, -160, -541 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -150, -541 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -148, -597 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -363, -152, -710 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -363, -147, -766 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -137, -766 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -142, -710 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -146, -654 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -363, -156, -654 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -363, -152, -710 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -142, -710 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -135, -335 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -135, -335 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -140, -382 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -251, -152, -710 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -251, -156, -654 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -279, -146, -654 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -279, -142, -710 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -146, -654 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -335, -146, -654 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -335, -142, -710 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -142, -710 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -137, -766 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -137, -766 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -142, -710 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -150, -541 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -363, -160, -541 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -363, -158, -598 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -335, -148, -597 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -335, -144, -429 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -363, -154, -429 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -363, -157, -485 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -147, -485 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -363, -157, -485 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -363, -160, -541 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -150, -541 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -147, -485 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -251, -157, -485 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -251, -154, -429 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -279, -144, -429 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -279, -147, -485 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -144, -429 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -335, -144, -429 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -335, -147, -485 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -147, -485 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -150, -541 }, { 1024, -9 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -150, -541 }, { 0, -9 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -147, -485 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -251, -160, -541 }, { -2, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -251, -157, -485 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -147, -485 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -150, -541 }, { -2, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -338, -118, -194 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -335, -122, -228 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -279, -121, -224 }, { -1, -91 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -282, -116, -188 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -366, -129, -198 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -363, -132, -230 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -338, -118, -194 }, { -47, -4 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -251, -130, -223 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -254, -124, -185 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -282, -116, -188 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -279, -121, -224 }, { 40, -6 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -374, -163, -134 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -369, -166, -166 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -369, -126, -166 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -374, -123, -134 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -366, -129, -198 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -369, -126, -166 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -369, -166, -166 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -366, -169, -198 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -132, -230 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -366, -129, -198 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -366, -169, -198 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -172, -230 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -179, -282 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -185, -335 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -145, -335 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -139, -282 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -132, -230 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -172, -230 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -179, -282 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -363, -139, -282 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -280, -142, -39 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -291, -136, -5 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -291, -96, -5 }, { 1024, -11 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -280, -102, -39 }, { 0, -11 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -270, -148, -73 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -280, -142, -39 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -280, -102, -39 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -270, -108, -73 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -379, -119, -102 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -379, -159, -102 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -374, -163, -134 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -374, -123, -134 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -138, -279 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -145, -335 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -185, -335 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -178, -279 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -130, -223 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -138, -279 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -178, -279 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -251, -170, -223 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -130, -223 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -170, -223 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -254, -164, -185 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -254, -124, -185 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -254, -164, -185 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -258, -159, -148 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -258, -119, -148 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -254, -124, -185 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -387, -113, -76 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -394, -108, -49 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -394, -148, -49 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -387, -153, -76 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -379, -159, -102 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -379, -119, -102 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -387, -113, -76 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -387, -153, -76 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -270, -108, -73 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -264, -113, -110 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -264, -153, -110 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -270, -148, -73 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -264, -113, -110 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -258, -119, -148 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -258, -159, -148 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -264, -153, -110 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 0), 0x00 } }, + { { -360, -100, -66 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -352, -106, -95 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -297, -100, -80 }, { -10, -135 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -307, -95, -48 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -387, -113, -76 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -379, -119, -102 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -360, -100, -66 }, { -73, 13 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -368, -95, -38 }, { -74, 13 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -394, -108, -49 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -387, -113, -76 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -360, -100, -66 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -251, -130, -223 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -279, -121, -224 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -279, -128, -279 }, { 16, -2 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -251, -138, -279 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -363, -139, -282 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -363, -145, -335 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -135, -335 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -128, -281 }, { -17, -2 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -254, -124, -185 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -258, -119, -148 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -286, -111, -152 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -282, -116, -188 }, { 40, -8 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -286, -111, -152 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -341, -114, -161 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -338, -118, -194 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -282, -116, -188 }, { 0, -91 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -341, -114, -161 }, { -46, -7 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -369, -126, -166 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -366, -129, -198 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -338, -118, -194 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -335, -122, -228 }, { -17, -2 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -363, -132, -230 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -363, -139, -282 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -128, -281 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -317, -89, -15 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -368, -95, -38 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -360, -100, -66 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -307, -95, -48 }, { -10, -136 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -128, -279 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -135, -335 }, { 16, -2 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -251, -145, -335 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -251, -138, -279 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -121, -224 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -335, -122, -228 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -279, -128, -279 }, { 0, -34 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -128, -281 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -335, -135, -335 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -135, -335 }, { 0, -34 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -279, -128, -279 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -280, -102, -39 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -291, -96, -5 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -317, -89, -15 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -307, -95, -48 }, { 56, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -374, -123, -134 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -369, -126, -166 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -341, -114, -161 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -347, -110, -128 }, { -45, -6 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -352, -106, -95 }, { -45, -6 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -379, -119, -102 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -374, -123, -134 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -347, -110, -128 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -270, -108, -73 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -280, -102, -39 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -307, -95, -48 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -297, -100, -80 }, { 56, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -297, -100, -80 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -352, -106, -95 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -347, -110, -128 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -291, -105, -116 }, { 2, -88 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -347, -110, -128 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -341, -114, -161 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -286, -111, -152 }, { 2, -88 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -291, -105, -116 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -258, -119, -148 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -264, -113, -110 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -291, -105, -116 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -286, -111, -152 }, { 39, -3 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -264, -113, -110 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -270, -108, -73 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -297, -100, -80 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -291, -105, -116 }, { 39, -2 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { 177, 61, 2 }, { 5919, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { 177, 73, 2 }, { 5919, 1 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { 177, 73, -144 }, { -2047, 0 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { 177, 61, -144 }, { -2047, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { 177, 61, -295 }, { 5273, 1023 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { 177, 73, -295 }, { 5273, 1 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { 177, 73, -448 }, { -3072, 0 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { 177, 61, -448 }, { -3072, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { 177, 61, -144 }, { 5344, 1023 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { 177, 73, -144 }, { 5344, 1 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { 177, 73, -219 }, { 1213, 1 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { 177, 61, -295 }, { -2918, 1023 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { 177, 73, -295 }, { -2918, 1 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { 175, 134, -182 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 4), 0x00 } }, + { { 157, 124, -206 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 4), 0x00 } }, + { { 158, 107, -192 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 4), 0x00 } }, + { { 165, 103, -165 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 4), 0x00 } }, + { { 175, 141, -219 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 4), 0x00 } }, + { { 175, 107, -144 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 4), 0x00 } }, + { { 157, 124, -238 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 4), 0x00 } }, + { { 177, 73, -144 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x4c, 0x00, 4), 0x00 } }, + { { 158, 90, -201 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x1c, 0x98, 0x08, 4), 0x00 } }, + { { 121, 73, -182 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x14, 0x90, 0x14, 4), 0x00 } }, + { { 158, 90, -201 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 4), 0x00 } }, + { { 175, 134, -257 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 4), 0x00 } }, + { { 158, 107, -250 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 4), 0x00 } }, + { { 121, 73, -182 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x1c, 0x98, 0x08, 4), 0x00 } }, + { { 177, 73, -219 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x4c, 0x00, 4), 0x00 } }, + { { 121, 73, -223 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x1c, 0x98, 0x08, 4), 0x00 } }, + { { 121, 73, -265 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x1c, 0x98, 0x08, 4), 0x00 } }, + { { 177, 73, -295 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x4c, 0x00, 4), 0x00 } }, + { { 165, 103, -278 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 4), 0x00 } }, + { { 175, 107, -294 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 4), 0x00 } }, + { { 158, 90, -239 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x1c, 0x98, 0x08, 4), 0x00 } }, + { { 121, 73, -265 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x14, 0x90, 0x14, 4), 0x00 } }, + { { 158, 90, -239 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 4), 0x00 } }, + { { 121, 73, -223 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x14, 4), 0x00 } }, + { { 121, 73, -182 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x14, 4), 0x00 } }, + { { 121, 73, -265 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x14, 4), 0x00 } }, + { { 158, 107, -192 }, { 1303, 564 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 157, 124, -206 }, { 958, 24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 157, 124, -238 }, { 100, 23 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 158, 107, -250 }, { -261, 563 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 158, 90, -201 }, { 1028, 1104 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 158, 90, -239 }, { -4, 1103 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 142, 25, -442 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 177, 46, -443 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 177, 61, -443 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 85, 21, -443 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 85, 21, -3 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 177, 61, -3 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 177, 46, -3 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 142, 25, -2 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -20, -448 }, { 1362, 750 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 85, 21, -448 }, { 865, 380 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { 142, -20, -448 }, { 341, 750 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { 177, 46, -448 }, { 24, 145 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { 142, 25, -447 }, { 341, 341 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { 177, 61, -448 }, { 24, 9 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -7, -20, -448 }, { 1706, 750 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 142, -20, -448 }, { 341, 750 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { 30, -50, -448 }, { 1365, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 30, -20, -448 }, { 1364, 750 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 142, -50, -448 }, { 341, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 177, 61, 2 }, { 1340, 9 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { 85, 21, 2 }, { 499, 380 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { 177, 46, 2 }, { 1340, 145 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { 30, -20, 2 }, { 0, 750 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 143, -20, 2 }, { 1024, 750 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { 142, 25, 3 }, { 1023, 341 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { 142, -50, 2 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 30, -50, 2 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 85, 21, 2 }, { 499, 380 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -7, -20, 2 }, { -340, 750 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -7, -20, 2 }, { 9216, 4134 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { 85, 21, 2 }, { 9216, 2067 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { 85, 21, -144 }, { 6228, 2067 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -8, -20, -71 }, { 7722, 4135 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { 85, 21, -295 }, { 3129, 2067 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -8, -20, -144 }, { 6228, 4135 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { 177, 61, -144 }, { 6228, 0 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -8, -20, -219 }, { 4678, 4135 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { 177, 61, 2 }, { 9216, 0 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { 85, 21, -448 }, { 0, 2067 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -8, -20, -295 }, { 3129, 4135 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -8, -20, -371 }, { 1564, 4135 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 177, 61, -295 }, { 3129, 0 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { 177, 61, -448 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -7, -20, -448 }, { 0, 4134 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -7, -50, -448 }, { -1429, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -371 }, { 2048, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -371 }, { 2048, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -448 }, { -1427, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -144 }, { -1271, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -144 }, { -1271, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -71 }, { 2047, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -71 }, { 2047, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -295 }, { -1394, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -219 }, { 2048, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -219 }, { 2047, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -295 }, { -1394, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -71 }, { 0, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 2 }, { 3319, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, 2 }, { 3321, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -71 }, { 0, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -219 }, { 0, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -144 }, { 3442, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -144 }, { 3442, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -219 }, { 0, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -371 }, { 0, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -295 }, { 3477, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -295 }, { 3477, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -371 }, { 0, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1462, 61, 738 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x18, 0x18, 0x18, 4), 0x00 } }, + { { -1406, 61, 738 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x18, 0x18, 0x18, 4), 0x00 } }, + { { -1349, 61, 738 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x18, 0x18, 0x18, 4), 0x00 } }, + { { -1349, 61, 794 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x18, 0x18, 0x18, 4), 0x00 } }, + { { -1462, 61, 794 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x18, 0x18, 0x18, 4), 0x00 } }, + { { -1349, 61, 850 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x18, 0x18, 0x18, 4), 0x00 } }, + { { -1406, 61, 850 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x18, 0x18, 0x18, 4), 0x00 } }, + { { -1462, 61, 850 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x18, 0x18, 0x18, 4), 0x00 } }, + { { -1349, 174, 794 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1349, 174, 850 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1349, 61, 850 }, { 0, 2048 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1349, 61, 794 }, { 1023, 2048 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1406, 174, 850 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x30, 0x30, 0x30, 4), 0x00 } }, + { { -1462, 174, 850 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x30, 0x30, 0x30, 4), 0x00 } }, + { { -1462, 61, 850 }, { 0, 2047 }, { MACRO_COLOR_FLAG(0x30, 0x30, 0x30, 4), 0x00 } }, + { { -1406, 61, 850 }, { 1023, 2048 }, { MACRO_COLOR_FLAG(0x30, 0x30, 0x30, 4), 0x00 } }, + { { -1406, 174, 738 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -1349, 174, 738 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -1349, 61, 738 }, { 0, 2048 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -1406, 61, 738 }, { 1024, 2048 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -1462, 61, 738 }, { 1023, 2048 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -1462, 174, 738 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -1406, 174, 738 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -1406, 61, 738 }, { 0, 2048 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -1349, 61, 850 }, { 1024, 2048 }, { MACRO_COLOR_FLAG(0x30, 0x30, 0x30, 4), 0x00 } }, + { { -1349, 174, 850 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0x30, 0x30, 0x30, 4), 0x00 } }, + { { -1406, 174, 850 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x30, 0x30, 0x30, 4), 0x00 } }, + { { -1406, 61, 850 }, { 0, 2047 }, { MACRO_COLOR_FLAG(0x30, 0x30, 0x30, 4), 0x00 } }, + { { -1349, 61, 738 }, { 1023, 2048 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1349, 174, 738 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1349, 174, 794 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1349, 61, 794 }, { 0, 2048 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1387, -21, 775 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -1404, -18, 775 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -1404, 3, 775 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -1387, 61, 775 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -1424, 61, 775 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -1424, -15, 775 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x48, 0x48, 0x48, 4), 0x00 } }, + { { -1387, -21, 775 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -1387, 61, 775 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x30, 0x30, 0x30, 4), 0x00 } }, + { { -1387, 61, 813 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x30, 0x30, 0x30, 4), 0x00 } }, + { { -1387, -22, 813 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -1387, -22, 813 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1424, 6, 813 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -1424, -15, 813 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1387, 61, 813 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -1424, 61, 813 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -223, -1, 328 }, { 0, -2047 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, 328 }, { 0, 11263 }, { MACRO_COLOR_FLAG(0x30, 0x30, 0x30, 0), 0x00 } }, + { { -220, -50, 327 }, { 1024, 11263 }, { MACRO_COLOR_FLAG(0x30, 0x30, 0x30, 0), 0x00 } }, + { { -220, -1, 327 }, { 1023, -2047 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -222, -50, 324 }, { 0, 11263 }, { MACRO_COLOR_FLAG(0x30, 0x30, 0x30, 0), 0x00 } }, + { { -222, -1, 324 }, { 0, -2047 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, 328 }, { 1024, 11263 }, { MACRO_COLOR_FLAG(0x30, 0x30, 0x30, 0), 0x00 } }, + { { -223, -1, 328 }, { 1023, -2047 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -203, 14, 328 }, { 2083, 438 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -206, 22, 333 }, { 1824, 111 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -207, 14, 339 }, { 1670, 438 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -206, 22, 323 }, { 2018, 111 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -206, 5, 333 }, { 1824, 765 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -213, 22, 341 }, { 1315, 111 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -213, -2, 331 }, { 1485, 1061 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -213, 5, 341 }, { 1315, 765 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -222, -2, 337 }, { 816, 1061 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -222, -5, 327 }, { 1001, 1170 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -222, 5, 344 }, { 686, 765 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -206, 5, 323 }, { 2018, 765 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -228, 14, 345 }, { 332, 438 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -223, 22, 344 }, { 686, 111 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -232, 22, 341 }, { 177, 111 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -217, 14, 345 }, { 1001, 438 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -223, 5, 344 }, { 686, 765 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -232, 5, 341 }, { 177, 765 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -231, -2, 330 }, { 403, 1061 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -238, 5, 332 }, { -16, 765 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -237, 14, 338 }, { -80, 438 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -238, 22, 332 }, { -16, 111 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -222, 32, 327 }, { 1001, -292 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -228, 30, 335 }, { 517, -183 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -216, 30, 336 }, { 1186, -183 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -212, 30, 325 }, { 1599, -183 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -222, 30, 318 }, { 4633, -1856 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -221, 22, 311 }, { 4244, -1340 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -231, 22, 314 }, { 6131, -1340 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -222, 32, 327 }, { 5188, -2048 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -231, 30, 324 }, { 6640, -1856 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -238, 22, 322 }, { 7658, -1340 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -206, 14, 317 }, { 1941, -767 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -206, 5, 323 }, { 2135, -195 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -212, 5, 314 }, { 2718, -195 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -212, 22, 314 }, { 2718, -1340 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -212, 30, 325 }, { 3393, -1856 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -206, 22, 323 }, { 2135, -1340 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -216, 14, 310 }, { 3181, -767 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -221, 5, 311 }, { 4244, -195 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -227, 14, 309 }, { 5188, -768 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -231, 5, 314 }, { 6131, -195 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -203, 14, 328 }, { 2083, 438 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -206, 5, 323 }, { 2018, 765 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -206, 14, 317 }, { 2083, 438 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -206, 22, 323 }, { 2018, 111 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -238, 22, 332 }, { 8241, -1340 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -228, 30, 335 }, { 6640, -1856 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -231, -2, 330 }, { 6982, 320 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -238, 5, 332 }, { 8241, -195 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -238, 5, 322 }, { 7658, -195 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -237, 14, 338 }, { 8434, -768 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -241, 14, 327 }, { 8434, -768 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -216, -2, 320 }, { 3736, 320 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -213, -2, 331 }, { 3736, 320 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -222, -5, 327 }, { 5188, 511 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -237, 14, 316 }, { 7194, -768 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -227, -2, 319 }, { 5742, 320 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -222, -5, 327 }, { 1001, 1170 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -231, -2, 330 }, { 403, 1061 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -227, -2, 319 }, { 816, 1061 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -241, 14, 327 }, { 8434, -768 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -238, 5, 322 }, { 7658, -195 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -238, 5, 332 }, { 8241, -195 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -237, 14, 316 }, { 7194, -768 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -238, 22, 322 }, { 7658, -1340 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -231, 5, 314 }, { 6131, -195 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -231, -2, 330 }, { 6982, 320 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -227, -2, 319 }, { 5742, 320 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -270, -50, -1423 }, { -2382, 387 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -435, -80, -1443 }, { 1023, 1433 }, { MACRO_COLOR_FLAG(0xe0, 0xb4, 0xac, 0), 0x00 } }, + { { -435, -22, -1443 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -536, -51, -1357 }, { 6803, 5617 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -536, -91, -1357 }, { 6803, 7665 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -551, -91, -1344 }, { 7827, 7665 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -551, -21, -1344 }, { 7827, 4081 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -435, -80, -1443 }, { 0, 7089 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -450, -80, -1430 }, { 1024, 7089 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -450, -40, -1430 }, { 1024, 5041 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -435, -22, -1443 }, { 0, 4095 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -450, -40, -1430 }, { 1024, 5041 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -472, -33, -1411 }, { 2477, 4673 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -435, -22, -1443 }, { 0, 4095 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -515, -38, -1375 }, { 5367, 4961 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -551, -21, -1344 }, { 7827, 4081 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -508, 14, -1289 }, { -97, 4259 }, { MACRO_COLOR_FLAG(0x64, 0x64, 0x64, 4), 0x00 } }, + { { -391, 13, -1388 }, { 7730, 4259 }, { MACRO_COLOR_FLAG(0x64, 0x64, 0x64, 4), 0x00 } }, + { { -435, 58, -1443 }, { 7827, 0 }, { MACRO_COLOR_FLAG(0x64, 0x64, 0x64, 4), 0x00 } }, + { { -551, 59, -1344 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x64, 0x64, 0x64, 4), 0x00 } }, + { { -508, -26, -1289 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -391, -27, -1388 }, { 7827, 1023 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -391, 13, -1388 }, { 7823, -1023 }, { MACRO_COLOR_FLAG(0x64, 0x64, 0x64, 4), 0x00 } }, + { { -508, 14, -1289 }, { -3, -1023 }, { MACRO_COLOR_FLAG(0x64, 0x64, 0x64, 4), 0x00 } }, + { { -536, -51, -1357 }, { 6803, 5617 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -462, -21, -1420 }, { 1799, 4092 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -462, 59, -1420 }, { 1791, -3 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -435, 58, -1443 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -462, -11, -1420 }, { 1798, 3580 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, -21, -1394 }, { 3847, 4089 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, -11, -1394 }, { 3846, 3577 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, 59, -1394 }, { 3839, -6 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -462, 49, -1420 }, { 1792, 508 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, 49, -1394 }, { 3840, 505 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -523, -21, -1368 }, { 5895, 4085 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, -11, -1394 }, { 3846, 3577 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -523, -21, -1368 }, { 5895, 4085 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -523, -11, -1368 }, { 5894, 3573 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -508, -26, -1289 }, { 3584, 4352 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -508, 14, -1289 }, { 3584, 2304 }, { MACRO_COLOR_FLAG(0x64, 0x64, 0x64, 4), 0x00 } }, + { { -551, 59, -1344 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x64, 0x64, 0x64, 4), 0x00 } }, + { { -551, -21, -1344 }, { 0, 4096 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -551, -21, -1344 }, { 7827, 4081 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -551, 59, -1344 }, { 7827, -14 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -523, 59, -1368 }, { 5887, -10 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -435, -22, -1443 }, { 1023, 4096 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -435, 58, -1443 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x64, 0x64, 0x64, 4), 0x00 } }, + { { -391, 13, -1388 }, { -2559, 2303 }, { MACRO_COLOR_FLAG(0x64, 0x64, 0x64, 4), 0x00 } }, + { { -391, -27, -1388 }, { -2560, 4352 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -462, 49, -1420 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -462, 29, -1420 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, 29, -1394 }, { 2048, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, 49, -1394 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, 49, -1394 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, 29, -1394 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -523, 29, -1368 }, { 2048, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -523, 49, -1368 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -462, 29, -1420 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -462, 9, -1420 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, 9, -1394 }, { 2048, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, 29, -1394 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, 29, -1394 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, 9, -1394 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -523, 9, -1368 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -523, 29, -1368 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -462, 9, -1420 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -462, -11, -1420 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, -11, -1394 }, { 2048, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, 9, -1394 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, 9, -1394 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, -11, -1394 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -523, -11, -1368 }, { 2048, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -523, 9, -1368 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -523, 59, -1368 }, { 3071, -2559 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, 59, -1394 }, { 2047, -2559 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -492, 49, -1394 }, { 2047, -2303 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -523, 49, -1368 }, { 3071, -2303 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1625, -38, -2158 }, { 6759, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1625, -28, -2158 }, { 6784, 1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1555, -34, -2059 }, { 537, 1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1555, -44, -2059 }, { 512, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1679, -32, -2261 }, { 6576, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1679, -22, -2261 }, { 6603, 1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1625, -28, -2158 }, { 640, 1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1625, -38, -2158 }, { 614, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1712, -26, -2365 }, { 6105, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1712, -16, -2365 }, { 6133, 1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1679, -22, -2261 }, { 540, 1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1679, -32, -2261 }, { 512, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1732, -23, -2470 }, { 5488, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1732, -13, -2470 }, { 5502, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1712, -16, -2365 }, { 14, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1712, -26, -2365 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1769, 12, -2223 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1769, -9, -2223 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1806, -3, -2339 }, { 14424, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1806, 18, -2339 }, { 14452, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1708, 6, -2107 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1708, -15, -2107 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1769, -9, -2223 }, { 14424, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1769, 12, -2223 }, { 14452, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1806, 18, -2339 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1806, -3, -2339 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1828, 0, -2458 }, { 14424, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1828, 21, -2458 }, { 14452, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1629, 0, -1995 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1629, -21, -1995 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1708, -15, -2107 }, { 14424, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1708, 6, -2107 }, { 14452, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1732, -13, -2470 }, { 5119, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1828, 0, -2458 }, { 5419, -3929 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1806, -3, -2339 }, { -753, -3938 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1712, -16, -2365 }, { -368, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1679, -22, -2261 }, { 5119, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1769, -9, -2223 }, { 5536, -3957 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1708, -15, -2107 }, { -1168, -3964 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1625, -28, -2158 }, { -839, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1625, -28, -2158 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1708, -15, -2107 }, { 1342, -3965 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1629, -21, -1995 }, { -5690, -3964 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1555, -34, -2059 }, { -5234, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1712, -16, -2365 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1806, -3, -2339 }, { 1226, -3948 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1769, -9, -2223 }, { -5029, -3952 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1679, -22, -2261 }, { -4558, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1706, -20, -2792 }, { 5791, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -1706, -10, -2792 }, { 5791, 0 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -1731, -10, -2692 }, { 511, 0 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -1731, -20, -2692 }, { 511, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -1731, -20, -2692 }, { 6567, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1731, -10, -2692 }, { 6567, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1738, -10, -2579 }, { 767, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1738, -20, -2579 }, { 767, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1738, -20, -2579 }, { 5969, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1738, -10, -2579 }, { 5983, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1732, -13, -2470 }, { 423, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1732, -23, -2470 }, { 409, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1674, -20, -2890 }, { 5940, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -1674, -10, -2890 }, { 5940, 0 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -1706, -10, -2792 }, { 665, 0 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -1706, -20, -2792 }, { 665, 1023 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -1828, 21, -2458 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1828, 0, -2458 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1835, 3, -2579 }, { 14424, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1835, 24, -2579 }, { 14452, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1835, 24, -2579 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1835, 3, -2579 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1826, 3, -2705 }, { 14424, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1826, 24, -2705 }, { 14452, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1826, 24, -2705 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -1826, 3, -2705 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -1799, 3, -2818 }, { 14424, 1023 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -1799, 24, -2818 }, { 14452, -1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -1706, -10, -2792 }, { -155, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1781, 3, -2872 }, { 2576, -3893 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1799, 3, -2818 }, { -375, -3897 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1674, -10, -2890 }, { 5119, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1763, 3, -2927 }, { 5528, -3889 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1706, -10, -2792 }, { 5279, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1799, 3, -2818 }, { 5450, -3899 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1826, 3, -2705 }, { -458, -3902 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1731, -10, -2692 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1738, -10, -2579 }, { 1023, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1835, 3, -2579 }, { 1335, -3917 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1828, 0, -2458 }, { -4886, -3926 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1732, -13, -2470 }, { -4535, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1731, -10, -2692 }, { 5799, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1826, 3, -2705 }, { 6177, -3909 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1835, 3, -2579 }, { -309, -3918 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1738, -10, -2579 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1781, 24, -2872 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -1799, 24, -2818 }, { -765, 0 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -1799, 3, -2818 }, { -765, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -1781, 3, -2872 }, { 2048, 1023 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -1763, 3, -2927 }, { 2813, 1023 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -1763, 24, -2927 }, { 2813, 0 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -1781, 24, -2872 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -1781, 3, -2872 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -1612, -20, -3003 }, { 7394, 1024 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -1612, -10, -3003 }, { 7394, 0 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -1674, -10, -2890 }, { 767, 0 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -1674, -20, -2890 }, { 768, 1024 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -1539, -10, -3103 }, { 6575, 0 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -1612, -10, -3003 }, { 255, 0 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -1612, -20, -3003 }, { 255, 1023 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -1539, -20, -3103 }, { 6575, 1023 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -1357, -20, -3255 }, { 6577, 1023 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -1357, -10, -3255 }, { 6577, 0 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -1450, -10, -3190 }, { 768, 0 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -1450, -20, -3190 }, { 768, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -1450, -20, -3190 }, { 6896, 1023 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -1450, -10, -3190 }, { 6896, 0 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -1539, -10, -3103 }, { 511, 0 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -1539, -20, -3103 }, { 511, 1023 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -1612, 24, -3165 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -1612, 3, -3165 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -1512, 3, -3263 }, { 14424, 1023 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -1512, 24, -3263 }, { 14452, -1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -1763, 24, -2927 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -1763, 3, -2927 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -1693, 3, -3054 }, { 14424, 1023 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -1693, 24, -3054 }, { 14452, -1024 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -1450, -10, -3190 }, { 350, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1357, -10, -3255 }, { 6143, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1460, 3, -3299 }, { 3127, -3854 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1512, 3, -3263 }, { -117, -3852 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1408, 3, -3336 }, { 6372, -3856 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1612, -10, -3003 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1653, 3, -3110 }, { 3162, -3870 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1693, 3, -3054 }, { -368, -3871 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1539, -10, -3103 }, { 6319, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1612, 3, -3165 }, { 6693, -3869 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1450, -10, -3190 }, { 6144, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1512, 3, -3263 }, { 6461, -3865 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1612, 3, -3165 }, { -688, -3864 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1539, -10, -3103 }, { -249, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1612, -10, -3003 }, { 6626, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1693, 3, -3054 }, { 6894, -3878 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1763, 3, -2927 }, { -504, -3880 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1674, -10, -2890 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1653, 3, -3110 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -1653, 24, -3110 }, { 2048, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1693, 24, -3054 }, { -1396, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1693, 3, -3054 }, { -1396, 1024 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -1653, 3, -3110 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -1612, 3, -3165 }, { 3444, 1024 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -1612, 24, -3165 }, { 3444, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1653, 24, -3110 }, { 0, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1460, 3, -3299 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -1460, 24, -3299 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1512, 24, -3263 }, { -1042, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1512, 3, -3263 }, { -1042, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -1460, 3, -3299 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -1408, 3, -3336 }, { 3090, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -1408, 24, -3336 }, { 3090, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1460, 24, -3299 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1257, -20, -3309 }, { 6349, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1257, -10, -3309 }, { 6349, 0 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1357, -10, -3255 }, { 511, 0 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1357, -20, -3255 }, { 511, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1150, -10, -3349 }, { 6059, 0 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1257, -10, -3309 }, { 255, 0 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1257, -20, -3309 }, { 256, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1150, -20, -3349 }, { 6059, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1029, -20, -3371 }, { 6315, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -1029, -10, -3371 }, { 6315, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -1150, -10, -3349 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -1150, -20, -3349 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -902, -10, -3378 }, { 6769, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -1029, -10, -3371 }, { 256, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -1029, -20, -3371 }, { 256, 1023 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -902, -20, -3378 }, { 6769, 1023 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -1176, 24, -3441 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -1176, 3, -3441 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -1040, 3, -3466 }, { 14424, 1023 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -1040, 24, -3466 }, { 14452, -1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -1408, 24, -3336 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1408, 3, -3336 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1295, 3, -3396 }, { 14424, 1023 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1295, 24, -3396 }, { 14452, -1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1029, -10, -3371 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -902, -10, -3378 }, { 6513, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -969, 3, -3470 }, { 3338, -3843 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1040, 3, -3466 }, { -305, -3844 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -898, 3, -3474 }, { 6983, -3841 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1257, -10, -3309 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1150, -10, -3349 }, { 5803, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1236, 3, -3418 }, { 2954, -3849 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1176, 3, -3441 }, { 6211, -3848 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1295, 3, -3396 }, { -302, -3851 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1029, -10, -3371 }, { 6315, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1040, 3, -3466 }, { 6623, -3844 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1176, 3, -3441 }, { -447, -3844 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1150, -10, -3349 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1257, -10, -3309 }, { 6143, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1295, 3, -3396 }, { 6498, -3847 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1408, 3, -3336 }, { -63, -3847 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1357, -10, -3255 }, { 297, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1236, 3, -3418 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1236, 24, -3418 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1295, 24, -3396 }, { -1054, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1295, 3, -3396 }, { -1054, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1236, 3, -3418 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1176, 3, -3441 }, { 3102, 1023 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1176, 24, -3441 }, { 3102, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1236, 24, -3418 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -969, 3, -3470 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -969, 24, -3470 }, { 2048, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1040, 24, -3466 }, { -1507, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1040, 3, -3466 }, { -1507, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -969, 3, -3470 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -898, 3, -3474 }, { 3555, 1023 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -898, 24, -3474 }, { 3555, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -969, 24, -3470 }, { 0, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -649, -20, -3328 }, { 6794, 1023 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -649, -10, -3328 }, { 6794, 0 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -777, -10, -3363 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -777, -20, -3363 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -777, -20, -3363 }, { 7119, 1023 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -777, -10, -3363 }, { 7119, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -902, -10, -3378 }, { 665, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -902, -20, -3378 }, { 665, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { -529, -20, -3272 }, { 7445, 1023 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -529, -10, -3272 }, { 7445, 0 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -649, -10, -3328 }, { 665, 0 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -649, -20, -3328 }, { 665, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -434, -20, -3214 }, { 5938, 1023 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -434, -10, -3214 }, { 5938, 0 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -529, -10, -3272 }, { 255, 0 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -529, -20, -3272 }, { 255, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -616, 24, -3418 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -616, 3, -3418 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -481, 3, -3355 }, { 14424, 1023 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -481, 24, -3355 }, { 14452, -1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -481, 24, -3355 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -481, 3, -3355 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -375, 3, -3290 }, { 10135, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -375, 24, -3290 }, { 10135, -1023 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -898, 24, -3474 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -898, 3, -3474 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -758, 3, -3456 }, { 14424, 1023 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -758, 24, -3456 }, { 14452, -1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 4), 0x00 } }, + { { -616, 3, -3418 }, { -379, -3897 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -649, -10, -3328 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -481, 3, -3355 }, { 7193, -3904 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -529, -10, -3272 }, { 6779, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -434, -10, -3214 }, { 5680, 973 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -375, 3, -3290 }, { 6360, -3914 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -481, 3, -3355 }, { 0, -4096 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -529, -10, -3272 }, { 0, 809 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -777, -10, -3363 }, { 405, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -687, 3, -3437 }, { 3850, -3850 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -758, 3, -3456 }, { 73, -3849 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -649, -10, -3328 }, { 7167, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -616, 3, -3418 }, { 7627, -3851 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -777, -10, -3363 }, { 6143, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -758, 3, -3456 }, { 6497, -3848 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -898, 3, -3474 }, { -744, -3846 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -902, -10, -3378 }, { -335, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -687, 3, -3437 }, { 2048, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -687, 24, -3437 }, { 2048, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -758, 24, -3456 }, { -1637, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -758, 3, -3456 }, { -1637, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -616, 3, -3418 }, { 3685, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -616, 24, -3418 }, { 3685, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -687, 24, -3437 }, { 0, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -687, 3, -3437 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -339, -20, -3134 }, { 6117, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -339, -10, -3134 }, { 6117, 0 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -434, -10, -3214 }, { -255, 0 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -434, -20, -3214 }, { -255, 1023 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -263, -23, -3047 }, { 5904, 1023 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -263, -13, -3047 }, { 5891, 0 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -339, -10, -3134 }, { -13, 0 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -339, -20, -3134 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -203, -26, -2960 }, { 5187, 1024 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -203, -16, -2960 }, { 5172, 0 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -263, -13, -3047 }, { -270, 0 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -263, -23, -3047 }, { -255, 1024 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -153, -32, -2864 }, { 5531, 1023 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -153, -22, -2864 }, { 5502, 1 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -203, -16, -2960 }, { -28, 1 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -203, -26, -2960 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -184, 21, -3103 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -184, 0, -3104 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -116, -3, -3006 }, { 10135, 1024 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -116, 18, -3005 }, { 10135, -1023 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -269, 24, -3200 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -269, 3, -3201 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -184, 0, -3104 }, { 10135, 1024 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -184, 21, -3103 }, { 10135, -1023 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -116, 18, -3005 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -116, -3, -3006 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -60, -9, -2898 }, { 10135, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -60, 12, -2897 }, { 10135, -1023 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -375, 24, -3290 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -375, 3, -3290 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -269, 3, -3201 }, { 10135, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -269, 24, -3200 }, { 10135, -1023 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -153, -22, -2864 }, { 5531, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -60, -9, -2898 }, { 6162, -4008 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -116, -3, -3006 }, { -47, -4007 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -203, -16, -2960 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -263, -13, -3047 }, { 5905, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -184, 0, -3104 }, { 6398, -3944 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -269, 3, -3201 }, { -211, -3937 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -339, -10, -3134 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -339, -10, -3134 }, { 6373, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -269, 3, -3201 }, { 6923, -3911 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -375, 3, -3290 }, { -202, -3907 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -434, -10, -3214 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -203, -16, -2960 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -116, -3, -3006 }, { 1627, -3971 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -184, 0, -3104 }, { -4485, -3968 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -263, -13, -3047 }, { -4419, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -122, -38, -2765 }, { 5848, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -122, -28, -2765 }, { 5819, 1 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -153, -22, -2864 }, { 482, 1 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -153, -32, -2864 }, { 512, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -98, -44, -2666 }, { 6001, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -98, -34, -2666 }, { 5970, 1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -122, -28, -2765 }, { 737, 1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -122, -38, -2765 }, { 767, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -88, -47, -2572 }, { 4711, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -88, -37, -2572 }, { 4694, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -98, -34, -2666 }, { -118, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -98, -44, -2666 }, { -102, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2479 }, { 5406, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -40, -2479 }, { 5389, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -88, -37, -2572 }, { 598, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -88, -47, -2572 }, { 614, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 2, 0, -2676 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 2, -21, -2677 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 13, -24, -2573 }, { 10135, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 13, -3, -2572 }, { 10135, -1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -25, 6, -2787 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -25, -15, -2788 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 2, -21, -2677 }, { 10135, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 2, 0, -2676 }, { 10135, -1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 13, -3, -2572 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 13, -24, -2573 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 19, -27, -2469 }, { 10135, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 19, -6, -2469 }, { 10135, -1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -60, 12, -2897 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -60, -9, -2898 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -25, -15, -2788 }, { 10135, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -25, 6, -2787 }, { 10135, -1023 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -82, -40, -2479 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { 19, -27, -2469 }, { -796, -4129 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { 13, -24, -2573 }, { 4524, -4127 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -88, -37, -2572 }, { 4792, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -98, -34, -2666 }, { 5233, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { 2, -21, -2677 }, { 5846, -4064 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -25, -15, -2788 }, { 16, -4061 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -122, -28, -2765 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -122, -28, -2765 }, { 5336, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -25, -15, -2788 }, { 5712, -4047 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -60, -9, -2898 }, { -231, -4042 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -153, -22, -2864 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -88, -37, -2572 }, { 5120, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { 13, -24, -2573 }, { 5662, -4106 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { 2, -21, -2677 }, { 286, -4100 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -98, -34, -2666 }, { 306, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1555, -44, -2059 }, { 5660, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1555, -34, -2059 }, { 5674, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1479, -37, -1978 }, { 13, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1479, -47, -1978 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1479, -47, -1978 }, { 5143, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1479, -37, -1978 }, { 5156, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1392, -40, -1910 }, { -498, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1392, -50, -1910 }, { -511, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1248, -40, -1731 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1248, -50, -1731 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1392, -50, -1910 }, { 11760, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1392, -40, -1910 }, { 11760, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1544, -3, -1905 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1544, -24, -1905 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -1629, -21, -1995 }, { 14424, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1629, 0, -1995 }, { 14452, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1447, -6, -1829 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1447, -27, -1829 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1544, -24, -1905 }, { 14424, 1023 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -1544, -3, -1905 }, { 14452, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1382, -6, -1747 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1382, -27, -1747 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1447, -27, -1829 }, { 14424, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1447, -6, -1829 }, { 14452, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1555, -34, -2059 }, { 1024, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1629, -21, -1995 }, { 1255, -3979 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1544, -24, -1905 }, { -5079, -3977 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1479, -37, -1978 }, { -4636, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1392, -40, -1910 }, { 11760, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1447, -27, -1829 }, { 10272, -3768 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1382, -27, -1747 }, { 4909, -3844 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1248, -40, -1731 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1479, -37, -1978 }, { 1559, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1544, -24, -1905 }, { 1921, -3983 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1447, -27, -1829 }, { -4408, -3984 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1392, -40, -1910 }, { -4095, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -151, -38, 1259 }, { 5638, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -151, -28, 1259 }, { 5666, 1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -125, -34, 1152 }, { 27, 1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -125, -44, 1152 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -125, -44, 1152 }, { 5176, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -125, -34, 1152 }, { 5199, 1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -105, -39, 1053 }, { 22, 1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -105, -49, 1053 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -105, -49, 1053 }, { 5098, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -105, -39, 1053 }, { 5106, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -95, -40, 954 }, { 7, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -95, -50, 954 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -44, 0, 1160 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -44, -21, 1160 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -73, -15, 1279 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -73, 6, 1279 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -22, -5, 1050 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -22, -26, 1050 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -44, -21, 1160 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -44, 0, 1160 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -11, -6, 940 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -11, -27, 940 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -22, -26, 1050 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -22, -5, 1050 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -125, -34, 1152 }, { 5176, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -44, -21, 1160 }, { 4750, -3103 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -22, -26, 1050 }, { -982, -3105 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -105, -39, 1053 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -151, -28, 1259 }, { 5638, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -73, -15, 1279 }, { 5675, -3079 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -44, -21, 1160 }, { -589, -3083 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -125, -34, 1152 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -105, -39, 1053 }, { 5098, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -22, -26, 1050 }, { 4502, -3178 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -11, -27, 940 }, { -1146, -3181 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -95, -40, 954 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -186, -32, 1364 }, { 5145, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -186, -22, 1364 }, { 5172, 1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -151, -28, 1259 }, { -484, 1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -151, -38, 1259 }, { -512, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -240, -26, 1466 }, { 5925, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -240, -16, 1466 }, { 5951, 1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -186, -22, 1364 }, { 26, 1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -186, -32, 1364 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -314, -23, 1559 }, { 5854, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -314, -13, 1559 }, { 5867, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -240, -16, 1466 }, { -243, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -240, -26, 1466 }, { -256, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -404, -20, 1642 }, { 7007, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -404, -10, 1642 }, { 7020, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -314, -13, 1559 }, { 780, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -314, -23, 1559 }, { 768, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -172, 18, 1510 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -172, -3, 1510 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -256, 0, 1614 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -256, 21, 1614 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -113, 12, 1395 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -113, -9, 1395 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -172, -3, 1510 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -172, 18, 1510 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -256, 21, 1614 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -256, 0, 1614 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -357, 3, 1707 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -357, 24, 1707 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -73, 6, 1279 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -73, -15, 1279 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -113, -9, 1395 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -113, 12, 1395 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -404, -10, 1642 }, { 6239, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -357, 3, 1707 }, { 6760, -3067 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -256, 0, 1614 }, { -278, -3067 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -314, -13, 1559 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -240, -16, 1466 }, { 5925, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -172, -3, 1510 }, { 6326, -3060 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -113, -9, 1395 }, { -322, -3061 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -186, -22, 1364 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -186, -22, 1364 }, { 5657, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -113, -9, 1395 }, { 5957, -3063 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -73, -15, 1279 }, { -327, -3066 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -151, -28, 1259 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -314, -13, 1559 }, { 6110, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -256, 0, 1614 }, { 6442, -3063 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -172, -3, 1510 }, { -409, -3059 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -240, -16, 1466 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -503, -20, 1701 }, { 6666, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -503, -10, 1701 }, { 6666, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -404, -10, 1642 }, { 767, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -404, -20, 1642 }, { 767, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -606, -20, 1736 }, { 5060, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -606, -10, 1736 }, { 5060, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -503, -10, 1701 }, { -511, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -503, -20, 1701 }, { -511, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -714, -20, 1755 }, { 5597, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -714, -10, 1755 }, { 5597, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -606, -10, 1736 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -606, -20, 1736 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -816, -20, 1753 }, { 4709, 1023 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -816, -10, 1753 }, { 4709, 0 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -714, -10, 1755 }, { -511, 0 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -714, -20, 1755 }, { -511, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -585, 24, 1814 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -585, 3, 1814 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -707, 3, 1835 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -707, 24, 1835 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -357, 24, 1707 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -357, 3, 1707 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -469, 3, 1774 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -469, 24, 1774 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -714, -10, 1755 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -816, -10, 1753 }, { 5221, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -764, 3, 1834 }, { 2511, -3070 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -707, 3, 1835 }, { -416, -3070 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -821, 3, 1833 }, { 5439, -3070 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -606, -10, 1736 }, { 5572, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -585, 3, 1814 }, { 5860, -3086 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -527, 3, 1794 }, { 2717, -3086 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -503, -10, 1701 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -469, 3, 1774 }, { -426, -3085 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -714, -10, 1755 }, { 5597, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -707, 3, 1835 }, { 5947, -3076 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -585, 3, 1814 }, { -366, -3080 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -606, -10, 1736 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -503, -10, 1701 }, { 5898, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -469, 3, 1774 }, { 6320, -3086 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -357, 3, 1707 }, { -344, -3086 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -404, -10, 1642 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -764, 24, 1834 }, { 2047, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -707, 24, 1835 }, { -808, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -707, 3, 1835 }, { -808, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -764, 3, 1834 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -821, 3, 1833 }, { 2856, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -821, 24, 1833 }, { 2856, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -764, 24, 1834 }, { 0, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -764, 3, 1834 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -527, 24, 1794 }, { 2047, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -469, 24, 1774 }, { -1018, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -469, 3, 1774 }, { -1018, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -527, 3, 1794 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -585, 3, 1814 }, { 3066, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -585, 24, 1814 }, { 3066, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -527, 24, 1794 }, { 0, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -527, 3, 1794 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -922, -20, 1740 }, { 5097, 1024 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -922, -10, 1740 }, { 5097, 0 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -816, -10, 1753 }, { -409, 0 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -816, -20, 1753 }, { -409, 1023 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -1023, -20, 1706 }, { 5422, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -1023, -10, 1706 }, { 5422, 0 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -922, -10, 1740 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -922, -20, 1740 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -1116, -20, 1663 }, { 5518, 1023 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1116, -10, 1663 }, { 5518, 0 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1023, -10, 1706 }, { 255, 0 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1023, -20, 1706 }, { 256, 1023 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1206, -20, 1595 }, { 6137, 1023 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1206, -10, 1595 }, { 6137, 0 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1116, -10, 1663 }, { 358, 0 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1116, -20, 1663 }, { 358, 1023 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1053, 24, 1780 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1053, 3, 1780 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1158, 3, 1732 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1158, 24, 1732 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -821, 24, 1833 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -821, 3, 1833 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -941, 3, 1818 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -941, 24, 1818 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -922, -10, 1740 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -997, 3, 1799 }, { 2668, -3074 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -941, 3, 1818 }, { -376, -3072 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1023, -10, 1706 }, { 5422, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1053, 3, 1780 }, { 5714, -3076 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1206, -10, 1595 }, { 5778, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1209, 3, 1693 }, { 2842, -3093 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1116, -10, 1663 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1260, 3, 1655 }, { 6102, -3096 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1158, 3, 1732 }, { -417, -3090 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -922, -10, 1740 }, { 5507, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -941, 3, 1818 }, { 5937, -3067 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -821, 3, 1833 }, { -233, -3070 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -816, -10, 1753 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1116, -10, 1663 }, { 5262, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1158, 3, 1732 }, { 5751, -3082 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1053, 3, 1780 }, { -160, -3083 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1023, -10, 1706 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -997, 24, 1799 }, { 2047, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -941, 24, 1818 }, { -922, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -941, 3, 1818 }, { -922, 1023 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -997, 3, 1799 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -1053, 3, 1780 }, { 2970, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -1053, 24, 1780 }, { 2970, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -997, 24, 1799 }, { 0, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -997, 3, 1799 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -1209, 24, 1693 }, { 2048, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1158, 24, 1732 }, { -1132, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1158, 3, 1732 }, { -1132, 1023 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1209, 3, 1693 }, { 2048, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1260, 3, 1655 }, { 3180, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1260, 24, 1655 }, { 3180, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1209, 24, 1693 }, { 0, -24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1209, 3, 1693 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1281, -20, 1512 }, { 5732, 1023 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1281, -10, 1512 }, { 5732, 0 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1206, -10, 1595 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1206, -20, 1595 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -1340, -20, 1423 }, { 6076, 1023 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -1340, -10, 1423 }, { 6076, 0 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -1281, -10, 1512 }, { 614, 0 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -1281, -20, 1512 }, { 614, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 0), 0x00 } }, + { { -1405, -20, 1231 }, { 5197, 1023 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -1405, -10, 1231 }, { 5197, 0 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -1380, -10, 1324 }, { 255, 0 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -1380, -20, 1324 }, { 256, 1023 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { -1380, -20, 1324 }, { 5440, 1023 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -1380, -10, 1324 }, { 5440, 0 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -1340, -10, 1423 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -1340, -20, 1423 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 0), 0x00 } }, + { { -1411, 24, 1461 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -1411, 3, 1461 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -1456, 3, 1350 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -1456, 24, 1350 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 4), 0x00 } }, + { { -1260, 24, 1655 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1260, 3, 1655 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1345, 3, 1562 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1345, 24, 1562 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 4), 0x00 } }, + { { -1380, -10, 1324 }, { 5440, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1456, 3, 1350 }, { 5687, -3082 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1411, 3, 1461 }, { -450, -3081 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1340, -10, 1423 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1340, -10, 1423 }, { 5461, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1378, 3, 1511 }, { 2756, -3090 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1281, -10, 1512 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1411, 3, 1461 }, { 5836, -3089 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1345, 3, 1562 }, { -324, -3091 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1405, -10, 1231 }, { 5119, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1482, 3, 1245 }, { 5407, -3074 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1469, 3, 1297 }, { 2633, -3075 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1380, -10, 1324 }, { 185, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1456, 3, 1350 }, { -140, -3076 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1281, -10, 1512 }, { 5732, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1345, 3, 1562 }, { 6051, -3091 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1260, 3, 1655 }, { -417, -3088 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1206, -10, 1595 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1378, 24, 1511 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1345, 24, 1562 }, { -885, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1345, 3, 1562 }, { -885, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -1378, 3, 1511 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -1411, 3, 1461 }, { 2933, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -1411, 24, 1461 }, { 2933, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1378, 24, 1511 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1378, 3, 1511 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xac, 0xac, 0xac, 4), 0x00 } }, + { { -1469, 24, 1297 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1456, 24, 1350 }, { -583, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1456, 3, 1350 }, { -583, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -1469, 3, 1297 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -1482, 3, 1245 }, { 2631, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -1482, 24, 1245 }, { 2631, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1469, 24, 1297 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1469, 3, 1297 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 4), 0x00 } }, + { { -1410, -24, 1140 }, { 4681, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1410, -14, 1140 }, { 4659, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1405, -10, 1231 }, { -22, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1405, -20, 1231 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1406, -28, 1044 }, { 5435, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1406, -18, 1044 }, { 5414, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1410, -14, 1140 }, { 490, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1410, -24, 1140 }, { 511, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1388, -32, 946 }, { 5398, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1388, -22, 946 }, { 5378, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1406, -18, 1044 }, { 286, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1406, -28, 1044 }, { 307, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1352, -38, 846 }, { 5733, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1352, -28, 846 }, { 5704, 1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1388, -22, 946 }, { 227, 1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1388, -32, 946 }, { 255, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1485, 16, 1035 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1485, -5, 1035 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1465, -9, 925 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1465, 12, 925 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1490, 20, 1142 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1490, -1, 1142 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1485, -5, 1035 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1485, 16, 1035 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1465, 12, 925 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1465, -9, 925 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1424, -15, 813 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1424, 6, 813 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1482, 24, 1245 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1482, 3, 1245 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1490, -1, 1142 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1490, 20, 1142 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1352, -28, 846 }, { 5477, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1424, -15, 813 }, { 5792, -3062 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1465, -9, 925 }, { -355, -3056 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1388, -22, 946 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1406, -18, 1044 }, { 4900, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1485, -5, 1035 }, { 5198, -3056 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1490, -1, 1142 }, { -288, -3057 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1410, -14, 1140 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1410, -14, 1140 }, { 4681, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1490, -1, 1142 }, { 4853, -3064 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1482, 3, 1245 }, { -417, -3063 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1405, -10, 1231 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1388, -22, 946 }, { 5108, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1465, -9, 925 }, { 5431, -3059 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1485, -5, 1035 }, { -285, -3057 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1406, -18, 1044 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1112, -40, 524 }, { 4875, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1167, -40, 614 }, { -512, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1167, -50, 614 }, { -512, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1112, -50, 524 }, { 4875, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1058, -50, 434 }, { 6155, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1058, -40, 434 }, { 6155, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1112, -40, 524 }, { 768, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1112, -50, 524 }, { 768, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1239, -47, 684 }, { 5578, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1239, -37, 684 }, { 5563, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1308, -34, 765 }, { 139, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1308, -44, 765 }, { 153, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1308, -44, 765 }, { 5299, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1308, -34, 765 }, { 5265, 2 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1352, -28, 846 }, { 529, 2 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1352, -38, 846 }, { 563, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1167, -50, 614 }, { 4639, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1167, -40, 614 }, { 4623, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1239, -37, 684 }, { -527, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1239, -47, 684 }, { -512, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1375, 0, 721 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1375, -21, 721 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1298, -24, 631 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1298, -3, 631 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1404, -18, 775 }, { 6669, 978 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1375, -21, 721 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1375, 0, 721 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1404, 3, 775 }, { 6669, -1069 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1166, -6, 470 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1166, -27, 470 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1142, -27, 431 }, { 13925, 960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1142, -6, 431 }, { 13925, -1087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1298, -3, 631 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1298, -24, 631 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1218, -27, 551 }, { 9391, 960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1218, -6, 551 }, { 9391, -1087 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1218, -6, 551 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1218, -27, 551 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -1424, -15, 813 }, { -153, -3112 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1352, -28, 846 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1387, -22, 813 }, { 309, -1400 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 1), 0x00 } }, + { { -1308, -34, 765 }, { 2367, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1387, -21, 775 }, { 1152, -2320 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 1), 0x00 } }, + { { -1239, -37, 684 }, { 5424, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1298, -24, 631 }, { 5513, -3057 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1375, -21, 721 }, { -569, -3044 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1308, -34, 765 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1167, -40, 614 }, { 5151, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1218, -27, 551 }, { 5548, -3057 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1298, -24, 631 }, { -236, -3051 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1239, -37, 684 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1058, -40, 434 }, { 10773, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1142, -27, 431 }, { 8679, -2743 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1166, -27, 470 }, { 6298, -2734 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1112, -40, 524 }, { 5386, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1218, -27, 551 }, { 1369, -2841 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1167, -40, 614 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -1375, -21, 721 }, { 2512, -3122 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -1404, -18, 775 }, { 937, -3116 }, { MACRO_COLOR_FLAG(0xc8, 0xc8, 0xc8, 1), 0x00 } }, + { { -498, -50, -3120 }, { -6, 1075 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -529, -20, -3272 }, { 2043, 201 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -579, -50, -3171 }, { 12, 301 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -777, -20, -3363 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -685, -50, -3220 }, { 7, 1021 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -649, -20, -3328 }, { 2050, 1025 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -434, -20, -3214 }, { 2047, 1097 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -777, -20, -3363 }, { -29, 1026 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -797, -50, -3252 }, { 2040, 1031 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -685, -50, -3220 }, { 2013, 32 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -529, -20, -3272 }, { 2042, 1021 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -649, -20, -3328 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -579, -50, -3171 }, { 13, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -777, -20, -3363 }, { 2047, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -902, -20, -3378 }, { 2076, 66 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -797, -50, -3252 }, { -21, 1021 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -685, -50, -3220 }, { 10, 119 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -907, -50, -3265 }, { -12, 182 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1122, -50, -3238 }, { -28, 1020 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1257, -20, -3309 }, { 2065, -5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1212, -50, -3206 }, { -21, 162 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1150, -20, -3349 }, { 2079, 1010 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1017, -50, -3259 }, { -12, 96 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -907, -50, -3265 }, { -12, 1114 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1029, -20, -3371 }, { 2060, 40 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -902, -20, -3378 }, { 2073, 1213 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1029, -20, -3371 }, { 2063, 1014 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1150, -20, -3349 }, { 2076, 11 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1017, -50, -3259 }, { -12, 1005 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1257, -20, -3309 }, { 2068, 1035 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1357, -20, -3255 }, { 2082, -4 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1212, -50, -3206 }, { -19, 1106 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1122, -50, -3238 }, { -27, 140 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1296, -50, -3159 }, { -30, 230 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1518, -50, -2941 }, { -16, 58 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1454, -50, -3028 }, { -22, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1612, -20, -3003 }, { 2064, -5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1539, -20, -3103 }, { 2070, 1093 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1296, -50, -3159 }, { 2042, -23 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1450, -20, -3190 }, { -57, 986 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1377, -50, -3105 }, { 2022, 991 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1357, -20, -3255 }, { -71, -196 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1612, -20, -3003 }, { 2067, 955 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1674, -20, -2890 }, { 2081, 15 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1518, -50, -2941 }, { -15, 1020 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1450, -20, -3190 }, { 2069, 1015 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1539, -20, -3103 }, { 2070, -13 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1377, -50, -3105 }, { -10, 1025 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1539, -20, -3103 }, { -46, 1031 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1454, -50, -3028 }, { 2046, 1030 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1377, -50, -3105 }, { 2033, 12 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1572, -50, -2840 }, { -25, 190 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1620, -50, -2668 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1738, -20, -2579 }, { 2051, 15 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1626, -50, -2570 }, { -4, 146 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1731, -20, -2692 }, { 2048, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1706, -20, -2792 }, { -51, 1020 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1600, -50, -2755 }, { 2037, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1572, -50, -2840 }, { 2042, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1706, -20, -2792 }, { 2068, -3 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1572, -50, -2840 }, { -23, 1017 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1674, -20, -2890 }, { 2080, 1025 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1738, -20, -2579 }, { 2046, 1077 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1732, -23, -2470 }, { 2064, 82 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1618, -50, -2476 }, { -4, 148 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1738, -20, -2579 }, { 2048, 1022 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1618, -50, -2476 }, { -4, 147 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1626, -50, -2570 }, { -2, 1005 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1706, -20, -2792 }, { 2066, 1026 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1731, -20, -2692 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1600, -50, -2755 }, { -19, 1012 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1620, -50, -2668 }, { 0, 233 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1618, -50, -2476 }, { -5, 1018 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1712, -26, -2365 }, { 2050, 17 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1602, -50, -2389 }, { 0, 196 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1572, -50, -2301 }, { 2035, 109 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1625, -38, -2158 }, { -24, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1528, -50, -2216 }, { 2023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1732, -23, -2470 }, { 2061, 1012 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1572, -50, -2301 }, { -13, 972 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1679, -32, -2261 }, { 2048, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1625, -38, -2158 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1625, -38, -2158 }, { 2048, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1555, -44, -2059 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1528, -50, -2216 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1712, -26, -2365 }, { 2047, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1679, -32, -2261 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1602, -50, -2389 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1468, -50, -2134 }, { -30, 176 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1572, -50, -2301 }, { -13, 151 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1329, -50, -2004 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1209, -55, -1795 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1151, -55, -1891 }, { 2, 27 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1555, -44, -2059 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1479, -47, -1978 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1404, -50, -2062 }, { 0, 281 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1468, -50, -2134 }, { -32, 1320 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1555, -44, -2059 }, { 2049, 1099 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1404, -50, -2062 }, { -1, 633 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1392, -50, -1910 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1479, -47, -1978 }, { 2048, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1392, -50, -1910 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1404, -50, -2062 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1329, -50, -2004 }, { 5, 138 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -963, -62, -1779 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -821, -68, -1566 }, { 2048, -1043 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -762, -68, -1662 }, { -2, -1044 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1019, -62, -1681 }, { 2048, 989 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1151, -55, -1891 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1019, -62, -1681 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -963, -62, -1779 }, { 0, 10 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1209, -55, -1795 }, { 2048, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -257, -50, -2820 }, { 12, 1028 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -203, -26, -2960 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -298, -50, -2901 }, { 4, 255 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -350, -50, -2974 }, { -19, 1059 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -339, -20, -3134 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -414, -50, -3050 }, { 2, 120 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -153, -32, -2864 }, { 2052, 920 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -263, -23, -3047 }, { 2054, 1088 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -339, -20, -3134 }, { 2047, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -434, -20, -3214 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -414, -50, -3050 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -203, -26, -2960 }, { 2047, 1055 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -263, -23, -3047 }, { 2056, 84 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -298, -50, -2901 }, { 5, 1001 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -498, -50, -3120 }, { -5, 128 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -350, -50, -2974 }, { -20, 187 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -91 }, { 0, 3839 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -156 }, { 2048, 2960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -156 }, { 0, 2960 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 227 }, { 0, 8191 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 143 }, { 2048, 7039 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 143 }, { 0, 7039 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 59 }, { 0, 5887 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -16 }, { 2048, 4863 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -16 }, { 0, 4863 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -91 }, { 2048, 3839 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 227 }, { 2048, 8191 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 59 }, { 2048, 5887 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -16 }, { 2047, 3840 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -91 }, { 2047, 2816 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -16 }, { 0, 3840 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 143 }, { 2047, 6016 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 59 }, { 2047, 4864 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 143 }, { 0, 6016 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -156 }, { 2048, 6032 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -204 }, { 2048, 5376 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -156 }, { 0, 6032 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -91 }, { 0, 2816 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 59 }, { 0, 4864 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -204 }, { 0, 5375 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -204 }, { 2048, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -223 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -204 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -223 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -523 }, { 0, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -598 }, { 2048, -2048 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -598 }, { 0, -2048 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -373 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -448 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -448 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -523 }, { 2048, -1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -373 }, { 2048, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -448 }, { 2048, -1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -523 }, { 2048, -2047 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -448 }, { 0, -1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -598 }, { 2048, -3071 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -673 }, { 2048, -4095 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -598 }, { 0, -3071 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -223 }, { 0, 2047 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -298 }, { 2048, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -298 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -373 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -523 }, { 0, -2047 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -673 }, { 0, -4095 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -223 }, { 2048, 2047 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -373 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -823 }, { 0, -5120 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -898 }, { 2048, -6144 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -898 }, { 0, -6144 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -973 }, { 0, -7168 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -1048 }, { 2048, -8192 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -1048 }, { 0, -8192 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -673 }, { 0, -3072 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -748 }, { 2048, -4096 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -748 }, { 0, -4096 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -823 }, { 2048, -5120 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -973 }, { 2048, -7168 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -673 }, { 2048, -3072 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -898 }, { 2048, -7167 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -973 }, { 2047, -8191 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -898 }, { 0, -7167 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -748 }, { 2048, -5119 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -823 }, { 2048, -6143 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -748 }, { 0, -5119 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -1048 }, { 2047, -9215 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -1123 }, { 2047, -10239 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -1048 }, { 0, -9215 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -973 }, { 0, -8191 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -823 }, { 0, -6143 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -1123 }, { 0, -10239 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -1273 }, { 0, -11264 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -1348 }, { 2048, -12288 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -1348 }, { 0, -12288 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -48, -1423 }, { 0, -13312 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -45, -1498 }, { 2048, -14336 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -45, -1498 }, { 0, -14336 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -1123 }, { 0, -9216 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -1198 }, { 2048, -10240 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -1198 }, { 0, -10240 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -1273 }, { 2048, -11264 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -48, -1423 }, { 2048, -13312 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -1123 }, { 2048, -9216 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -1348 }, { 2047, -13311 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -48, -1423 }, { 2047, -14335 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -1348 }, { 0, -13311 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -1198 }, { 2047, -11263 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -1273 }, { 2047, -12287 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -1198 }, { 0, -11263 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -45, -1498 }, { 2047, -15359 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -43, -1573 }, { 2047, -16383 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -45, -1498 }, { 0, -15359 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -48, -1423 }, { 0, -14335 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -1273 }, { 0, -12287 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -43, -1573 }, { 0, -16383 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -44, -1872 }, { 0, -19456 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -47, -1948 }, { 2048, -20480 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -47, -1948 }, { 0, -20480 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -40, -1798 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -40, -1798 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -38, -1760 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -38, -1760 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -41, -1610 }, { 0, 543 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -43, -1573 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -43, -1573 }, { 2047, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -41, -1610 }, { 2047, 543 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -39, -1648 }, { 2047, 542 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -39, -1648 }, { 0, 542 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -41, -1610 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -41, -1610 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -38, -1760 }, { 0, 542 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -36, -1723 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -36, -1723 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -38, -1760 }, { 2047, 542 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -44, -1872 }, { 2048, -19456 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -47, -1948 }, { 2047, -21503 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -48, -2023 }, { 2047, -22527 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -47, -1948 }, { 0, -21503 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -44, -1872 }, { 2048, 543 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -44, -1872 }, { 0, 543 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -42, -1835 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -42, -1835 }, { 2048, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -42, -1835 }, { 0, 542 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -40, -1798 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -40, -1798 }, { 2047, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -42, -1835 }, { 2047, 542 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -36, -1723 }, { 2047, 542 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -36, -1723 }, { 0, 542 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -37, -1685 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -37, -1685 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -37, -1685 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -39, -1648 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -39, -1648 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -37, -1685 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -48, -2023 }, { 0, -22527 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2323 }, { 0, -25599 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2401 }, { 2048, -26666 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2398 }, { 0, -26623 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -48, -2023 }, { 0, -21504 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2098 }, { 2048, -22527 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2098 }, { 0, -22527 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2173 }, { 0, -23551 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2248 }, { 2048, -24575 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2248 }, { 0, -24575 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2323 }, { 2048, -25599 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -48, -2023 }, { 2048, -21504 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2173 }, { 2048, -23551 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2248 }, { 2047, -25599 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2323 }, { 2047, -26623 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2248 }, { 0, -25599 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2098 }, { 2047, -23551 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2173 }, { 2047, -24575 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2098 }, { 0, -23551 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2401 }, { 2047, -27690 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2479 }, { 2047, -28757 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2398 }, { 0, -27647 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2323 }, { 0, -26623 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2173 }, { 0, -24575 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2473 }, { 0, -28671 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2473 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -88, -47, -2572 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -199, -50, -2557 }, { 8, 100 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -208, -50, -2641 }, { 1, 1061 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -122, -38, -2765 }, { 2041, 110 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -229, -50, -2731 }, { 6, 236 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2479 }, { 2047, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -98, -44, -2666 }, { 2048, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -122, -38, -2765 }, { 2044, 1063 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -153, -32, -2864 }, { 2051, 173 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -229, -50, -2731 }, { 2, 1019 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -88, -47, -2572 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -98, -44, -2666 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -199, -50, -2557 }, { 5, 991 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -257, -50, -2820 }, { 11, 218 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -208, -50, -2641 }, { 4, 67 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -586, -85, -1406 }, { 2039, 1022 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -536, -91, -1357 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -506, -78, -1486 }, { 7, 1030 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -729, -72, -1510 }, { 2051, 1143 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -642, -79, -1449 }, { 2050, 373 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -663, -72, -1601 }, { 3, 1130 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -570, -75, -1535 }, { 2, 295 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -450, -80, -1430 }, { 11, -127 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -570, -75, -1535 }, { 3, 1176 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -586, -85, -1406 }, { 2036, -19 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -506, -78, -1486 }, { 8, 52 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -762, -68, -1662 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -729, -72, -1510 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -663, -72, -1601 }, { 9, -76 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -642, -79, -1449 }, { 2051, 974 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -821, -68, -1566 }, { 2047, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1278, -50, 973 }, { -12, 1033 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1406, -28, 1044 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1294, -50, 1057 }, { 2, 154 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1296, -50, 1139 }, { 2018, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1405, -20, 1231 }, { -29, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1292, -50, 1214 }, { 2018, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1388, -32, 946 }, { 2043, 1028 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1296, -50, 1139 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1410, -24, 1140 }, { 2047, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1405, -20, 1231 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1352, -38, 846 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1388, -32, 946 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1247, -50, 888 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1406, -28, 1044 }, { 2048, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1410, -24, 1140 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1294, -50, 1057 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1278, -50, 973 }, { -12, 165 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1410, -24, 1140 }, { -26, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1296, -50, 1139 }, { 2021, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1294, -50, 1057 }, { 2021, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1271, -50, 1291 }, { -13, 1307 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1340, -20, 1423 }, { 2028, 76 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1240, -50, 1371 }, { 0, 540 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1191, -50, 1441 }, { -26, 1122 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1206, -20, 1595 }, { 2037, -138 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1132, -50, 1510 }, { 11, 186 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1380, -20, 1324 }, { 2046, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1281, -20, 1512 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1240, -50, 1371 }, { 2, 952 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1281, -20, 1512 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1191, -50, 1441 }, { -26, 134 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1340, -20, 1423 }, { 2031, 1017 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1380, -20, 1324 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1271, -50, 1291 }, { -12, 173 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1292, -50, 1214 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1405, -20, 1231 }, { 2047, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -898, -50, 1629 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -816, -20, 1753 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -806, -50, 1641 }, { 3, 145 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1060, -50, 1563 }, { -3, 1112 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1116, -20, 1663 }, { 2053, 928 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -982, -50, 1601 }, { -4, 202 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1116, -20, 1663 }, { 2052, 1011 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1023, -20, 1706 }, { 2048, -99 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -982, -50, 1601 }, { 0, 496 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -922, -20, 1740 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1132, -50, 1510 }, { 7, 1038 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1116, -20, 1663 }, { 2046, 599 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1060, -50, 1563 }, { -4, 355 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1206, -20, 1595 }, { 2041, 1025 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -982, -50, 1601 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1023, -20, 1706 }, { 2047, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -922, -20, 1740 }, { 2047, 512 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -898, -50, 1629 }, { 0, 164 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -720, -50, 1641 }, { -16, 1021 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -606, -20, 1736 }, { 2056, 3 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -633, -50, 1627 }, { -2, 199 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -714, -20, 1755 }, { 2059, 1025 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -503, -20, 1701 }, { 2053, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -404, -20, 1642 }, { 2034, 2 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -551, -50, 1596 }, { -2, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -404, -20, 1642 }, { -12, 1025 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -471, -50, 1552 }, { 2032, 1026 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -551, -50, 1596 }, { 2025, 7 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -633, -50, 1627 }, { -3, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -503, -20, 1701 }, { 2049, 556 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -551, -50, 1596 }, { -4, 226 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -606, -20, 1736 }, { 2058, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -806, -50, 1641 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -714, -20, 1755 }, { 2052, 546 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -720, -50, 1641 }, { -16, 144 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -816, -20, 1753 }, { 2047, 1063 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -50, 1320 }, { 5, 1058 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -151, -38, 1259 }, { 2027, 4 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -258, -50, 1224 }, { 11, 121 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -401, -50, 1484 }, { -2, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -314, -23, 1559 }, { 2048, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -240, -26, 1466 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -335, -50, 1406 }, { 2025, 1031 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -401, -50, 1484 }, { 2025, 7 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -240, -26, 1466 }, { -22, 1031 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -186, -32, 1364 }, { 2047, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -240, -26, 1466 }, { 2047, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -186, -32, 1364 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -335, -50, 1406 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -471, -50, 1552 }, { -12, 1026 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -404, -20, 1642 }, { 2037, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -314, -23, 1559 }, { 2054, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -471, -50, 1552 }, { 2034, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -314, -23, 1559 }, { -27, 1019 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -401, -50, 1484 }, { 2019, 1019 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -50, 1320 }, { 9, 162 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -234, -50, 1125 }, { 8, 1078 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -105, -49, 1053 }, { 2037, -154 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -216, -50, 1031 }, { 8, -47 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -206, -50, 938 }, { 6, 1027 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -89, -50, 856 }, { 2044, 12 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -201, -50, 845 }, { 3, 67 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -125, -44, 1152 }, { 2041, 1034 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -95, -50, 954 }, { 2044, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -105, -49, 1053 }, { 2039, 1026 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -95, -50, 954 }, { 2044, -6 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -216, -50, 1031 }, { 10, 1036 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -89, -50, 856 }, { 2047, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 758 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -201, -50, 845 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -151, -38, 1259 }, { 2033, 1037 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -125, -44, 1152 }, { 2036, 68 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -258, -50, 1224 }, { 6, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -206, -50, 938 }, { 6, 59 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 752 }, { -3, 57 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -234, -50, 1125 }, { 10, 137 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 584 }, { 0, 13055 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 490 }, { 2048, 11775 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 490 }, { 0, 11775 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 396 }, { 0, 10495 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 312 }, { 2048, 9343 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 312 }, { 0, 9343 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 752 }, { 0, 15359 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 671 }, { 2048, 14246 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 668 }, { 0, 14207 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 584 }, { 2048, 13055 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 396 }, { 2048, 10495 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 758 }, { 2048, 15436 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 490 }, { 2047, 10752 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 396 }, { 2047, 9472 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 490 }, { 0, 10752 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 671 }, { 2047, 13222 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 584 }, { 2047, 12032 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 668 }, { 0, 13183 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 312 }, { 2047, 8320 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 227 }, { 2047, 7168 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 312 }, { 0, 8320 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 396 }, { 0, 9472 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 584 }, { 0, 12032 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 227 }, { 0, 7168 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1090, -50, 696 }, { -3, 1027 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1239, -47, 684 }, { 2034, -50 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1151, -50, 755 }, { 10, 146 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1210, -50, 823 }, { 5, 1170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1308, -44, 765 }, { 2047, 1015 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1247, -50, 888 }, { 0, 489 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1167, -50, 614 }, { 2044, 996 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1308, -44, 765 }, { 2044, 983 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1352, -38, 846 }, { 2047, 168 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1247, -50, 888 }, { 0, 349 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -945, -58, 584 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1167, -50, 614 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1090, -50, 696 }, { -3, 64 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1239, -47, 684 }, { 2038, 1018 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1308, -44, 765 }, { 2044, 9 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1151, -50, 755 }, { 9, 1051 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1012, -58, 494 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1210, -50, 823 }, { 12, 196 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -421, -118, -1177 }, { 2040, -6 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -398, -133, -1104 }, { 2047, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -317, -106, -1221 }, { 5, -131 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -291, -121, -1139 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -492, -99, -1301 }, { 2035, 1032 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -454, -106, -1243 }, { 2045, 45 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -398, -88, -1364 }, { 0, 1031 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -354, -95, -1296 }, { 0, -124 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -354, -95, -1296 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -421, -118, -1177 }, { 2040, -17 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -317, -106, -1221 }, { 7, -149 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -454, -106, -1243 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -450, -80, -1430 }, { 7, 1030 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 3), 0x00 } }, + { { -492, -99, -1301 }, { 2036, 9 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -398, -88, -1364 }, { 3, -153 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -536, -91, -1357 }, { 2048, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 3), 0x00 } }, + { { -260, -159, -944 }, { -10, 447 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -266, -148, -1010 }, { -10, -132 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -371, -161, -929 }, { 2052, 512 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -377, -151, -987 }, { 2046, 1 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -253, -170, -879 }, { -10, 1027 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -366, -170, -871 }, { 2058, 1022 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -387, -142, -1045 }, { 2048, 512 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -279, -134, -1075 }, { -6, 455 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -291, -121, -1139 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -398, -133, -1104 }, { 2048, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -377, -151, -987 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -266, -148, -1010 }, { -13, -112 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -253, -170, -879 }, { 2035, -4 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -366, -170, -871 }, { -32, 64 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -365, -178, -819 }, { -33, 549 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -252, -178, -823 }, { 2032, 516 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -363, -187, -766 }, { -35, 1033 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -251, -187, -766 }, { 2029, 1036 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -251, -194, -429 }, { -4, 406 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -251, -197, -485 }, { -7, 713 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -363, -194, -429 }, { 2057, 295 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -363, -197, -485 }, { 2054, 603 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -251, -200, -541 }, { -9, 1021 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -363, -200, -541 }, { 2051, 911 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -251, -187, -766 }, { -5, 1012 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -363, -187, -766 }, { 2057, 935 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -363, -192, -710 }, { 2060, 579 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -251, -192, -710 }, { -2, 656 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -363, -196, -654 }, { 2062, 223 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -251, -196, -654 }, { 0, 300 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -251, -194, -429 }, { -3, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -363, -194, -429 }, { 2057, 1026 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -363, -190, -382 }, { 2054, 513 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -251, -190, -382 }, { -6, 510 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -363, -185, -335 }, { 2052, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -251, -185, -335 }, { -9, -2 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -251, -196, -654 }, { 2, 1020 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -363, -198, -598 }, { 2056, 570 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -251, -198, -598 }, { -2, 591 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -363, -196, -654 }, { 2061, 1000 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -363, -200, -541 }, { 2051, 141 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -251, -200, -541 }, { -6, 161 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -379, -159, -102 }, { 2055, 36 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -270, -148, -73 }, { -7, -85 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -264, -153, -110 }, { -8, 496 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -374, -163, -134 }, { 2051, 530 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -258, -159, -148 }, { -9, 1079 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -369, -166, -166 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -251, -185, -335 }, { -11, 1005 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -363, -179, -282 }, { 2049, 551 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -251, -178, -279 }, { -13, 502 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -363, -185, -335 }, { 2051, 1021 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -363, -172, -230 }, { 2047, 80 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -251, -170, -223 }, { -15, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -270, -148, -73 }, { -12, 1025 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -379, -159, -102 }, { 2058, 1016 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -387, -153, -76 }, { 2053, 491 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -280, -142, -39 }, { 5, 354 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -387, -153, -76 }, { 2053, 1018 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -394, -148, -49 }, { 2037, -11 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 3), 0x00 } }, + { { -280, -142, -39 }, { 5, 1017 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -291, -136, -5 }, { 7, -302 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 3), 0x00 } }, + { { -251, -170, -223 }, { -14, 1170 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -366, -169, -198 }, { 2050, 557 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -254, -164, -185 }, { -13, 508 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -363, -172, -230 }, { 2052, 1114 }, { MACRO_COLOR_FLAG(0xfc, 0xd0, 0x34, 3), 0x00 } }, + { { -369, -166, -166 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -258, -159, -148 }, { -12, -153 }, { MACRO_COLOR_FLAG(0x7c, 0x64, 0x00, 3), 0x00 } }, + { { -454, -121, 50 }, { 2033, 1031 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -500, -110, 91 }, { 2046, 35 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -366, -114, 120 }, { 9, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -394, -148, -49 }, { 2039, 993 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -418, -136, 2 }, { 2042, 76 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -136, -5 }, { 6, 970 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -420, -104, 171 }, { -1, -178 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -321, -125, 61 }, { 5, -200 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -321, -125, 61 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -454, -121, 50 }, { 2032, -1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -366, -114, 120 }, { 8, -197 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -420, -104, 171 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -604, -91, 178 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -532, -88, 265 }, { 4, -73 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -418, -136, 2 }, { 2048, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -500, -110, 91 }, { 2048, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -532, -88, 265 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -715, -76, 270 }, { 2038, 153 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -645, -76, 359 }, { -6, 135 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -795, -65, 471 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1012, -58, 494 }, { 2047, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -945, -58, 584 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -604, -91, 178 }, { 2047, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -862, -65, 381 }, { 2048, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -645, -76, 359 }, { -5, 1020 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -862, -65, 381 }, { 2048, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -795, -65, 471 }, { 1, -17 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -715, -76, 270 }, { 2041, 1021 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -50, -1690 }, { 21409, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -398, -29, -1690 }, { 21410, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -338, -29, -1566 }, { 29022, 3208 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -338, -50, -1566 }, { 29021, 2046 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -465, -50, -1792 }, { 22462, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -465, -29, -1792 }, { 22462, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -29, -1690 }, { 29277, 3217 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -50, -1690 }, { 29278, 2055 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -343, -50, -1561 }, { 29021, 2046 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 1), 0x00 } }, + { { -343, -29, -1561 }, { 29022, 3208 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -403, -29, -1685 }, { 21410, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -403, -50, -1685 }, { 21409, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 1), 0x00 } }, + { { -403, -50, -1685 }, { 29278, 2055 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 1), 0x00 } }, + { { -403, -29, -1685 }, { 29277, 3217 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -465, -29, -1792 }, { 22462, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -465, -50, -1792 }, { 22462, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 1), 0x00 } }, + { { -338, -50, -1566 }, { 20193, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -338, -29, -1566 }, { 20193, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -301, -29, -1497 }, { 24499, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -301, -50, -1497 }, { 24499, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -270, -50, -1423 }, { 18835, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -270, -29, -1423 }, { 18835, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -250, -29, -1254 }, { 28184, 3211 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -250, -50, -1254 }, { 28183, 2049 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -250, -50, -1254 }, { 17190, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -250, -29, -1254 }, { 17190, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -232, -29, -1123 }, { 24508, 3216 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -232, -50, -1123 }, { 24508, 2054 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -270, -29, -1423 }, { 28804, 3215 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -1423 }, { 28805, 2053 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -306, -50, -1492 }, { 24499, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 1), 0x00 } }, + { { -270, -50, -1423 }, { 28805, 2053 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 1), 0x00 } }, + { { -270, -29, -1423 }, { 28804, 3215 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -306, -29, -1492 }, { 24499, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -343, -29, -1561 }, { 20193, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -343, -50, -1561 }, { 20193, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 1), 0x00 } }, + { { -223, -50, -823 }, { 12979, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -223, -29, -823 }, { 12979, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -29, -673 }, { 21248, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, -673 }, { 21248, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -223, -50, -973 }, { 14442, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -223, -29, -973 }, { 14442, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -29, -823 }, { 22711, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, -823 }, { 22711, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -232, -50, -1123 }, { 15908, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -232, -29, -1123 }, { 15908, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -29, -973 }, { 24192, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, -973 }, { 24192, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -223, -50, -673 }, { 11517, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -223, -29, -673 }, { 11517, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -29, -523 }, { 19785, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, -523 }, { 19785, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -223, -50, -373 }, { 8591, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -223, -29, -373 }, { 8591, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -29, -223 }, { 16860, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, -223 }, { 16860, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -223, -50, -523 }, { 10054, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -223, -29, -523 }, { 10054, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -29, -373 }, { 18323, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, -373 }, { 18323, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -223, -50, -223 }, { 7128, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -223, -29, -223 }, { 7128, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -232, -29, -91 }, { 14382, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -232, -50, -91 }, { 14382, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -232, -50, -91 }, { 5850, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -232, -29, -91 }, { 5850, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -238, -29, -18 }, { 9904, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -238, -50, -18 }, { 9904, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -238, -50, -18 }, { 5135, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -238, -29, -18 }, { 5135, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -248, -29, 102 }, { 11555, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -248, -50, 102 }, { 11555, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -253, -50, 97 }, { 11555, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 1), 0x00 } }, + { { -253, -29, 97 }, { 11555, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -238, -29, -18 }, { 5135, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -238, -50, -18 }, { 5135, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 1), 0x00 } }, + { { -248, -50, 102 }, { 4012, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -248, -29, 102 }, { 4012, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -265, -29, 232 }, { 11233, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -265, -50, 232 }, { 11234, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -265, -50, 232 }, { 2747, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -265, -29, 232 }, { 2746, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -327, -29, 350 }, { 10087, 3215 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -327, -50, 350 }, { 10087, 2053 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -270, -50, 227 }, { 11234, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 1), 0x00 } }, + { { -270, -29, 227 }, { 11233, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -253, -29, 97 }, { 4012, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -253, -50, 97 }, { 4012, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 1), 0x00 } }, + { { -332, -50, 345 }, { 10087, 2053 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 1), 0x00 } }, + { { -332, -29, 345 }, { 10087, 3215 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -270, -29, 227 }, { 2746, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -270, -50, 227 }, { 2747, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 1), 0x00 } }, + { { -327, -50, 350 }, { 1606, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -327, -29, 350 }, { 1607, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -436, -29, 511 }, { 12405, 3213 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -436, -50, 511 }, { 12405, 2050 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -436, -50, 511 }, { 12405, 2050 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 1), 0x00 } }, + { { -436, -29, 511 }, { 12405, 3213 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -332, -29, 345 }, { 1607, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 1), 0x00 } }, + { { -332, -50, 345 }, { 1606, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 1), 0x00 } }, + { { -95, -50, 954 }, { 12340, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -95, -20, 954 }, { 12340, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, 565 }, { -1280, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 565 }, { -1280, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -11, -6, 940 }, { 2904, 47 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -95, -20, 954 }, { 0, 511 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -95, -50, 954 }, { 0, 1536 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -11, -36, 940 }, { 2904, 1071 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -95, -20, 954 }, { 13885, 1049 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 30, -20, 565 }, { -16, -199 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -7, -20, 565 }, { 264, 1049 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -11, -6, 940 }, { 12795, -1642 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -7, -50, 340 }, { 11526, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, 340 }, { 11526, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, 2 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 2 }, { 6, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 565 }, { 6912, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, 565 }, { 6912, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, 340 }, { -767, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 340 }, { -767, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, 340 }, { 10502, 1014 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 30, -20, 340 }, { 10502, -265 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 30, -20, 2 }, { -1023, -256 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -7, -20, 2 }, { -1023, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -7, -20, 565 }, { 5887, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 30, -20, 565 }, { 5887, -255 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 30, -20, 340 }, { -1791, -256 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -7, -20, 340 }, { -1791, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -7, -50, -448 }, { 12159, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -448 }, { 12153, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -823 }, { -640, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -823 }, { -639, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -448 }, { 11129, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 30, -20, -448 }, { 11135, -265 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 30, -20, -823 }, { -1664, -255 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -7, -20, -823 }, { -1664, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -7, -50, -823 }, { 9600, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -823 }, { 9600, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -1123 }, { -640, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1123 }, { -639, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -823 }, { 8575, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 30, -20, -823 }, { 8575, -255 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 30, -20, -1123 }, { -1663, -255 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -7, -20, -1123 }, { -1664, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -7, -50, -1123 }, { 9599, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -1123 }, { 9599, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -1423 }, { -639, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1423 }, { -639, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1423 }, { 9599, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -1423 }, { 9599, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -1723 }, { -639, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1723 }, { -639, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -1423 }, { 8576, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 30, -20, -1423 }, { 8576, -256 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 30, -20, -1723 }, { -1663, -256 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -7, -20, -1723 }, { -1663, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -7, -20, -1123 }, { 9599, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 30, -20, -1123 }, { 9599, -255 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 30, -20, -1423 }, { -639, -255 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -7, -20, -1423 }, { -639, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -7, -50, -1723 }, { 9599, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -1723 }, { 9600, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -2023 }, { -639, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -2023 }, { -640, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -1723 }, { 9600, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 30, -20, -1723 }, { 9600, -255 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 30, -20, -2023 }, { -639, -256 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -7, -20, -2023 }, { -640, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -7, -50, -2023 }, { 15781, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -2023 }, { 15781, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -20, -2479 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2479 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 19, -36, -2469 }, { -2435, 559 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -2479 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -20, -2479 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 19, -6, -2469 }, { -2435, -464 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -2023 }, { 15781, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 30, -20, -2023 }, { 15989, -227 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { 19, -6, -2469 }, { 894, -2366 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -82, -20, -2479 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 4), 0x00 } }, + { { -451, -50, 538 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -418, -50, 1006 }, { 6251, 216 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -410, -50, 929 }, { 5211, 174 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -400, -50, 762 }, { 2960, 164 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -400, -50, 607 }, { 884, 285 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -539, -50, 533 }, { 0, 2205 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -685, -50, 643 }, { 1584, 4081 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -826, -50, 749 }, { 3118, 5895 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -956, -50, 849 }, { 4564, 7554 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1001, -50, 892 }, { 5179, 8125 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1040, -50, 938 }, { 5818, 8614 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1059, -50, 972 }, { 6289, 8849 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1078, -50, 1024 }, { 7011, 9063 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1089, -50, 1077 }, { 7719, 9160 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1090, -50, 1132 }, { 8461, 9137 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1087, -50, 1177 }, { 9061, 9065 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1074, -50, 1224 }, { 9688, 8852 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1056, -50, 1271 }, { 10304, 8576 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1027, -50, 1313 }, { 10838, 8152 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -990, -50, 1356 }, { 11386, 7623 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -951, -50, 1385 }, { 11750, 7066 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -903, -50, 1409 }, { 12027, 6403 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -850, -50, 1426 }, { 12221, 5684 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -792, -50, 1434 }, { 12276, 4896 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -735, -50, 1434 }, { 12230, 4135 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -684, -50, 1425 }, { 12080, 3457 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -635, -50, 1407 }, { 11797, 2816 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -592, -50, 1383 }, { 11439, 2251 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -548, -50, 1340 }, { 10834, 1696 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -504, -50, 1289 }, { 10113, 1150 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -477, -50, 1237 }, { 9389, 830 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -453, -50, 1166 }, { 8417, 560 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -451, -50, 538 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -453, -50, 1166 }, { 8417, 560 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -433, -50, 1084 }, { 7300, 363 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -418, -50, 1006 }, { 6251, 216 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -486, -50, -1828 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1405, -50, -2501 }, { 15100, -1504 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1374, -50, -2381 }, { 13649, -2329 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1300, -50, -2265 }, { 11845, -2710 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1204, -50, -2175 }, { 10078, -2630 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1045, -50, -2074 }, { 7604, -2040 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -677, -50, -1857 }, { 2065, -536 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -610, -50, -1816 }, { 1044, -281 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -408, -50, -1904 }, { 0, 2501 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -408, -50, -2047 }, { 1371, 3837 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -408, -50, -2470 }, { 5443, 7804 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -418, -50, -2605 }, { 6843, 8966 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -454, -50, -2737 }, { 8455, 9863 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -518, -50, -2841 }, { 10051, 10226 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -622, -50, -2945 }, { 12032, 10195 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -757, -50, -3017 }, { 13989, 9570 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -912, -50, -3048 }, { 15744, 8372 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1062, -50, -3030 }, { 16974, 6753 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1183, -50, -2975 }, { 17571, 5080 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1291, -50, -2885 }, { 17723, 3198 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1374, -50, -2753 }, { 17232, 1161 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -1407, -50, -2635 }, { 16396, -267 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 2), 0x00 } }, + { { -7, -50, -1123 }, { 511, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -1123 }, { 511, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -1723 }, { -19967, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1723 }, { -19967, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -1123 }, { 1536, 1024 }, { MACRO_COLOR_FLAG(0x20, 0xdc, 0x20, 0), 0x00 } }, + { { 30, -20, -1123 }, { 1536, -256 }, { MACRO_COLOR_FLAG(0x20, 0xdc, 0x20, 0), 0x00 } }, + { { 30, -20, -1723 }, { -18944, -255 }, { MACRO_COLOR_FLAG(0x20, 0xdc, 0x20, 0), 0x00 } }, + { { -7, -20, -1723 }, { -18944, 1023 }, { MACRO_COLOR_FLAG(0x20, 0xdc, 0x20, 0), 0x00 } }, + { { -7, -20, 565 }, { 1535, 1024 }, { MACRO_COLOR_FLAG(0x20, 0xdc, 0x20, 0), 0x00 } }, + { { 30, -20, 565 }, { 1535, -256 }, { MACRO_COLOR_FLAG(0x20, 0xdc, 0x20, 0), 0x00 } }, + { { 30, -20, 2 }, { -17670, -246 }, { MACRO_COLOR_FLAG(0x20, 0xdc, 0x20, 0), 0x00 } }, + { { -7, -20, 2 }, { -17670, 1033 }, { MACRO_COLOR_FLAG(0x20, 0xdc, 0x20, 0), 0x00 } }, + { { -7, -50, 565 }, { 1535, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, 565 }, { 1536, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, 2 }, { -17670, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 2 }, { -17664, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 177, 61, 2 }, { 5919, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { 177, 73, 2 }, { 5919, 1 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { 177, 73, -448 }, { -2047, 0 }, { MACRO_COLOR_FLAG(0xe0, 0xe0, 0xe0, 0), 0x00 } }, + { { 177, 61, -448 }, { -2047, 1024 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { 177, 73, -144 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x4c, 0x00, 0), 0x00 } }, + { { 177, 107, -144 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 0), 0x00 } }, + { { 158, 107, -192 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 0), 0x00 } }, + { { 158, 90, -201 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x1c, 0x98, 0x08, 0), 0x00 } }, + { { 121, 73, -182 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x14, 0x90, 0x14, 0), 0x00 } }, + { { 158, 90, -201 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 0), 0x00 } }, + { { 175, 134, -182 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 0), 0x00 } }, + { { 157, 124, -206 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 0), 0x00 } }, + { { 175, 141, -219 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 0), 0x00 } }, + { { 157, 124, -238 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 0), 0x00 } }, + { { 175, 134, -257 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 0), 0x00 } }, + { { 158, 107, -250 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 0), 0x00 } }, + { { 158, 90, -239 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 0), 0x00 } }, + { { 121, 73, -265 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x14, 0x90, 0x14, 0), 0x00 } }, + { { 177, 73, -295 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x4c, 0x00, 0), 0x00 } }, + { { 177, 107, -294 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0xfc, 0x14, 0), 0x00 } }, + { { 158, 90, -239 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x1c, 0x98, 0x08, 0), 0x00 } }, + { { 158, 90, -201 }, { 1028, 1104 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 158, 107, -192 }, { 1303, 564 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 158, 107, -250 }, { -261, 563 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 158, 90, -239 }, { -4, 1103 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 157, 124, -206 }, { 958, 24 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 157, 124, -238 }, { 100, 23 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 177, 61, -448 }, { 1352, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { 142, 25, -447 }, { 1033, 335 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { 30, -50, -448 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 177, 46, -448 }, { 1352, 137 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -7, -20, -448 }, { -343, 748 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 142, -50, -448 }, { 1033, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, 2 }, { -343, 748 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 142, 25, 3 }, { 1033, 335 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { 177, 61, 2 }, { 1352, 0 }, { MACRO_COLOR_FLAG(0x7c, 0x7c, 0x7c, 0), 0x00 } }, + { { 30, -50, 2 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 177, 46, 2 }, { 1352, 137 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { 142, -50, 2 }, { 1033, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, 2 }, { 9216, 4134 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 177, 61, 2 }, { 9216, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { 177, 61, -448 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -448 }, { 0, 4134 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -448 }, { -1429, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -371 }, { 2048, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -371 }, { 2048, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, -448 }, { -1427, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -144 }, { -1271, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -144 }, { -1271, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -71 }, { 2047, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -71 }, { 2047, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -295 }, { -1394, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -219 }, { 2048, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -219 }, { 2047, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -295 }, { -1394, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -71 }, { 0, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 2 }, { 3319, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -20, 2 }, { 3321, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -71 }, { 0, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -219 }, { 0, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -144 }, { 3442, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -144 }, { 3442, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -219 }, { 0, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -371 }, { 0, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -295 }, { 3477, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -295 }, { 3477, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -20, -371 }, { 0, -170 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -608, -50, -2968 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -750, -50, -3044 }, { 8786, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -750, -31, -3044 }, { 8786, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -608, -31, -2968 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -750, -50, -3044 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -913, -50, -3077 }, { 9091, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -913, -31, -3077 }, { 9091, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -750, -31, -3044 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1071, -50, -3057 }, { 8694, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1071, -31, -3057 }, { 8694, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -913, -31, -3077 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -913, -50, -3077 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1071, -50, -3057 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1198, -50, -2999 }, { 7598, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1198, -31, -2999 }, { 7598, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1071, -31, -3057 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1198, -50, -2999 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1312, -50, -2905 }, { 8075, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1312, -31, -2905 }, { 8075, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1198, -31, -2999 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1312, -50, -2905 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1399, -50, -2766 }, { 8964, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1399, -31, -2766 }, { 8964, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1312, -31, -2905 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1399, -50, -2766 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1434, -50, -2641 }, { 7080, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1434, -31, -2641 }, { 7080, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1399, -31, -2766 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1434, -50, -2641 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1432, -50, -2501 }, { 7664, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1432, -31, -2501 }, { 7664, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1434, -31, -2641 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1432, -50, -2501 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1399, -50, -2374 }, { 7139, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1399, -31, -2374 }, { 7139, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1432, -31, -2501 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1399, -50, -2374 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1322, -50, -2252 }, { 7886, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1322, -31, -2252 }, { 7886, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1399, -31, -2374 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -498, -31, -2859 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -498, -50, -2859 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -608, -50, -2968 }, { 8476, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -608, -31, -2968 }, { 8476, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -498, -31, -2859 }, { 6998, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -431, -31, -2749 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -431, -50, -2749 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -498, -50, -2859 }, { 6998, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -465, -50, -1792 }, { 8000, 2048 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -465, -31, -1792 }, { 8000, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -666, -31, -1822 }, { -3072, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -666, -50, -1822 }, { -3072, 2048 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -50, -2023 }, { 13389, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -31, -2023 }, { 13389, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -465, -31, -1792 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -465, -50, -1792 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -50, -2023 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -50, -2468 }, { 24313, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -31, -2468 }, { 24313, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -31, -2023 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -2468 }, { 761, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -394, -50, -2610 }, { 8522, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -394, -31, -2610 }, { 8522, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -31, -2468 }, { 761, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -394, -50, -2610 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -431, -50, -2749 }, { 7888, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -431, -31, -2749 }, { 7888, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -394, -31, -2610 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1221, -50, -2157 }, { 7567, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1221, -31, -2157 }, { 7567, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1322, -31, -2252 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1322, -50, -2252 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1221, -50, -2157 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1053, -50, -2051 }, { 10880, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1053, -31, -2051 }, { 10880, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1221, -31, -2157 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -795, -50, 1453 }, { 6533, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -795, -31, 1453 }, { 6533, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -911, -31, 1427 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -911, -50, 1427 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -911, -50, 1427 }, { 5896, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -911, -31, 1427 }, { 5896, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1004, -31, 1371 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1004, -50, 1371 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -584, -50, 1400 }, { 5842, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -584, -31, 1400 }, { 5842, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -681, -31, 1445 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -681, -50, 1445 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -681, -50, 1445 }, { 6214, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -681, -31, 1445 }, { 6214, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -795, -31, 1453 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -795, -50, 1453 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -438, -50, 1171 }, { 7681, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -438, -31, 1171 }, { 7681, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -492, -31, 1301 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -492, -50, 1301 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -492, -50, 1301 }, { 7368, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -492, -31, 1301 }, { 7368, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -584, -31, 1400 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -584, -50, 1400 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -50, 747 }, { 14079, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -31, 747 }, { 14079, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -401, -31, 1004 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -401, -50, 1004 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -401, -50, 1004 }, { 9381, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -401, -31, 1004 }, { 9381, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -438, -31, 1171 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -438, -50, 1171 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -436, -50, 511 }, { 13185, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -436, -31, 511 }, { 13185, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -31, 747 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, 747 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1004, -50, 1371 }, { 1044, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1004, -31, 1371 }, { 1044, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1073, -31, 1283 }, { -5119, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1073, -50, 1283 }, { -5119, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1073, -50, 1283 }, { 5713, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1073, -31, 1283 }, { 5713, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1106, -31, 1183 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1106, -50, 1183 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1053, -50, -2051 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -666, -50, -1822 }, { 24550, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -666, -31, -1822 }, { 24550, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1053, -31, -2051 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -528, -50, 506 }, { 5055, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -528, -31, 506 }, { 5055, -5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -436, -31, 511 }, { 0, -5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -436, -50, 511 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -831, -50, 733 }, { 20662, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -831, -31, 733 }, { 20662, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -528, -31, 506 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -528, -50, 506 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1076, -50, 967 }, { 5668, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1076, -31, 967 }, { 5668, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1015, -31, 884 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1015, -50, 884 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1015, -50, 884 }, { 13159, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1015, -31, 884 }, { 13159, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -831, -31, 733 }, { 182, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -831, -50, 733 }, { 182, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1106, -50, 1183 }, { 5753, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1106, -31, 1183 }, { 5753, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1107, -31, 1078 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1107, -50, 1078 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1107, -50, 1078 }, { 6261, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1107, -31, 1078 }, { 6261, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1076, -31, 967 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1076, -50, 967 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -750, -31, -3044 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -757, -31, -3017 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -622, -31, -2945 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -608, -31, -2968 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -913, -31, -3077 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -912, -31, -3048 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -622, -50, -2945 }, { 1179, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -622, -31, -2945 }, { 1179, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -757, -31, -3017 }, { -7168, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -757, -50, -3017 }, { -7168, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -757, -50, -3017 }, { 1468, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -757, -31, -3017 }, { 1468, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -912, -31, -3048 }, { -7167, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -912, -50, -3048 }, { -7167, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1198, -31, -2999 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1183, -31, -2975 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1062, -31, -3030 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1071, -31, -3057 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -912, -31, -3048 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -913, -31, -3077 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -912, -50, -3048 }, { 8259, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -912, -31, -3048 }, { 8259, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1062, -31, -3030 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1062, -50, -3030 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1062, -50, -3030 }, { 7218, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1062, -31, -3030 }, { 7218, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1183, -31, -2975 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1183, -50, -2975 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1399, -31, -2766 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1374, -31, -2753 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1291, -31, -2885 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1312, -31, -2905 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1183, -31, -2975 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1198, -31, -2999 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1291, -50, -2885 }, { 1348, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1291, -31, -2885 }, { 1348, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1374, -31, -2753 }, { -7167, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1374, -50, -2753 }, { -7167, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1183, -50, -2975 }, { 1527, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1183, -31, -2975 }, { 1527, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1291, -31, -2885 }, { -6144, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1291, -50, -2885 }, { -6144, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1432, -31, -2501 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1405, -31, -2501 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1407, -31, -2635 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1434, -31, -2641 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1374, -31, -2753 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1399, -31, -2766 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1374, -50, -2753 }, { 6726, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1374, -31, -2753 }, { 6726, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1407, -31, -2635 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1407, -50, -2635 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1407, -50, -2635 }, { 1137, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1407, -31, -2635 }, { 1137, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1405, -31, -2501 }, { -6143, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1405, -50, -2501 }, { -6143, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1322, -31, -2252 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1300, -31, -2265 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1374, -31, -2381 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1399, -31, -2374 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1405, -31, -2501 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1432, -31, -2501 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1405, -50, -2501 }, { 6782, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1405, -31, -2501 }, { 6782, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1374, -31, -2381 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1374, -50, -2381 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1374, -50, -2381 }, { 323, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1374, -31, -2381 }, { 323, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1300, -31, -2265 }, { -7168, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1300, -50, -2265 }, { -7168, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -498, -31, -2859 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -518, -31, -2841 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -454, -31, -2737 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -431, -31, -2749 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -608, -31, -2968 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -622, -31, -2945 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -454, -50, -2737 }, { 1529, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -454, -31, -2737 }, { 1529, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -518, -31, -2841 }, { -5120, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -518, -50, -2841 }, { -5120, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -518, -50, -2841 }, { 884, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -518, -31, -2841 }, { 884, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -622, -31, -2945 }, { -7168, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -622, -50, -2945 }, { -7168, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -486, -31, -1828 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -677, -31, -1857 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -666, -31, -1822 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -465, -31, -1792 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -677, -50, -1857 }, { 9495, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -677, -31, -1857 }, { 9495, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -486, -31, -1828 }, { -1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -486, -50, -1828 }, { -1024, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -31, -2023 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -408, -31, -2047 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -486, -31, -1828 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -465, -31, -1792 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -486, -50, -1828 }, { 2480, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -486, -31, -1828 }, { 2480, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -408, -31, -2047 }, { -10239, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -408, -50, -2047 }, { -10239, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -382, -31, -2468 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -408, -31, -2470 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -408, -31, -2047 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -31, -2023 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -408, -50, -2047 }, { 23098, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -408, -31, -2047 }, { 23098, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -408, -31, -2470 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -408, -50, -2470 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -431, -31, -2749 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -454, -31, -2737 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -418, -31, -2605 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -394, -31, -2610 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -408, -31, -2470 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -31, -2468 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -408, -50, -2470 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -408, -31, -2470 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -418, -31, -2605 }, { -6348, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -418, -50, -2605 }, { -6348, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -454, -31, -2737 }, { -13581, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -454, -50, -2737 }, { -13581, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1053, -31, -2051 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1045, -31, -2074 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1204, -31, -2175 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1221, -31, -2157 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1300, -31, -2265 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1322, -31, -2252 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1300, -50, -2265 }, { -696, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1300, -31, -2265 }, { -696, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1204, -31, -2175 }, { 3131, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1204, -50, -2175 }, { 3131, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1204, -50, -2175 }, { -204, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1204, -31, -2175 }, { -204, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1045, -31, -2074 }, { 10675, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1045, -50, -2074 }, { 10675, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -990, -31, 1356 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1004, -31, 1371 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -911, -31, 1427 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -903, -31, 1409 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -795, -31, 1453 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -792, -31, 1434 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -990, -50, 1356 }, { 2529, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -990, -31, 1356 }, { 2529, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -903, -31, 1409 }, { -3071, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -903, -50, 1409 }, { -3071, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -903, -50, 1409 }, { 1086, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -903, -31, 1409 }, { 1086, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -792, -31, 1434 }, { -5119, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -792, -50, 1434 }, { -5119, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -684, -31, 1425 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -681, -31, 1445 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -584, -31, 1400 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -592, -31, 1383 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -792, -31, 1434 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -795, -31, 1453 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -792, -50, 1434 }, { 783, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -792, -31, 1434 }, { 783, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -684, -31, 1425 }, { -5120, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -684, -50, 1425 }, { -5120, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -684, -50, 1425 }, { 1024, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -684, -31, 1425 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -592, -31, 1383 }, { -4526, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -592, -50, 1383 }, { -4526, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -504, -31, 1289 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -492, -31, 1301 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -438, -31, 1171 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -453, -31, 1166 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -592, -31, 1383 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -584, -31, 1400 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -592, -50, 1383 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -592, -31, 1383 }, { 1023, -5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -504, -31, 1289 }, { -5976, -5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -504, -50, 1289 }, { -5976, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -504, -50, 1289 }, { 1153, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -504, -31, 1289 }, { 1153, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -453, -31, 1166 }, { -6143, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -453, -50, 1166 }, { -6143, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -418, -31, 1006 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -401, -31, 1004 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -31, 747 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -400, -31, 762 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -453, -31, 1166 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -438, -31, 1171 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -453, -50, 1166 }, { 8912, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -453, -31, 1166 }, { 8912, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -418, -31, 1006 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -418, -50, 1006 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -418, -50, 1006 }, { 1087, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -418, -31, 1006 }, { 1087, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -400, -31, 762 }, { -12288, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -400, -50, 762 }, { -12288, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -400, -31, 762 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -31, 747 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -436, -31, 511 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -451, -31, 538 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -400, -50, 762 }, { 1262, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -400, -31, 762 }, { 1262, -5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -451, -31, 538 }, { -11263, -5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -451, -50, 538 }, { -11263, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1087, -31, 1177 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1106, -31, 1183 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1073, -31, 1283 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1056, -31, 1271 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1004, -31, 1371 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -990, -31, 1356 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1087, -50, 1177 }, { 1024, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1087, -31, 1177 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1056, -31, 1271 }, { -4404, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1056, -50, 1271 }, { -4404, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1056, -50, 1271 }, { 5856, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1056, -31, 1271 }, { 5856, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -990, -31, 1356 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -990, -50, 1356 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -666, -31, -1822 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -677, -31, -1857 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1045, -31, -2074 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1053, -31, -2051 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1045, -50, -2074 }, { 23322, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1045, -31, -2074 }, { 23322, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -677, -31, -1857 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -677, -50, -1857 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -539, -31, 533 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -528, -31, 506 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -831, -31, 733 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -826, -31, 749 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -451, -31, 538 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -436, -31, 511 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -451, -50, 538 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -451, -31, 538 }, { 0, -5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -539, -31, 533 }, { 5055, -5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -539, -50, 533 }, { 5055, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -539, -50, 533 }, { 31950, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -539, -31, 533 }, { 31950, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -826, -31, 749 }, { 12340, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -826, -50, 749 }, { 12340, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1001, -31, 892 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1015, -31, 884 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1076, -31, 967 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1059, -31, 972 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -826, -31, 749 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -831, -31, 733 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -826, -50, 749 }, { 12340, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -826, -31, 749 }, { 12340, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1001, -31, 892 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1001, -50, 892 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1001, -50, 892 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1001, -31, 892 }, { 1024, -5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1059, -31, 972 }, { -4360, -5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1059, -50, 972 }, { -4360, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1059, -31, 972 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1076, -31, 967 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1107, -31, 1078 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1089, -31, 1077 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1106, -31, 1183 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1087, -31, 1177 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1059, -50, 972 }, { 5948, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1059, -31, 972 }, { 5948, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1089, -31, 1077 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1089, -50, 1077 }, { 0, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1089, -50, 1077 }, { 1023, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1089, -31, 1077 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1087, -31, 1177 }, { -4442, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1087, -50, 1177 }, { -4442, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -990, -125, -1299 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -729, -125, -1312 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -916, -125, -1463 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -975, 35, -1283 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -755, -2, -1282 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -1248, -125, -1731 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -1248, -40, -1731 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -704, -219, -1423 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -885, -187, -1526 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -478, -41, -1172 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -522, -250, -1320 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -478, -250, -1172 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -219, -250, -757 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -229, -90, -678 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -233, -90, -973 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -224, -250, -1021 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -421, -250, -741 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -412, -250, -331 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -227, -250, -323 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -227, -90, -277 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -448, -250, -976 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -421, -51, -741 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -448, -51, -976 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -246, -74, -1113 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -242, -154, -1138 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -264, -249, -1150 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -463, -250, -1074 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -412, -51, -331 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -439, -51, -99 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -438, -250, -78 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -484, -250, -189 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -286, -250, -8 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -286, -250, -8 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -250, -69, -30 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -227, -90, -277 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -227, -250, -323 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -463, -46, -1074 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -478, -41, -1172 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -260, -59, -1254 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -246, -74, -1113 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -541, -31, -1334 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -425, -32, -1433 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -478, -250, -1172 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -463, -250, -1074 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -522, -250, -1320 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -394, -153, -49 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -291, -141, -5 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -438, -250, -78 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -291, -96, -5 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -439, -51, -99 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -412, -51, -331 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -368, -95, -38 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -317, -89, -15 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -738, 72, -256 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -484, -250, -189 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -776, 50, -21 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -595, -250, 46 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -764, -250, 225 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -770, -123, 169 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -861, 27, 136 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -394, -108, -49 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -472, -33, -1411 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -515, -38, -1375 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -450, -40, -1430 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -425, -32, -1433 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -450, -40, -1430 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -450, -85, -1430 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -452, -242, -1403 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -304, -249, -1278 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -260, -59, -1254 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -536, -51, -1357 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -541, -31, -1334 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -536, -96, -1357 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -515, -38, -1375 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -522, -250, -1320 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -95, -40, 954 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -11, -27, 940 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -11, -36, 940 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -95, -50, 954 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -11, -6, 940 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -20, 565 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -50, 565 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -7, -50, 565 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -861, 27, 136 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -946, 4, 292 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -770, -123, 169 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -1078, -60, 424 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -932, -250, 403 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -764, -250, 225 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -246, -74, -1113 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -242, -154, -1138 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -448, -51, -976 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -463, -46, -1074 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -233, -90, -973 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -280, -90, -1423 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -280, -69, -1423 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -242, -154, -1138 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -304, -249, -1278 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -264, -249, -1150 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -463, -46, -1074 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -448, -51, -976 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -448, -250, -976 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -463, -250, -1074 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -7, -50, -2023 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -50, -2023 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 19, -36, -2469 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -82, -50, -2479 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -7, -50, -1723 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -50, -1723 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -20, -2023 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 19, -6, -2469 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -20, -1723 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 19, -27, -2469 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -82, -40, -2479 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -7, -50, -1423 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -50, -1423 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -7, -50, -1123 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -50, -1123 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -7, -50, -823 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -50, -823 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -50, 565 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -20, 565 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -20, 340 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -50, 340 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -7, -50, 340 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -50, 2 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -7, -50, 2 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -7, -50, 565 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -50, 340 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -20, 340 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -20, 2 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -50, 2 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -50, -1423 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -20, -1423 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -20, -1723 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -50, -1723 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -50, -1123 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -20, -1123 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -50, -823 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -20, -823 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -50, -448 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 30, -20, -448 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 142, -20, -443 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 142, 25, -442 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 85, 21, -443 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -7, -20, -443 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -7, -50, -443 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 142, -50, -443 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 142, -50, -3 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 142, 25, -2 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -7, -50, -3 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -7, -20, -3 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 85, 21, -3 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { 142, -20, -3 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -7, -50, -448 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -7, -50, -823 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -304, -249, -1278 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -478, -250, -1172 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -463, -250, -1074 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -264, -249, -1150 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -452, -242, -1403 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -522, -250, -1320 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -478, -250, -1172 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -304, -249, -1278 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 4), 0x00 } }, + { { -451, -50, 538 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -453, -50, 1166 }, { 8417, 560 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -418, -50, 1006 }, { 6251, 216 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -410, -50, 929 }, { 5211, 174 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -400, -50, 762 }, { 2960, 164 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -539, -50, 533 }, { 0, 2205 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -826, -50, 749 }, { 3118, 5895 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1001, -50, 892 }, { 5179, 8125 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1040, -50, 938 }, { 5818, 8614 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1059, -50, 972 }, { 6289, 8849 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1089, -50, 1077 }, { 7719, 9160 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1087, -50, 1177 }, { 9061, 9065 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1056, -50, 1271 }, { 10304, 8576 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -990, -50, 1356 }, { 11386, 7623 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -903, -50, 1409 }, { 12027, 6403 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -792, -50, 1434 }, { 12276, 4896 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -684, -50, 1425 }, { 12080, 3457 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -592, -50, 1383 }, { 11439, 2251 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -504, -50, 1289 }, { 10113, 1150 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -486, -50, -1828 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1374, -50, -2381 }, { 13649, -2329 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1300, -50, -2265 }, { 11845, -2710 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1204, -50, -2175 }, { 10078, -2630 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1045, -50, -2074 }, { 7604, -2040 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -677, -50, -1857 }, { 2065, -536 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -408, -50, -2047 }, { 1371, 3837 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -408, -50, -2470 }, { 5443, 7804 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -418, -50, -2605 }, { 6843, 8966 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -454, -50, -2737 }, { 8455, 9863 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -518, -50, -2841 }, { 10051, 10226 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -622, -50, -2945 }, { 12032, 10195 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -757, -50, -3017 }, { 13989, 9570 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -912, -50, -3048 }, { 15744, 8372 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1062, -50, -3030 }, { 16974, 6753 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1183, -50, -2975 }, { 17571, 5080 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1291, -50, -2885 }, { 17723, 3198 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1374, -50, -2753 }, { 17232, 1161 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1407, -50, -2635 }, { 16396, -267 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1405, -50, -2501 }, { 15100, -1504 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -465, -50, -1792 }, { 13390, 1079 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -465, -29, -1792 }, { 13390, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -343, -29, -1561 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -343, -50, -1561 }, { 0, 1079 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -270, -50, -1423 }, { 15479, 1085 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -270, -29, -1423 }, { 15479, 6 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -232, -29, -1123 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -232, -50, -1123 }, { 0, 1079 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -343, -50, -1561 }, { 22959, 1082 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -343, -29, -1561 }, { 22959, 3 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -232, -50, -1123 }, { 22533, 1079 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -232, -29, -1123 }, { 22533, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -29, -673 }, { -511, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, -673 }, { -512, 1079 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -223, -50, -673 }, { 11517, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -223, -29, -673 }, { 11517, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -29, -223 }, { 19785, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, -223 }, { 19785, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -223, -50, -223 }, { 7128, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -223, -29, -223 }, { 7128, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -253, -29, 97 }, { 14382, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -253, -50, 97 }, { 14382, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -253, -50, 97 }, { 2747, 2052 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -253, -29, 97 }, { 2746, 3214 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -332, -29, 345 }, { 10087, 3215 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -332, -50, 345 }, { 10087, 2053 }, { MACRO_COLOR_FLAG(0x94, 0x94, 0x94, 0), 0x00 } }, + { { -82, -50, 758 }, { -2966, 1201 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -95, -50, 954 }, { -5429, 2112 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 565 }, { -202, 1066 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1167, -50, 614 }, { 0, 1066 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1012, -58, 494 }, { -8, 3687 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1058, -50, 434 }, { 998, 3694 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1058, -50, 434 }, { -16, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1012, -58, 494 }, { 990, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -604, -91, 178 }, { 987, -5877 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -780, -50, 155 }, { -726, -4177 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -540, -148, -121 }, { 2279, 63 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -621, -67, 43 }, { -212, 1029 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -454, -121, 50 }, { 1580, 2545 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -394, -148, -49 }, { 3062, 2066 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -621, -67, 43 }, { 2647, 1036 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -780, -50, 155 }, { 46, 1130 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -604, -91, 178 }, { 1884, 2718 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -454, -121, 50 }, { 4528, 2423 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 227 }, { -51, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 758 }, { -6775, 3265 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 565 }, { -4011, 3400 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -7, -50, 2 }, { 3117, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -465, -50, -1792 }, { -2294, 4626 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, -2023 }, { -62, 7992 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -2023 }, { 356, 6549 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -465, -50, -1792 }, { -4166, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, -1873 }, { -1656, 2318 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -2023 }, { -127, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -465, -50, -1792 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -403, -50, -1685 }, { 1034, 2311 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -1873 }, { 2417, -435 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, -2468 }, { 700, -4936 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -382, -50, -2023 }, { 6, 970 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, -2023 }, { 1498, 1145 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -2471 }, { 2197, -4799 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -431, -50, -2749 }, { -215, -957 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -394, -50, -2610 }, { -30, 963 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -282, -50, -2629 }, { 1475, 963 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -327, -50, -2792 }, { 1256, -1283 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -394, -50, -2610 }, { -24, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -382, -50, -2468 }, { -192, 2920 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, -2471 }, { 1295, 3134 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -282, -50, -2629 }, { 1481, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -729, -50, -1312 }, { -47, 1063 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -536, -91, -1357 }, { 1021, 3539 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -821, -68, -1566 }, { 3107, -709 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -864, -50, -1447 }, { 1430, -1019 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -43, -1573 }, { 6297, 1056 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -48, -1423 }, { 4292, 1056 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1423 }, { 4293, 2058 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -7, -50, -1723 }, { 8300, 2058 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -1123 }, { 285, 1056 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1123 }, { 285, 2058 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -7, -50, -1123 }, { 95, 1040 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -1123 }, { 95, 2042 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -673 }, { 6107, 2042 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -823 }, { 4103, 1040 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -7, -50, -823 }, { 160, 1040 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -673 }, { 2164, 2042 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, -223 }, { 8175, 2042 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -8, -50, -219 }, { 8218, 1044 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -8, -50, -219 }, { 290, 1040 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -223 }, { 246, 2037 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -50, 227 }, { 6258, 2037 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, 2 }, { 3252, 1035 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -7, -50, -2023 }, { -98, 1040 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -48, -2023 }, { -98, 2042 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -44, -1872 }, { 1905, 2042 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1723 }, { 3909, 1040 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -44, -1872 }, { 3002, 2073 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -36, -1723 }, { 5016, 2073 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1723 }, { 4996, 1052 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -36, -1723 }, { 4552, 2073 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -82, -43, -1573 }, { 6566, 2073 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -1723 }, { 4572, 1052 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -48, -2023 }, { -98, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -7, -50, -2023 }, { -98, 2025 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -82, -50, -2479 }, { 5996, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1392, -50, -1910 }, { 2128, -1425 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1248, -50, -1731 }, { 87, 866 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1209, -55, -1795 }, { 1018, 1242 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1248, -50, -1731 }, { 2962, -4834 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -864, -50, -1447 }, { 67, 851 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -821, -68, -1566 }, { 1746, 1161 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1209, -55, -1795 }, { 3890, -4458 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -498, -50, -2859 }, { -24, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -409, -50, -2928 }, { 1479, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -542, -50, -3059 }, { 1157, -1450 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -608, -50, -2968 }, { -289, -1032 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -431, -50, -2749 }, { -213, 2725 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -327, -50, -2792 }, { 1238, 3132 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1073, -50, 1283 }, { -24, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1173, -50, 1336 }, { 1490, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1081, -50, 1454 }, { 1141, -955 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1004, -50, 1371 }, { -287, -460 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1073, -50, 1283 }, { -24, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1106, -50, 1183 }, { -263, 2401 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1217, -50, 1202 }, { 1169, 2881 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1173, -50, 1336 }, { 1490, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1106, -50, 1183 }, { -202, -417 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1107, -50, 1078 }, { -29, 979 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1219, -50, 1065 }, { 1478, 979 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1217, -50, 1202 }, { 1251, -827 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1107, -50, 1078 }, { -24, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1076, -50, 967 }, { -270, 2535 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1179, -50, 920 }, { 1159, 3015 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1219, -50, 1065 }, { 1483, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1076, -50, 967 }, { -198, -395 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1015, -50, 884 }, { -29, 980 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1096, -50, 806 }, { 1474, 980 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1179, -50, 920 }, { 1230, -877 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1015, -50, 884 }, { -24, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -831, -50, 733 }, { -416, 4177 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -899, -50, 643 }, { 1067, 4417 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1096, -50, 806 }, { 1480, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -899, -50, 643 }, { -6, 1078 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -831, -50, 733 }, { -1490, 1318 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -528, -50, 506 }, { -721, 6314 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -436, -50, 511 }, { -1366, 7369 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -332, -50, 345 }, { -62, 9638 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -484, -80, 323 }, { 1159, 7988 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -795, -50, 1453 }, { -296, -602 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -911, -50, 1427 }, { -32, 974 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -954, -50, 1531 }, { 1473, 974 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -802, -50, 1566 }, { 1131, -1082 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -911, -50, 1427 }, { -24, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1004, -50, 1371 }, { -245, 2449 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1081, -50, 1454 }, { 1168, 2984 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -954, -50, 1531 }, { 1481, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -584, -50, 1400 }, { -276, -428 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -681, -50, 1445 }, { -32, 979 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -652, -50, 1554 }, { 1478, 979 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -516, -50, 1491 }, { 1130, -990 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -681, -50, 1445 }, { -24, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -795, -50, 1453 }, { -299, 2519 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -802, -50, 1566 }, { 1129, 2995 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -652, -50, 1554 }, { 1485, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -516, -50, 1491 }, { 30, 3492 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -50, 1364 }, { -1, 5809 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -492, -50, 1301 }, { 1495, 5585 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -584, -50, 1400 }, { 1517, 3783 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -398, -50, 1364 }, { 37, 3481 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -330, -50, 1203 }, { -1, 5824 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -438, -50, 1171 }, { 1495, 5674 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -492, -50, 1301 }, { 1517, 3795 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -401, -50, 1004 }, { -24, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -290, -50, 1020 }, { 1480, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, 750 }, { 1214, -2585 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, 747 }, { -278, -2410 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -401, -50, 1004 }, { -24, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -438, -50, 1171 }, { -180, 3313 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -330, -50, 1203 }, { 1311, 3513 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -290, -50, 1020 }, { 1480, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, 747 }, { -28, 968 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, 750 }, { 1465, 1143 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, 584 }, { 1654, -1071 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -382, -50, 747 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, 584 }, { -2644, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -436, -50, 511 }, { -2179, 3401 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -436, -50, 511 }, { -1352, 3557 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -270, -50, 396 }, { 810, 5173 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -332, -50, 345 }, { 1192, 4165 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, 584 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, 396 }, { -2504, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -436, -50, 511 }, { -968, 3244 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1545, -50, -2657 }, { 1, 1168 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1434, -50, -2641 }, { -1506, 1179 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1399, -50, -2766 }, { -1711, 2899 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1503, -50, -2810 }, { -250, 3276 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1545, -50, -2657 }, { 335, 3469 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1544, -50, -2486 }, { 6, 5735 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1432, -50, -2501 }, { 1510, 5765 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1434, -50, -2641 }, { 1778, 3909 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1397, -50, -2979 }, { 1, 1245 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1312, -50, -2905 }, { -1503, 1332 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1198, -50, -2999 }, { -1715, 3296 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1257, -50, -3095 }, { -257, 3666 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1397, -50, -2979 }, { 252, 3933 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1503, -50, -2810 }, { 4, 6581 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1399, -50, -2766 }, { 1510, 6482 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1312, -50, -2905 }, { 1715, 4298 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -913, -50, -3077 }, { -26, 1355 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -910, -50, -3190 }, { 1425, 1763 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1102, -50, -3166 }, { 1730, -802 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1071, -50, -3057 }, { 224, -756 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1102, -50, -3166 }, { 291, 3615 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1257, -50, -3095 }, { 5, 5874 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1198, -50, -2999 }, { 1510, 5878 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1071, -50, -3057 }, { 1739, 4033 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -750, -50, -3044 }, { -24, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -711, -50, -3150 }, { 1483, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -910, -50, -3190 }, { 1064, -1649 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -913, -50, -3077 }, { -366, -1173 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -750, -50, -3044 }, { -24, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -608, -50, -2968 }, { -314, 3153 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -542, -50, -3059 }, { 1134, 3563 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -711, -50, -3150 }, { 1483, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1432, -50, -2501 }, { -27, 1125 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1544, -50, -2486 }, { 1423, 1525 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1503, -50, -2330 }, { 1735, -602 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1399, -50, -2374 }, { 228, -602 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1503, -50, -2330 }, { 377, 3450 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1410, -50, -2181 }, { 6, 5766 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1322, -50, -2252 }, { 1509, 5826 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1399, -50, -2374 }, { 1809, 3920 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1053, -50, -2051 }, { -156, -1718 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1221, -50, -2157 }, { -28, 940 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1286, -50, -2065 }, { 1476, 940 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1112, -50, -1955 }, { 1344, -1808 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1221, -50, -2157 }, { -24, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1322, -50, -2252 }, { -285, 2856 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1410, -50, -2181 }, { 1161, 3269 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1286, -50, -2065 }, { 1480, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -666, -50, -1822 }, { -65, -5074 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1053, -50, -2051 }, { -24, 931 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1112, -50, -1955 }, { 1478, 949 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -723, -50, -1726 }, { 1437, -5074 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -666, -50, -1822 }, { -2271, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -723, -50, -1726 }, { -1230, 2108 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -622, -50, -1663 }, { -69, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -666, -50, -1822 }, { -3844, 2373 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -622, -50, -1663 }, { -1902, 3410 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -403, -50, -1685 }, { -101, 1085 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -666, -50, -1822 }, { -43, 1024 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -403, -50, -1685 }, { 3699, 2311 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -465, -50, -1792 }, { 2664, 1023 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -409, -50, -2928 }, { 36, 1729 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -327, -50, -2792 }, { -691, 3722 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -257, -50, -2820 }, { 186, 4213 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -350, -50, -2974 }, { 1011, 1964 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -498, -50, -3120 }, { 1306, -796 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -542, -50, -3059 }, { 303, -751 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -711, -50, -3150 }, { 37, 1649 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -542, -50, -3059 }, { 279, 4201 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -498, -50, -3120 }, { 1282, 4246 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -685, -50, -3220 }, { 1015, 1419 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -907, -50, -3265 }, { -126, -1384 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -910, -50, -3190 }, { -982, -857 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1102, -50, -3166 }, { 36, 1556 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -910, -50, -3190 }, { -961, 3939 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -907, -50, -3265 }, { -105, 4466 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1122, -50, -3238 }, { 1010, 1803 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1296, -50, -3159 }, { 1248, -742 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1257, -50, -3095 }, { 246, -711 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1454, -50, -3028 }, { 51, 1477 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1397, -50, -2979 }, { -915, 1751 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1257, -50, -3095 }, { -644, 4172 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1296, -50, -3159 }, { 357, 4203 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1454, -50, -3028 }, { -311, 4379 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1572, -50, -2840 }, { 56, 1431 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1503, -50, -2810 }, { -948, 1467 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1397, -50, -2979 }, { -1277, 4105 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1620, -50, -2668 }, { 53, 1394 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1545, -50, -2657 }, { -926, 1619 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1503, -50, -2810 }, { -717, 3731 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1572, -50, -2840 }, { 287, 3766 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1620, -50, -2668 }, { -133, 3914 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1618, -50, -2476 }, { 56, 1354 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1544, -50, -2486 }, { -945, 1406 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1545, -50, -2657 }, { -1113, 3690 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1572, -50, -2301 }, { 53, 1317 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1503, -50, -2330 }, { -927, 1534 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1544, -50, -2486 }, { -773, 3679 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1618, -50, -2476 }, { 228, 3731 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1572, -50, -2301 }, { -102, 3895 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1468, -50, -2134 }, { 55, 1276 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1410, -50, -2181 }, { -945, 1336 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1503, -50, -2330 }, { -1083, 3678 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -2471 }, { 45, 1840 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -2473 }, { 1036, 1989 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -208, -50, -2641 }, { 1248, -262 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -257, -50, -2820 }, { 1022, -2728 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -327, -50, -2792 }, { 39, -2516 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -282, -50, -2629 }, { 244, -268 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -253, -50, 97 }, { -3473, 2593 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 227 }, { 32767, -32768 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -223 }, { 157, 1006 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -223, -50, -223 }, { -3406, 1895 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, -223 }, { 158, 1012 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -223 }, { 107, 1384 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -673 }, { 6065, 2189 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -223, -50, -673 }, { 6115, 1817 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -50, -673 }, { 65, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -673 }, { 14, 1397 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -1123 }, { 5972, 2202 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -232, -50, -1123 }, { 6039, 1705 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -232, -50, -1123 }, { -27, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, -1123 }, { -94, 1520 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -48, -1423 }, { 3876, 2056 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1423 }, { 4011, 1064 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -250, -50, -1254 }, { 1745, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -43, -1573 }, { 5862, 2325 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1573 }, { 5996, 1332 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -1573 }, { -2003, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -343, -50, -1561 }, { -1844, 1999 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1423 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -1873 }, { -62, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -1573 }, { 3945, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -36, -1723 }, { 1941, 2 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -2023 }, { -921, 2055 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -1873 }, { -675, 4043 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -44, -1872 }, { 319, 3920 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -48, -2023 }, { 72, 1931 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -403, -50, -1685 }, { 2444, 2805 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -343, -50, -1561 }, { 4104, 1999 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1573 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -43, -1573 }, { -1001, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -36, -1723 }, { -1001, 3037 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -1873 }, { -1001, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -36, -1723 }, { 0, 3037 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -44, -1872 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -2023 }, { 57, 1933 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -48, -2023 }, { 1051, 2057 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, -2473 }, { 1790, -3908 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, -2471 }, { 793, -4006 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1329, -50, -2004 }, { 52, 1236 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1286, -50, -2065 }, { -926, 1453 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1410, -50, -2181 }, { -752, 3714 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1468, -50, -2134 }, { 248, 3774 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1329, -50, -2004 }, { 775, 3907 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1151, -55, -1891 }, { 41, 1194 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1112, -50, -1955 }, { -924, 1469 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1286, -50, -2065 }, { -201, 4124 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1240, -50, 1371 }, { 1, 1096 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1173, -50, 1336 }, { -1007, 1125 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1217, -50, 1202 }, { -1275, 2990 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1292, -50, 1214 }, { -311, 3283 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1240, -50, 1371 }, { 465, 3356 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1132, -50, 1510 }, { -5, 1060 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1081, -50, 1454 }, { -948, 1417 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1173, -50, 1336 }, { -543, 3385 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -954, -50, 1531 }, { -15, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -982, -50, 1601 }, { 988, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -806, -50, 1641 }, { 593, -1352 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -802, -50, 1566 }, { -358, -1032 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -954, -50, 1531 }, { -15, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1081, -50, 1454 }, { -328, 2984 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1132, -50, 1510 }, { 614, 3341 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -471, -50, 1552 }, { -6, 1065 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -516, -50, 1491 }, { -958, 1403 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -652, -50, 1554 }, { -687, 3385 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -633, -50, 1627 }, { 318, 3424 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -652, -50, 1554 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -802, -50, 1566 }, { -2003, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -806, -50, 1641 }, { -2146, 2017 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -633, -50, 1627 }, { 179, 2014 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -398, -50, 1364 }, { -15, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -335, -50, 1406 }, { 992, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -258, -50, 1224 }, { 492, -1581 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -330, -50, 1203 }, { -463, -1276 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -50, 1364 }, { -15, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -516, -50, 1491 }, { -389, 3311 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -471, -50, 1552 }, { 562, 3649 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -335, -50, 1406 }, { 992, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, 752 }, { 32767, -32768 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, 750 }, { 47, 2526 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -290, -50, 1020 }, { 371, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -216, -50, 1031 }, { 32767, 32767 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -290, -50, 1020 }, { -15, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -330, -50, 1203 }, { -185, 3513 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -258, -50, 1224 }, { 809, 3647 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -216, -50, 1031 }, { 987, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -270, -50, 750 }, { 32767, -32768 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -195, -50, 752 }, { 32767, -32768 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -195, -50, 227 }, { 32767, -32768 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -253, -50, 97 }, { 32767, -32768 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, 227 }, { 32767, -32768 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, 396 }, { 32767, -32768 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, 227 }, { -35, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -332, -50, 345 }, { 1535, 1858 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, 396 }, { 2219, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1292, -50, 1214 }, { -3, 1130 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1217, -50, 1202 }, { -967, 1422 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1219, -50, 1065 }, { -705, 3225 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1294, -50, 1057 }, { 299, 3205 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1219, -50, 1065 }, { -15, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1179, -50, 920 }, { -339, 3015 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1247, -50, 888 }, { 613, 3335 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1294, -50, 1057 }, { 989, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -762, -68, -1662 }, { 14, 1103 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -723, -50, -1726 }, { -972, 1398 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1112, -50, -1955 }, { 787, 7158 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1151, -55, -1891 }, { 1740, 6887 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -570, -75, -1535 }, { 3, 1057 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -450, -80, -1430 }, { -212, 3176 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -394, -50, -1480 }, { 845, 3395 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -622, -50, -1663 }, { 1034, -515 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -723, -50, -1726 }, { 928, -2099 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -762, -68, -1662 }, { -87, -2013 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -394, -50, -1480 }, { -20, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -343, -50, -1561 }, { 1260, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -403, -50, -1685 }, { 2234, -542 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -622, -50, -1663 }, { 429, -2865 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -1423 }, { -2444, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -394, -50, -1480 }, { -779, 1772 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -450, -80, -1430 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -394, -50, -1480 }, { -20, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, -1423 }, { 220, 2833 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -343, -50, -1561 }, { 1260, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -532, -88, 265 }, { 10, 1256 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -484, -80, 323 }, { -1086, 1480 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -366, -114, 120 }, { 809, 4093 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -484, -80, 323 }, { 1503, 2423 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -332, -50, 345 }, { -10, 1037 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -50, 227 }, { -1581, 1871 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -253, -50, 97 }, { -2734, 3188 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -253, -50, 97 }, { -1075, 2532 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -136, -5 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -366, -114, 120 }, { -1962, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -253, -50, 97 }, { 66, 5629 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -945, -58, 584 }, { -7, 1149 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -899, -50, 643 }, { -1002, 1309 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -484, -80, 323 }, { 155, 8220 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -532, -88, 265 }, { 1181, 8011 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1151, -50, 755 }, { -1, 1094 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1096, -50, 806 }, { -1004, 1095 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -899, -50, 643 }, { -1413, 4489 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -945, -58, 584 }, { -424, 4648 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1151, -50, 755 }, { 285, 3239 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1247, -50, 888 }, { -5, 1060 }, { MACRO_COLOR_FLAG(0xfc, 0xdc, 0xc0, 0), 0x00 } }, + { { -1179, -50, 920 }, { -959, 1380 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1096, -50, 806 }, { -717, 3238 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -540, 7, -121 }, { 16133, -14580 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -532, 88, -410 }, { 10014, -10396 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -970, 107, -294 }, { 19080, -3026 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -532, 88, -410 }, { 10014, -10396 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -505, 33, -804 }, { 1325, -5166 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x34, 0), 0x00 } }, + { { -970, 107, -294 }, { 19080, -3026 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -895, 122, -548 }, { 12762, -660 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -505, 33, -804 }, { 1325, -5166 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x34, 0), 0x00 } }, + { { -813, 107, -774 }, { 6828, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -895, 122, -548 }, { 12762, -660 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -577, 43, -1037 }, { -2401, -149 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x34, 0), 0x00 } }, + { { -551, -91, -1344 }, { -364, 1729 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -729, -50, -1312 }, { 3297, 884 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -755, 18, -1282 }, { 3990, -517 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -551, -21, -1344 }, { -364, 295 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -755, 18, -1282 }, { 353, 6219 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -979, 130, -1006 }, { 9696, 6962 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -577, 43, -1037 }, { 2718, -1173 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x34, 0), 0x00 } }, + { { -813, 107, -774 }, { 11948, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -864, 25, -1432 }, { 4879, -577 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -755, 18, -1282 }, { 708, -778 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -729, -50, -1312 }, { 766, 1024 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -864, -50, -1447 }, { 5120, 1024 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -864, 25, -1432 }, { -1098, 10741 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1343, 107, -1253 }, { 9926, 18071 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -755, 18, -1282 }, { 353, 6219 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -979, 130, -1006 }, { 9696, 6962 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1248, -50, -1731 }, { 11264, 1024 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -1248, -40, -1731 }, { 11264, 602 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -864, 25, -1432 }, { 192, -709 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -864, -50, -1447 }, { 395, 1024 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -864, 25, -1432 }, { -1098, 10741 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1248, -40, -1731 }, { -1735, 22933 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1343, 107, -1253 }, { 9926, 18071 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -621, -67, 43 }, { 45, 1941 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -540, -148, -121 }, { 3816, 3430 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -540, 7, -121 }, { 3753, 323 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -621, -67, 43 }, { 4433, 1023 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -780, 48, 155 }, { -194, -1190 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -780, -50, 155 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -540, 7, -121 }, { 2097, -1828 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -780, 48, 155 }, { -6122, -1811 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -621, -67, 43 }, { -2048, 1023 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -780, 48, 155 }, { 25369, -13885 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -970, 107, -294 }, { 19080, -3026 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1163, 107, 6 }, { 28162, -3613 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -540, 7, -121 }, { 16133, -14580 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -540, -148, -121 }, { 0, 2461 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -394, -148, -49 }, { 3332, 2461 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -540, 7, -121 }, { 0, -701 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -394, -108, -49 }, { 3332, 1642 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -291, -96, -5 }, { 5633, 1412 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -291, -136, -5 }, { 5633, 2231 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -238, -50, -18 }, { 6479, 464 }, { MACRO_COLOR_FLAG(0x00, 0x00, 0x00, 0), 0x00 } }, + { { -317, -89, -15 }, { 5060, 1264 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -368, -95, -38 }, { 3909, 1380 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -223, -29, -373 }, { 2281, -280 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -532, 88, -410 }, { 5449, 103 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -540, 7, -121 }, { 5038, -1801 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -238, -50, -18 }, { 2377, -3160 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -223, -29, -673 }, { 2281, 2791 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -505, 33, -804 }, { 5172, 4134 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x34, 0), 0x00 } }, + { { -532, 88, -410 }, { 5372, 1966 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -223, -29, -373 }, { 2281, -280 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -232, -29, -1123 }, { 2281, 5863 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -577, 43, -1037 }, { 5904, 6522 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x34, 0), 0x00 } }, + { { -505, 33, -804 }, { 5172, 4134 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x34, 0), 0x00 } }, + { { -223, -29, -673 }, { 2281, 2791 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -551, -91, -1344 }, { -364, 1729 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -729, -50, -1312 }, { 3297, 884 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -755, 18, -1282 }, { 3990, -517 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -551, -21, -1344 }, { -364, 295 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -551, -21, -1344 }, { 1865, -182 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -755, 18, -1282 }, { 2450, -1635 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -577, 43, -1037 }, { 255, -1792 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -232, -29, -1123 }, { -28, 1078 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -270, -29, -1423 }, { 995, 1722 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -551, -21, -1344 }, { 1865, -182 }, { MACRO_COLOR_FLAG(0x00, 0x4c, 0x00, 0), 0x00 } }, + { { -577, 43, -1037 }, { 255, -1792 }, { MACRO_COLOR_FLAG(0x14, 0xcc, 0x34, 0), 0x00 } }, + { { -435, -22, -1443 }, { 1865, 878 }, { MACRO_COLOR_FLAG(0x00, 0x4c, 0x00, 0), 0x00 } }, + { { -926, 24, 302 }, { 0, -669 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -926, -50, 302 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -780, 48, 155 }, { 4718, -1199 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -780, -50, 155 }, { 4718, 1023 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -926, -50, 302 }, { 4236, 1024 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -1058, -31, 434 }, { 0, 597 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1058, -50, 434 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xb4, 0x9c, 0x84, 0), 0x00 } }, + { { -926, 24, 302 }, { 4236, -669 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1058, -31, 434 }, { 32767, -12665 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -926, 24, 302 }, { 30512, -13195 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -1629, 47, 420 }, { 32767, -544 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -1163, 107, 6 }, { 28162, -3613 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -780, 48, 155 }, { 25369, -13885 }, { MACRO_COLOR_FLAG(0x24, 0x68, 0x14, 0), 0x00 } }, + { { -472, -33, -1411 }, { 28, -7 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -450, -40, -1430 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -354, -55, -1296 }, { 2038, 783 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -379, -48, -1283 }, { 1993, -233 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -371, -80, -1112 }, { -31, -10 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -92, -1104 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -454, -66, -1243 }, { 2021, 1459 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -429, -53, -1256 }, { 2053, 446 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -318, -74, -1130 }, { 252, 2144 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -371, -80, -1112 }, { 1268, 2081 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -429, -53, -1256 }, { 1024, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -379, -48, -1283 }, { -8, -63 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -515, -38, -1375 }, { 1154, -1042 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -472, -33, -1411 }, { 143, -1210 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -379, -48, -1283 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -429, -53, -1256 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -536, -51, -1357 }, { 2081, 1248 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -515, -38, -1375 }, { 2125, 232 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -429, -53, -1256 }, { -44, -8 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -454, -66, -1243 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -121, -1139 }, { 2065, 1114 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -81, -1139 }, { 2065, 90 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -354, -55, -1296 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -354, -95, -1296 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -354, -95, -1296 }, { 2016, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -354, -55, -1296 }, { 2016, 5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -450, -40, -1430 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -450, -80, -1430 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -132, -1104 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -454, -106, -1243 }, { 2000, 1102 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -454, -66, -1243 }, { 2000, 78 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -92, -1104 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -454, -106, -1243 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -536, -91, -1357 }, { 2075, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -536, -51, -1357 }, { 2075, 5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -454, -66, -1243 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -81, -1139 }, { 2082, 602 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -318, -74, -1130 }, { 2053, -410 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -379, -48, -1283 }, { 29, -10 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -354, -55, -1296 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -318, -74, -1130 }, { 25, 10 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -81, -1139 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -147, -766 }, { 5790, -93 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -279, -137, -766 }, { 5673, -1106 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -371, -80, -1112 }, { 1540, -5639 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -318, -74, -1130 }, { 559, -5987 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -279, -137, -766 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -335, -137, -766 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -147, -766 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -93, -1104 }, { 6650, 1902 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -371, -80, -1112 }, { 6809, 900 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -335, -137, -766 }, { -19, -1 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -132, -1104 }, { 6623, 1029 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -398, -92, -1104 }, { 6623, 5 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -147, -766 }, { 0, 0 }, { MACRO_COLOR_FLAG(0x30, 0x30, 0x30, 0), 0x00 } }, + { { -363, -187, -766 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0x30, 0x30, 0x30, 0), 0x00 } }, + { { -251, -187, -766 }, { 1023, 1024 }, { MACRO_COLOR_FLAG(0x30, 0x30, 0x30, 0), 0x00 } }, + { { -251, -147, -766 }, { 1023, 0 }, { MACRO_COLOR_FLAG(0x30, 0x30, 0x30, 0), 0x00 } }, + { { -291, -81, -1139 }, { -5562, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -121, -1139 }, { -5562, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -145, -335 }, { 7850, -967 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -147, -766 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -187, -766 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -185, -335 }, { 7850, 56 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -187, -766 }, { 9420, -31 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -147, -766 }, { 9420, -1055 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -145, -335 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -185, -335 }, { 0, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -145, -335 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -147, -766 }, { 9344, 555 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -335, -137, -766 }, { 9344, -468 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -335, -135, -335 }, { 0, 0 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -335, -135, -335 }, { 1024, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -335, -137, -766 }, { 1023, -8307 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -279, -137, -766 }, { 0, -8307 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -279, -135, -335 }, { 0, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -147, -766 }, { -3075, 959 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -145, -335 }, { 4765, 772 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -279, -135, -335 }, { 4765, -251 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -279, -137, -766 }, { -3075, -64 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -394, -107, -49 }, { -3785, 1024 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -145, -335 }, { 5296, 1023 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -335, -135, -335 }, { 5413, 284 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -368, -95, -38 }, { -4034, 304 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -368, -95, -38 }, { -278, -3477 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -335, -135, -335 }, { -178, 4969 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -279, -135, -335 }, { 840, 5154 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -317, -89, -15 }, { 695, -3943 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -317, -89, -15 }, { 5766, -600 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -279, -135, -335 }, { -2959, -368 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -145, -335 }, { -3048, 659 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -96, -5 }, { 5987, 373 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -96, -5 }, { 6001, -19 }, { MACRO_COLOR_FLAG(0x64, 0x64, 0x64, 0), 0x00 } }, + { { -251, -145, -335 }, { -3045, -44 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -251, -185, -335 }, { -3045, 979 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -291, -136, -5 }, { 6001, 1004 }, { MACRO_COLOR_FLAG(0x64, 0x64, 0x64, 0), 0x00 } }, + { { -394, -148, -49 }, { -3799, 831 }, { MACRO_COLOR_FLAG(0x64, 0x64, 0x64, 0), 0x00 } }, + { { -363, -185, -335 }, { 5416, 1096 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -363, -145, -335 }, { 5416, 85 }, { MACRO_COLOR_FLAG(0xfc, 0xfc, 0xfc, 0), 0x00 } }, + { { -394, -108, -49 }, { -3799, -179 }, { MACRO_COLOR_FLAG(0x64, 0x64, 0x64, 0), 0x00 } }, + +}; From 1facf95c38834133c1e628a4226c8e3214a8b39e Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 11:50:32 -0700 Subject: [PATCH 30/41] Take the doxygen map path from the version being built Every version's ROM rule runs doxygen_symbol_gen.py, but the script hardcodes build/us/mk64.us.map. A fresh clone that builds anything other than us first therefore fails on the last line of the recipe, after the ROM it just produced is already correct. This is reachable on master today with `make VERSION=eu.v10`; it is not specific to the version this branch adds. The script now takes the map as an argument and still defaults to the us one, so anything calling it bare keeps working. Co-Authored-By: Claude Fable 5 --- Makefile | 4 ++-- tools/doxygen_symbol_gen.py | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 8c62a9156a..45a4dfab92 100644 --- a/Makefile +++ b/Makefile @@ -484,7 +484,7 @@ assets: $(V)$(TORCH) modding export $(BASEROM) doc: - $(V)$(PYTHON) $(TOOLS_DIR)/doxygen_symbol_gen.py + $(V)$(PYTHON) $(TOOLS_DIR)/doxygen_symbol_gen.py $(BUILD_DIR)/$(TARGET).map doxygen @$(PRINT) "$(GREEN)Documentation generated in docs/html$(NO_COL)\n" @$(PRINT) "$(GREEN)Results can be viewed by opening docs/html/index.html in a web browser$(NO_COL)\n" @@ -834,7 +834,7 @@ $(ROM): $(ELF) $(call print,Building ROM:,$<,$@) $(V)$(OBJCOPY) $(OBJCOPYFLAGS) $< $(@:.z64=.bin) -O binary $(V)$(N64CKSUM) $(@:.z64=.bin) $@ - $(V)$(PYTHON) $(TOOLS_DIR)/doxygen_symbol_gen.py + $(V)$(PYTHON) $(TOOLS_DIR)/doxygen_symbol_gen.py $(BUILD_DIR)/$(TARGET).map $(BUILD_DIR)/$(TARGET).hex: $(TARGET).z64 $(V)xxd $< > $@ diff --git a/tools/doxygen_symbol_gen.py b/tools/doxygen_symbol_gen.py index 20338c378e..7e8d86f095 100644 --- a/tools/doxygen_symbol_gen.py +++ b/tools/doxygen_symbol_gen.py @@ -1,4 +1,5 @@ # usr/bin/python3 +import sys def process_map_file(map_file_path): result = ( @@ -51,7 +52,10 @@ def process_map_file(map_file_path): if __name__ == "__main__": - map_file_path = "build/us/mk64.us.map" + # Every version's ROM rule runs this, so take the map of the version being + # built. Hardcoding the us one means a fresh clone that builds any other + # version first fails here, after its ROM is already correct. + map_file_path = sys.argv[1] if len(sys.argv) > 1 else "build/us/mk64.us.map" doxygen_formatted_content = process_map_file(map_file_path) # Specify the output file path From 20f5c13bfdbb9aeab2395b298229ecd133769c74 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 11:50:32 -0700 Subject: [PATCH 31/41] assets: extract with the Torch version's cart EU has no entry in config.yml and builds on the us Torch output, which is what ASSET_CODE_DIR and ASSET_VERSION already arrange. The assets target still passed $(BASEROM), so `make assets VERSION=eu.v11` handed Torch the EU cart, matched no sha1, and silently wrote nothing; the link then failed on a missing assets/code/us object. Found by building the four versions in the other order from a fresh clone. Co-Authored-By: Claude Fable 5 --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 45a4dfab92..ac1418f9b6 100644 --- a/Makefile +++ b/Makefile @@ -479,9 +479,12 @@ assets: # skip regeneration and leave this version's output missing. Torch takes # well under a second, so there is nothing to save by keeping the cache. $(V)$(RM) -f torch.hash.yml - $(V)$(TORCH) code $(BASEROM) - $(V)$(TORCH) header $(BASEROM) - $(V)$(TORCH) modding export $(BASEROM) + # Not $(BASEROM): EU has no config.yml entry and builds on the us Torch + # output, exactly as ASSET_CODE_DIR and ASSET_VERSION already arrange. Handed + # the EU cart, Torch matches no sha1 and silently writes nothing. + $(V)$(TORCH) code $(ASSET_BASEROM) + $(V)$(TORCH) header $(ASSET_BASEROM) + $(V)$(TORCH) modding export $(ASSET_BASEROM) doc: $(V)$(PYTHON) $(TOOLS_DIR)/doxygen_symbol_gen.py $(BUILD_DIR)/$(TARGET).map From 602ffc6ed93f7dfac5d426db4f83450ba455d5e1 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 12:19:53 -0700 Subject: [PATCH 32/41] assets: drop the jp.v11 raw retypes that are not needed 134 assets carried a jp.v11 `type: bin` override on the theory that their palette repeats a colour, so the png round trip would remap indices and rewrite the image. Removing all of them and rebuilding says otherwise: 129 come out byte-identical through the normal image path. The override was standing in for offsets that are now correct, not for a palette problem. The five kalimari cacti are real, and for a different reason. gTLUTCactus has no jp.v11 entry and its palette does not appear anywhere in the JP cart, so there is no palette to convert through. Those keep the retype, and kalimari_desert.mk keeps the guard that goes with it. The other ten .mk files return to upstream's plain rule. All four ROMs still byte-identical, and the build log confirms the png path really ran rather than reusing a leftover .bin. Co-Authored-By: Claude Fable 5 --- assets/courses/dks_jungle_parkway.json | 6 +- assets/courses/moo_moo_farm.json | 20 +++--- assets/include/courses/dks_jungle_parkway.mk | 12 +--- assets/include/courses/moo_moo_farm.mk | 12 +--- assets/include/lakitu/bluelight.mk | 11 +--- assets/include/lakitu/checkeredflag.mk | 11 +--- assets/include/lakitu/finallap.mk | 11 +--- assets/include/lakitu/fishing.mk | 11 +--- assets/include/lakitu/nolights.mk | 11 +--- assets/include/lakitu/redlights.mk | 11 +--- assets/include/lakitu/reverse.mk | 11 +--- assets/include/lakitu/secondlap.mk | 11 +--- assets/lakitu/bluelight.json | 16 ++--- assets/lakitu/checkeredflag.json | 64 ++++++++++---------- assets/lakitu/finallap.json | 32 +++++----- assets/lakitu/fishing.json | 8 +-- assets/lakitu/nolights.json | 16 ++--- assets/lakitu/redlights.json | 32 +++++----- assets/lakitu/reverse.json | 32 +++++----- assets/lakitu/secondlap.json | 32 +++++----- 20 files changed, 159 insertions(+), 211 deletions(-) diff --git a/assets/courses/dks_jungle_parkway.json b/assets/courses/dks_jungle_parkway.json index e89e8bc30f..55178d524b 100644 --- a/assets/courses/dks_jungle_parkway.json +++ b/assets/courses/dks_jungle_parkway.json @@ -15,7 +15,7 @@ "gTextureDksJungleParkwayPalmTreeTop": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x13078", "width": 32, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x883C00", "block_offset": "0x11248"}}, "gTLUTDksJungleParkwayKiwanoFruit": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x885A10", "block_offset": "0x13978", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x883C00", "block_offset": "0x11B48"}}, -"gTextureDksJungleParkwayKiwanoFruit1": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x699E24", "width": 32, "height": 32, "type": "ci8", "tlut": "gTLUTDksJungleParkwayKiwanoFruit", "jp.v11": {"rom_offset": "0x6A4D04", "type": "bin", "compressed": true, "size": "0x400"}}, -"gTextureDksJungleParkwayKiwanoFruit2": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x69A154", "width": 32, "height": 32, "type": "ci8", "tlut": "gTLUTDksJungleParkwayKiwanoFruit", "jp.v11": {"rom_offset": "0x6A5034", "type": "bin", "compressed": true, "size": "0x400"}}, -"gTextureDksJungleParkwayKiwanoFruit3": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x69A4C0", "width": 32, "height": 32, "type": "ci8", "tlut": "gTLUTDksJungleParkwayKiwanoFruit", "jp.v11": {"rom_offset": "0x6A53A0", "type": "bin", "compressed": true, "size": "0x400"}} +"gTextureDksJungleParkwayKiwanoFruit1": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x699E24", "width": 32, "height": 32, "type": "ci8", "tlut": "gTLUTDksJungleParkwayKiwanoFruit", "jp.v11": {"rom_offset": "0x6A4D04"}}, +"gTextureDksJungleParkwayKiwanoFruit2": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x69A154", "width": 32, "height": 32, "type": "ci8", "tlut": "gTLUTDksJungleParkwayKiwanoFruit", "jp.v11": {"rom_offset": "0x6A5034"}}, +"gTextureDksJungleParkwayKiwanoFruit3": {"output_dir": "dks_jungle_parkway", "rom_offset": "0x69A4C0", "width": 32, "height": 32, "type": "ci8", "tlut": "gTLUTDksJungleParkwayKiwanoFruit", "jp.v11": {"rom_offset": "0x6A53A0"}} } diff --git a/assets/courses/moo_moo_farm.json b/assets/courses/moo_moo_farm.json index 4514d4be6b..9771cc8bc2 100644 --- a/assets/courses/moo_moo_farm.json +++ b/assets/courses/moo_moo_farm.json @@ -12,16 +12,16 @@ "gTLUTCowImport": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x13870", "width": 12, "height": 17, "type": "rgba16", "jp.v11": {"rom_offset": "0x851250", "block_offset": "0x12730"}}, "gTLUTCow": {"output_dir": "moo_moo_farm", "rom_offset": "0x852E20", "block_offset": "0x13870", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x851250", "block_offset": "0x12730"}}, -"gTextureCow01Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x693BC4", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69EAA4", "type": "bin", "compressed": true, "size": "0x800"}}, -"gTextureCow01Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x693F48", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69EE28", "type": "bin", "compressed": true, "size": "0x800"}}, -"gTextureCow02Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x69429C", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69F17C", "type": "bin", "compressed": true, "size": "0x800"}}, -"gTextureCow02Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x694628", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69F508", "type": "bin", "compressed": true, "size": "0x800"}}, -"gTextureCow03Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x694990", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69F870", "type": "bin", "compressed": true, "size": "0x800"}}, -"gTextureCow03Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x694CAC", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69FB8C", "type": "bin", "compressed": true, "size": "0x800"}}, -"gTextureCow04Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x694F7C", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69FE5C", "type": "bin", "compressed": true, "size": "0x800"}}, -"gTextureCow04Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x695268", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x6A0148", "type": "bin", "compressed": true, "size": "0x800"}}, -"gTextureCow05Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x6955AC", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x6A048C", "type": "bin", "compressed": true, "size": "0x800"}}, -"gTextureCow05Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x6958C0", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x6A07A0", "type": "bin", "compressed": true, "size": "0x800"}}, +"gTextureCow01Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x693BC4", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69EAA4"}}, +"gTextureCow01Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x693F48", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69EE28"}}, +"gTextureCow02Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x69429C", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69F17C"}}, +"gTextureCow02Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x694628", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69F508"}}, +"gTextureCow03Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x694990", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69F870"}}, +"gTextureCow03Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x694CAC", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69FB8C"}}, +"gTextureCow04Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x694F7C", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x69FE5C"}}, +"gTextureCow04Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x695268", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x6A0148"}}, +"gTextureCow05Left": {"output_dir": "moo_moo_farm", "rom_offset": "0x6955AC", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x6A048C"}}, +"gTextureCow05Right": {"output_dir": "moo_moo_farm", "rom_offset": "0x6958C0", "width": 32, "height": 64, "type": "ci8", "tlut": "gTLUTCow", "jp.v11": {"rom_offset": "0x6A07A0"}}, "gTextureMooMooFarmSignLeft": {"output_dir": "moo_moo_farm", "rom_offset": "0x6497E0", "width": 64, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x654D78"}}, "gTextureMooMooFarmSignRight": {"output_dir": "moo_moo_farm", "rom_offset": "0x64A248", "width": 64, "height": 32, "type": "rgba16", "jp.v11": {"rom_offset": "0x6555BC"}} diff --git a/assets/include/courses/dks_jungle_parkway.mk b/assets/include/courses/dks_jungle_parkway.mk index 1de8d54bd4..9dcbb36e5f 100644 --- a/assets/include/courses/dks_jungle_parkway.mk +++ b/assets/include/courses/dks_jungle_parkway.mk @@ -29,15 +29,9 @@ $(BUILD_DIR)/data/other_textures.o: $(DKS_JUNGLE_PARKWAY_KIWANO_FRAMES:%.png=%.m $(DKS_JUNGLE_PARKWAY_KIWANO_FRAMES:%.png=%.mio0): %.mio0 : %.bin $(V)$(MIO0TOOL) -c $< $@ -# An asset extracted raw arrives as .bin and has no png to convert. Depend on -# the extraction rather than on the png, and convert only when a png is -# really there: otherwise n64graphics is handed a missing file and make -# deletes the .bin extraction just wrote. -$(DKS_JUNGLE_PARKWAY_KIWANO_FRAMES:%.png=%.bin): %.bin : $(DKS_JUNGLE_PARKWAY_EXPORT_SENTINEL) - $(V)if [ -f $*.png ]; then \ - $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ - $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(DKS_JUNGLE_PARKWAY_KIWANO_PALETTE); \ - fi +$(DKS_JUNGLE_PARKWAY_KIWANO_FRAMES:%.png=%.bin): %.bin : %.png + @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" + $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(DKS_JUNGLE_PARKWAY_KIWANO_PALETTE) $(BUILD_DIR)/courses/dks_jungle_parkway/course_data.o: $(DKS_JUNGLE_PARKWAY_KIWANO_PALETTE:%.png=%.inc.c) $(BUILD_DIR)/courses/dks_jungle_parkway/course_data.o: $(DKS_JUNGLE_PARKWAY_PNG:%.png=%.inc.c) diff --git a/assets/include/courses/moo_moo_farm.mk b/assets/include/courses/moo_moo_farm.mk index 639a80e043..25be2c25db 100644 --- a/assets/include/courses/moo_moo_farm.mk +++ b/assets/include/courses/moo_moo_farm.mk @@ -67,15 +67,9 @@ $(MOO_MOO_FARM_SIGN_PNG:%.png=%.inc.c): %.inc.c : %.png @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" $(V)$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16 -# An asset extracted raw arrives as .bin and has no png to convert. Depend on -# the extraction rather than on the png, and convert only when a png is -# really there: otherwise n64graphics is handed a missing file and make -# deletes the .bin extraction just wrote. -$(COW_PNG:%.png=%.bin): %.bin : $(MOO_MOO_FARM_EXPORT_SENTINEL) - $(V)if [ -f $*.png ]; then \ - $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ - $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(COW_PALETTE); \ - fi +$(COW_PNG:%.png=%.bin): %.bin : %.png + @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" + $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(COW_PALETTE) $(MOLE_PALETTE) $(COW_PALETTE) $(COW_PALETTE_IMPORT): $(MOO_MOO_FARM_EXPORT_SENTINEL) @: diff --git a/assets/include/lakitu/bluelight.mk b/assets/include/lakitu/bluelight.mk index 16b1ba1008..110c223c6f 100644 --- a/assets/include/lakitu/bluelight.mk +++ b/assets/include/lakitu/bluelight.mk @@ -16,14 +16,9 @@ BLUELIGHT_EXPORT_SENTINEL := $(BLUELIGHT_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(BLUELIGHT_FRAMES:%.png=%.bin) -# Extraction writes these raw for a version whose palette cannot round trip, -# and removes the png with them. Depend on the extraction, and convert only -# when a png is really there. -$(BLUELIGHT_FRAMES:%.png=%.bin): %.bin : $(BLUELIGHT_EXPORT_SENTINEL) - $(V)if [ -f $*.png ]; then \ - $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ - $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(BLUELIGHT_PALETTE); \ - fi +$(BLUELIGHT_FRAMES:%.png=%.bin): %.bin : %.png + @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" + $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(BLUELIGHT_PALETTE) $(BUILD_DIR)/src/data/common_textures.o: $(BLUELIGHT_PALETTE:%.png=%.inc.c) diff --git a/assets/include/lakitu/checkeredflag.mk b/assets/include/lakitu/checkeredflag.mk index a5f93a81fc..afc86ec33c 100644 --- a/assets/include/lakitu/checkeredflag.mk +++ b/assets/include/lakitu/checkeredflag.mk @@ -40,14 +40,9 @@ CHECKEREDFLAG_EXPORT_SENTINEL := $(CHECKEREDFLAG_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(CHECKEREDFLAG_FRAMES:%.png=%.bin) -# Extraction writes these raw for a version whose palette cannot round trip, -# and removes the png with them. Depend on the extraction, and convert only -# when a png is really there. -$(CHECKEREDFLAG_FRAMES:%.png=%.bin): %.bin : $(CHECKEREDFLAG_EXPORT_SENTINEL) - $(V)if [ -f $*.png ]; then \ - $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ - $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(CHECKEREDFLAG_PALETTE); \ - fi +$(CHECKEREDFLAG_FRAMES:%.png=%.bin): %.bin : %.png + @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" + $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(CHECKEREDFLAG_PALETTE) $(BUILD_DIR)/src/data/common_textures.o: $(CHECKEREDFLAG_PALETTE:%.png=%.inc.c) diff --git a/assets/include/lakitu/finallap.mk b/assets/include/lakitu/finallap.mk index c8b59ced54..3987c4f1fa 100644 --- a/assets/include/lakitu/finallap.mk +++ b/assets/include/lakitu/finallap.mk @@ -24,14 +24,9 @@ FINALLAP_EXPORT_SENTINEL := $(FINALLAP_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(FINALLAP_FRAMES:%.png=%.bin) -# Extraction writes these raw for a version whose palette cannot round trip, -# and removes the png with them. Depend on the extraction, and convert only -# when a png is really there. -$(FINALLAP_FRAMES:%.png=%.bin): %.bin : $(FINALLAP_EXPORT_SENTINEL) - $(V)if [ -f $*.png ]; then \ - $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ - $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(FINALLAP_PALETTE); \ - fi +$(FINALLAP_FRAMES:%.png=%.bin): %.bin : %.png + @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" + $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(FINALLAP_PALETTE) $(BUILD_DIR)/src/data/common_textures.o: $(FINALLAP_PALETTE:%.png=%.inc.c) diff --git a/assets/include/lakitu/fishing.mk b/assets/include/lakitu/fishing.mk index f72fab5c2a..9e5767b489 100644 --- a/assets/include/lakitu/fishing.mk +++ b/assets/include/lakitu/fishing.mk @@ -12,14 +12,9 @@ FISHING_EXPORT_SENTINEL := $(FISHING_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(FISHING_FRAMES:%.png=%.bin) -# Extraction writes these raw for a version whose palette cannot round trip, -# and removes the png with them. Depend on the extraction, and convert only -# when a png is really there. -$(FISHING_FRAMES:%.png=%.bin): %.bin : $(FISHING_EXPORT_SENTINEL) - $(V)if [ -f $*.png ]; then \ - $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ - $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(FISHING_PALETTE); \ - fi +$(FISHING_FRAMES:%.png=%.bin): %.bin : %.png + @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" + $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(FISHING_PALETTE) $(BUILD_DIR)/src/data/common_textures.o: $(FISHING_PALETTE:%.png=%.inc.c) diff --git a/assets/include/lakitu/nolights.mk b/assets/include/lakitu/nolights.mk index 40495d5d13..53ecd7b61c 100644 --- a/assets/include/lakitu/nolights.mk +++ b/assets/include/lakitu/nolights.mk @@ -16,14 +16,9 @@ NOLIGHTS_EXPORT_SENTINEL := $(NOLIGHTS_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(NOLIGHTS_FRAMES:%.png=%.bin) -# Extraction writes these raw for a version whose palette cannot round trip, -# and removes the png with them. Depend on the extraction, and convert only -# when a png is really there. -$(NOLIGHTS_FRAMES:%.png=%.bin): %.bin : $(NOLIGHTS_EXPORT_SENTINEL) - $(V)if [ -f $*.png ]; then \ - $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ - $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(NOLIGHTS_PALETTE); \ - fi +$(NOLIGHTS_FRAMES:%.png=%.bin): %.bin : %.png + @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" + $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(NOLIGHTS_PALETTE) $(BUILD_DIR)/src/data/common_textures.o: $(NOLIGHTS_PALETTE:%.png=%.inc.c) diff --git a/assets/include/lakitu/redlights.mk b/assets/include/lakitu/redlights.mk index c5f9d35975..568b8e5e8d 100644 --- a/assets/include/lakitu/redlights.mk +++ b/assets/include/lakitu/redlights.mk @@ -24,14 +24,9 @@ REDLIGHTS_EXPORT_SENTINEL := $(REDLIGHTS_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(REDLIGHTS_FRAMES:%.png=%.bin) -# Extraction writes these raw for a version whose palette cannot round trip, -# and removes the png with them. Depend on the extraction, and convert only -# when a png is really there. -$(REDLIGHTS_FRAMES:%.png=%.bin): %.bin : $(REDLIGHTS_EXPORT_SENTINEL) - $(V)if [ -f $*.png ]; then \ - $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ - $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(REDLIGHTS_PALETTE); \ - fi +$(REDLIGHTS_FRAMES:%.png=%.bin): %.bin : %.png + @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" + $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(REDLIGHTS_PALETTE) $(BUILD_DIR)/src/data/common_textures.o: $(REDLIGHTS_PALETTE:%.png=%.inc.c) diff --git a/assets/include/lakitu/reverse.mk b/assets/include/lakitu/reverse.mk index 0b7e29a740..46d2ad6f76 100644 --- a/assets/include/lakitu/reverse.mk +++ b/assets/include/lakitu/reverse.mk @@ -24,14 +24,9 @@ REVERSE_EXPORT_SENTINEL := $(REVERSE_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(REVERSE_FRAMES:%.png=%.bin) -# Extraction writes these raw for a version whose palette cannot round trip, -# and removes the png with them. Depend on the extraction, and convert only -# when a png is really there. -$(REVERSE_FRAMES:%.png=%.bin): %.bin : $(REVERSE_EXPORT_SENTINEL) - $(V)if [ -f $*.png ]; then \ - $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ - $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(REVERSE_PALETTE); \ - fi +$(REVERSE_FRAMES:%.png=%.bin): %.bin : %.png + @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" + $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(REVERSE_PALETTE) $(BUILD_DIR)/src/data/common_textures.o: $(REVERSE_PALETTE:%.png=%.inc.c) diff --git a/assets/include/lakitu/secondlap.mk b/assets/include/lakitu/secondlap.mk index ddda0146ef..19910e0cd3 100644 --- a/assets/include/lakitu/secondlap.mk +++ b/assets/include/lakitu/secondlap.mk @@ -24,14 +24,9 @@ SECONDLAP_EXPORT_SENTINEL := $(SECONDLAP_DIR)/.export $(BUILD_DIR)/$(DATA_DIR)/other_textures.o: $(SECONDLAP_FRAMES:%.png=%.bin) -# Extraction writes these raw for a version whose palette cannot round trip, -# and removes the png with them. Depend on the extraction, and convert only -# when a png is really there. -$(SECONDLAP_FRAMES:%.png=%.bin): %.bin : $(SECONDLAP_EXPORT_SENTINEL) - $(V)if [ -f $*.png ]; then \ - $(PRINT) "$(GREEN)Converting: $(BLUE) $*.png -> $@$(NO_COL)\n"; \ - $(N64GRAPHICS) -Z $@ -g $*.png -s raw -f ci8 -c rgba16 -p $(SECONDLAP_PALETTE); \ - fi +$(SECONDLAP_FRAMES:%.png=%.bin): %.bin : %.png + @$(PRINT) "$(GREEN)Converting: $(BLUE) $< -> $@$(NO_COL)\n" + $(V)$(N64GRAPHICS) -Z $@ -g $< -s raw -f ci8 -c rgba16 -p $(SECONDLAP_PALETTE) $(BUILD_DIR)/src/data/common_textures.o: $(SECONDLAP_PALETTE:%.png=%.inc.c) diff --git a/assets/lakitu/bluelight.json b/assets/lakitu/bluelight.json index 259918a75a..59edd70f80 100644 --- a/assets/lakitu/bluelight.json +++ b/assets/lakitu/bluelight.json @@ -1,11 +1,11 @@ { "common_tlut_lakitu_blue_lights": {"output_dir": "bluelight", "rom_offset": "0x132B50", "block_offset": "0x252D8", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0", "block_offset": "0x24898"}}, -"gTextureLakituBlueLight1": {"output_dir": "bluelight", "rom_offset": "0x6B84C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C33A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituBlueLight2": {"output_dir": "bluelight", "rom_offset": "0x6B9480", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C4360", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituBlueLight3": {"output_dir": "bluelight", "rom_offset": "0x6BA440", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C5320", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituBlueLight4": {"output_dir": "bluelight", "rom_offset": "0x6BB400", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C62E0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituBlueLight5": {"output_dir": "bluelight", "rom_offset": "0x6BC3C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C72A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituBlueLight6": {"output_dir": "bluelight", "rom_offset": "0x6BD380", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C8260", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituBlueLight7": {"output_dir": "bluelight", "rom_offset": "0x6BE340", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C9220", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituBlueLight8": {"output_dir": "bluelight", "rom_offset": "0x6BF300", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6CA1E0", "type": "bin", "size": "0xFC0"}} +"gTextureLakituBlueLight1": {"output_dir": "bluelight", "rom_offset": "0x6B84C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C33A0"}}, +"gTextureLakituBlueLight2": {"output_dir": "bluelight", "rom_offset": "0x6B9480", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C4360"}}, +"gTextureLakituBlueLight3": {"output_dir": "bluelight", "rom_offset": "0x6BA440", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C5320"}}, +"gTextureLakituBlueLight4": {"output_dir": "bluelight", "rom_offset": "0x6BB400", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C62E0"}}, +"gTextureLakituBlueLight5": {"output_dir": "bluelight", "rom_offset": "0x6BC3C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C72A0"}}, +"gTextureLakituBlueLight6": {"output_dir": "bluelight", "rom_offset": "0x6BD380", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C8260"}}, +"gTextureLakituBlueLight7": {"output_dir": "bluelight", "rom_offset": "0x6BE340", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6C9220"}}, +"gTextureLakituBlueLight8": {"output_dir": "bluelight", "rom_offset": "0x6BF300", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_blue_lights", "jp.v11": {"rom_offset": "0x6CA1E0"}} } diff --git a/assets/lakitu/checkeredflag.json b/assets/lakitu/checkeredflag.json index 26f96ca2b6..210e23e456 100644 --- a/assets/lakitu/checkeredflag.json +++ b/assets/lakitu/checkeredflag.json @@ -1,35 +1,35 @@ { "common_tlut_lakitu_checkered_flag": {"output_dir": "checkeredflag", "rom_offset": "0x132B50", "block_offset": "0x254D8", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0", "block_offset": "0x24A98"}}, -"gTextureLakituCheckeredFlag01": {"output_dir": "checkeredflag", "rom_offset": "0x6C02C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6CB1A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag02": {"output_dir": "checkeredflag", "rom_offset": "0x6C1280", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6CC160", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag03": {"output_dir": "checkeredflag", "rom_offset": "0x6C2240", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6CD120", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag04": {"output_dir": "checkeredflag", "rom_offset": "0x6C3200", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6CE0E0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag05": {"output_dir": "checkeredflag", "rom_offset": "0x6C41C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6CF0A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag06": {"output_dir": "checkeredflag", "rom_offset": "0x6C5180", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D0060", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag07": {"output_dir": "checkeredflag", "rom_offset": "0x6C6140", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D1020", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag08": {"output_dir": "checkeredflag", "rom_offset": "0x6C7100", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D1FE0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag09": {"output_dir": "checkeredflag", "rom_offset": "0x6C80C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D2FA0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag10": {"output_dir": "checkeredflag", "rom_offset": "0x6C9080", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D3F60", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag11": {"output_dir": "checkeredflag", "rom_offset": "0x6CA040", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D4F20", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag12": {"output_dir": "checkeredflag", "rom_offset": "0x6CB000", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D5EE0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag13": {"output_dir": "checkeredflag", "rom_offset": "0x6CBFC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D6EA0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag14": {"output_dir": "checkeredflag", "rom_offset": "0x6CCF80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D7E60", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag15": {"output_dir": "checkeredflag", "rom_offset": "0x6CDF40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D8E20", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag16": {"output_dir": "checkeredflag", "rom_offset": "0x6CEF00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D9DE0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag17": {"output_dir": "checkeredflag", "rom_offset": "0x6CFEC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6DADA0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag18": {"output_dir": "checkeredflag", "rom_offset": "0x6D0E80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6DBD60", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag19": {"output_dir": "checkeredflag", "rom_offset": "0x6D1E40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6DCD20", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag20": {"output_dir": "checkeredflag", "rom_offset": "0x6D2E00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6DDCE0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag21": {"output_dir": "checkeredflag", "rom_offset": "0x6D3DC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6DECA0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag22": {"output_dir": "checkeredflag", "rom_offset": "0x6D4D80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6DFC60", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag23": {"output_dir": "checkeredflag", "rom_offset": "0x6D5D40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E0C20", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag24": {"output_dir": "checkeredflag", "rom_offset": "0x6D6D00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E1BE0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag25": {"output_dir": "checkeredflag", "rom_offset": "0x6D7CC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E2BA0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag26": {"output_dir": "checkeredflag", "rom_offset": "0x6D8C80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E3B60", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag27": {"output_dir": "checkeredflag", "rom_offset": "0x6D9C40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E4B20", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag28": {"output_dir": "checkeredflag", "rom_offset": "0x6DAC00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E5AE0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag29": {"output_dir": "checkeredflag", "rom_offset": "0x6DBBC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E6AA0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag30": {"output_dir": "checkeredflag", "rom_offset": "0x6DCB80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E7A60", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag31": {"output_dir": "checkeredflag", "rom_offset": "0x6DDB40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E8A20", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituCheckeredFlag32": {"output_dir": "checkeredflag", "rom_offset": "0x6DEB00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E99E0", "type": "bin", "size": "0xFC0"}} +"gTextureLakituCheckeredFlag01": {"output_dir": "checkeredflag", "rom_offset": "0x6C02C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6CB1A0"}}, +"gTextureLakituCheckeredFlag02": {"output_dir": "checkeredflag", "rom_offset": "0x6C1280", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6CC160"}}, +"gTextureLakituCheckeredFlag03": {"output_dir": "checkeredflag", "rom_offset": "0x6C2240", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6CD120"}}, +"gTextureLakituCheckeredFlag04": {"output_dir": "checkeredflag", "rom_offset": "0x6C3200", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6CE0E0"}}, +"gTextureLakituCheckeredFlag05": {"output_dir": "checkeredflag", "rom_offset": "0x6C41C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6CF0A0"}}, +"gTextureLakituCheckeredFlag06": {"output_dir": "checkeredflag", "rom_offset": "0x6C5180", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D0060"}}, +"gTextureLakituCheckeredFlag07": {"output_dir": "checkeredflag", "rom_offset": "0x6C6140", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D1020"}}, +"gTextureLakituCheckeredFlag08": {"output_dir": "checkeredflag", "rom_offset": "0x6C7100", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D1FE0"}}, +"gTextureLakituCheckeredFlag09": {"output_dir": "checkeredflag", "rom_offset": "0x6C80C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D2FA0"}}, +"gTextureLakituCheckeredFlag10": {"output_dir": "checkeredflag", "rom_offset": "0x6C9080", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D3F60"}}, +"gTextureLakituCheckeredFlag11": {"output_dir": "checkeredflag", "rom_offset": "0x6CA040", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D4F20"}}, +"gTextureLakituCheckeredFlag12": {"output_dir": "checkeredflag", "rom_offset": "0x6CB000", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D5EE0"}}, +"gTextureLakituCheckeredFlag13": {"output_dir": "checkeredflag", "rom_offset": "0x6CBFC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D6EA0"}}, +"gTextureLakituCheckeredFlag14": {"output_dir": "checkeredflag", "rom_offset": "0x6CCF80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D7E60"}}, +"gTextureLakituCheckeredFlag15": {"output_dir": "checkeredflag", "rom_offset": "0x6CDF40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D8E20"}}, +"gTextureLakituCheckeredFlag16": {"output_dir": "checkeredflag", "rom_offset": "0x6CEF00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6D9DE0"}}, +"gTextureLakituCheckeredFlag17": {"output_dir": "checkeredflag", "rom_offset": "0x6CFEC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6DADA0"}}, +"gTextureLakituCheckeredFlag18": {"output_dir": "checkeredflag", "rom_offset": "0x6D0E80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6DBD60"}}, +"gTextureLakituCheckeredFlag19": {"output_dir": "checkeredflag", "rom_offset": "0x6D1E40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6DCD20"}}, +"gTextureLakituCheckeredFlag20": {"output_dir": "checkeredflag", "rom_offset": "0x6D2E00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6DDCE0"}}, +"gTextureLakituCheckeredFlag21": {"output_dir": "checkeredflag", "rom_offset": "0x6D3DC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6DECA0"}}, +"gTextureLakituCheckeredFlag22": {"output_dir": "checkeredflag", "rom_offset": "0x6D4D80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6DFC60"}}, +"gTextureLakituCheckeredFlag23": {"output_dir": "checkeredflag", "rom_offset": "0x6D5D40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E0C20"}}, +"gTextureLakituCheckeredFlag24": {"output_dir": "checkeredflag", "rom_offset": "0x6D6D00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E1BE0"}}, +"gTextureLakituCheckeredFlag25": {"output_dir": "checkeredflag", "rom_offset": "0x6D7CC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E2BA0"}}, +"gTextureLakituCheckeredFlag26": {"output_dir": "checkeredflag", "rom_offset": "0x6D8C80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E3B60"}}, +"gTextureLakituCheckeredFlag27": {"output_dir": "checkeredflag", "rom_offset": "0x6D9C40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E4B20"}}, +"gTextureLakituCheckeredFlag28": {"output_dir": "checkeredflag", "rom_offset": "0x6DAC00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E5AE0"}}, +"gTextureLakituCheckeredFlag29": {"output_dir": "checkeredflag", "rom_offset": "0x6DBBC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E6AA0"}}, +"gTextureLakituCheckeredFlag30": {"output_dir": "checkeredflag", "rom_offset": "0x6DCB80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E7A60"}}, +"gTextureLakituCheckeredFlag31": {"output_dir": "checkeredflag", "rom_offset": "0x6DDB40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E8A20"}}, +"gTextureLakituCheckeredFlag32": {"output_dir": "checkeredflag", "rom_offset": "0x6DEB00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_checkered_flag", "jp.v11": {"rom_offset": "0x6E99E0"}} } diff --git a/assets/lakitu/finallap.json b/assets/lakitu/finallap.json index d3a89fbd54..636d61185b 100644 --- a/assets/lakitu/finallap.json +++ b/assets/lakitu/finallap.json @@ -1,19 +1,19 @@ { "common_tlut_lakitu_final_lap": {"output_dir": "finallap", "rom_offset": "0x132B50", "block_offset": "0x258D8", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0", "block_offset": "0x24E98"}}, -"gTextureLakituFinalLap01": {"output_dir": "finallap", "rom_offset": "0x6EF6C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x6FA5A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituFinalLap02": {"output_dir": "finallap", "rom_offset": "0x6F0680", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x6FB560", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituFinalLap03": {"output_dir": "finallap", "rom_offset": "0x6F1640", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x6FC520", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituFinalLap04": {"output_dir": "finallap", "rom_offset": "0x6F2600", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x6FD4E0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituFinalLap05": {"output_dir": "finallap", "rom_offset": "0x6F35C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x6FE4A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituFinalLap06": {"output_dir": "finallap", "rom_offset": "0x6F4580", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x6FF460", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituFinalLap07": {"output_dir": "finallap", "rom_offset": "0x6F5540", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x700420", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituFinalLap08": {"output_dir": "finallap", "rom_offset": "0x6F6500", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x7013E0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituFinalLap09": {"output_dir": "finallap", "rom_offset": "0x6F74C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x7023A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituFinalLap10": {"output_dir": "finallap", "rom_offset": "0x6F8480", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x703360", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituFinalLap11": {"output_dir": "finallap", "rom_offset": "0x6F9440", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x704320", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituFinalLap12": {"output_dir": "finallap", "rom_offset": "0x6FA400", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x7052E0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituFinalLap13": {"output_dir": "finallap", "rom_offset": "0x6FB3C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x7062A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituFinalLap14": {"output_dir": "finallap", "rom_offset": "0x6FC380", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x707260", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituFinalLap15": {"output_dir": "finallap", "rom_offset": "0x6FD340", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x708220", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituFinalLap16": {"output_dir": "finallap", "rom_offset": "0x6FE300", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x7091E0", "type": "bin", "size": "0xFC0"}} +"gTextureLakituFinalLap01": {"output_dir": "finallap", "rom_offset": "0x6EF6C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x6FA5A0"}}, +"gTextureLakituFinalLap02": {"output_dir": "finallap", "rom_offset": "0x6F0680", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x6FB560"}}, +"gTextureLakituFinalLap03": {"output_dir": "finallap", "rom_offset": "0x6F1640", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x6FC520"}}, +"gTextureLakituFinalLap04": {"output_dir": "finallap", "rom_offset": "0x6F2600", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x6FD4E0"}}, +"gTextureLakituFinalLap05": {"output_dir": "finallap", "rom_offset": "0x6F35C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x6FE4A0"}}, +"gTextureLakituFinalLap06": {"output_dir": "finallap", "rom_offset": "0x6F4580", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x6FF460"}}, +"gTextureLakituFinalLap07": {"output_dir": "finallap", "rom_offset": "0x6F5540", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x700420"}}, +"gTextureLakituFinalLap08": {"output_dir": "finallap", "rom_offset": "0x6F6500", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x7013E0"}}, +"gTextureLakituFinalLap09": {"output_dir": "finallap", "rom_offset": "0x6F74C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x7023A0"}}, +"gTextureLakituFinalLap10": {"output_dir": "finallap", "rom_offset": "0x6F8480", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x703360"}}, +"gTextureLakituFinalLap11": {"output_dir": "finallap", "rom_offset": "0x6F9440", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x704320"}}, +"gTextureLakituFinalLap12": {"output_dir": "finallap", "rom_offset": "0x6FA400", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x7052E0"}}, +"gTextureLakituFinalLap13": {"output_dir": "finallap", "rom_offset": "0x6FB3C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x7062A0"}}, +"gTextureLakituFinalLap14": {"output_dir": "finallap", "rom_offset": "0x6FC380", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x707260"}}, +"gTextureLakituFinalLap15": {"output_dir": "finallap", "rom_offset": "0x6FD340", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x708220"}}, +"gTextureLakituFinalLap16": {"output_dir": "finallap", "rom_offset": "0x6FE300", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_final_lap", "jp.v11": {"rom_offset": "0x7091E0"}} } diff --git a/assets/lakitu/fishing.json b/assets/lakitu/fishing.json index f044168a19..63fc5d28b7 100644 --- a/assets/lakitu/fishing.json +++ b/assets/lakitu/fishing.json @@ -1,7 +1,7 @@ { "common_tlut_lakitu_fishing": {"output_dir": "fishing", "rom_offset": "0x132B50", "block_offset": "0x25CD8", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0", "block_offset": "0x25298"}}, -"gTextureLakituFishing1": {"output_dir": "fishing", "rom_offset": "0x70EEC0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_fishing", "jp.v11": {"rom_offset": "0x719DA0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituFishing2": {"output_dir": "fishing", "rom_offset": "0x70FE80", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_fishing", "jp.v11": {"rom_offset": "0x71AD60", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituFishing3": {"output_dir": "fishing", "rom_offset": "0x710E40", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_fishing", "jp.v11": {"rom_offset": "0x71BD20", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituFishing4": {"output_dir": "fishing", "rom_offset": "0x711E00", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_fishing", "jp.v11": {"rom_offset": "0x71CCE0", "type": "bin", "size": "0xFC0"}} +"gTextureLakituFishing1": {"output_dir": "fishing", "rom_offset": "0x70EEC0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_fishing", "jp.v11": {"rom_offset": "0x719DA0"}}, +"gTextureLakituFishing2": {"output_dir": "fishing", "rom_offset": "0x70FE80", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_fishing", "jp.v11": {"rom_offset": "0x71AD60"}}, +"gTextureLakituFishing3": {"output_dir": "fishing", "rom_offset": "0x710E40", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_fishing", "jp.v11": {"rom_offset": "0x71BD20"}}, +"gTextureLakituFishing4": {"output_dir": "fishing", "rom_offset": "0x711E00", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_fishing", "jp.v11": {"rom_offset": "0x71CCE0"}} } diff --git a/assets/lakitu/nolights.json b/assets/lakitu/nolights.json index 4334b0d334..8d8d5e25a1 100644 --- a/assets/lakitu/nolights.json +++ b/assets/lakitu/nolights.json @@ -1,11 +1,11 @@ { "common_tlut_lakitu_no_lights": {"output_dir": "nolights", "rom_offset": "0x132B50", "block_offset": "0x24ED8", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0", "block_offset": "0x24498"}}, -"gTextureLakituNoLights1": {"output_dir": "nolights", "rom_offset": "0x6A0AC0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6AB9A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituNoLights2": {"output_dir": "nolights", "rom_offset": "0x6A1A80", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6AC960", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituNoLights3": {"output_dir": "nolights", "rom_offset": "0x6A2A40", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6AD920", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituNoLights4": {"output_dir": "nolights", "rom_offset": "0x6A3A00", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6AE8E0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituNoLights5": {"output_dir": "nolights", "rom_offset": "0x6A49C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6AF8A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituNoLights6": {"output_dir": "nolights", "rom_offset": "0x6A5980", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6B0860", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituNoLights7": {"output_dir": "nolights", "rom_offset": "0x6A6940", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6B1820", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituNoLights8": {"output_dir": "nolights", "rom_offset": "0x6A7900", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6B27E0", "type": "bin", "size": "0xFC0"}} +"gTextureLakituNoLights1": {"output_dir": "nolights", "rom_offset": "0x6A0AC0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6AB9A0"}}, +"gTextureLakituNoLights2": {"output_dir": "nolights", "rom_offset": "0x6A1A80", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6AC960"}}, +"gTextureLakituNoLights3": {"output_dir": "nolights", "rom_offset": "0x6A2A40", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6AD920"}}, +"gTextureLakituNoLights4": {"output_dir": "nolights", "rom_offset": "0x6A3A00", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6AE8E0"}}, +"gTextureLakituNoLights5": {"output_dir": "nolights", "rom_offset": "0x6A49C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6AF8A0"}}, +"gTextureLakituNoLights6": {"output_dir": "nolights", "rom_offset": "0x6A5980", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6B0860"}}, +"gTextureLakituNoLights7": {"output_dir": "nolights", "rom_offset": "0x6A6940", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6B1820"}}, +"gTextureLakituNoLights8": {"output_dir": "nolights", "rom_offset": "0x6A7900", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_no_lights", "jp.v11": {"rom_offset": "0x6B27E0"}} } diff --git a/assets/lakitu/redlights.json b/assets/lakitu/redlights.json index 8efc1022bf..9b89bcf2db 100644 --- a/assets/lakitu/redlights.json +++ b/assets/lakitu/redlights.json @@ -1,19 +1,19 @@ { "common_tlut_lakitu_red_lights": {"output_dir": "redlights", "rom_offset": "0x132B50", "block_offset": "0x250D8", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0", "block_offset": "0x24698"}}, -"gTextureLakituRedLights01": {"output_dir": "redlights", "rom_offset": "0x6A88C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B37A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituRedLights02": {"output_dir": "redlights", "rom_offset": "0x6A9880", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B4760", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituRedLights03": {"output_dir": "redlights", "rom_offset": "0x6AA840", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B5720", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituRedLights04": {"output_dir": "redlights", "rom_offset": "0x6AB800", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B66E0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituRedLights05": {"output_dir": "redlights", "rom_offset": "0x6AC7C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B76A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituRedLights06": {"output_dir": "redlights", "rom_offset": "0x6AD780", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B8660", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituRedLights07": {"output_dir": "redlights", "rom_offset": "0x6AE740", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B9620", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituRedLights08": {"output_dir": "redlights", "rom_offset": "0x6AF700", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6BA5E0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituRedLights09": {"output_dir": "redlights", "rom_offset": "0x6B06C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6BB5A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituRedLights10": {"output_dir": "redlights", "rom_offset": "0x6B1680", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6BC560", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituRedLights11": {"output_dir": "redlights", "rom_offset": "0x6B2640", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6BD520", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituRedLights12": {"output_dir": "redlights", "rom_offset": "0x6B3600", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6BE4E0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituRedLights13": {"output_dir": "redlights", "rom_offset": "0x6B45C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6BF4A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituRedLights14": {"output_dir": "redlights", "rom_offset": "0x6B5580", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6C0460", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituRedLights15": {"output_dir": "redlights", "rom_offset": "0x6B6540", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6C1420", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituRedLights16": {"output_dir": "redlights", "rom_offset": "0x6B7500", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6C23E0", "type": "bin", "size": "0xFC0"}} +"gTextureLakituRedLights01": {"output_dir": "redlights", "rom_offset": "0x6A88C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B37A0"}}, +"gTextureLakituRedLights02": {"output_dir": "redlights", "rom_offset": "0x6A9880", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B4760"}}, +"gTextureLakituRedLights03": {"output_dir": "redlights", "rom_offset": "0x6AA840", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B5720"}}, +"gTextureLakituRedLights04": {"output_dir": "redlights", "rom_offset": "0x6AB800", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B66E0"}}, +"gTextureLakituRedLights05": {"output_dir": "redlights", "rom_offset": "0x6AC7C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B76A0"}}, +"gTextureLakituRedLights06": {"output_dir": "redlights", "rom_offset": "0x6AD780", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B8660"}}, +"gTextureLakituRedLights07": {"output_dir": "redlights", "rom_offset": "0x6AE740", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6B9620"}}, +"gTextureLakituRedLights08": {"output_dir": "redlights", "rom_offset": "0x6AF700", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6BA5E0"}}, +"gTextureLakituRedLights09": {"output_dir": "redlights", "rom_offset": "0x6B06C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6BB5A0"}}, +"gTextureLakituRedLights10": {"output_dir": "redlights", "rom_offset": "0x6B1680", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6BC560"}}, +"gTextureLakituRedLights11": {"output_dir": "redlights", "rom_offset": "0x6B2640", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6BD520"}}, +"gTextureLakituRedLights12": {"output_dir": "redlights", "rom_offset": "0x6B3600", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6BE4E0"}}, +"gTextureLakituRedLights13": {"output_dir": "redlights", "rom_offset": "0x6B45C0", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6BF4A0"}}, +"gTextureLakituRedLights14": {"output_dir": "redlights", "rom_offset": "0x6B5580", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6C0460"}}, +"gTextureLakituRedLights15": {"output_dir": "redlights", "rom_offset": "0x6B6540", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6C1420"}}, +"gTextureLakituRedLights16": {"output_dir": "redlights", "rom_offset": "0x6B7500", "width": 56, "height": 72, "type": "ci8", "tlut": "common_tlut_lakitu_red_lights", "jp.v11": {"rom_offset": "0x6C23E0"}} } diff --git a/assets/lakitu/reverse.json b/assets/lakitu/reverse.json index 631f433d80..aa5c57c4e8 100644 --- a/assets/lakitu/reverse.json +++ b/assets/lakitu/reverse.json @@ -1,19 +1,19 @@ { "common_tlut_lakitu_reverse": {"output_dir": "reverse", "rom_offset": "0x132B50", "block_offset": "0x25AD8", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0", "block_offset": "0x25098"}}, -"gTextureLakituReverse01": {"output_dir": "reverse", "rom_offset": "0x6FF2C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x70A1A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituReverse02": {"output_dir": "reverse", "rom_offset": "0x700280", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x70B160", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituReverse03": {"output_dir": "reverse", "rom_offset": "0x701240", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x70C120", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituReverse04": {"output_dir": "reverse", "rom_offset": "0x702200", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x70D0E0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituReverse05": {"output_dir": "reverse", "rom_offset": "0x7031C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x70E0A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituReverse06": {"output_dir": "reverse", "rom_offset": "0x704180", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x70F060", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituReverse07": {"output_dir": "reverse", "rom_offset": "0x705140", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x710020", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituReverse08": {"output_dir": "reverse", "rom_offset": "0x706100", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x710FE0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituReverse09": {"output_dir": "reverse", "rom_offset": "0x7070C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x711FA0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituReverse10": {"output_dir": "reverse", "rom_offset": "0x708080", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x712F60", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituReverse11": {"output_dir": "reverse", "rom_offset": "0x709040", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x713F20", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituReverse12": {"output_dir": "reverse", "rom_offset": "0x70A000", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x714EE0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituReverse13": {"output_dir": "reverse", "rom_offset": "0x70AFC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x715EA0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituReverse14": {"output_dir": "reverse", "rom_offset": "0x70BF80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x716E60", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituReverse15": {"output_dir": "reverse", "rom_offset": "0x70CF40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x717E20", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituReverse16": {"output_dir": "reverse", "rom_offset": "0x70DF00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x718DE0", "type": "bin", "size": "0xFC0"}} +"gTextureLakituReverse01": {"output_dir": "reverse", "rom_offset": "0x6FF2C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x70A1A0"}}, +"gTextureLakituReverse02": {"output_dir": "reverse", "rom_offset": "0x700280", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x70B160"}}, +"gTextureLakituReverse03": {"output_dir": "reverse", "rom_offset": "0x701240", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x70C120"}}, +"gTextureLakituReverse04": {"output_dir": "reverse", "rom_offset": "0x702200", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x70D0E0"}}, +"gTextureLakituReverse05": {"output_dir": "reverse", "rom_offset": "0x7031C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x70E0A0"}}, +"gTextureLakituReverse06": {"output_dir": "reverse", "rom_offset": "0x704180", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x70F060"}}, +"gTextureLakituReverse07": {"output_dir": "reverse", "rom_offset": "0x705140", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x710020"}}, +"gTextureLakituReverse08": {"output_dir": "reverse", "rom_offset": "0x706100", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x710FE0"}}, +"gTextureLakituReverse09": {"output_dir": "reverse", "rom_offset": "0x7070C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x711FA0"}}, +"gTextureLakituReverse10": {"output_dir": "reverse", "rom_offset": "0x708080", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x712F60"}}, +"gTextureLakituReverse11": {"output_dir": "reverse", "rom_offset": "0x709040", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x713F20"}}, +"gTextureLakituReverse12": {"output_dir": "reverse", "rom_offset": "0x70A000", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x714EE0"}}, +"gTextureLakituReverse13": {"output_dir": "reverse", "rom_offset": "0x70AFC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x715EA0"}}, +"gTextureLakituReverse14": {"output_dir": "reverse", "rom_offset": "0x70BF80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x716E60"}}, +"gTextureLakituReverse15": {"output_dir": "reverse", "rom_offset": "0x70CF40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x717E20"}}, +"gTextureLakituReverse16": {"output_dir": "reverse", "rom_offset": "0x70DF00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_reverse", "jp.v11": {"rom_offset": "0x718DE0"}} } diff --git a/assets/lakitu/secondlap.json b/assets/lakitu/secondlap.json index 19ad8872af..9f0815794d 100644 --- a/assets/lakitu/secondlap.json +++ b/assets/lakitu/secondlap.json @@ -1,19 +1,19 @@ { "common_tlut_lakitu_second_lap": {"output_dir": "secondlap", "rom_offset": "0x132B50", "block_offset": "0x256D8", "width": 16, "height": 16, "type": "rgba16", "jp.v11": {"rom_offset": "0x1323A0", "block_offset": "0x24C98"}}, -"gTextureLakituSecondLap01": {"output_dir": "secondlap", "rom_offset": "0x6DFAC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6EA9A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituSecondLap02": {"output_dir": "secondlap", "rom_offset": "0x6E0A80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6EB960", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituSecondLap03": {"output_dir": "secondlap", "rom_offset": "0x6E1A40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6EC920", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituSecondLap04": {"output_dir": "secondlap", "rom_offset": "0x6E2A00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6ED8E0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituSecondLap05": {"output_dir": "secondlap", "rom_offset": "0x6E39C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6EE8A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituSecondLap06": {"output_dir": "secondlap", "rom_offset": "0x6E4980", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6EF860", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituSecondLap07": {"output_dir": "secondlap", "rom_offset": "0x6E5940", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F0820", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituSecondLap08": {"output_dir": "secondlap", "rom_offset": "0x6E6900", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F17E0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituSecondLap09": {"output_dir": "secondlap", "rom_offset": "0x6E78C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F27A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituSecondLap10": {"output_dir": "secondlap", "rom_offset": "0x6E8880", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F3760", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituSecondLap11": {"output_dir": "secondlap", "rom_offset": "0x6E9840", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F4720", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituSecondLap12": {"output_dir": "secondlap", "rom_offset": "0x6EA800", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F56E0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituSecondLap13": {"output_dir": "secondlap", "rom_offset": "0x6EB7C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F66A0", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituSecondLap14": {"output_dir": "secondlap", "rom_offset": "0x6EC780", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F7660", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituSecondLap15": {"output_dir": "secondlap", "rom_offset": "0x6ED740", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F8620", "type": "bin", "size": "0xFC0"}}, -"gTextureLakituSecondLap16": {"output_dir": "secondlap", "rom_offset": "0x6EE700", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F95E0", "type": "bin", "size": "0xFC0"}} +"gTextureLakituSecondLap01": {"output_dir": "secondlap", "rom_offset": "0x6DFAC0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6EA9A0"}}, +"gTextureLakituSecondLap02": {"output_dir": "secondlap", "rom_offset": "0x6E0A80", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6EB960"}}, +"gTextureLakituSecondLap03": {"output_dir": "secondlap", "rom_offset": "0x6E1A40", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6EC920"}}, +"gTextureLakituSecondLap04": {"output_dir": "secondlap", "rom_offset": "0x6E2A00", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6ED8E0"}}, +"gTextureLakituSecondLap05": {"output_dir": "secondlap", "rom_offset": "0x6E39C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6EE8A0"}}, +"gTextureLakituSecondLap06": {"output_dir": "secondlap", "rom_offset": "0x6E4980", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6EF860"}}, +"gTextureLakituSecondLap07": {"output_dir": "secondlap", "rom_offset": "0x6E5940", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F0820"}}, +"gTextureLakituSecondLap08": {"output_dir": "secondlap", "rom_offset": "0x6E6900", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F17E0"}}, +"gTextureLakituSecondLap09": {"output_dir": "secondlap", "rom_offset": "0x6E78C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F27A0"}}, +"gTextureLakituSecondLap10": {"output_dir": "secondlap", "rom_offset": "0x6E8880", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F3760"}}, +"gTextureLakituSecondLap11": {"output_dir": "secondlap", "rom_offset": "0x6E9840", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F4720"}}, +"gTextureLakituSecondLap12": {"output_dir": "secondlap", "rom_offset": "0x6EA800", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F56E0"}}, +"gTextureLakituSecondLap13": {"output_dir": "secondlap", "rom_offset": "0x6EB7C0", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F66A0"}}, +"gTextureLakituSecondLap14": {"output_dir": "secondlap", "rom_offset": "0x6EC780", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F7660"}}, +"gTextureLakituSecondLap15": {"output_dir": "secondlap", "rom_offset": "0x6ED740", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F8620"}}, +"gTextureLakituSecondLap16": {"output_dir": "secondlap", "rom_offset": "0x6EE700", "width": 72, "height": 56, "type": "ci8", "tlut": "common_tlut_lakitu_second_lap", "jp.v11": {"rom_offset": "0x6F95E0"}} } From 4c9583d3004387420376c1f2c0d42c8a85d449aa Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 12:22:59 -0700 Subject: [PATCH 33/41] courses: coalesce adjacent VERSION_JP guards 567 places had a guard block closing and the identical guard reopening on the very next line, one display list entry at a time. Merging them removes 1,134 lines without touching a line of guarded code: the same entries survive under the same condition, in the same order. Only blocks with no `#else` are merged. With one, the merge would have to interleave the two branches, and declaration order is data layout here. The 33 pairs of that shape are left alone. All four ROMs still byte-identical. Co-Authored-By: Claude Fable 5 --- courses/banshee_boardwalk/course_data.c | 34 -- courses/bowsers_castle/course_data.c | 66 ---- courses/choco_mountain/course_data.c | 48 --- courses/dks_jungle_parkway/course_data.c | 10 - courses/kalimari_desert/course_data.c | 26 -- courses/koopa_troopa_beach/course_data.c | 36 -- courses/luigi_raceway/course_data.c | 446 ----------------------- courses/mario_raceway/course_data.c | 74 ---- courses/moo_moo_farm/course_data.c | 20 - courses/royal_raceway/course_data.c | 154 -------- courses/sherbet_land/course_data.c | 22 -- courses/toads_turnpike/course_data.c | 38 -- courses/wario_stadium/course_data.c | 102 ------ courses/yoshi_valley/course_data.c | 58 --- 14 files changed, 1134 deletions(-) diff --git a/courses/banshee_boardwalk/course_data.c b/courses/banshee_boardwalk/course_data.c index 5057372b36..21caa7fcc4 100644 --- a/courses/banshee_boardwalk/course_data.c +++ b/courses/banshee_boardwalk/course_data.c @@ -165,20 +165,10 @@ Gfx d_course_banshee_boardwalk_dl_358[] = { #endif #ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_5278), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_52F8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2100), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_21D8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_dl_38), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_dl_68), #endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_C98), @@ -349,8 +339,6 @@ Gfx d_course_banshee_boardwalk_dl_7C0[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_930), #ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1008), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1108), #endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_11D8), @@ -698,8 +686,6 @@ Gfx d_course_banshee_boardwalk_dl_1160[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_A50), #ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_AE8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_F80), #endif gsSPEndDisplayList(), @@ -796,8 +782,6 @@ Gfx d_course_banshee_boardwalk_dl_13F0[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_A50), #ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_AE8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_F80), #endif gsSPEndDisplayList(), @@ -982,8 +966,6 @@ Gfx d_course_banshee_boardwalk_dl_18D8[] = { gsSPDisplayList(d_course_banshee_boardwalk_dl_68), #ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_8A8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_930), #endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_A50), @@ -1092,11 +1074,7 @@ Gfx d_course_banshee_boardwalk_dl_1BA0[] = { gsSPDisplayList(d_course_banshee_boardwalk_dl_68), #ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_BC8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_8A8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_930), #endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_9B8), @@ -1367,14 +1345,8 @@ Gfx d_course_banshee_boardwalk_dl_22D8[] = { #endif #ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_51E0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_2058), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_dl_38), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_dl_68), #endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_13E0), @@ -2400,11 +2372,7 @@ Gfx d_course_banshee_boardwalk_dl_3EF0[] = { gsSPDisplayList(d_course_banshee_boardwalk_dl_68), #ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_C98), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_D30), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_DF0), #endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1008), @@ -2504,8 +2472,6 @@ Gfx d_course_banshee_boardwalk_dl_4188[] = { gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_C98), #ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_D30), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_DF0), #endif gsSPDisplayList(d_course_banshee_boardwalk_packed_dl_1108), diff --git a/courses/bowsers_castle/course_data.c b/courses/bowsers_castle/course_data.c index bf024e308b..21bbdaf1b1 100644 --- a/courses/bowsers_castle/course_data.c +++ b/courses/bowsers_castle/course_data.c @@ -61,8 +61,6 @@ Gfx d_course_bowsers_castle_dl_230[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_9438), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_94D8), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_6A90), @@ -78,11 +76,7 @@ Gfx d_course_bowsers_castle_dl_230[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_27E8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2708), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_5448), @@ -117,15 +111,11 @@ Gfx d_course_bowsers_castle_dl_398[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_93A0), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_30C8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_94D8), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_84A8), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8D10), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_23E0), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_5448), gsSPDisplayList(d_course_bowsers_castle_packed_dl_53E0), @@ -204,11 +194,7 @@ Gfx d_course_bowsers_castle_dl_640[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_2310), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_27E8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2708), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_5448), gsSPDisplayList(d_course_bowsers_castle_packed_dl_53E0), @@ -420,8 +406,6 @@ Gfx d_course_bowsers_castle_dl_D20[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_2310), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_27E8), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_5448), gsSPDisplayList(d_course_bowsers_castle_packed_dl_53E0), @@ -532,8 +516,6 @@ Gfx d_course_bowsers_castle_dl_1040[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_27E8), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_5448), @@ -1728,14 +1710,8 @@ Gfx d_course_bowsers_castle_dl_3508[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8FA0), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2290), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2920), @@ -1833,17 +1809,9 @@ Gfx d_course_bowsers_castle_dl_37D8[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2290), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2610), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2708), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_5300), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_51E8), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_54E8), @@ -1851,8 +1819,6 @@ Gfx d_course_bowsers_castle_dl_37D8[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_5678), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_6E48), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_6CB8), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_70D0), @@ -1876,8 +1842,6 @@ Gfx d_course_bowsers_castle_dl_38F8[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2920), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2770), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2598), @@ -1901,8 +1865,6 @@ Gfx d_course_bowsers_castle_dl_38F8[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_7418), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A10), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7B50), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_7998), @@ -1985,8 +1947,6 @@ Gfx d_course_bowsers_castle_dl_3C08[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_2920), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2770), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2610), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2698), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_5378), gsSPDisplayList(d_course_bowsers_castle_packed_dl_5300), @@ -2007,8 +1967,6 @@ Gfx d_course_bowsers_castle_dl_3D78[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8FA0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_8E78), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2290), @@ -2128,15 +2086,11 @@ Gfx d_course_bowsers_castle_dl_40F0[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2598), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2610), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2698), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2708), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_56F0), @@ -2156,8 +2110,6 @@ Gfx d_course_bowsers_castle_dl_40F0[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_7B50), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7BB8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7C30), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_76C0), @@ -2187,8 +2139,6 @@ Gfx d_course_bowsers_castle_dl_4278[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_7180), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A10), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7B50), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_7C30), @@ -2263,15 +2213,11 @@ Gfx d_course_bowsers_castle_dl_45D8[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2598), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2610), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2698), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2708), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_56F0), gsSPDisplayList(d_course_bowsers_castle_packed_dl_55E8), @@ -2282,8 +2228,6 @@ Gfx d_course_bowsers_castle_dl_45D8[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A78), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7AD8), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7BB8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7C30), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_7898), gsSPDisplayList(d_course_bowsers_castle_packed_dl_7908), @@ -2300,8 +2244,6 @@ Gfx d_course_bowsers_castle_dl_4748[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_2128), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2598), @@ -2318,8 +2260,6 @@ Gfx d_course_bowsers_castle_dl_4748[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_7180), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7A10), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_7B50), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_76C0), @@ -2342,8 +2282,6 @@ Gfx d_course_bowsers_castle_dl_4820[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_6A90), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_94D8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_84A8), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_87E8), @@ -2505,8 +2443,6 @@ Gfx d_course_bowsers_castle_dl_4CE8[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_8C78), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_8D10), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_8DA8), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2378), @@ -2517,8 +2453,6 @@ Gfx d_course_bowsers_castle_dl_4CE8[] = { gsSPDisplayList(d_course_bowsers_castle_packed_dl_2188), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2228), #ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_2528), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_bowsers_castle_packed_dl_27E8), #endif gsSPDisplayList(d_course_bowsers_castle_packed_dl_2598), gsSPDisplayList(d_course_bowsers_castle_packed_dl_2610), diff --git a/courses/choco_mountain/course_data.c b/courses/choco_mountain/course_data.c index f8c7ef4707..fd48a75f2f 100644 --- a/courses/choco_mountain/course_data.c +++ b/courses/choco_mountain/course_data.c @@ -437,11 +437,7 @@ Gfx d_course_choco_mountain_dl_A28[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_4970), #ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4618), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4690), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_46F0), #endif gsDPTileSync(), @@ -461,11 +457,7 @@ Gfx d_course_choco_mountain_dl_A28[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_1A48), #ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_9B0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_17E0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_AF8), #endif gsSPEndDisplayList(), @@ -935,11 +927,7 @@ Gfx d_course_choco_mountain_dl_15E8[] = { gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), #ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_DD0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_8F0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_1A48), #endif gsSPDisplayList(d_course_choco_mountain_packed_dl_9B0), @@ -1620,8 +1608,6 @@ Gfx d_course_choco_mountain_dl_26D8[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_52C8), #ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), #endif gsDPTileSync(), @@ -1654,8 +1640,6 @@ Gfx d_course_choco_mountain_dl_2780[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_5338), #ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), #endif gsDPTileSync(), @@ -1687,8 +1671,6 @@ Gfx d_course_choco_mountain_dl_2840[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_52C8), #ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), #endif gsDPTileSync(), @@ -1750,11 +1732,7 @@ Gfx d_course_choco_mountain_dl_29B8[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_5338), #ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_53D8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), #endif gsDPTileSync(), @@ -1770,8 +1748,6 @@ Gfx d_course_choco_mountain_dl_29B8[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_3DD8), #ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_3CF0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_1018), #endif gsSPDisplayList(d_course_choco_mountain_packed_dl_3A80), @@ -1792,11 +1768,7 @@ Gfx d_course_choco_mountain_dl_2A88[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_5338), #ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_53D8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), #endif gsDPTileSync(), @@ -2191,8 +2163,6 @@ Gfx d_course_choco_mountain_dl_3438[] = { gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), #ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4D90), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_51D8), #endif gsSPDisplayList(d_course_choco_mountain_packed_dl_5258), @@ -2203,8 +2173,6 @@ Gfx d_course_choco_mountain_dl_3438[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_4EB0), #ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4F30), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4FC0), #endif gsDPTileSync(), @@ -2213,11 +2181,7 @@ Gfx d_course_choco_mountain_dl_3438[] = { gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x007C, 0x007C), #ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_2AE8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_38B8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_F68), #endif gsSPDisplayList(d_course_choco_mountain_packed_dl_3670), @@ -2346,15 +2310,11 @@ Gfx d_course_choco_mountain_dl_37D0[] = { gsDPSetTileSize(G_TX_RENDERTILE, 0, 0, 0x00FC, 0x007C), #ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_4D90), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_51D8), #endif gsSPDisplayList(d_course_choco_mountain_packed_dl_5258), #ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_52C8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), #endif gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), @@ -2368,14 +2328,8 @@ Gfx d_course_choco_mountain_dl_37D0[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_17E0), #ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_2AE8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_38B8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_F68), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_3670), #endif gsSPDisplayList(d_course_choco_mountain_packed_dl_35B0), @@ -2435,8 +2389,6 @@ Gfx d_course_choco_mountain_dl_39A8[] = { gsSPDisplayList(d_course_choco_mountain_packed_dl_5258), #ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_52C8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_choco_mountain_packed_dl_5148), #endif gsSPDisplayList(d_course_choco_mountain_packed_dl_4E40), diff --git a/courses/dks_jungle_parkway/course_data.c b/courses/dks_jungle_parkway/course_data.c index c33119181d..cbc62de9ad 100644 --- a/courses/dks_jungle_parkway/course_data.c +++ b/courses/dks_jungle_parkway/course_data.c @@ -545,8 +545,6 @@ Gfx d_course_dks_jungle_parkway_dl_EF0[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_7E0), #ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_29F0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2788), #endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2E28), @@ -742,8 +740,6 @@ Gfx d_course_dks_jungle_parkway_dl_1478[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_7E0), #ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_29F0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2788), #endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2E28), @@ -938,8 +934,6 @@ Gfx d_course_dks_jungle_parkway_dl_1A00[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_7E0), #ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_29F0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2788), #endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2D60), @@ -1521,8 +1515,6 @@ Gfx d_course_dks_jungle_parkway_dl_2AC0[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_B68), #ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_918), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_29F0), #endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2D00), @@ -3401,8 +3393,6 @@ Gfx d_course_dks_jungle_parkway_dl_6048[] = { gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2788), #ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2570), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_2E28), #endif gsSPDisplayList(d_course_dks_jungle_parkway_packed_dl_24B0), diff --git a/courses/kalimari_desert/course_data.c b/courses/kalimari_desert/course_data.c index 20b5810347..c85b5a18f3 100644 --- a/courses/kalimari_desert/course_data.c +++ b/courses/kalimari_desert/course_data.c @@ -687,8 +687,6 @@ Gfx d_course_kalimari_desert_dl_18C8[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_9210), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9280), #ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_93F0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_8EC8), #endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_9958), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9A68), @@ -713,8 +711,6 @@ Gfx d_course_kalimari_desert_dl_1A58[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_5D30), gsSPDisplayList(d_course_kalimari_desert_packed_dl_71D8), #ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_72B8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_9210), #endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_9280), gsSPEndDisplayList(), @@ -800,14 +796,8 @@ Gfx d_course_kalimari_desert_dl_1D48[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_8EC8), #ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2430), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_9958), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_9A68), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2710), #endif gsSPEndDisplayList(), @@ -837,8 +827,6 @@ Gfx d_course_kalimari_desert_dl_1E80[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_93F0), gsSPDisplayList(d_course_kalimari_desert_packed_dl_8EC8), #ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2068), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2430), #endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_9958), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9A68), @@ -1009,19 +997,13 @@ Gfx d_course_kalimari_desert_dl_2458[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_93F0), #ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_8EC8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_9068), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2430), #endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_9958), gsSPDisplayList(d_course_kalimari_desert_packed_dl_9A68), #ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2598), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2710), #endif gsSPEndDisplayList(), @@ -2253,8 +2235,6 @@ Gfx d_course_kalimari_desert_dl_4FB0[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_1F78), #ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2130), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2808), #endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_9630), @@ -2413,8 +2393,6 @@ Gfx d_course_kalimari_desert_dl_5470[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_1F78), #ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2130), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2808), #endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_96A8), @@ -2441,8 +2419,6 @@ Gfx d_course_kalimari_desert_dl_55C8[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_A3D8), #ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_9DC0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_9D48), #endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_3568), @@ -2469,8 +2445,6 @@ Gfx d_course_kalimari_desert_dl_55C8[] = { gsSPDisplayList(d_course_kalimari_desert_packed_dl_74A8), #ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_1F78), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_kalimari_desert_packed_dl_2130), #endif gsSPDisplayList(d_course_kalimari_desert_packed_dl_2808), diff --git a/courses/koopa_troopa_beach/course_data.c b/courses/koopa_troopa_beach/course_data.c index b24b7e8e23..43309128ae 100644 --- a/courses/koopa_troopa_beach/course_data.c +++ b/courses/koopa_troopa_beach/course_data.c @@ -666,8 +666,6 @@ Gfx d_course_koopa_troopa_beach_dl_1040[] = { Gfx d_course_koopa_troopa_beach_dl_10D0[] = { #ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_2698), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_CC0), #endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_BD8), @@ -690,8 +688,6 @@ Gfx d_course_koopa_troopa_beach_dl_10D0[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6EB8), #ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6F30), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8870), #endif gsSPEndDisplayList(), @@ -740,8 +736,6 @@ Gfx d_course_koopa_troopa_beach_dl_1218[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3DE0), #ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5C88), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5D50), #endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_5EB0), @@ -754,8 +748,6 @@ Gfx d_course_koopa_troopa_beach_dl_1218[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8468), #ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_86B0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6EB8), #endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6F30), @@ -940,8 +932,6 @@ Gfx d_course_koopa_troopa_beach_dl_1708[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8468), #ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_86B0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6EB8), #endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6F30), @@ -3029,8 +3019,6 @@ Gfx d_course_koopa_troopa_beach_dl_4E70[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7A98), #ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7DB0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7E48), #endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8510), @@ -3133,8 +3121,6 @@ Gfx d_course_koopa_troopa_beach_dl_5120[] = { Gfx d_course_koopa_troopa_beach_dl_51C8[] = { #ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_2398), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_858), #endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_928), @@ -3149,8 +3135,6 @@ Gfx d_course_koopa_troopa_beach_dl_51C8[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4490), #ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6718), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_76C0), #endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7A98), @@ -4354,8 +4338,6 @@ Gfx d_course_koopa_troopa_beach_dl_71C8[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4490), #ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_67A0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_6810), #endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7A98), @@ -4401,8 +4383,6 @@ Gfx d_course_koopa_troopa_beach_dl_7338[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_3ED8), #ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4770), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_47E0), #endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_4920), @@ -4415,8 +4395,6 @@ Gfx d_course_koopa_troopa_beach_dl_7338[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7A98), #ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7DB0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7E48), #endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8D08), @@ -5769,8 +5747,6 @@ Gfx d_course_koopa_troopa_beach_dl_9798[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_45C8), #ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_80F8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8200), #endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_86B0), @@ -5936,8 +5912,6 @@ Gfx d_course_koopa_troopa_beach_dl_9C38[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_D70), #ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_2638), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_25C8), #endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_1590), @@ -5954,14 +5928,8 @@ Gfx d_course_koopa_troopa_beach_dl_9C38[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_45C8), #ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7F70), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8028), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_80F8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8200), #endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_86B0), @@ -6140,11 +6108,7 @@ Gfx d_course_koopa_troopa_beach_dl_A0D0[] = { gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_7F70), #ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8028), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_80F8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_8200), #endif gsSPDisplayList(d_course_koopa_troopa_beach_packed_dl_86B0), diff --git a/courses/luigi_raceway/course_data.c b/courses/luigi_raceway/course_data.c index 699d467f28..c0c0d0db44 100644 --- a/courses/luigi_raceway/course_data.c +++ b/courses/luigi_raceway/course_data.c @@ -101,16 +101,12 @@ Gfx d_course_luigi_raceway_dl_328[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_2130), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_2B58), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_AC70), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_33C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_3448), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_B530), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_B590), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_39C8), @@ -119,17 +115,9 @@ Gfx d_course_luigi_raceway_dl_328[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), @@ -139,11 +127,7 @@ Gfx d_course_luigi_raceway_dl_328[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B10), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7CF0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7D60), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), @@ -156,14 +140,8 @@ Gfx d_course_luigi_raceway_dl_328[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_4540), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), @@ -180,8 +158,6 @@ Gfx d_course_luigi_raceway_dl_480[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_A688), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A620), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A7A8), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_A2A8), @@ -196,14 +172,8 @@ Gfx d_course_luigi_raceway_dl_480[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6EF0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), @@ -217,20 +187,10 @@ Gfx d_course_luigi_raceway_dl_480[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7DD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7E50), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F68), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_8AB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8B18), @@ -238,8 +198,6 @@ Gfx d_course_luigi_raceway_dl_480[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), @@ -343,11 +301,7 @@ Gfx d_course_luigi_raceway_dl_9F8[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_3448), gsSPDisplayList(d_course_luigi_raceway_packed_dl_34C8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_B590), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_B600), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_B948), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), @@ -355,25 +309,15 @@ Gfx d_course_luigi_raceway_dl_9F8[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7CF0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7D60), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7DD8), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), @@ -383,14 +327,8 @@ Gfx d_course_luigi_raceway_dl_9F8[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_45B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4540), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), gsSPEndDisplayList(), @@ -453,20 +391,10 @@ Gfx d_course_luigi_raceway_dl_B48[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7DD8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F68), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_8A58), @@ -476,8 +404,6 @@ Gfx d_course_luigi_raceway_dl_B48[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_8D88), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), @@ -489,8 +415,6 @@ Gfx d_course_luigi_raceway_dl_B48[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), #endif gsSPEndDisplayList(), @@ -576,11 +500,7 @@ Gfx d_course_luigi_raceway_dl_1058[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_A7A8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A430), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A490), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A4F8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_B470), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_3448), @@ -593,26 +513,12 @@ Gfx d_course_luigi_raceway_dl_1058[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7BF8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7CF0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A1B0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_8448), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), @@ -621,17 +527,9 @@ Gfx d_course_luigi_raceway_dl_1058[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_45B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4540), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), #endif gsSPEndDisplayList(), @@ -649,8 +547,6 @@ Gfx d_course_luigi_raceway_dl_1198[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_23E0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2368), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A7A8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A430), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_A490), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A4F8), @@ -668,8 +564,6 @@ Gfx d_course_luigi_raceway_dl_1198[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_49B8), @@ -680,28 +574,16 @@ Gfx d_course_luigi_raceway_dl_1198[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7DD8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8448), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_80B0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_8A58), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8AB8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8D88), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_53E0), @@ -709,8 +591,6 @@ Gfx d_course_luigi_raceway_dl_1198[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), #endif gsSPEndDisplayList(), @@ -780,17 +660,9 @@ Gfx d_course_luigi_raceway_dl_16D8[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_2560), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A810), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A430), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_21A8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A4F8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A558), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_B470), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_B4D0), @@ -798,14 +670,8 @@ Gfx d_course_luigi_raceway_dl_16D8[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_35D0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_B678), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_B408), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_B948), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), @@ -813,39 +679,19 @@ Gfx d_course_luigi_raceway_dl_16D8[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6EF0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4A28), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B10), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7B80), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7BF8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A150), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8448), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), @@ -854,21 +700,13 @@ Gfx d_course_luigi_raceway_dl_16D8[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_45B8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_4540), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8AB8), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), #endif gsSPEndDisplayList(), @@ -904,8 +742,6 @@ Gfx d_course_luigi_raceway_dl_1888[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_B408), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_B948), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), @@ -921,11 +757,7 @@ Gfx d_course_luigi_raceway_dl_1888[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_67D0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_9098), @@ -937,8 +769,6 @@ Gfx d_course_luigi_raceway_dl_1888[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_9960), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4A28), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B10), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), @@ -949,26 +779,12 @@ Gfx d_course_luigi_raceway_dl_1888[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_A1B0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8448), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_80B0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8128), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), @@ -986,11 +802,7 @@ Gfx d_course_luigi_raceway_dl_1888[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), #endif gsSPEndDisplayList(), @@ -999,8 +811,6 @@ Gfx d_course_luigi_raceway_dl_1888[] = { Gfx d_course_luigi_raceway_dl_1B00[] = { #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1AC8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1A28), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_2368), @@ -1111,11 +921,7 @@ Gfx d_course_luigi_raceway_dl_1C78[] = { Gfx d_course_luigi_raceway_dl_1E30[] = { #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D68), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D00), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_A6E8), @@ -1131,8 +937,6 @@ Gfx d_course_luigi_raceway_dl_1E30[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_B408), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), @@ -1141,28 +945,16 @@ Gfx d_course_luigi_raceway_dl_1E30[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7B80), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7BF8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A150), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8448), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), @@ -1174,14 +966,8 @@ Gfx d_course_luigi_raceway_dl_1E30[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), #endif gsSPEndDisplayList(), @@ -1195,8 +981,6 @@ Gfx d_course_luigi_raceway_dl_1FD0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1BD8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A6E8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A688), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_2368), gsSPDisplayList(d_course_luigi_raceway_packed_dl_2560), @@ -1208,8 +992,6 @@ Gfx d_course_luigi_raceway_dl_1FD0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_B408), gsSPDisplayList(d_course_luigi_raceway_packed_dl_B198), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), @@ -1220,11 +1002,7 @@ Gfx d_course_luigi_raceway_dl_1FD0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6878), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_93C8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_9340), @@ -1236,14 +1014,8 @@ Gfx d_course_luigi_raceway_dl_1FD0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7C80), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A150), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_80B0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8128), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), @@ -1261,11 +1033,7 @@ Gfx d_course_luigi_raceway_dl_1FD0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), #endif gsSPEndDisplayList(), @@ -1366,18 +1134,12 @@ Gfx d_course_luigi_raceway_dl_2518[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7B80), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7BF8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A0F0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), @@ -1387,11 +1149,7 @@ Gfx d_course_luigi_raceway_dl_2518[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_84C8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_528), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), @@ -1413,8 +1171,6 @@ Gfx d_course_luigi_raceway_dl_2658[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A688), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A620), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_2560), @@ -1433,8 +1189,6 @@ Gfx d_course_luigi_raceway_dl_2658[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_B200), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), @@ -1446,11 +1200,7 @@ Gfx d_course_luigi_raceway_dl_2658[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6680), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7440), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B10), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), @@ -1460,21 +1210,13 @@ Gfx d_course_luigi_raceway_dl_2658[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_A150), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8128), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_85F8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8528), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_84C8), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), @@ -1491,11 +1233,7 @@ Gfx d_course_luigi_raceway_dl_2658[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), #endif gsSPEndDisplayList(), @@ -1527,8 +1265,6 @@ Gfx d_course_luigi_raceway_dl_2860[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_91A8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_9230), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B8), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_528), @@ -1542,8 +1278,6 @@ Gfx d_course_luigi_raceway_dl_2860[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_51D8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5038), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), #endif gsSPEndDisplayList(), @@ -1628,8 +1362,6 @@ Gfx d_course_luigi_raceway_dl_2978[] = { Gfx d_course_luigi_raceway_dl_2BC0[] = { #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D00), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1C90), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_A620), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A7A8), @@ -1638,8 +1370,6 @@ Gfx d_course_luigi_raceway_dl_2BC0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_2720), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_AE78), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_B590), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_B600), @@ -1653,17 +1383,9 @@ Gfx d_course_luigi_raceway_dl_2BC0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A028), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A088), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), @@ -1672,11 +1394,7 @@ Gfx d_course_luigi_raceway_dl_2BC0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_84C8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_528), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), @@ -1694,14 +1412,8 @@ Gfx d_course_luigi_raceway_dl_2D00[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D68), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D00), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A620), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A7A8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_25E8), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_A490), @@ -1741,17 +1453,9 @@ Gfx d_course_luigi_raceway_dl_2D00[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_A088), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8128), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_85F8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_84C8), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_450), @@ -1898,14 +1602,8 @@ Gfx d_course_luigi_raceway_dl_2FF8[] = { Gfx d_course_luigi_raceway_dl_32C0[] = { #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1988), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1920), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D68), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D00), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_A620), @@ -1930,14 +1628,8 @@ Gfx d_course_luigi_raceway_dl_32C0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_DF0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A028), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A088), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), @@ -1981,8 +1673,6 @@ Gfx d_course_luigi_raceway_dl_3408[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_B2D0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6E18), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6EF0), @@ -2009,14 +1699,8 @@ Gfx d_course_luigi_raceway_dl_3408[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_A028), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A088), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A0F0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_85F8), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_8A58), @@ -2036,8 +1720,6 @@ Gfx d_course_luigi_raceway_dl_3408[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5AB8), #endif gsSPEndDisplayList(), @@ -2058,8 +1740,6 @@ Gfx d_course_luigi_raceway_dl_3610[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6728), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_370), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_118), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), @@ -2115,11 +1795,7 @@ Gfx d_course_luigi_raceway_dl_36A8[] = { Gfx d_course_luigi_raceway_dl_3928[] = { #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1A28), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1988), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1920), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D68), @@ -2337,8 +2013,6 @@ Gfx d_course_luigi_raceway_dl_3EB0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_53E0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4F20), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_59B8), #endif gsSPEndDisplayList(), @@ -2348,11 +2022,7 @@ Gfx d_course_luigi_raceway_dl_4058[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1AC8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_1A28), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1988), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1920), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1D68), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_2D30), @@ -2612,8 +2282,6 @@ Gfx d_course_luigi_raceway_dl_4828[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_9530), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_9340), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_9098), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_C58), @@ -2739,11 +2407,7 @@ Gfx d_course_luigi_raceway_dl_4C60[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6920), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_208), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_280), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_2F8), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_51D8), @@ -3265,8 +2929,6 @@ Gfx d_course_luigi_raceway_dl_5BA0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_8D0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_53E0), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_51D8), @@ -3647,11 +3309,7 @@ Gfx d_course_luigi_raceway_dl_66B8[] = { Gfx d_course_luigi_raceway_dl_6708[] = { #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1B28), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E70), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_20C0), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_3C40), @@ -3664,8 +3322,6 @@ Gfx d_course_luigi_raceway_dl_6708[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7940), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), #endif gsSPClearGeometryMode(G_CULL_BACK), @@ -3696,11 +3352,7 @@ Gfx d_course_luigi_raceway_dl_67A0[] = { Gfx d_course_luigi_raceway_dl_6810[] = { #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1B28), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E70), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_20C0), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_3B38), @@ -3712,8 +3364,6 @@ Gfx d_course_luigi_raceway_dl_6810[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7940), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), #endif gsSPClearGeometryMode(G_CULL_BACK), @@ -4376,8 +4026,6 @@ Gfx d_course_luigi_raceway_dl_7CD0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_9860), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_4A28), @@ -4426,11 +4074,7 @@ Gfx d_course_luigi_raceway_dl_7EE8[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8EB0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_9A8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A20), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6418), @@ -4561,8 +4205,6 @@ Gfx d_course_luigi_raceway_dl_8260[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_9860), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_4A28), @@ -4726,8 +4368,6 @@ Gfx d_course_luigi_raceway_dl_8790[] = { Gfx d_course_luigi_raceway_dl_8958[] = { #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_17E0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1B28), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_1E70), @@ -4852,11 +4492,7 @@ Gfx d_course_luigi_raceway_dl_8CC8[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_610), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_688), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_700), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_60E0), @@ -4894,8 +4530,6 @@ Gfx d_course_luigi_raceway_dl_8D68[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_99D8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_9A60), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_11B8), @@ -5107,8 +4741,6 @@ Gfx d_course_luigi_raceway_dl_9310[] = { Gfx d_course_luigi_raceway_dl_9408[] = { #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_17E0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_1B28), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_1BD8), @@ -5150,8 +4782,6 @@ Gfx d_course_luigi_raceway_dl_9408[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), @@ -5162,8 +4792,6 @@ Gfx d_course_luigi_raceway_dl_9408[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), @@ -5178,11 +4806,7 @@ Gfx d_course_luigi_raceway_dl_95A0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_1BD8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A748), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A6E8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A430), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_ACD8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_A998), @@ -5197,14 +4821,8 @@ Gfx d_course_luigi_raceway_dl_95A0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_B948), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_70F8), @@ -5223,17 +4841,9 @@ Gfx d_course_luigi_raceway_dl_95A0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_A210), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7E50), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_85F8), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_610), @@ -5242,8 +4852,6 @@ Gfx d_course_luigi_raceway_dl_95A0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_9ED0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6418), @@ -5307,8 +4915,6 @@ Gfx d_course_luigi_raceway_dl_99C0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_74F0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4880), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4960), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), @@ -5338,11 +4944,7 @@ Gfx d_course_luigi_raceway_dl_9AD0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), @@ -5351,8 +4953,6 @@ Gfx d_course_luigi_raceway_dl_9AD0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B10), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A150), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A1B0), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7DD8), @@ -5361,8 +4961,6 @@ Gfx d_course_luigi_raceway_dl_9AD0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_83E0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), @@ -5370,8 +4968,6 @@ Gfx d_course_luigi_raceway_dl_9AD0[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_778), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), @@ -5405,14 +5001,8 @@ Gfx d_course_luigi_raceway_dl_9C50[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6B00), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6BF0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_75A8), @@ -5436,17 +5026,9 @@ Gfx d_course_luigi_raceway_dl_9C50[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F68), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_8C50), @@ -5455,11 +5037,7 @@ Gfx d_course_luigi_raceway_dl_9C50[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_6418), @@ -5557,11 +5135,7 @@ Gfx d_course_luigi_raceway_dl_A178[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_72F0), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7398), @@ -5572,8 +5146,6 @@ Gfx d_course_luigi_raceway_dl_A178[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_4B10), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_4C28), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_A150), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_7D60), @@ -5594,14 +5166,8 @@ Gfx d_course_luigi_raceway_dl_A178[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F0), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_58A0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5788), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_55E8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_5CD0), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_5BB8), @@ -5629,11 +5195,7 @@ Gfx d_course_luigi_raceway_dl_A320[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_6CA8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6D60), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6FA8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_6A58), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_65D8), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7248), @@ -5647,17 +5209,9 @@ Gfx d_course_luigi_raceway_dl_A320[] = { gsSPDisplayList(d_course_luigi_raceway_packed_dl_7E50), gsSPDisplayList(d_course_luigi_raceway_packed_dl_7EF8), #ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7F68), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_7FE0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8048), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_8190), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_luigi_raceway_packed_dl_46A0), #endif gsSPDisplayList(d_course_luigi_raceway_packed_dl_8A58), diff --git a/courses/mario_raceway/course_data.c b/courses/mario_raceway/course_data.c index e0a633bc29..a0575455f2 100644 --- a/courses/mario_raceway/course_data.c +++ b/courses/mario_raceway/course_data.c @@ -147,8 +147,6 @@ Gfx d_course_mario_raceway_dl_2C8[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_5D70), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2138), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_21C0), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1EA8), @@ -747,11 +745,7 @@ Gfx d_course_mario_raceway_dl_1210[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_4290), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4BB8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4B50), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_56F0), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_6240), @@ -1097,11 +1091,7 @@ Gfx d_course_mario_raceway_dl_1B70[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_6528), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4540), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4210), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_3E00), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_5E58), @@ -1124,8 +1114,6 @@ Gfx d_course_mario_raceway_dl_1B70[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_28F8), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_29B0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2680), #endif gsSPEndDisplayList(), @@ -1238,8 +1226,6 @@ Gfx d_course_mario_raceway_dl_1F68[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1600), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1850), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1AF8), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_54B0), @@ -1264,14 +1250,8 @@ Gfx d_course_mario_raceway_dl_1F68[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1CF8), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1E30), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2680), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_23B8), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_2420), @@ -1311,11 +1291,7 @@ Gfx d_course_mario_raceway_dl_20A0[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_43C0), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_44C0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_62A0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_6528), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_5E58), @@ -1331,8 +1307,6 @@ Gfx d_course_mario_raceway_dl_20A0[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_2680), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_23B8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2420), #endif gsSPEndDisplayList(), @@ -1458,8 +1432,6 @@ Gfx d_course_mario_raceway_dl_2418[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1E30), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2680), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_23B8), @@ -1992,8 +1964,6 @@ Gfx d_course_mario_raceway_dl_32D8[] = { gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1550), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1600), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1850), @@ -2003,11 +1973,7 @@ Gfx d_course_mario_raceway_dl_32D8[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1988), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_5550), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_3530), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_3818), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_3D50), @@ -2030,8 +1996,6 @@ Gfx d_course_mario_raceway_dl_32D8[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_5C80), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1FB0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1BB8), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1C48), @@ -2063,8 +2027,6 @@ Gfx d_course_mario_raceway_dl_3458[] = { gsDPLoadBlock(G_TX_LOADTILE, 0, 0, 2047, 128), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1550), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1600), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1850), @@ -2078,11 +2040,7 @@ Gfx d_course_mario_raceway_dl_3458[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_3798), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_3818), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_3D50), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4290), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_4348), @@ -2215,8 +2173,6 @@ Gfx d_course_mario_raceway_dl_3830[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1988), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_5550), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_3530), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_56F0), @@ -2336,11 +2292,7 @@ Gfx d_course_mario_raceway_dl_3AA0[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_2340), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_26F8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2760), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_27E8), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_2870), @@ -2365,8 +2317,6 @@ Gfx d_course_mario_raceway_dl_3C08[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1890), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_18B8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_18E0), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_43C0), @@ -2382,8 +2332,6 @@ Gfx d_course_mario_raceway_dl_3C08[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_3F80), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_4028), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_40D8), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_5E58), @@ -2398,8 +2346,6 @@ Gfx d_course_mario_raceway_dl_3C08[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1E30), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_26F8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2760), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_27E8), @@ -2430,8 +2376,6 @@ Gfx d_course_mario_raceway_dl_3D68[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_18E0), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_5550), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_3530), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_4AD8), @@ -2537,8 +2481,6 @@ Gfx d_course_mario_raceway_dl_4038[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_18B8), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_18E0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1950), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_3C28), @@ -2566,8 +2508,6 @@ Gfx d_course_mario_raceway_dl_4038[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_2340), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_26F8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2760), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_27E8), @@ -2909,8 +2849,6 @@ Gfx d_course_mario_raceway_dl_4910[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1770), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1988), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1890), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_18B8), @@ -2939,8 +2877,6 @@ Gfx d_course_mario_raceway_dl_4910[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_1FB0), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1BB8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1EA8), @@ -2985,8 +2921,6 @@ Gfx d_course_mario_raceway_dl_4A60[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_22B8), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1FB0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1BB8), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), @@ -3077,8 +3011,6 @@ Gfx d_course_mario_raceway_dl_4CD8[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_22B8), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1F30), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1EA8), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_2340), @@ -3156,14 +3088,8 @@ Gfx d_course_mario_raceway_dl_4ED0[] = { gsSPDisplayList(d_course_mario_raceway_packed_dl_21C0), #ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_2248), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_22B8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1FB0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_mario_raceway_packed_dl_1BB8), #endif gsSPDisplayList(d_course_mario_raceway_packed_dl_1DA8), diff --git a/courses/moo_moo_farm/course_data.c b/courses/moo_moo_farm/course_data.c index 90b2e88ab5..77308d68a4 100644 --- a/courses/moo_moo_farm/course_data.c +++ b/courses/moo_moo_farm/course_data.c @@ -280,8 +280,6 @@ Gfx d_course_moo_moo_farm_dl_598[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1C40), #ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1270), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1128), #endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1168), @@ -380,8 +378,6 @@ Gfx d_course_moo_moo_farm_dl_8A0[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1270), #ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1128), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1168), #endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1578), @@ -2171,8 +2167,6 @@ Gfx d_course_moo_moo_farm_dl_39F8[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1230), #ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1578), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_15E0), #endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F58), @@ -2538,8 +2532,6 @@ Gfx d_course_moo_moo_farm_dl_4428[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1478), #ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1578), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_15E0), #endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F58), @@ -4278,8 +4270,6 @@ Gfx d_course_moo_moo_farm_dl_74C8[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_17D8), #ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_16B8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_14B8), #endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F90), @@ -4664,8 +4654,6 @@ Gfx d_course_moo_moo_farm_dl_7F78[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_16B8), #ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_14B8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F58), #endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1F90), @@ -5753,8 +5741,6 @@ Gfx d_course_moo_moo_farm_dl_9DF8[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3268), #ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_11B0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_11F0), #endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1230), @@ -6106,8 +6092,6 @@ Gfx d_course_moo_moo_farm_dl_A7B0[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3268), #ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_11B0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_11F0), #endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1230), @@ -8027,8 +8011,6 @@ Gfx d_course_moo_moo_farm_dl_DC70[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_3190), #ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1270), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1128), #endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_17A8), @@ -8514,8 +8496,6 @@ Gfx d_course_moo_moo_farm_dl_EA18[] = { gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1270), #ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1128), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_moo_moo_farm_packed_dl_1168), #endif gsSPDisplayList(d_course_moo_moo_farm_packed_dl_2338), diff --git a/courses/royal_raceway/course_data.c b/courses/royal_raceway/course_data.c index 985c722bf5..f506e1e18d 100644 --- a/courses/royal_raceway/course_data.c +++ b/courses/royal_raceway/course_data.c @@ -145,8 +145,6 @@ Gfx d_course_royal_raceway_dl_360[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_20A0), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2110), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_21B8), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_27E0), @@ -159,8 +157,6 @@ Gfx d_course_royal_raceway_dl_360[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4078), gsSPDisplayList(d_course_royal_raceway_packed_dl_4118), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_41A8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4298), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), @@ -169,8 +165,6 @@ Gfx d_course_royal_raceway_dl_360[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5A10), @@ -216,11 +210,7 @@ Gfx d_course_royal_raceway_dl_470[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), gsSPDisplayList(d_course_royal_raceway_packed_dl_5298), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), @@ -398,8 +388,6 @@ Gfx d_course_royal_raceway_dl_B40[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), @@ -482,8 +470,6 @@ Gfx d_course_royal_raceway_dl_F40[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), @@ -516,8 +502,6 @@ Gfx d_course_royal_raceway_dl_1180[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_21B8), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_9F10), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_9F80), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), @@ -538,14 +522,8 @@ Gfx d_course_royal_raceway_dl_1180[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), @@ -609,11 +587,7 @@ Gfx d_course_royal_raceway_dl_12C0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), @@ -711,8 +685,6 @@ Gfx d_course_royal_raceway_dl_1610[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), @@ -747,8 +719,6 @@ Gfx d_course_royal_raceway_dl_1850[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_69B0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_6950), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_68E8), @@ -772,8 +742,6 @@ Gfx d_course_royal_raceway_dl_19B0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_B78), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8AC0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_16B8), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_1640), @@ -822,8 +790,6 @@ Gfx d_course_royal_raceway_dl_19B0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), @@ -1168,8 +1134,6 @@ Gfx d_course_royal_raceway_dl_2428[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), @@ -1182,16 +1146,12 @@ Gfx d_course_royal_raceway_dl_2428[] = { Gfx d_course_royal_raceway_dl_25F0[] = { #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_AB8), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_1548), gsSPDisplayList(d_course_royal_raceway_packed_dl_14C8), gsSPDisplayList(d_course_royal_raceway_packed_dl_8CD8), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8C00), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8B98), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_2230), @@ -1200,8 +1160,6 @@ Gfx d_course_royal_raceway_dl_25F0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_3190), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_69B0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_6950), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_3268), @@ -1209,8 +1167,6 @@ Gfx d_course_royal_raceway_dl_25F0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_3B70), gsSPDisplayList(d_course_royal_raceway_packed_dl_3C18), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7578), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), @@ -1218,11 +1174,7 @@ Gfx d_course_royal_raceway_dl_25F0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), gsSPDisplayList(d_course_royal_raceway_packed_dl_8618), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), #endif gsSPEndDisplayList(), @@ -1257,11 +1209,7 @@ Gfx d_course_royal_raceway_dl_26F0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_3C18), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7FD0), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), @@ -1427,8 +1375,6 @@ Gfx d_course_royal_raceway_dl_2B78[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), #endif gsSPEndDisplayList(), @@ -2158,11 +2104,7 @@ Gfx d_course_royal_raceway_dl_45A0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_50B0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8580), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8618), #endif gsSPEndDisplayList(), @@ -2337,11 +2279,7 @@ Gfx d_course_royal_raceway_dl_4BA8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4A80), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4B30), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_78E0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5330), @@ -2364,11 +2302,7 @@ Gfx d_course_royal_raceway_dl_4BA8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_3908), @@ -2442,11 +2376,7 @@ Gfx d_course_royal_raceway_dl_4DF8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), #endif gsSPEndDisplayList(), @@ -2568,8 +2498,6 @@ Gfx d_course_royal_raceway_dl_51D0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_37E8), #endif gsSPEndDisplayList(), @@ -2775,8 +2703,6 @@ Gfx d_course_royal_raceway_dl_5758[] = { #endif #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), @@ -2909,8 +2835,6 @@ Gfx d_course_royal_raceway_dl_5B28[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_51E8), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), @@ -3035,8 +2959,6 @@ Gfx d_course_royal_raceway_dl_5FD8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5520), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7D10), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), @@ -3268,8 +3190,6 @@ Gfx d_course_royal_raceway_dl_6538[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), @@ -3540,8 +3460,6 @@ Gfx d_course_royal_raceway_dl_6E20[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_5400), gsSPDisplayList(d_course_royal_raceway_packed_dl_54A8), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5138), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8040), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5B50), gsSPDisplayList(d_course_royal_raceway_packed_dl_5C00), @@ -3710,8 +3628,6 @@ Gfx d_course_royal_raceway_dl_72B8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_75F8), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7680), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7E08), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_4F98), @@ -4473,8 +4389,6 @@ Gfx d_course_royal_raceway_dl_8C58[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5298), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5EF8), @@ -4634,8 +4548,6 @@ Gfx d_course_royal_raceway_dl_92D0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2F70), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_3190), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_3440), @@ -4651,8 +4563,6 @@ Gfx d_course_royal_raceway_dl_92D0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_72E8), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7020), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_6D18), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_6D98), @@ -4670,8 +4580,6 @@ Gfx d_course_royal_raceway_dl_92D0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7C98), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5D18), @@ -4689,14 +4597,8 @@ Gfx d_course_royal_raceway_dl_92D0[] = { Gfx d_course_royal_raceway_dl_94E8[] = { #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_9C8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_AB8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8988), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8900), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8888), gsSPDisplayList(d_course_royal_raceway_packed_dl_8810), @@ -4712,21 +4614,13 @@ Gfx d_course_royal_raceway_dl_94E8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_68E8), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_6880), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_6808), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_6A10), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7278), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_72E8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7020), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_6D18), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_6D98), gsSPDisplayList(d_course_royal_raceway_packed_dl_6E20), @@ -4839,11 +4733,7 @@ Gfx d_course_royal_raceway_dl_9900[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), gsSPDisplayList(d_course_royal_raceway_packed_dl_5298), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_56A0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5990), @@ -4860,8 +4750,6 @@ Gfx d_course_royal_raceway_dl_99A0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_89F0), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8988), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8900), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_1860), @@ -4873,8 +4761,6 @@ Gfx d_course_royal_raceway_dl_99A0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2F70), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_3440), @@ -4887,8 +4773,6 @@ Gfx d_course_royal_raceway_dl_99A0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_71A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_7278), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_72E8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7020), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_46E0), gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), @@ -4916,11 +4800,7 @@ Gfx d_course_royal_raceway_dl_9B30[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_1720), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_16B8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_89F0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8988), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_8900), @@ -4957,11 +4837,7 @@ Gfx d_course_royal_raceway_dl_9B30[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_6C58), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4078), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_4118), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_71A0), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_7278), @@ -4978,8 +4854,6 @@ Gfx d_course_royal_raceway_dl_9B30[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4890), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5018), @@ -5038,8 +4912,6 @@ Gfx d_course_royal_raceway_dl_9D58[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_56A0), gsSPDisplayList(d_course_royal_raceway_packed_dl_5740), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5A10), gsSPDisplayList(d_course_royal_raceway_packed_dl_3978), @@ -5080,11 +4952,7 @@ Gfx d_course_royal_raceway_dl_A0A8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_16B8), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_89F0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8988), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8900), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_17F8), @@ -5092,11 +4960,7 @@ Gfx d_course_royal_raceway_dl_A0A8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_20A0), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2110), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_9B08), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_9B68), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_2758), @@ -5105,8 +4969,6 @@ Gfx d_course_royal_raceway_dl_A0A8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_3440), @@ -5119,11 +4981,7 @@ Gfx d_course_royal_raceway_dl_A0A8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4118), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_41A8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7278), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_72E8), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_47C0), @@ -5135,8 +4993,6 @@ Gfx d_course_royal_raceway_dl_A0A8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_4E90), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7B50), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_7BB8), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_5A10), @@ -5186,8 +5042,6 @@ Gfx d_course_royal_raceway_dl_A200[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_2EE0), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2E08), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_2D80), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_2CF8), @@ -5658,8 +5512,6 @@ Gfx d_course_royal_raceway_dl_B188[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_3540), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_55D0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_58E8), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_A3C8), @@ -5714,8 +5566,6 @@ Gfx d_course_royal_raceway_dl_B2E0[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_A438), @@ -5754,11 +5604,7 @@ Gfx d_course_royal_raceway_dl_B3E8[] = { gsSPDisplayList(d_course_royal_raceway_packed_dl_57F0), gsSPDisplayList(d_course_royal_raceway_packed_dl_8278), #ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8318), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_8390), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_royal_raceway_packed_dl_A438), #endif gsSPDisplayList(d_course_royal_raceway_packed_dl_A4B8), diff --git a/courses/sherbet_land/course_data.c b/courses/sherbet_land/course_data.c index ecd3caf1f2..850de3f913 100644 --- a/courses/sherbet_land/course_data.c +++ b/courses/sherbet_land/course_data.c @@ -102,8 +102,6 @@ Gfx d_course_sherbet_land_dl_280[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_1370), #ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_12C8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_730), #endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2BC8), @@ -335,8 +333,6 @@ Gfx d_course_sherbet_land_dl_8E8[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_E00), #ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_10C8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1050), #endif gsSPDisplayList(d_course_sherbet_land_packed_dl_EB8), @@ -451,8 +447,6 @@ Gfx d_course_sherbet_land_dl_BC0[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_2B58), #ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), #endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2CF0), @@ -658,8 +652,6 @@ Gfx d_course_sherbet_land_dl_12F0[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_10C8), #ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1050), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_FD0), #endif gsSPDisplayList(d_course_sherbet_land_packed_dl_12C8), @@ -670,8 +662,6 @@ Gfx d_course_sherbet_land_dl_12F0[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), #ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2E88), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_2E08), #endif gsSPDisplayList(d_course_sherbet_land_packed_dl_3170), @@ -1076,8 +1066,6 @@ Gfx d_course_sherbet_land_dl_1D60[] = { Gfx d_course_sherbet_land_dl_1E10[] = { #ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_E00), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1148), #endif gsSPDisplayList(d_course_sherbet_land_packed_dl_13E8), @@ -1256,8 +1244,6 @@ Gfx d_course_sherbet_land_dl_2288[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_11B8), #ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_730), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), #endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), @@ -1359,8 +1345,6 @@ Gfx d_course_sherbet_land_dl_2530[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_11B8), #ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_730), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_C30), #endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2F00), @@ -1713,8 +1697,6 @@ Gfx d_course_sherbet_land_dl_2D78[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_1720), #ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_18E0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1870), #endif gsSPDisplayList(d_course_sherbet_land_packed_dl_1F78), @@ -2128,8 +2110,6 @@ Gfx d_course_sherbet_land_dl_3770[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_1870), #ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1F78), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1F10), #endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2290), @@ -2172,8 +2152,6 @@ Gfx d_course_sherbet_land_dl_3840[] = { gsSPDisplayList(d_course_sherbet_land_packed_dl_1FF0), #ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1F78), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_sherbet_land_packed_dl_1F10), #endif gsSPDisplayList(d_course_sherbet_land_packed_dl_2290), diff --git a/courses/toads_turnpike/course_data.c b/courses/toads_turnpike/course_data.c index 0caaf4dc1e..9bf4380815 100644 --- a/courses/toads_turnpike/course_data.c +++ b/courses/toads_turnpike/course_data.c @@ -100,8 +100,6 @@ Gfx d_course_toads_turnpike_dl_1F8[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), #ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_3548), #endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_38E8), @@ -144,8 +142,6 @@ Gfx d_course_toads_turnpike_dl_2D0[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), #ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_5C80), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_6030), #endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), @@ -435,8 +431,6 @@ Gfx d_course_toads_turnpike_dl_B88[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_160), #ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), #endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), @@ -459,8 +453,6 @@ Gfx d_course_toads_turnpike_dl_B88[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_5270), #ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_1BB8), #endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_1CB8), @@ -854,8 +846,6 @@ Gfx d_course_toads_turnpike_dl_1708[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_41D0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_42E8), #ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_4E30), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), #endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5360), @@ -969,8 +959,6 @@ Gfx d_course_toads_turnpike_dl_1A60[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_4850), #ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_4E30), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), #endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), @@ -1250,16 +1238,12 @@ Gfx d_course_toads_turnpike_dl_2440[] = { gsSPDisplayList(d_course_toads_turnpike_dl_60), #ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_3118), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_3638), #endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3AD0), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3B58), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3C28), #ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_42E8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_4850), #endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_4E30), gsSPDisplayList(d_course_toads_turnpike_packed_dl_4EF0), @@ -1296,8 +1280,6 @@ Gfx d_course_toads_turnpike_dl_2530[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_EC0), #ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_3118), #endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3638), @@ -1307,8 +1289,6 @@ Gfx d_course_toads_turnpike_dl_2530[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_3D00), #ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_42E8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_4850), #endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_4E30), @@ -1317,8 +1297,6 @@ Gfx d_course_toads_turnpike_dl_2530[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), #ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_56B0), #endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_5D90), @@ -1586,8 +1564,6 @@ Gfx d_course_toads_turnpike_dl_2CC0[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_C30), #ifdef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), -#endif -#ifdef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_D88), #endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_940), @@ -1728,8 +1704,6 @@ Gfx d_course_toads_turnpike_dl_3030[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_EC0), #ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_AA8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), #endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_39A8), @@ -1747,8 +1721,6 @@ Gfx d_course_toads_turnpike_dl_3030[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_5F78), #ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_6030), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), #endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_2AF8), @@ -2034,8 +2006,6 @@ Gfx d_course_toads_turnpike_dl_37F0[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_7E8), #ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_A28), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_dl_60), #endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_32A0), @@ -2051,8 +2021,6 @@ Gfx d_course_toads_turnpike_dl_37F0[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5C80), #ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_5E50), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_5F78), #endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_6030), gsSPDisplayList(d_course_toads_turnpike_packed_dl_6110), @@ -2121,8 +2089,6 @@ Gfx d_course_toads_turnpike_dl_39C8[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_32A0), #ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_33A8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_3478), #endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_3780), gsSPDisplayList(d_course_toads_turnpike_packed_dl_3850), @@ -2135,11 +2101,7 @@ Gfx d_course_toads_turnpike_dl_39C8[] = { gsSPDisplayList(d_course_toads_turnpike_packed_dl_5880), #ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_5958), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_5AE8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_toads_turnpike_packed_dl_5C80), #endif gsSPDisplayList(d_course_toads_turnpike_packed_dl_5E50), gsSPDisplayList(d_course_toads_turnpike_packed_dl_5F78), diff --git a/courses/wario_stadium/course_data.c b/courses/wario_stadium/course_data.c index b55aa64b86..dccd201a83 100644 --- a/courses/wario_stadium/course_data.c +++ b/courses/wario_stadium/course_data.c @@ -72,8 +72,6 @@ Gfx d_course_wario_stadium_dl_1B8[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_59C0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5938), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_5888), @@ -135,14 +133,8 @@ Gfx d_course_wario_stadium_dl_440[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_5888), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_7530), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_75A8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_7630), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_8D28), @@ -168,8 +160,6 @@ Gfx d_course_wario_stadium_dl_4C0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_59C0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5938), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_5888), @@ -245,8 +235,6 @@ Gfx d_course_wario_stadium_dl_798[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_5938), @@ -254,11 +242,7 @@ Gfx d_course_wario_stadium_dl_798[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_57F8), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_21D8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_75A8), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_7630), @@ -279,8 +263,6 @@ Gfx d_course_wario_stadium_dl_830[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5938), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_5888), gsSPDisplayList(d_course_wario_stadium_packed_dl_57F8), @@ -417,14 +399,8 @@ Gfx d_course_wario_stadium_dl_D60[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_57F8), gsSPDisplayList(d_course_wario_stadium_packed_dl_5768), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_56E0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3D80), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_76E0), gsSPDisplayList(d_course_wario_stadium_packed_dl_77A8), @@ -442,11 +418,7 @@ Gfx d_course_wario_stadium_dl_E30[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_56E0), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5D20), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5CB0), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_76E0), gsSPDisplayList(d_course_wario_stadium_packed_dl_77A8), @@ -514,14 +486,8 @@ Gfx d_course_wario_stadium_dl_1068[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_5768), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_56E0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5A38), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3D80), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), gsSPDisplayList(d_course_wario_stadium_packed_dl_77A8), @@ -860,8 +826,6 @@ Gfx d_course_wario_stadium_dl_1CA8[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), @@ -967,8 +931,6 @@ Gfx d_course_wario_stadium_dl_1FD8[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), @@ -1060,8 +1022,6 @@ Gfx d_course_wario_stadium_dl_2308[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_24D0), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_6198), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_6418), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_64E8), @@ -1079,8 +1039,6 @@ Gfx d_course_wario_stadium_dl_23B0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), @@ -1102,8 +1060,6 @@ Gfx d_course_wario_stadium_dl_2490[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3AA8), gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), @@ -1218,8 +1174,6 @@ Gfx d_course_wario_stadium_dl_2870[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), @@ -1294,8 +1248,6 @@ Gfx d_course_wario_stadium_dl_2AB0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), @@ -1332,8 +1284,6 @@ Gfx d_course_wario_stadium_dl_2C30[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), @@ -1344,8 +1294,6 @@ Gfx d_course_wario_stadium_dl_2C30[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), @@ -1375,8 +1323,6 @@ Gfx d_course_wario_stadium_dl_2CE0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), gsSPDisplayList(d_course_wario_stadium_packed_dl_3960), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_1F28), gsSPDisplayList(d_course_wario_stadium_packed_dl_7960), @@ -1469,8 +1415,6 @@ Gfx d_course_wario_stadium_dl_2FB8[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), gsSPDisplayList(d_course_wario_stadium_packed_dl_39D0), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_8030), gsSPDisplayList(d_course_wario_stadium_packed_dl_80E8), @@ -1515,8 +1459,6 @@ Gfx d_course_wario_stadium_dl_3098[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_1F28), @@ -1618,8 +1560,6 @@ Gfx d_course_wario_stadium_dl_3368[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_6390), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_6108), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_6AE8), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_34A0), @@ -1804,8 +1744,6 @@ Gfx d_course_wario_stadium_dl_3A10[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_4438), @@ -1832,8 +1770,6 @@ Gfx d_course_wario_stadium_dl_3A10[] = { Gfx d_course_wario_stadium_dl_3AD0[] = { #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), gsSPDisplayList(d_course_wario_stadium_packed_dl_3EC0), @@ -1846,8 +1782,6 @@ Gfx d_course_wario_stadium_dl_3AD0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_5BB8), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5B38), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_80E8), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_2BB0), @@ -1880,8 +1814,6 @@ Gfx d_course_wario_stadium_dl_3BB0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_5C30), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5BB8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5B38), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), @@ -1972,8 +1904,6 @@ Gfx d_course_wario_stadium_dl_3D90[] = { Gfx d_course_wario_stadium_dl_3E80[] = { #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4098), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4038), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3F70), @@ -2029,8 +1959,6 @@ Gfx d_course_wario_stadium_dl_3F78[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_5C30), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5BB8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3C40), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), @@ -2070,11 +1998,7 @@ Gfx d_course_wario_stadium_dl_40F0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5CB0), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_5C30), @@ -2146,11 +2070,7 @@ Gfx d_course_wario_stadium_dl_43E0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5D20), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5CB0), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_5C30), gsSPDisplayList(d_course_wario_stadium_packed_dl_3CA8), @@ -2182,8 +2102,6 @@ Gfx d_course_wario_stadium_dl_4550[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_42C8), gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), gsSPDisplayList(d_course_wario_stadium_packed_dl_3AA8), @@ -2192,8 +2110,6 @@ Gfx d_course_wario_stadium_dl_4550[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3B68), gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3D80), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3BD0), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_2108), gsSPDisplayList(d_course_wario_stadium_packed_dl_20A0), @@ -2210,11 +2126,7 @@ Gfx d_course_wario_stadium_dl_4550[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_6AE8), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_6C80), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_6950), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_6700), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_6878), gsSPDisplayList(d_course_wario_stadium_packed_dl_1180), @@ -2227,8 +2139,6 @@ Gfx d_course_wario_stadium_dl_4550[] = { Gfx d_course_wario_stadium_dl_46E0[] = { #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), @@ -2236,8 +2146,6 @@ Gfx d_course_wario_stadium_dl_46E0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4378), gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3B08), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3DE8), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3D80), gsSPDisplayList(d_course_wario_stadium_packed_dl_3D10), @@ -2247,8 +2155,6 @@ Gfx d_course_wario_stadium_dl_46E0[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_7B20), gsSPDisplayList(d_course_wario_stadium_packed_dl_7BE0), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_7D00), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_6A10), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_6BE0), gsSPDisplayList(d_course_wario_stadium_packed_dl_6C80), @@ -2374,8 +2280,6 @@ Gfx d_course_wario_stadium_dl_4B30[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_4218), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), @@ -2458,8 +2362,6 @@ Gfx d_course_wario_stadium_dl_4D40[] = { Gfx d_course_wario_stadium_dl_4E30[] = { #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_46B8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_4658), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_4598), gsSPDisplayList(d_course_wario_stadium_packed_dl_44E8), @@ -2620,8 +2522,6 @@ Gfx d_course_wario_stadium_dl_5338[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_3D10), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5BB8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_5B38), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_5AA8), @@ -2699,8 +2599,6 @@ Gfx d_course_wario_stadium_dl_5588[] = { gsSPDisplayList(d_course_wario_stadium_packed_dl_A248), #ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_59C0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_wario_stadium_packed_dl_3AA8), #endif gsSPDisplayList(d_course_wario_stadium_packed_dl_3A30), diff --git a/courses/yoshi_valley/course_data.c b/courses/yoshi_valley/course_data.c index 47425543d4..5ac999e375 100644 --- a/courses/yoshi_valley/course_data.c +++ b/courses/yoshi_valley/course_data.c @@ -81,8 +81,6 @@ Gfx d_course_yoshi_valley_dl_290[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_2CD0), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_2EE0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_2DD0), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_6E20), @@ -1040,8 +1038,6 @@ Gfx d_course_yoshi_valley_dl_25E8[] = { gsSPDisplayList(d_course_yoshi_valley_dl_20), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_78B0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A08), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_75F0), @@ -1117,11 +1113,7 @@ Gfx d_course_yoshi_valley_dl_2840[] = { gsSPDisplayList(d_course_yoshi_valley_dl_20), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_78B0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_75F0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7660), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_1F80), @@ -1178,8 +1170,6 @@ Gfx d_course_yoshi_valley_dl_2978[] = { gsSPDisplayList(d_course_yoshi_valley_dl_20), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_75F0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7660), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_1F80), @@ -1284,8 +1274,6 @@ Gfx d_course_yoshi_valley_dl_2D70[] = { gsSPDisplayList(d_course_yoshi_valley_dl_20), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_78B0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_75F0), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_7660), @@ -1366,8 +1354,6 @@ Gfx d_course_yoshi_valley_dl_3078[] = { gsSPDisplayList(d_course_yoshi_valley_dl_20), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_78B0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7998), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), @@ -1414,8 +1400,6 @@ Gfx d_course_yoshi_valley_dl_3258[] = { gsSPDisplayList(d_course_yoshi_valley_dl_20), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_78B0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7998), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), @@ -1780,11 +1764,7 @@ Gfx d_course_yoshi_valley_dl_40B8[] = { gsSPDisplayList(d_course_yoshi_valley_dl_20), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A70), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_76C8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), @@ -1959,14 +1939,8 @@ Gfx d_course_yoshi_valley_dl_4718[] = { gsSPDisplayList(d_course_yoshi_valley_dl_20), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A70), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7FC8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7DA8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_1EB8), @@ -1987,8 +1961,6 @@ Gfx d_course_yoshi_valley_dl_4718[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_2DD0), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_28F8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_2868), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_3F10), @@ -3219,8 +3191,6 @@ Gfx d_course_yoshi_valley_dl_7400[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_64F8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_1DE8), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_1FF0), @@ -3947,8 +3917,6 @@ Gfx d_course_yoshi_valley_dl_8D58[] = { gsSPDisplayList(d_course_yoshi_valley_dl_20), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_76C8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_1F80), @@ -4159,8 +4127,6 @@ Gfx d_course_yoshi_valley_dl_9548[] = { gsSPDisplayList(d_course_yoshi_valley_dl_20), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7998), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), @@ -4441,8 +4407,6 @@ Gfx d_course_yoshi_valley_dl_9F70[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_7928), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7998), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A08), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), @@ -4571,8 +4535,6 @@ Gfx d_course_yoshi_valley_dl_A518[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A08), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7C50), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7CC0), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), @@ -4617,8 +4579,6 @@ Gfx d_course_yoshi_valley_dl_A6B8[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_7A08), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7C50), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7CC0), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_65C0), @@ -5305,8 +5265,6 @@ Gfx d_course_yoshi_valley_dl_C140[] = { gsSPDisplayList(d_course_yoshi_valley_dl_20), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7998), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), @@ -5569,11 +5527,7 @@ Gfx d_course_yoshi_valley_dl_CAD8[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_7F58), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7FC8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7DA8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7B50), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_6490), @@ -5635,8 +5589,6 @@ Gfx d_course_yoshi_valley_dl_CC80[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_7FC8), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7DA8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7B50), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_7C50), @@ -5644,8 +5596,6 @@ Gfx d_course_yoshi_valley_dl_CC80[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_64F8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_6428), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_1FF0), @@ -5703,17 +5653,9 @@ Gfx d_course_yoshi_valley_dl_CEC8[] = { gsSPDisplayList(d_course_yoshi_valley_packed_dl_76C8), gsSPDisplayList(d_course_yoshi_valley_packed_dl_7740), #ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7FC8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7DA8), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7B50), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_7BD0), -#endif -#ifndef VERSION_JP gsSPDisplayList(d_course_yoshi_valley_packed_dl_6560), #endif gsSPDisplayList(d_course_yoshi_valley_packed_dl_1EB8), From b781dd61769913a5c7f05b4b978b8cc791b84648 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 12:28:25 -0700 Subject: [PATCH 34/41] jp.v11: explain the linker ordering instead of leaving a TODO The note asked for the same arrangement in data, rodata and bss. Those blocks are already there, so the TODO reads as unfinished work when nothing is outstanding. Say what the block is for instead. Co-Authored-By: Claude Fable 5 --- mk64.ld | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mk64.ld b/mk64.ld index bab782b56e..ae27e91913 100644 --- a/mk64.ld +++ b/mk64.ld @@ -48,7 +48,9 @@ SECTIONS BUILD_DIR/src/main.o(.text*); BUILD_DIR/src/code_800029B0.o(.text*); BUILD_DIR/src/profiler.o(.text*); -#ifdef VERSION_JP // TODO: Arrange these in data, rodata and bss +// JP links several translation units in a different order from us. The same +// applies to the .data, .rodata and .bss blocks further down. +#ifdef VERSION_JP BUILD_DIR/src/replays.o(.text*); BUILD_DIR/src/camera.o(.text*); BUILD_DIR/src/cpu_vehicles_camera_path.jp.o(.text*); From 0933e849a98ee9728a1f0dbfc5d8b6a255881fb9 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 12:28:25 -0700 Subject: [PATCH 35/41] Document the Japanese build README gains the fourth row. compiling.md gains a "Building JP" section next to "Building EU", and it has to say two things that section does not: Torch writes its generated C per version, so `make assets` needs the version too, and unlike EU, JP does not need us built first. It extracts everything from the Japanese cart, so a fresh clone builds it on its own. first-diff.py and diff_settings.py learn `--jp11` / `-jp11`, so the commands the new section points at exist. Co-Authored-By: Claude Fable 5 --- README.md | 1 + diff_settings.py | 2 ++ docs/basics/compiling.md | 19 +++++++++++++++++++ first-diff.py | 8 ++++++++ 4 files changed, 30 insertions(+) diff --git a/README.md b/README.md index d8908bec4e..23dd88b2ae 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ It supports and builds the following versions: | mk64.us.z64 | USA | 579c48e211ae952530ffc8738709f078d5dd215e | | mk64.eu.v10.z64 | EUR 1.0 | a729039453210b84f17019dda3f248d5888f7690 | | mk64.eu.v11.z64 | EUR 1.1 | f6b5f519dd57ea59e9f013cc64816e9d273b2329 | +| mk64.jp.v11.z64 | JPN 1.1 | 9f439457585146a4e1da7e1dd9104f7f94381688 | ## Progress diff --git a/diff_settings.py b/diff_settings.py index 98e989596a..f175ccb7d7 100644 --- a/diff_settings.py +++ b/diff_settings.py @@ -8,6 +8,8 @@ def add_custom_arguments(parser): help="Set version to EU 1.0.") group.add_argument('-eu11', dest='lang', action='store_const', const='eu.v11', help="Set version to EU 1.1.") + group.add_argument('-jp11', dest='lang', action='store_const', const='jp.v11', + help="Set version to JP 1.1.") def apply(config, args): lang = args.lang or 'us' diff --git a/docs/basics/compiling.md b/docs/basics/compiling.md index e978c25474..922660b515 100644 --- a/docs/basics/compiling.md +++ b/docs/basics/compiling.md @@ -106,6 +106,25 @@ python3 first-diff.py --eu ./diff -eu ``` +# Building JP + +mk64 decomp supports the original Japanese release, JP 1.1 `jp.v11`. + +Unlike EU, JP does not need US built first. It extracts everything it needs from +the Japanese cartridge, so a fresh clone can build it on its own. Torch writes +its generated C per version, so extract with the version you are building: + +```bash +make assets -j VERSION=jp.v11 +make -j VERSION=jp.v11 +``` + +First-diff/diff commands for JP +```bash +python3 first-diff.py --jp11 +./diff -jp11 +``` + # Handling Changes Certain changes may result in unexpected behaviour (frequently related to physics) due to the games obnoxious linker setup. This is resolved by compiling with the AVOID_UB flag. diff --git a/first-diff.py b/first-diff.py index 5731a59f67..d55333303f 100755 --- a/first-diff.py +++ b/first-diff.py @@ -34,6 +34,14 @@ const="eu.v11", dest="version", ) +versionGroup.add_argument( + "-j", + "--jp11", + help="use Japanese (1.1) version", + action="store_const", + const="jp.v11", + dest="version", +) parser.add_argument( "-m", "--make", help="run make before finding difference(s)", action="store_true" ) From 79494d553cb25f6da3d9c48af671336d9496f277 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 12:28:25 -0700 Subject: [PATCH 36/41] jp.v11: reflow the credits table after the added entry clang-format wraps this array differently now that the table is a line longer. Whitespace only: the non-whitespace bytes are identical. Co-Authored-By: Claude Fable 5 --- src/ending/credits.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ending/credits.c b/src/ending/credits.c index 74ab988bbc..76d5e5b24a 100644 --- a/src/ending/credits.c +++ b/src/ending/credits.c @@ -97,8 +97,8 @@ char* gCreditsText[] = { "technical support", "takao sawano", "tsuyoshi takahashi", "hirohito yada", "progress management", "kimiyoshi fukui", "keizo kato", "special thanks", "yasuhiro sakai", "yoshitaka nishikawa", "hideki fujii", #ifdef VERSION_JP - "yusuke nakano", "wataru yamaguchi", "nintendo e.a.d.", "super mario club", - "rare ltd.", "the end", "mariokart64 staff", + "yusuke nakano", "wataru yamaguchi", "nintendo e.a.d.", "super mario club", "rare ltd.", "the end", + "mariokart64 staff", #else "yusuke nakano", "wataru yamaguchi", "phil sandhop", "super mario club", "Donkey Kong 3-D Model Provided Courtesy of Rare U.K.", "the end", "mariokart64 staff", From d1b9468879a909db151507643aa686b810413ed7 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 12:39:46 -0700 Subject: [PATCH 37/41] assets: the export sentinel has no version suffix any more The wildcard was for the `.export.$(VERSION)` scheme this branch replaced with one shared sentinel guarded by assets/.version. Nothing writes a suffixed one now, so match the file that actually exists. Co-Authored-By: Claude Fable 5 --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 50c8b8281c..1a803db5be 100644 --- a/.gitignore +++ b/.gitignore @@ -72,7 +72,7 @@ expected/* /courses/**/*linkonly* /textures/**/*.png /textures/**/*.bin -/assets/**/.export* +/assets/**/.export /assets/.version /assets/**/*.bin /assets/**/*.png From 41194ed5c8dac50819cf6e65eaccae793cef1f2f Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 13:47:45 -0700 Subject: [PATCH 38/41] jp.v11: name the version the way the cartridge does Revision 1.1 of the December 1996 Japanese release, not a 1997 version. The neighbouring lines are 1997 releases and this one inherited that by proximity. Co-Authored-By: Claude Fable 5 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ac1418f9b6..55287a1358 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,7 @@ GCC ?= 0 # us - builds the 1997 North American version # eu.v10 - builds the 1997 1.0 PAL version # eu.v11 - builds the 1997 1.1 PAL version -# jp.v11 - builds the 1997 1.1 Japanese version +# jp.v11 - builds revision 1.1 of the original December 1996 Japanese release VERSION ?= us $(eval $(call validate-option,VERSION,us eu.v10 eu.v11 jp.v11)) From afe6049dc131703f5b4e1473af6309fc9fcd68f7 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 14:46:13 -0700 Subject: [PATCH 39/41] Format the lines this branch touched git-clang-format against 230fe2ec1 with the pinned clang-format 14, so only lines this branch added are considered. A stray blank line and one continuation alignment. The two other files it flags are left alone deliberately. src/audio/external.c would be re-indented for the JP branch, which nests a level deeper around a body both branches share, so the result is correct for JP and wrong for us. src/menu_items.c holds EUC-JP text and clang-format counts bytes rather than columns, so its wrapping there is not meaningful. Co-Authored-By: Claude Fable 5 --- src/cpu_vehicles_camera_path.c | 1 - src/cpu_vehicles_camera_path/cpu_speed_control.inc.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/cpu_vehicles_camera_path.c b/src/cpu_vehicles_camera_path.c index d3674b1459..9ca05d0938 100644 --- a/src/cpu_vehicles_camera_path.c +++ b/src/cpu_vehicles_camera_path.c @@ -264,7 +264,6 @@ u16 D_801646CC; UnkStruct_46D0 D_801646D0[4]; - // Strings, presented by google translate! // Note that these are EUC-JP encoded, see: // https://en.wikipedia.org/wiki/Extended_Unix_Code#EUC-JP diff --git a/src/cpu_vehicles_camera_path/cpu_speed_control.inc.c b/src/cpu_vehicles_camera_path/cpu_speed_control.inc.c index 818addb835..67c6758cc4 100644 --- a/src/cpu_vehicles_camera_path/cpu_speed_control.inc.c +++ b/src/cpu_vehicles_camera_path/cpu_speed_control.inc.c @@ -228,7 +228,7 @@ void regulate_cpu_speed(s32 playerId, f32 targetSpeed, Player* player) { } else if (D_80163330[playerId] == 1) { func_80007D04(playerId, player); } else if (func_800088D8(playerId, gLapCountByPlayerId[playerId], - gGPCurrentRaceRankByPlayerIdDup[playerId]) == true) { + gGPCurrentRaceRankByPlayerIdDup[playerId]) == true) { player->effects |= CPU_FAST_EFFECT; player_accelerate_alternative(player); } else { From 40ea060696459bd261fd9d9fb6bb79c0debce655 Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 18:01:23 -0700 Subject: [PATCH 40/41] cpu_item_strategy: guard the assignments, not the case labels Review feedback: the case labels do not need duplicating, only the two assignments differ between versions. Same preprocessed output either way. All four ROMs still byte-identical. Co-Authored-By: Claude Fable 5 --- .../cpu_item_strategy.inc.c | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/cpu_vehicles_camera_path/cpu_item_strategy.inc.c b/src/cpu_vehicles_camera_path/cpu_item_strategy.inc.c index e8c89575eb..7d09cbe8ef 100644 --- a/src/cpu_vehicles_camera_path/cpu_item_strategy.inc.c +++ b/src/cpu_vehicles_camera_path/cpu_item_strategy.inc.c @@ -36,20 +36,17 @@ void cpu_decisions_branch_item(UNUSED s32 playerId, s16* branch, s32 itemId) { case ITEM_MUSHROOM: value = CPU_STRATEGY_ITEM_MUSHROOM; break; -#ifdef VERSION_JP - // JP also gives CPUs a strategy for double/triple mushrooms + // JP gives CPUs a strategy for these two; the us cases are empty. case ITEM_DOUBLE_MUSHROOM: +#ifdef VERSION_JP value = CPU_STRATEGY_ITEM_DOUBLE_MUSHROOM; +#endif break; case ITEM_TRIPLE_MUSHROOM: +#ifdef VERSION_JP value = CPU_STRATEGY_ITEM_TRIPLE_MUSHROOM; - break; -#else - case ITEM_DOUBLE_MUSHROOM: - break; - case ITEM_TRIPLE_MUSHROOM: - break; #endif + break; case ITEM_SUPER_MUSHROOM: break; } From 84680627df1e5dd935a34da043031119def813ce Mon Sep 17 00:00:00 2001 From: quarrel07 <178681861+quarrel07@users.noreply.github.com> Date: Fri, 31 Jul 2026 22:11:16 -0700 Subject: [PATCH 41/41] Correct two comments about which revision changed the path code Both said the US revision replaced the JP code. It is the other way round: the December 1996 JP 1.0 cartridge has yoshi_valley_cpu_path and the update_path_index recovery chains, byte for byte the same as US, so JP 1.1 is the revision that replaced them. Comments only. jp.v11 still byte-identical. Co-Authored-By: Claude Opus 5 --- src/cpu_vehicles_camera_path.c | 4 ++-- src/cpu_vehicles_camera_path/path_utils.inc.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cpu_vehicles_camera_path.c b/src/cpu_vehicles_camera_path.c index 9ca05d0938..478cff4490 100644 --- a/src/cpu_vehicles_camera_path.c +++ b/src/cpu_vehicles_camera_path.c @@ -1404,8 +1404,8 @@ void update_player_path_completion(s32 playerId, Player* player) { } } else { #ifdef VERSION_JP - // JP randomizes the CPU path on Yoshi Valley at the finish line; the US - // revision replaced this with the yoshi_valley_cpu_path machinery. + // JP 1.1 randomizes the CPU path on Yoshi Valley at the finish line, + // where US uses the yoshi_valley_cpu_path machinery instead. if ((gCrossedFinishLine[playerId] == 1) && (gLapCountByPlayerId[playerId] >= 0) && (gCurrentCourseId == COURSE_YOSHI_VALLEY)) { gPlayerPathIndex = random_int(4); diff --git a/src/cpu_vehicles_camera_path/path_utils.inc.c b/src/cpu_vehicles_camera_path/path_utils.inc.c index 4bd63329e1..31be63307c 100644 --- a/src/cpu_vehicles_camera_path/path_utils.inc.c +++ b/src/cpu_vehicles_camera_path/path_utils.inc.c @@ -341,8 +341,8 @@ s16 update_path_index_with_track(f32 posX, f32 posY, f32 posZ, s16 pathPointInde #ifdef VERSION_JP /** * Finds the path point nearest to (posX, posY, posZ), seeded with the distance - * to pathPointIndex itself so it always returns a valid index. The US revision - * replaced its callers with the update_path_index recovery chains. + * to pathPointIndex itself so it always returns a valid index. Only JP 1.1 has + * it; US uses the update_path_index recovery chains for the same callers. * Looks 3 path behind and 6 path ahead of pathPointIndex **/ s16 find_nearest_path_point(f32 posX, f32 posY, f32 posZ, s16 pathPointIndex, s32 pathIndex) {